/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #007AFF;
  --black: #1d1d1f;
  --white: #ffffff;
  --gray-50: #fbfbfd;
  --gray-100: #f5f5f7;
  --gray-200: #d2d2d7;
  --gray-400: #606f7f;
  --gray-600: #424245;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 48px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover  { color: var(--black); }
.nav-links a.active { color: var(--blue); font-weight: 500; }

/* ── MOBILE MENU BUTTON ── */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-menu-btn:hover { background: rgba(0,0,0,0.05); }

.nav-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

.nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #0071e3;
  transform: scale(1.02);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}

.btn-secondary:hover { opacity: 0.7; }

/* ── SECTION ── */
.section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Remove top padding when a section immediately follows a page hero (portfolio page) */
.page-hero + .section {
  padding-top: 0;
}

.section-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.07;
  margin-bottom: 48px;
  max-width: 18ch;
}

/* ── FILMS GALLERY — APPLE TV SCROLL STYLE ── */
.films-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Extend track to both viewport edges. First/last card margins provide
     the visual inset — scrollLeft stays 0 at rest so prev button is reliable. */
  margin-left: calc(-1 * max(48px, (100vw - 1200px) / 2 + 48px));
  margin-right: calc(-1 * max(48px, (100vw - 1200px) / 2 + 48px));
  scroll-padding-left: max(48px, calc((100vw - 1200px) / 2 + 48px));
  padding-bottom: 4px;
  cursor: grab;
}

.films-gallery-track:active { cursor: grabbing; }
.films-gallery-track::-webkit-scrollbar { display: none; }

.films-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.film-card {
  flex-shrink: 0;
  width: calc((min(100vw, 1200px) - 80px) / 1.5);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: block;
}

.film-card:first-child { margin-left: max(48px, calc((100vw - 1200px) / 2 + 48px)); }
.film-card:last-child  { margin-right: max(48px, calc((100vw - 1200px) / 2 + 48px)); }

.film-card-art {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.film-card-info {
  padding: 12px 0 0;
}

.film-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 3px;
}

.film-card-watch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s var(--ease-out);
}

.film-card-watch:hover { gap: 8px; }

.film-card-watch svg {
  flex-shrink: 0;
}

/* ── PHOTO CAROUSEL — APPLE SWIPE STYLE ── */
.photo-section {
  background: var(--gray-100);
  padding: 80px 0;
  overflow: hidden;
}

.photo-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.photo-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: calc(-1 * max(48px, (100vw - 1200px) / 2 + 48px));
  margin-right: calc(-1 * max(48px, (100vw - 1200px) / 2 + 48px));
  scroll-padding-left: max(48px, calc((100vw - 1200px) / 2 + 48px));
  cursor: grab;
}

.photo-carousel-track:active { cursor: grabbing; }
.photo-carousel-track::-webkit-scrollbar { display: none; }

.photo-carousel-item:first-child { margin-left: max(48px, calc((100vw - 1200px) / 2 + 48px)); }
.photo-carousel-item:last-child  { margin-right: max(48px, calc((100vw - 1200px) / 2 + 48px)); }

.photo-carousel-item {
  flex-shrink: 0;
  width: calc(min(100vw, 1200px) - 188px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}

/* Portrait variant — half the landscape width, same height */
@media (min-width: 641px) {
  .photo-carousel-item.portrait {
    width: calc((min(100vw, 1200px) - 188px) / 2);
    aspect-ratio: 3/4;
  }
}

.photo-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.photo-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14), 0 0 0 0.5px rgba(0,0,0,0.06);
  transition: box-shadow 0.15s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.photo-nav-btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 0 0 0.5px rgba(0,0,0,0.06);
  transform: scale(1.05);
}

.photo-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.photo-nav-btn svg {
  width: 11px;
  height: 11px;
  stroke: #6e6e73;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── ABOUT SECTION (homepage) ── */
.about-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-200);
  flex-shrink: 0;
}

.about-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.07;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-text + .about-text {
  margin-bottom: 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-100);
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.footer-wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
  display: block;
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.social-link {
  color: var(--gray-400);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--black);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}

/* ── VIDEO MODAL ── */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.video-modal-inner {
  position: relative;
  width: min(90vw, 1100px);
  max-width: calc((100vh - 80px) * 16 / 9);
  aspect-ratio: 16/9;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.video-modal-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 1001;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.video-modal-close:hover { opacity: 1; }

.video-modal-close svg {
  width: 20px;
  height: 20px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO (about, portfolio, connect) ── */
.page-hero {
  padding: 100px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-eyebrow { margin-bottom: 12px; }

.page-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ── CONNECT LAYOUT ── */
.connect-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.connect-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--gray-200);
  top: 0;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}

.form-submit {
  margin-top: 8px;
}

.form-honeypot { display: none; }

.form-success,
.form-error {
  display: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  margin-top: 16px;
}

.form-success {
  background: #f0faf0;
  border: 1px solid #b8e0b8;
  color: #2d7a2d;
}

.form-error {
  background: #fff0f0;
  border: 1px solid #e0b8b8;
  color: #7a2d2d;
}

/* ── ABOUT PAGE ── */
.about-page-hero {
  background: var(--black);
  overflow: hidden;
  position: relative;
  height: 500px;
}

.bio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.bio-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.bio-text p {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bio-text p:last-child { margin-bottom: 0; }

/* ── PAGE CTA (above footer) ── */
.page-cta {
  padding: 96px 48px;
  text-align: center;
  background-color: #e1f0ff;
  background-image:
    linear-gradient(rgba(225, 240, 255, 0.65), rgba(225, 240, 255, 0.65)),
    url('assets/images/home/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.page-cta-eyebrow { margin-bottom: 12px; }

.page-cta-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 32px;
}

.page-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── IMAGE PLACEHOLDERS ── */
/* picture elements are layout-invisible so the img inside positions correctly */
.photo-carousel-item picture { display: contents; }

.film-card-art-img,
.photo-carousel-img,
.about-page-hero-img,
.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}


.bio-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── PORTFOLIO PAGE ── */
/* ── SECTION EYEBROW LABELS (shared) ── */
.about-eyebrow,
.portfolio-section-label,
.page-hero-eyebrow,
.page-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
}
.about-eyebrow,
.portfolio-section-label { margin-bottom: 6px; }

/* ── HOMEPAGE HERO ── */
.hero {
  text-align: center;
  padding: 120px 48px 80px;
  background: var(--white);
}

.hero-title {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.10s both;
}

.hero-sub {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  animation: fadeUp 0.8s var(--ease-out) 0.34s both;
}

/* ── FEATURED FILM ── */
.featured-film-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  max-height: 680px;
  min-height: 420px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(150deg, #080d1c 0%, #0d1a38 40%, #060e20 100%);
  animation: fadeUp 0.9s var(--ease-out) 0.46s both;
}

.featured-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 30%);
  pointer-events: none;
}

.featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 52px;
}

.featured-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.featured-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: block;
}

.featured-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 6px;
}

.featured-desc {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  line-height: 1.5;
}

.featured-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-top: 10px;
  pointer-events: auto;
  transition: color 0.2s ease, gap 0.2s var(--ease-out);
}

.featured-watch-link:hover { color: white; gap: 10px; }


/* ── ABOUT PAGE — BIO CTA ── */
.bio-aside .btn-primary { margin-top: 8px; }

/* ── RESPONSIVE ── */

/* Tablet: about section narrower photo */
@media (max-width: 1024px) {
  .about-section { grid-template-columns: 300px 1fr; gap: 56px; }
  .connect-layout { grid-template-columns: 6fr 4fr; }
}

/* Tablet portrait */
@media (max-width: 860px) {
  .film-card { width: calc((min(100vw, 1200px) - 64px) / 2); }
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 560px;
    padding: 80px 48px;
  }
  .about-photo { aspect-ratio: 4/3; }
  .about-photo-img { object-position: top; }

  /* About page responsive */
  .about-page-hero { height: 320px; }
  .about-page-hero .about-page-hero-img { object-position: bottom; }
  .bio-section { grid-template-columns: 1fr; gap: 0; position: relative; }
  .bio-section .bio-text { position: relative; z-index: 1; }
  .bio-section .bio-photo { position: absolute; top: 0; left: 0; right: 0; bottom: 80px; aspect-ratio: unset; opacity: 0.15; }
}

/* Mobile landscape / large phone */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 0 20px; height: 52px; }
  .nav-menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 4px 0 20px;
    gap: 0;
    z-index: 99;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    padding: 14px 24px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    letter-spacing: -0.01em;
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* Section */
  .section { padding: 52px 20px; }

  /* Films — full-bleed both sides on mobile */
  .films-gallery-track {
    margin-left: -20px;
    margin-right: -20px;
    scroll-padding-left: 20px;
    padding-right: 20px;
  }
  .film-card:first-child { margin-left: 20px; }
  .film-card:last-child  { margin-right: 0; }
  .film-card { width: 75%; }

  /* Photos — full-bleed both sides on mobile */
  .photo-section { padding: 52px 0; }
  .photo-section-inner { padding: 0 20px; }
  .photo-carousel-track {
    margin-left: -20px;
    margin-right: -20px;
    scroll-padding-left: 20px;
    padding-right: 20px;
  }
  .photo-carousel-item:first-child { margin-left: 20px; }
  .photo-carousel-item:last-child  { margin-right: 0; }
  .photo-carousel-nav { padding: 0; }
  .photo-carousel-item { aspect-ratio: 3/4; width: calc(100% - 60px); }

  /* About (homepage) */
  .about-section { padding: 52px 20px; }
  .about-heading { font-size: clamp(26px, 7vw, 36px); font-weight: 400; }
  .about-photo-img { object-position: top; }

  /* Footer */
  footer { padding: 40px 20px; }

  /* Homepage */
  .hero { padding: 72px 20px 52px; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-sub { font-size: 17px; margin-bottom: 36px; }
  .btn-primary, .btn-secondary { font-size: 15px; }
  /* Featured film — 16:10 aspect ratio on mobile */
  .featured-film-hero { height: 62.5vw; min-height: 200px; }
  .featured-content { padding-bottom: 32px; }
  .featured-content-inner { padding: 0 20px; }
  .featured-title { font-size: clamp(28px, 8vw, 44px); }
  .featured-desc { display: none; }
  /* New pages */
  .page-hero { padding: 72px 20px 48px; }
  .connect-layout { grid-template-columns: 1fr; gap: 40px; padding: 0 20px 80px; }
  .connect-photo { order: -1; aspect-ratio: 10/9; }
  .connect-photo .about-page-hero-img { object-position: top; }
  .about-page-hero { height: 260px; }
  .about-page-hero .about-page-hero-img { object-position: bottom; }
  .bio-section { grid-template-columns: 1fr; gap: 0; padding: 0 20px 52px; position: relative; }
  .bio-section .bio-text { position: relative; z-index: 1; }
  .bio-section .bio-photo { position: absolute; top: 0; left: 0; right: 0; bottom: 52px; aspect-ratio: unset; opacity: 0.15; }
  .page-cta { padding: 64px 20px; }
}

/* Small phone */
@media (max-width: 400px) {
  .hero-title { font-size: 38px; }
}
