/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --color-accent:     #C9A07A;
  --color-accent-dark:#a87d56;
  --color-dark:       #3a3a3a;
  --color-white:      #ffffff;
  --color-off-white:  #f5f3f0;
  --color-text-body:  #7a7a7a;
  --color-border:     #e0e0e0;

  --font-main: 'Montserrat', sans-serif;

  --nav-height: 68px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   KEYFRAME ANIMATIONS (load-in — no GSAP dependency)
============================================================ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out),
              color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              transform 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

/* White background / dark text — hero CTA */
.btn--white {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--white:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Outline nav CTA — white over hero, dark when scrolled */
.btn--outline-dark {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 9px 22px;
  font-size: 12px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn--outline-dark:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.nav--scrolled .btn--outline-dark {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.nav--scrolled .btn--outline-dark:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Outline accent — about CTA */
.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
  padding: 14px 32px;
}

.btn--outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* no background — pill handles it */
  background: transparent;
  height: var(--nav-height);
  padding: 10px 24px;
  transition: padding 0.4s var(--ease-out);
}

.nav--scrolled {
  padding: 8px 20px;
}

.nav--hidden {
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}

.nav--visible {
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}

/* Animate nav pill on load */
.nav {
  animation: fadeSlideDown 0.6s var(--ease-out) 0.1s both;
}

/* The pill container */
.nav__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 0;

  /* Fully transparent pill */
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: none;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

/* Pill fills when scrolled below hero */
.nav--scrolled .nav__inner {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  flex-shrink: 0;
}

.nav__logo-icon {
  color: rgba(255, 255, 255, 0.9);
}

.nav__logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

/* Switch to dark text once scrolled */
.nav--scrolled .nav__logo {
  color: var(--color-dark);
}
.nav--scrolled .nav__logo-icon {
  color: var(--color-accent);
}
.nav--scrolled .nav__logo-text {
  color: var(--color-dark);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav--scrolled .nav__link {
  color: var(--color-dark);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

/* Controls (right side) */
.nav__controls {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Language toggle */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  padding: 2px 0;
}

.nav__lang-btn--active,
.nav__lang-btn:hover {
  color: var(--color-white);
}

.nav--scrolled .nav__lang-btn {
  color: var(--color-text-body);
}
.nav--scrolled .nav__lang-btn--active,
.nav--scrolled .nav__lang-btn:hover {
  color: var(--color-accent);
}

.nav__lang-sep {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.nav--scrolled .nav__lang-sep {
  color: var(--color-border);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}

.nav--scrolled .nav__hamburger span {
  background: var(--color-dark);
}

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

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px 40px 32px;
  border-top: 1px solid var(--color-border);
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.nav__mobile--open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}

.nav__mobile-link:last-child {
  border-bottom: none;
}

.nav__mobile-link:hover {
  color: var(--color-accent);
}

.nav__mobile-cta {
  color: var(--color-accent);
  margin-top: 8px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.00) 0%,
    rgba(0, 0, 0, 0.02) 18%,
    rgba(0, 0, 0, 0.18) 58%,
    rgba(0, 0, 0, 0.10) 80%,
    transparent 100%
  );
  z-index: 1;
}

/* Bottom fade into about section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, #f5f3f0 100%);
  z-index: 2;
  pointer-events: none;
}

/* Oversized title */
.hero__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  overflow: hidden;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.88;
  margin: 0;
  padding-left: 4vw;
}

.hero__heading-line {
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  white-space: nowrap;
  display: block;
}

.hero__heading-line--1 {
  animation: fadeSlideUp 1s var(--ease-out) 0.3s both;
}

.hero__heading-line--2 {
  padding-left: 46vw;
  animation: fadeSlideUp 1s var(--ease-out) 0.5s both;
}

.hero__heading-tag {
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 48vw;
  margin: 4px 0 2px;
  display: block;
  animation: fadeIn 0.8s var(--ease-out) 0.7s both;
}

/* Bottom bar */
.hero__bottom {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__sub {
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  animation: fadeIn 0.8s var(--ease-out) 0.9s both;
}

/* CTA pill+circle button */
.hero__cta {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  text-decoration: none;
  animation: fadeIn 0.8s var(--ease-out) 1s both;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  pointer-events: auto;
  margin-bottom: -120px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__cta-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  white-space: nowrap;
  padding-right: 16px;
}

.hero__cta-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: background 0.3s;
}

.hero__cta:hover .hero__cta-circle {
  background: var(--color-accent-dark);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll {
  animation: fadeIn 0.6s var(--ease-out) 1.4s both;
}

.hero__scroll-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-arrow {
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 1.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   PORTFOLIO
============================================================ */
.portfolio {
  background:
    radial-gradient(circle at top, rgba(201, 160, 122, 0.08), transparent 38%),
    linear-gradient(180deg, #f5f3f0 0%, #ffffff 100%);
  padding: 110px 40px 120px;
}

.portfolio__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.portfolio__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 14px;
}

.portfolio__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-dark);
}

.portfolio__intro {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
  text-align: center;
  max-width: 680px;
  margin: 14px auto 0;
}

.portfolio__gallery {
  display: flex;
  align-items: stretch;
  gap: 14px;
  height: 400px;
  width: 100%;
  margin-top: 42px;
}

.portfolio__card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(58, 58, 58, 0.14);
  transform: translateZ(0);
  transition: flex-grow 0.5s var(--ease-out), transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.portfolio__gallery:hover .portfolio__card:not(:hover) {
  flex-grow: 0.9;
}

.portfolio__gallery:hover .portfolio__card:hover {
  flex-grow: 2.7;
  transform: translateY(-3px);
}

.portfolio__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.portfolio__card:hover .portfolio__image {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-off-white) 100%);
  padding: 112px 40px 128px;
}

.faq__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.faq__intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.faq__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-dark);
}

.faq__lead {
  max-width: 520px;
  margin: 14px auto 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body);
}

.faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(58, 58, 58, 0.08);
  border-radius: 20px;
  padding: 0;
  overflow: clip;
  box-shadow: 0 12px 34px rgba(58, 58, 58, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(58, 58, 58, 0.08);
  border-color: rgba(201, 160, 122, 0.22);
}

.faq__button {
  width: 100%;
  padding: 22px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  color: var(--color-dark);
}

.faq__question {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.faq__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(58, 58, 58, 0.14);
  color: var(--color-text-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.faq__item.is-open .faq__icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
  opacity: 0;
}

.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq__panel-inner {
  overflow: hidden;
  padding: 0 22px 22px;
}

.faq__panel-inner p {
  max-width: 56ch;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-body);
}

/* ============================================================
   STORY FLOW
============================================================ */
.story-flow {
  width: 100%;
  overflow-x: hidden;
}

.flow-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--flow-bg, #000);
  color: var(--flow-fg, #fff);
}

.flow-section--warm {
  --flow-bg: var(--color-off-white);
  --flow-fg: var(--color-dark);
  --flow-rule: rgba(58, 58, 58, 0.26);
}

.flow-section--dark {
  --flow-bg: var(--color-dark);
  --flow-fg: #ffffff;
  --flow-rule: rgba(255, 255, 255, 0.35);
}

.flow-art-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(2rem, 8vw, 4vw) 4vw 4vw;
  transform-origin: bottom left;
  will-change: transform;
}

.flow-kicker {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.flow-rule {
  width: 100%;
  border: none;
  border-top: 1px solid var(--flow-rule, rgba(255, 255, 255, 0.5));
  opacity: 1;
}

.flow-hero-copy {
  display: flex;
  align-items: flex-start;
}

.flow-title {
  font-family: var(--font-main);
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.flow-lede {
  max-width: 50ch;
  font-family: var(--font-main);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.8;
  font-weight: 400;
  opacity: 0.86;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3vw;
}

.flow-card {
  min-width: 180px;
  flex: 1;
}

.flow-card__title {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.flow-card__body {
  font-family: var(--font-main);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.75;
  opacity: 0.82;
}

.flow-stat {
  min-width: 180px;
  flex: 1;
}

.flow-stat__value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.flow-stat__label {
  font-family: var(--font-main);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.75;
  opacity: 0.82;
}

.flow-cta {
  align-self: flex-start;
  margin-top: 10px;
  background: var(--color-accent);
  color: var(--color-white);
}

.flow-cta:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* Keep old about block untouched for now in case other references exist */
.about {
  background: var(--color-off-white);
  padding: 100px 40px;
}

/* Text */
.about__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about__heading {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.about__heading-accent {
  font-style: normal;
  color: var(--color-accent);
}

.about__body {
  font-size: 17px;
  color: var(--color-text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__body-accent {
  font-style: normal;
  color: var(--color-dark);
  font-weight: 500;
}

.about__cta {
  margin-top: 12px;
  display: inline-flex;
}

/* Images */
.about__images {
  position: relative;
  height: 520px;
}

.about__img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.about__img-card--main {
  width: 68%;
  height: 72%;
  top: 0;
  right: 0;
}

.about__img-card--secondary {
  width: 52%;
  height: 54%;
  bottom: 0;
  left: 0;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.about__img-card:hover .about__img {
  transform: scale(1.05);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav__links {
    gap: 20px;
  }

  .nav__inner {
    padding: 0 24px;
    gap: 20px;
  }

  .about__inner {
    gap: 48px;
  }

  .about__images {
    height: 420px;
  }

  .portfolio {
    padding: 96px 28px 104px;
  }

  .portfolio__gallery {
    height: 340px;
    gap: 12px;
  }

  .flow-art-container {
    padding: 4vw 28px 28px;
  }

  .flow-grid {
    gap: 24px;
  }
}

/* Mobile nav switch */
@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 90vh;
  }

  .hero__heading-line {
    font-size: clamp(72px, 20vw, 120px);
  }

  .hero__heading-line--2 {
    padding-left: 8vw;
  }

  .hero__heading-tag {
    padding-left: 10vw;
  }

  .hero__bottom {
    bottom: 28px;
    padding: 0 24px;
  }

  /* About — stack */
  .about {
    padding: 72px 24px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about__images {
    height: 360px;
  }

  .about__img-card--main {
    width: 70%;
    height: 68%;
  }

  .about__img-card--secondary {
    width: 54%;
    height: 56%;
  }

  .flow-title {
    font-size: clamp(72px, 20vw, 120px);
  }

  .flow-lede {
    font-size: 1rem;
    max-width: 42ch;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio {
    padding: 82px 24px 92px;
  }

  .portfolio__intro {
    font-size: 14px;
  }

  .portfolio__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: auto;
  }

  .portfolio__card {
    aspect-ratio: 1 / 1.02;
    flex: initial;
  }

  .portfolio__gallery:hover .portfolio__card,
  .portfolio__card:hover {
    flex-grow: 0;
    transform: none;
  }

  .faq {
    padding: 92px 24px 104px;
  }

  .faq__list {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .nav__inner {
    padding: 0 20px;
  }

  .hero__heading {
    font-size: clamp(28px, 10vw, 40px);
  }

  .btn--white {
    padding: 14px 24px;
    font-size: 12px;
  }

  .about {
    padding: 60px 20px;
  }

  .about__images {
    height: 300px;
  }

  .flow-art-container {
    padding: 20px 20px 24px;
    gap: 18px;
  }

  .flow-title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .flow-lede {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .flow-card__body,
  .flow-stat__label {
    font-size: 0.95rem;
  }

  .portfolio {
    padding: 72px 20px 84px;
  }

  .portfolio__heading {
    font-size: clamp(26px, 8vw, 36px);
  }

  .portfolio__intro {
    font-size: 13px;
    line-height: 1.7;
  }

  .portfolio__gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .portfolio__card {
    aspect-ratio: 1.15 / 1;
  }

  .faq {
    padding: 76px 20px 92px;
  }

  .faq__intro {
    margin-bottom: 28px;
  }

  .faq__button {
    padding: 20px 18px 18px;
  }

  .faq__question {
    font-size: 15px;
  }

  .faq__panel-inner {
    padding: 0 18px 18px;
  }

  .faq__panel-inner p {
    font-size: 14px;
  }
}
