/* ============================================================
   SHARER STUDIOS — Global Design System
   ============================================================ */

/* ── Imports ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  /* Colour palette */
  --c-bg:          #F7F4EE;   /* warm ivory        */
  --c-surface:     #F0ECE4;   /* soft cream        */
  --c-border:      rgba(17, 17, 17, 0.1); /* subtle divider */
  --c-text-dark:   #111111;   /* near black        */
  --c-text-mid:    #5F594F;   /* body / meta       */
  --c-text-light:  #8D8578;   /* labels / captions */
  --c-accent:      #111111;   /* monochrome accent */
  --c-accent-soft: #F0ECE4;   /* light contrast    */
  --c-white:       #FFFFFF;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Manrope', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs:   0.75rem;    /*  12px */
  --fs-sm:   0.875rem;   /*  14px */
  --fs-base: 1rem;       /*  16px */
  --fs-lg:   1.125rem;   /*  18px */
  --fs-xl:   1.375rem;   /*  22px */
  --fs-2xl:  1.75rem;    /*  28px */
  --fs-3xl:  2.5rem;     /*  40px */
  --fs-4xl:  3.5rem;     /*  56px */
  --fs-5xl:  5rem;       /*  80px */
  --fs-6xl:  7rem;       /* 112px */

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;

  --lh-tight:  1.1;
  --lh-snug:   1.3;
  --lh-base:   1.6;
  --lh-loose:  1.8;

  --ls-wide:   0.08em;
  --ls-wider:  0.14em;
  --ls-widest: 0.22em;

  /* Spacing scale (8-pt grid) */
  --sp-1:   0.5rem;    /*  8px */
  --sp-2:   1rem;      /* 16px */
  --sp-3:   1.5rem;    /* 24px */
  --sp-4:   2rem;      /* 32px */
  --sp-5:   2.5rem;    /* 40px */
  --sp-6:   3rem;      /* 48px */
  --sp-7:   3.5rem;    /* 56px */
  --sp-8:   4rem;      /* 64px */
  --sp-9:   4.5rem;    /* 72px */
  --sp-10:  5rem;      /* 80px */
  --sp-12:  6rem;      /* 96px */
  --sp-14:  7rem;      /* 112px */
  --sp-16:  8rem;      /* 128px */
  --sp-20: 10rem;      /* 160px */
  --sp-24: 12rem;      /* 192px */

  /* Layout */
  --max-width: 1280px;
  --gutter:    var(--sp-5);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
  --duration-sm: 200ms;
  --duration-md: 400ms;
  --duration-lg: 700ms;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background-color: var(--c-bg);
  color: var(--c-text-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  line-height: var(--lh-base);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
}
.accent-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--c-accent);
  vertical-align: middle;
  margin-right: var(--sp-2);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5);
  border: 1px solid currentColor;
  transition: background var(--duration-md) var(--ease-out),
              color     var(--duration-md) var(--ease-out);
  white-space: nowrap;
}
.btn--dark {
  color: var(--c-text-dark);
  border-color: var(--c-text-dark);
}
.btn--dark:hover {
  background: var(--c-text-dark);
  color: var(--c-bg);
}
.btn--light {
  color: var(--c-bg);
  border-color: var(--c-bg);
}
.btn--light:hover {
  background: var(--c-bg);
  color: var(--c-text-dark);
}
.btn--accent {
  color: var(--c-white);
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--accent:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-text-mid);
  transition: gap var(--duration-md) var(--ease-out),
              color var(--duration-md) var(--ease-out);
}
.btn-arrow svg { transition: transform var(--duration-md) var(--ease-out); }
.btn-arrow:hover { color: var(--c-accent); gap: var(--sp-2); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--sp-3);
  transition: background var(--duration-md) var(--ease-out),
              padding    var(--duration-md) var(--ease-out),
              box-shadow var(--duration-md) var(--ease-out);
}
.navbar.scrolled {
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
  padding-block: var(--sp-2);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  letter-spacing: 0.03em;
  color: var(--c-bg);
  transition: color var(--duration-md) var(--ease-out);
}
.navbar.scrolled .navbar__logo { color: var(--c-text-dark); }
.navbar__nav {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}
.navbar__link {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.8);
  transition: color var(--duration-md) var(--ease-out);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width var(--duration-md) var(--ease-out);
}
.navbar__link:hover::after { width: 100%; }
.navbar__link:hover { color: var(--c-white); }
.navbar.scrolled .navbar__link { color: var(--c-text-mid); }
.navbar.scrolled .navbar__link:hover { color: var(--c-text-dark); }
.navbar__cta {
  display: none;
}
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 18px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  height: 1px;
  background: var(--c-bg);
  transition: background var(--duration-md) var(--ease-out),
              transform  var(--duration-md) var(--ease-out),
              opacity    var(--duration-md) var(--ease-out);
}
.navbar.scrolled .navbar__hamburger span { background: var(--c-text-dark); }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-text-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-md) var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-light);
  color: var(--c-bg);
  letter-spacing: -0.01em;
  transition: color var(--duration-sm);
}
.mobile-menu__link:hover { color: var(--c-accent); }
.mobile-menu__footer {
  position: absolute;
  bottom: var(--sp-8);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-light);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__bg img {
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 22, 0.1) 0%,
    rgba(26, 24, 22, 0.05) 40%,
    rgba(26, 24, 22, 0.5) 100%
  );
}
.hero.loaded .hero__bg img { transform: scale(1); }
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--sp-12);
}
.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.65);
  margin-bottom: var(--sp-3);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-lg) var(--ease-out),
              transform var(--duration-lg) var(--ease-out);
  transition-delay: 400ms;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-3xl), 9vw, var(--fs-6xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  color: var(--c-bg);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-lg) var(--ease-out),
              transform var(--duration-lg) var(--ease-out);
  transition-delay: 600ms;
}
.hero__title em { font-style: italic; color: rgba(248, 246, 242, 0.75); }
.hero__sub {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: rgba(248, 246, 242, 0.65);
  max-width: 400px;
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-lg) var(--ease-out),
              transform var(--duration-lg) var(--ease-out);
  transition-delay: 800ms;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-lg) var(--ease-out),
              transform var(--duration-lg) var(--ease-out);
  transition-delay: 1000ms;
}
.hero.loaded .hero__eyebrow,
.hero.loaded .hero__title,
.hero.loaded .hero__sub,
.hero.loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── Section Shared ──────────────────────────────────────── */
.section {
  padding-block: var(--sp-16);
}
.section--tight {
  padding-block: var(--sp-10);
}
.section--dark {
  background: var(--c-text-dark);
  color: var(--c-bg);
}
.section--surface {
  background: var(--c-surface);
}
.section__header {
  margin-bottom: var(--sp-10);
}
.section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}
.section__pretitle {
  margin-bottom: var(--sp-3);
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}
.section__title em { font-style: italic; }
.section__body {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  margin-top: var(--sp-3);
  max-width: 560px;
}

/* Animate in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* ── Portfolio Grid ───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-item__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.portfolio-item__img img {
  transition: transform 0.8s var(--ease-out);
}
.portfolio-item:hover .portfolio-item__img img {
  transform: scale(1.06);
}
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--duration-md) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__info { color: var(--c-bg); }
.portfolio-item__type {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.65);
  margin-bottom: var(--sp-1);
}
.portfolio-item__name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
}
.portfolio-item__meta {
  padding: var(--sp-3) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.portfolio-item__label {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  letter-spacing: -0.01em;
}
.portfolio-item__loc {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-mid);
}

/* ── About Preview ───────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.about-preview__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-preview__img img {
  transition: transform 0.8s var(--ease-out);
}
.about-preview__img:hover img { transform: scale(1.04); }
.about-preview__badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--c-bg);
  padding: var(--sp-3) var(--sp-4);
  text-align: center;
}
.about-preview__badge-num {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  line-height: 1;
  color: var(--c-accent);
}
.about-preview__badge-lbl {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-mid);
  display: block;
  margin-top: var(--sp-1);
}

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--c-border);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.service-card {
  background: var(--c-bg);
  padding: var(--sp-6) var(--sp-5);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  align-items: start;
  transition: background var(--duration-md) var(--ease-out);
}
.service-card:hover { background: var(--c-surface); }
.service-card__num {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--c-accent);
  min-width: 2rem;
  padding-top: 2px;
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.service-card__desc {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  max-width: 480px;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-track {
  overflow: hidden;
}
.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
  animation: testimonialIn 0.5s var(--ease-out);
}
@keyframes testimonialIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-block: var(--sp-4);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: var(--fw-light);
  font-style: italic;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  color: var(--c-text-dark);
}
.testimonial__author {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
}
.testimonial__role {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: var(--sp-1);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}
.testimonials-nav__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background var(--duration-sm),
              width      var(--duration-sm);
  cursor: pointer;
  border: none;
  padding: 0;
}
.testimonials-nav__dot.active {
  background: var(--c-accent);
  width: 20px;
  border-radius: 3px;
}
.testimonials-arrows {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.testimonials-arrows button {
  width: 44px; height: 44px;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--duration-sm),
              background   var(--duration-sm);
}
.testimonials-arrows button:hover {
  border-color: var(--c-text-dark);
  background: var(--c-text-dark);
  color: var(--c-bg);
}
.testimonials-arrows button svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding-block: var(--sp-20);
  text-align: center;
  background: var(--c-text-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(181, 97, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__eyebrow {
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  color: var(--c-bg);
  margin-bottom: var(--sp-3);
}
.cta-banner__title em { font-style: italic; color: rgba(248, 246, 242, 0.6); }
.cta-banner__sub {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: rgba(248, 246, 242, 0.55);
  margin-bottom: var(--sp-8);
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--c-text-dark);
  color: var(--c-bg);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  margin-bottom: var(--sp-3);
}
.footer__brand-tagline {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: rgba(248, 246, 242, 0.45);
  line-height: var(--lh-loose);
  max-width: 280px;
}
.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.4);
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: rgba(248, 246, 242, 0.7);
  transition: color var(--duration-sm);
}
.footer__link:hover { color: var(--c-bg); }
.footer__address {
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  color: rgba(248, 246, 242, 0.7);
  line-height: var(--lh-loose);
  font-style: normal;
}
.footer__email {
  display: inline-block;
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(248, 246, 242, 0.7);
  transition: color var(--duration-sm);
}
.footer__email:hover { color: var(--c-accent); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
  padding-top: var(--sp-6);
}
.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(248, 246, 242, 0.3);
  letter-spacing: 0.04em;
}
.footer__legal {
  display: flex;
  gap: var(--sp-4);
}
.footer__legal-link {
  font-size: var(--fs-xs);
  color: rgba(248, 246, 242, 0.3);
  letter-spacing: 0.04em;
  transition: color var(--duration-sm);
}
.footer__legal-link:hover { color: rgba(248, 246, 242, 0.7); }

/* ── Divider decoration ──────────────────────────────────── */
.divider {
  width: 1px;
  height: 60px;
  background: var(--c-border);
  margin: 0 auto;
}

/* ── Stats row ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  margin-top: var(--sp-12);
}
.stat {
  background: var(--c-surface);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-4xl));
  font-weight: var(--fw-light);
  color: var(--c-text-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat__label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-light);
}

/* ============================================================
   RESPONSIVE — TABLET (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --gutter: var(--sp-8);
  }
  .navbar__nav { display: flex; }
  .navbar__cta { display: inline-flex; }
  .navbar__hamburger { display: none; }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid .portfolio-item:first-child {
    grid-column: 1 / -1;
  }
  .portfolio-grid .portfolio-item:first-child .portfolio-item__img {
    aspect-ratio: 16/8;
  }

  .about-preview {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-6);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-banner__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --gutter: var(--sp-10);
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid .portfolio-item:first-child {
    grid-column: 1 / 3;
  }
  .portfolio-grid .portfolio-item:first-child .portfolio-item__img {
    aspect-ratio: 5/4;
  }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .about-preview { gap: var(--sp-20); }

  .hero__content { padding-bottom: var(--sp-20); }
}

/* ============================================================
   PAGE-SPECIFIC — INNER PAGE STYLES
   ============================================================ */

/* Navbar solid (inner pages) */
.navbar--solid {
  background: rgba(248, 246, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
  padding-block: var(--sp-2);
}
.navbar--solid .navbar__logo { color: var(--c-text-dark); }
.navbar--solid .navbar__link { color: var(--c-text-mid); }
.navbar--solid .navbar__link:hover { color: var(--c-text-dark); }
.navbar--solid .navbar__hamburger span { background: var(--c-text-dark); }

/* Page Hero */
.page-hero {
  padding-top: calc(var(--sp-16) + 60px);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.page-hero--dark {
  background: var(--c-text-dark);
  color: var(--c-bg);
  border-bottom: none;
}
.page-hero__breadcrumb {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.page-hero__breadcrumb a:hover { color: var(--c-accent); }
.page-hero__breadcrumb-sep { color: var(--c-border); }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}
.page-hero__title em { font-style: italic; }
.page-hero--dark .page-hero__title { color: var(--c-bg); }
.page-hero--dark .page-hero__title em { color: rgba(248,246,242,0.55); }
.page-hero__sub {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  max-width: 500px;
  margin-top: var(--sp-4);
}
.page-hero--dark .page-hero__sub { color: rgba(248,246,242,0.5); }
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}
.page-hero__meta-label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
  display: block;
  margin-bottom: 4px;
}
.page-hero__meta-value {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid var(--c-border);
  color: var(--c-text-mid);
  background: transparent;
  cursor: pointer;
  transition: border-color var(--duration-sm), color var(--duration-sm), background var(--duration-sm);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--c-text-dark);
  background: var(--c-text-dark);
  color: var(--c-bg);
}

/* Projects full grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.project-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.projects-grid .project-card[hidden] {
  display: none !important;
}
.project-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card--featured .project-card__img { aspect-ratio: 16/9; }
.project-card__img img { transition: transform 0.8s var(--ease-out); }
.project-card:hover .project-card__img img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,22,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--duration-md) var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  color: var(--c-bg);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__overlay-type {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  margin-bottom: var(--sp-1);
}
.project-card__overlay-name {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
}
.project-card__overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  margin-top: var(--sp-3);
  transition: color var(--duration-sm), gap var(--duration-sm);
}
.project-card:hover .project-card__overlay-cta { color: var(--c-bg); gap: var(--sp-2); }
.project-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--sp-3);
}
.project-card__name {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
}
.project-card__loc {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-light);
}

/* Single project page */
.project-hero-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
}
.project-hero-img img { height: 100%; }

.project-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-12);
}
.project-body__lead {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
}
.project-body__text {
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}
.project-body__text p + p { margin-top: var(--sp-4); }
.project-spec { border-top: 1px solid var(--c-border); padding-top: var(--sp-4); margin-bottom: var(--sp-4); }
.project-spec__label {
  font-size: var(--fs-xs); letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: var(--c-text-light); margin-bottom: var(--sp-1);
}
.project-spec__value {
  font-family: var(--font-serif); font-size: var(--fs-lg); font-weight: var(--fw-light);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-16);
}
.project-gallery__img { overflow: hidden; aspect-ratio: 4/3; }
.project-gallery__img--wide { aspect-ratio: 16/9; }
.project-gallery__img img { transition: transform 0.8s var(--ease-out); }
.project-gallery__img:hover img { transform: scale(1.04); }

.project-nav {
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.project-nav__label {
  font-size: var(--fs-xs); letter-spacing: var(--ls-widest); text-transform: uppercase;
  color: var(--c-text-light); display: block; margin-bottom: var(--sp-1);
}
.project-nav__name {
  font-family: var(--font-serif); font-size: var(--fs-xl); font-weight: var(--fw-light);
  transition: color var(--duration-sm);
}
.project-nav__name:hover { color: var(--c-accent); }
.project-nav__next { text-align: right; }

/* Services deep page */
.service-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-block: var(--sp-12);
  border-bottom: 1px solid var(--c-border);
}
.service-deep:last-of-type { border-bottom: none; }
.service-deep__num {
  font-family: var(--font-serif); font-size: var(--fs-5xl); font-weight: var(--fw-light);
  line-height: 1; color: var(--c-border); letter-spacing: -0.04em;
}
.service-deep__title {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-2);
}
.service-deep__body {
  font-size: var(--fs-base); font-weight: var(--fw-light);
  color: var(--c-text-mid); line-height: var(--lh-loose); max-width: 560px;
}
.service-deep__body p + p { margin-top: var(--sp-3); }
.service-includes { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.service-includes__item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); color: var(--c-text-mid);
}
.service-includes__item::before {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--c-accent); flex-shrink: 0;
}
.service-deep__img { aspect-ratio: 4/3; overflow: hidden; }
.service-deep__img img { transition: transform 0.8s var(--ease-out); }
.service-deep__img:hover img { transform: scale(1.04); }

/* Process */
.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--c-border); border: 1px solid var(--c-border);
}
.process-step {
  background: var(--c-bg); padding: var(--sp-6) var(--sp-5);
  transition: background var(--duration-md) var(--ease-out);
}
.process-step:hover { background: var(--c-surface); }
.process-step__num {
  font-family: var(--font-serif); font-size: var(--fs-2xl);
  font-weight: var(--fw-light); color: var(--c-accent); line-height: 1; margin-bottom: var(--sp-3);
}
.process-step__title {
  font-family: var(--font-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-light); margin-bottom: var(--sp-2);
}
.process-step__desc {
  font-size: var(--fs-sm); font-weight: var(--fw-light);
  color: var(--c-text-mid); line-height: var(--lh-loose);
}

/* Studio page */
.studio-intro {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-10); align-items: center;
}
.studio-intro__img { aspect-ratio: 3/2; overflow: hidden; }
.studio-intro__img img { transition: transform 0.8s var(--ease-out); }
.studio-intro__img:hover img { transform: scale(1.04); }
.studio-intro__lead {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: var(--fw-light); line-height: var(--lh-snug); letter-spacing: -0.02em;
}
.studio-intro__lead em { font-style: italic; }
.studio-intro__body {
  font-size: var(--fs-base); font-weight: var(--fw-light);
  color: var(--c-text-mid); line-height: var(--lh-loose); margin-top: var(--sp-4);
}
.studio-intro__body p + p { margin-top: var(--sp-3); }

.studio-transition__figure {
  display: grid;
  gap: var(--sp-3);
  max-width: 58rem;
  margin: 0 auto;
}

.studio-transition__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ece7de;
}

.studio-transition__caption {
  max-width: 24rem;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
  color: var(--c-text-mid);
}

.pull-quote {
  padding-block: var(--sp-12);
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  text-align: center;
}
.pull-quote__mark {
  font-family: var(--font-serif); font-size: var(--fs-5xl); line-height: 0.5;
  color: var(--c-accent); opacity: 0.35; margin-bottom: var(--sp-4); display: block;
}
.pull-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: var(--fw-light); font-style: italic;
  line-height: var(--lh-snug); letter-spacing: -0.01em;
  max-width: 720px; margin-inline: auto;
}
.pull-quote__attr {
  margin-top: var(--sp-5); font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--c-text-light);
}

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
}
.value-card {
  padding: var(--sp-6) var(--sp-5); border: 1px solid var(--c-border);
  position: relative; overflow: hidden;
  transition: border-color var(--duration-md) var(--ease-out);
}
.value-card:hover { border-color: var(--c-accent); }
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-md) var(--ease-out);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card__num {
  font-family: var(--font-serif); font-size: var(--fs-3xl);
  font-weight: var(--fw-light); color: var(--c-border); line-height: 1; margin-bottom: var(--sp-4);
}
.value-card__title {
  font-family: var(--font-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-light); margin-bottom: var(--sp-2);
}
.value-card__desc {
  font-size: var(--fs-sm); font-weight: var(--fw-light);
  color: var(--c-text-mid); line-height: var(--lh-loose);
}

.team-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
.team-member__img { aspect-ratio: 3/4; overflow: hidden; margin-bottom: var(--sp-4); }
.team-member__img img { transition: transform 0.8s var(--ease-out); }
.team-member__img:hover img { transform: scale(1.04); }
.team-member__name {
  font-family: var(--font-serif); font-size: var(--fs-xl);
  font-weight: var(--fw-light); margin-bottom: 4px;
}
.team-member__role {
  font-size: var(--fs-xs); letter-spacing: var(--ls-wider);
  text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-3);
}
.team-member__bio {
  font-size: var(--fs-sm); font-weight: var(--fw-light);
  color: var(--c-text-mid); line-height: var(--lh-loose);
}


/* Responsive additions */
@media (min-width: 768px) {
  .project-body { grid-template-columns: 1fr 280px; gap: var(--sp-16); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid .project-card--featured { grid-column: 1 / -1; }
  .studio-intro { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: repeat(2, 1fr); }
  .project-gallery__img--wide { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .service-deep { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .project-gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   REFINEMENTS — Spacing, Typography, Transitions, Mobile
   ============================================================ */

/* ── Global focus ring ───────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

/* ── Smoother selection ──────────────────────────────────── */
::selection {
  background: rgba(181, 97, 42, 0.18);
  color: var(--c-text-dark);
}

/* ── Body text refinements ───────────────────────────────── */
p { hanging-punctuation: first last; }

/* ── Better link underlines ──────────────────────────────── */
.footer__link,
.footer__email,
.footer__legal-link {
  text-underline-offset: 3px;
}

/* ── Navbar: tighter mobile ──────────────────────────────── */
@media (max-width: 767px) {
  .navbar {
    padding-block: var(--sp-2);
  }
  .navbar.scrolled {
    padding-block: calc(var(--sp-1) + 4px);
  }
  .navbar--solid {
    padding-block: calc(var(--sp-1) + 4px);
  }
  .navbar__logo {
    font-size: var(--fs-lg);
    color: var(--c-bg); /* stays light on hero; solid class overrides */
  }
  .navbar--solid .navbar__logo {
    color: var(--c-text-dark);
  }

  /* ── Hero: tighter mobile ─────────────────────────────── */
  .hero__content {
    padding-bottom: var(--sp-10);
  }
  .hero__title {
    margin-bottom: var(--sp-4);
  }
  .hero__sub {
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-5);
    max-width: 320px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  /* ── Section padding: more breathing room on mobile ───── */
  .section         { padding-block: var(--sp-10); }
  .section--tight  { padding-block: var(--sp-8);  }

  /* ── Portfolio grid: single column with uniform ratio ─── */
  .portfolio-grid .portfolio-item:first-child .portfolio-item__img {
    aspect-ratio: 4/3;
  }
  /* Remove project image overlays on mobile */
  .portfolio-item__overlay,
  .project-card__overlay {
    display: none;
  }

  /* ── About preview: image first, tighter gap ─────────── */
  .about-preview { gap: var(--sp-6); }
  .about-preview__img { aspect-ratio: 3/2; }

  /* ── CTA banner: tighter ─────────────────────────────── */
  .cta-banner { padding-block: var(--sp-12); }

  /* ── Page hero: scale down ───────────────────────────── */
  .page-hero {
    padding-top: calc(var(--sp-12) + 56px);
    padding-bottom: var(--sp-8);
  }
  .page-hero--dark { padding-bottom: var(--sp-10); }
  .page-hero__meta { flex-direction: column; gap: var(--sp-3); }

  /* ── Service deep: tighter ───────────────────────────── */
  .service-deep { padding-block: var(--sp-8); gap: var(--sp-5); }

  /* ── Stats row: compact ──────────────────────────────── */
  .stat { padding: var(--sp-4) var(--sp-3); }
  .stat__num { font-size: var(--fs-2xl); }

  /* ── Footer: tighter ─────────────────────────────────── */
  .footer { padding-top: var(--sp-8); padding-bottom: var(--sp-4); }
  .footer__grid { gap: var(--sp-5); padding-bottom: var(--sp-6); }

  /* ── Pull quote: smaller ─────────────────────────────── */
  .pull-quote { padding-block: var(--sp-8); }

  /* ── Project body: no sidebar sticky on mobile ───────── */
  .project-body { padding-block: var(--sp-8); gap: var(--sp-8); }
}

/* ── Tablet refinements (768–1023px) ─────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .section       { padding-block: var(--sp-12); }
  .section--tight{ padding-block: var(--sp-10); }
  .service-deep  { padding-block: var(--sp-8); gap: var(--sp-8); }
}

/* ── Button: improved active state ──────────────────────── */
.btn:active    { transform: translateY(1px); }
.btn-arrow:active { opacity: 0.7; }

/* ── Image: prevent layout shift ─────────────────────────── */
.portfolio-item__img,
.project-card__img,
.about-preview__img,
.studio-intro__img,
.project-hero-img,
.project-gallery__img,
.service-deep__img,
.team-member__img {
  background-color: var(--c-surface);
}

/* ── Improve service card on desktop ─────────────────────── */
@media (min-width: 1024px) {
  .service-card {
    padding: var(--sp-8) var(--sp-6);
  }
}

/* ── Refine value-card mobile ─────────────────────────────── */
@media (max-width: 767px) {
  .value-card       { padding: var(--sp-5) var(--sp-4); }
  .team-grid        { gap: var(--sp-6); }
  .values-grid      { gap: var(--sp-3); }
  .process-step     { padding: var(--sp-5) var(--sp-4); }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact layout grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  position: relative;
}
.form-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
  transition: color var(--duration-sm);
}
.form-field:focus-within .form-label {
  color: var(--c-accent);
}
.form-input,
.form-textarea {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--c-text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-2) 0;
  width: 100%;
  transition: border-color var(--duration-md) var(--ease-out);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-light);
  font-weight: var(--fw-light);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-text-dark);
}
.form-textarea {
  resize: none;
  min-height: 140px;
  line-height: var(--lh-loose);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
.form-submit {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-top: var(--sp-2);
}
.form-note {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  font-weight: var(--fw-light);
  line-height: var(--lh-base);
}

/* Form success / error states */
.form-success {
  display: none;
  padding: var(--sp-5);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  text-align: center;
}
.form-success.visible { display: block; }
.form-success__title {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  margin-bottom: var(--sp-2);
}
.form-success__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  font-weight: var(--fw-light);
}
.form-error-msg {
  font-size: var(--fs-xs);
  color: #b84040;
  margin-top: 4px;
  display: none;
}
.form-field.has-error .form-input,
.form-field.has-error .form-textarea { border-color: #b84040; }
.form-field.has-error .form-error-msg { display: block; }
.form-field.has-error .form-label { color: #b84040; }

/* WhatsApp button */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-5);
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  transition: background var(--duration-md) var(--ease-out),
              border-color var(--duration-md) var(--ease-out),
              transform   var(--duration-sm);
  white-space: nowrap;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}
.btn--whatsapp:active { transform: translateY(1px); }
.btn--whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: var(--sp-2);
}
.contact-info__value {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  color: var(--c-text-dark);
}
.contact-info__value a {
  transition: color var(--duration-sm);
}
.contact-info__value a:hover { color: var(--c-accent); }
.contact-info__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  font-weight: var(--fw-light);
  margin-top: var(--sp-2);
  line-height: var(--lh-base);
}

/* Contact divider */
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
}

/* Availability pill */
.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-text-mid);
  padding: 6px var(--sp-3);
  border: 1px solid var(--c-border);
}
.availability-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fb26b;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(127, 178, 107, 0.28);
  animation: pulse-dot 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(127, 178, 107, 0.28);
  }
  45% {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(127, 178, 107, 0);
  }
  65% {
    opacity: 0.92;
    transform: scale(0.96);
    box-shadow: 0 0 0 3px rgba(127, 178, 107, 0);
  }
}

/* ── Contact responsive ───────────────────────────────────── */
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-submit {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-4);
  }
  .form-note { margin-top: 0; }
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: var(--sp-20);
  }
}

/* ============================================================
   EDITORIAL REFINEMENT — Hero, Services, Contact, Typography
   ============================================================ */

/* ── HERO: stronger contrast, left-bottom anchored ─────────── */
.hero__bg::after {
  background:
    linear-gradient(to top,  rgba(15, 13, 11, 0.82) 0%,  rgba(15, 13, 11, 0.35) 45%, transparent 75%),
    linear-gradient(to right, rgba(15, 13, 11, 0.45) 0%, transparent 60%);
}
.hero__content {
  padding-bottom: var(--sp-16);
  max-width: 680px;
}
.hero__eyebrow {
  color: var(--c-accent);
  letter-spacing: var(--ls-widest);
}
.hero__title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 32px rgba(0,0,0,0.18);
}
.hero__title em {
  color: rgba(248, 246, 242, 0.65);
  font-style: italic;
}
.hero__sub {
  font-size: var(--fs-base);
  color: rgba(248, 246, 242, 0.78);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}
/* accent the primary hero button */
.hero .btn--light {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}
.hero .btn--light:hover {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: var(--c-text-dark);
}
.hero__actions .btn-arrow {
  color: rgba(248, 246, 242, 0.6);
  letter-spacing: var(--ls-wider);
}
.hero__actions .btn-arrow:hover { color: var(--c-bg); }

/* ── TYPOGRAPHY: larger, tighter headings ───────────────────── */
.section__title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.page-hero__title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

/* ── BUTTONS: more orange presence ─────────────────────────── */
.btn--dark:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}
.btn-arrow:hover { color: var(--c-accent); }

/* ── HOMEPAGE "WHAT WE DO": editorial list layout ───────────── */
/* Remove the old card grid and replace with stacked editorial rows */
.services-grid {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  gap: 0;
  border-top: 1px solid var(--c-border);
}
.service-card {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
  background: transparent;
  position: relative;
  transition: padding-left var(--duration-md) var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--c-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--duration-md) var(--ease-out);
}
.service-card:hover { padding-left: var(--sp-3); background: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card__num {
  font-family: var(--font-serif);
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--c-accent);
  min-width: auto;
  padding-top: 0;
  opacity: 0.7;
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1.1;
  transition: color var(--duration-sm);
}
.service-card:hover .service-card__name { color: var(--c-accent); }
.service-card__desc {
  display: none; /* Hide desc in list layout — too cluttered */
}
.service-card__arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--duration-md) var(--ease-out),
              transform var(--duration-md) var(--ease-out);
  color: var(--c-accent);
  flex-shrink: 0;
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── SERVICES PAGE: tighter deep sections ───────────────────── */
.service-deep {
  padding-block: var(--sp-10);
  position: relative;
}
.service-deep__num {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.85;
  color: rgba(227, 221, 213, 0.45);
  margin-bottom: 0;
  position: absolute;
  top: var(--sp-10);
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.service-deep__content { position: relative; z-index: 1; }
.service-deep__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.service-includes__item::before {
  background: var(--c-accent);
}

/* ── CONTACT PAGE: simplified, form-first ───────────────────── */
/* Reduce visual noise — muted info panel */
.contact-info__label { color: var(--c-text-light); }
.contact-info__value {
  font-size: var(--fs-xl);
  font-family: var(--font-serif);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 1px 0 var(--c-accent);
}
.form-field:focus-within .form-label { color: var(--c-accent); }
.btn--dark#submit-btn {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  min-width: 180px;
  justify-content: center;
}
.btn--dark#submit-btn:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
}

/* Contact grid: more breathing room */
.contact-grid {
  padding-top: var(--sp-4);
}

/* FAQ questions: bolder */
.contact-page-faq dt {
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-xl));
  letter-spacing: -0.01em;
}

/* ── PORTFOLIO GRID: larger featured image ──────────────────── */
@media (min-width: 768px) {
  .portfolio-grid .portfolio-item:first-child .portfolio-item__img {
    aspect-ratio: 3/2;
  }
}
@media (min-width: 1024px) {
  .portfolio-grid .portfolio-item:first-child .portfolio-item__img {
    aspect-ratio: 16/7;
  }
}

/* ── SECTION header: more vertical space ────────────────────── */
.section__header { margin-bottom: var(--sp-12); }
.section__pretitle { margin-bottom: var(--sp-4); }

/* ── ABOUT PREVIEW image: taller on desktop ─────────────────── */
@media (min-width: 1024px) {
  .about-preview__img { aspect-ratio: 3/4; }
}

/* ── CTA BANNER: stronger accent ───────────────────────────── */
.cta-banner__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.cta-banner::before {
  background: radial-gradient(ellipse at 50% 80%, rgba(181, 97, 42, 0.18) 0%, transparent 65%);
}

/* ── MOBILE refinements ─────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero */
  .hero__title {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
    line-height: 1.0;
  }
  .hero__content { max-width: 100%; padding-bottom: var(--sp-12); }

  /* Services editorial list */
  .service-card {
    grid-template-columns: 2rem 1fr auto;
    gap: var(--sp-3);
    padding: var(--sp-4) 0;
  }
  .service-card__name { font-size: var(--fs-xl); }
  .service-card__arrow { opacity: 1; transform: translateX(0); } /* always show on mobile */

  /* Section titles */
  .section__title { font-size: 2rem; }
  .page-hero__title { font-size: 2.5rem; }
  .cta-banner__title { font-size: 2.4rem; }

  /* Service deep: hide absolute number on mobile */
  .service-deep__num { display: none; }

  /* Contact: stack tighter */
  .contact-grid { gap: var(--sp-8); }
}

/* ── HOVER: portfolio overlay always subtle on touch ─────────── */
@media (hover: none) {
  .portfolio-item__overlay,
  .project-card__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(15,13,11,0.6) 0%, transparent 55%);
  }
}

/* ── Accent on section eyebrows ─────────────────────────────── */
.section__pretitle .accent-line,
.cta-banner__eyebrow .accent-line { background: var(--c-accent); }

/* ── Footer link hover: orange ──────────────────────────────── */
.footer__link:hover { color: var(--c-accent-soft); }
.footer__email:hover { color: var(--c-accent); }


/* ============================================================
   FINAL POLISH — Form Card, Animations, Typography, Spacing
   ============================================================ */

/* ── REVEAL: calmer, more premium motion ─────────────────────
   Override the existing .reveal transition with a softer
   fade and gentler lift so movement stays nearly invisible   */
.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal--delay-1 { transition-delay: 140ms; }
.reveal--delay-2 { transition-delay: 280ms; }
.reveal--delay-3 { transition-delay: 420ms; }
.reveal--delay-4 { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── PORTFOLIO IMAGES: refined zoom (tighter, longer) ──────── */
.portfolio-item__img img,
.project-card__img img,
.project-gallery__img img,
.service-deep__img img,
.studio-intro__img img,
.team-member__img img,
.about-preview__img img {
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.portfolio-item:hover .portfolio-item__img img { transform: scale(1.05); }
.project-card:hover   .project-card__img img  { transform: scale(1.05); }
.project-gallery__img:hover img               { transform: scale(1.03); }
.service-deep__img:hover img                  { transform: scale(1.03); }
.studio-intro__img:hover img                  { transform: scale(1.03); }
.team-member__img:hover img                   { transform: scale(1.04); }
.about-preview__img:hover img                 { transform: scale(1.04); }

/* ── BUTTONS: complete transition set ────────────────────────
   Add border-color to the transition so all 3 props animate  */
.btn {
  transition: background var(--duration-md) cubic-bezier(0.22, 1, 0.36, 1),
              color       var(--duration-md) cubic-bezier(0.22, 1, 0.36, 1),
              border-color var(--duration-md) cubic-bezier(0.22, 1, 0.36, 1),
              transform   150ms ease;
}
/* .btn--dark: hover → orange (not dark bg) for premium feel */
.btn--dark {
  background: transparent;
}
.btn--dark:hover {
  background:    var(--c-accent);
  border-color:  var(--c-accent);
  color:         #fff;
  transform:     translateY(-1px);
}
.btn--accent:hover {
  background:    var(--c-text-dark);
  border-color:  var(--c-text-dark);
  transform:     translateY(-1px);
}
.btn--light:hover { transform: translateY(-1px); }
.btn:active  { transform: translateY(0) !important; }

/* Enquire button in navbar: always legible */
.navbar__link.btn.btn--dark {
  background: transparent;
  border-color: rgba(248,246,242,0.45);
  color: rgba(248,246,242,0.85);
  padding: 6px var(--sp-4);
}
.navbar__link.btn.btn--dark:hover {
  background:    var(--c-accent);
  border-color:  var(--c-accent);
  color:         #fff;
  transform:     none;
}
.navbar--solid .navbar__link.btn.btn--dark,
.navbar.scrolled .navbar__link.btn.btn--dark {
  border-color: var(--c-text-dark);
  color:        var(--c-text-dark);
}
.navbar--solid .navbar__link.btn.btn--dark:hover,
.navbar.scrolled .navbar__link.btn.btn--dark:hover {
  background:   var(--c-accent);
  border-color: var(--c-accent);
  color:        #fff;
}

/* ── CONTACT FORM CARD ──────────────────────────────────────
   A contained, elevated surface that makes the form the
   clear focal point of the page                             */
.form-card {
  background:    var(--c-surface);   /* very slight warm off-white lift */
  border:        1px solid var(--c-border);
  padding:       var(--sp-8) var(--sp-7);
  position:      relative;
  box-shadow:    0 2px 24px rgba(26, 24, 22, 0.05),
                 0 1px  4px rgba(26, 24, 22, 0.04);
}

/* Form label + input: slightly more breathing room */
.form-card .form-field {
  gap: 6px;
}
.form-card .form-label {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.form-card .form-input,
.form-card .form-textarea {
  padding-bottom: var(--sp-2);
  font-size: var(--fs-base);
}
.form-card .form-input:focus,
.form-card .form-textarea:focus {
  border-color:  var(--c-accent);
  box-shadow:    0 1px 0 var(--c-accent);
}
.form-card .form-row   { gap: var(--sp-6); }
.form-card .form-submit { margin-top: var(--sp-4); }

/* Form success state: inherit card feel */
.form-card .form-success {
  background: transparent;
  border: none;
  padding: var(--sp-10) var(--sp-4);
}

/* ── FORMAT: input select → same bottom-border style ────────── */
.form-input[type="text"],
.form-input[type="email"],
.form-input select,
select.form-input {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23b8b0a5' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: var(--sp-5);
}
select.form-input { cursor: pointer; }

/* ── TYPOGRAPHY: hierarchy sharpening ───────────────────────── */
/* Section eyebrow: use a fine line + letter spacing */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  color: var(--c-text-light);
}
.accent-line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

/* Section titles: slightly tighter leading */
.section__title,
.page-hero__title,
.cta-banner__title {
  letter-spacing: -0.028em;
}
/* Testimonial quote: more editorial size */
.testimonial__quote {
  font-size: clamp(var(--fs-xl), 2.8vw, var(--fs-3xl));
  line-height: 1.45;
  letter-spacing: -0.015em;
}

/* ── SECTION spacing: more intentional rhythm ───────────────── */
.section         { padding-block: clamp(4rem, 8vw, 6rem); }
.section--tight  { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--surface.section { padding-block: clamp(4rem, 8vw, 6rem); }

/* Pull quote: more vertical space */
.pull-quote { padding-block: clamp(4rem, 8vw, 6rem); }

/* ── CTA BANNER: accent glow accent ─────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(181,97,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SERVICE LIST ROWS: slightly taller, better touch target – */
.service-card { padding: var(--sp-6) 0; }
@media (min-width: 768px) { .service-card { padding: var(--sp-7) 0; } }

/* ── PORTFOLIO meta label: serif bump ───────────────────────── */
.portfolio-item__label {
  font-size: var(--fs-xl);
  letter-spacing: -0.015em;
}

/* ── FOOTER: slightly deeper separation from content ─────────── */
.footer { border-top: 1px solid rgba(248,246,242,0.08); }

/* ── STAT numbers: more visual weight ───────────────────────── */
.stat__num { letter-spacing: -0.04em; }
.stats-row { margin-top: var(--sp-14); }

/* =============================================================
   MOBILE POLISH (max 767px)
   ============================================================= */
@media (max-width: 767px) {
  /* Form card: full bleed on mobile with reduced padding */
  .form-card {
    padding:    var(--sp-6) var(--sp-5);
    box-shadow: 0 2px 16px rgba(26,24,22,0.06);
    /* Slightly extend past container on narrow screens */
    margin-inline: calc(var(--gutter) * -0.25);
  }
  .form-card .form-row { gap: var(--sp-5); }
  .form-card .form-submit {
    flex-direction: column;
    align-items: stretch;
  }
  .form-card .form-submit .btn {
    text-align: center;
    justify-content: center;
  }
  .form-card .form-note { font-size: 11px; }

  /* Contact info panel: reduce label size */
  .contact-info__value { font-size: var(--fs-lg); }
  .contact-grid { gap: var(--sp-10); }

  /* Tighten page hero on contact */
  .contact-page .page-hero {
    padding-top: calc(var(--sp-10) + 56px);
    padding-bottom: var(--sp-6);
  }

  /* Better spacing on service-deep sections */
  .service-deep { padding-block: var(--sp-6); gap: var(--sp-4); }
  .service-deep__title { font-size: clamp(1.6rem, 7vw, 2.5rem); }

  /* About preview: reduce gap */
  .about-preview { gap: var(--sp-5); }

  /* Testimonial: smaller quote on small phones */
  .testimonial__quote { font-size: var(--fs-lg); }

  /* Stats: uniform cell height */
  .stat { padding: var(--sp-5) var(--sp-3); }

  /* Value cards: reduce padding */
  .value-card { padding: var(--sp-4); }
  .value-card__num { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }

  /* Process steps */
  .process-step { padding: var(--sp-4) var(--sp-3); }
}

/* =============================================================
   TABLET REFINEMENTS (768–1023px)
   ============================================================= */
@media (min-width: 768px) {
  /* Form card: generous padding on wider screens */
  .form-card {
    padding: var(--sp-10) var(--sp-10);
  }
  /* Contact info panel: sticky top alignment */
  .contact-info {
    position: sticky;
    top: calc(60px + var(--sp-6));
  }
}
@media (min-width: 1024px) {
  .form-card { padding: var(--sp-12) var(--sp-12); }
}

/* ── MISC: remove any last template cues ─────────────────────
   1. Service grid (inner pages): hide border on last row
   2. Project nav arrow: orange on hover
   3. Page hero meta border: softer                           */
.service-deep:last-of-type    { border-bottom: none; }
.project-nav__name:hover      { color: var(--c-accent); }
.page-hero__meta              { border-color: rgba(26,24,22,0.08); }
.page-hero--dark .page-hero__meta { border-color: rgba(248,246,242,0.1); }

/* Smooth section—surface transitions */
.section--surface {
  transition: background var(--duration-md) var(--ease-out);
}

/* Value card accent bar: position tweak */
.value-card::before { height: 1px; }


/* ============================================================
   GENEROUS WHITESPACE — Interior Design Breathing Room
   ============================================================ */

/* ── Section vertical rhythm: expansive ─────────────────────── */
.section        { padding-block: clamp(6rem, 12vw, 9rem); }
.section--tight { padding-block: clamp(5rem, 9vw, 7rem); }
.section--surface.section { padding-block: clamp(6rem, 12vw, 9rem); }

/* ── Section header: more air between eyebrow and grid ──────── */
.section__header    { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__pretitle  { margin-bottom: var(--sp-5); }
.section__title     { margin-top: var(--sp-4); }
.section__body      { margin-top: var(--sp-5); }

/* ── Page hero: deeper padding on inner pages ───────────────── */
.page-hero {
  padding-top:    calc(clamp(5rem, 10vw, 8rem) + 60px);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.page-hero--dark { padding-bottom: clamp(5rem, 9vw, 7.5rem); }

/* ── Hero content: more floor-space ────────────────────────── */
.hero__content  { padding-bottom: clamp(4rem, 8vw, 7rem); }

/* ── Portfolio grid: wider gaps ─────────────────────────────── */
.portfolio-grid { gap: var(--sp-6); }
.portfolio-item__meta { padding-top: var(--sp-4); }

/* ── About preview: bigger gap between image and text ───────── */
.about-preview  {
  gap: clamp(3rem, 7vw, 6rem);
}
.about-preview__img { margin-bottom: 0; }

/* ── Services list (homepage): taller rows ──────────────────── */
.service-card {
  padding: var(--sp-8) 0;
}
@media (min-width: 768px) {
  .service-card { padding: var(--sp-9) 0; }
}

/* ── Stats row: more top space ───────────────────────────────── */
.stats-row          { margin-top: clamp(4rem, 8vw, 6rem); }
.stat               { padding: var(--sp-8) var(--sp-6); }

/* ── Testimonials: expand internal padding ──────────────────── */
.testimonial        { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ── CTA banner: very generous ──────────────────────────────── */
.cta-banner         { padding-block: clamp(7rem, 13vw, 10rem); }

/* ── Footer: deeper top padding ─────────────────────────────── */
.footer             { padding-top: clamp(5rem, 9vw, 7rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.footer__grid       { padding-bottom: clamp(3rem, 6vw, 5rem); gap: var(--sp-10); }
.footer__bottom     { padding-top: var(--sp-8); }

/* ── Project body (single project) ─────────────────────────── */
.project-body       { padding-block: clamp(5rem, 10vw, 8rem); gap: clamp(4rem, 8vw, 7rem); }
.project-gallery    { gap: var(--sp-5); margin-bottom: clamp(5rem, 9vw, 7rem); }
.project-nav        { padding-block: clamp(4rem, 7vw, 6rem); }

/* ── Service deep sections (services page) ──────────────────── */
.service-deep       { padding-block: clamp(5rem, 10vw, 8rem); gap: clamp(3rem, 6vw, 5rem); }
.service-includes   { margin-top: var(--sp-8); gap: var(--sp-3); }

/* ── Process steps ──────────────────────────────────────────── */
.process-step       { padding: var(--sp-8) var(--sp-7); }

/* ── Pull quote ─────────────────────────────────────────────── */
.pull-quote         { padding-block: clamp(5rem, 10vw, 8rem); }

/* ── Values grid ────────────────────────────────────────────── */
.values-grid        { gap: var(--sp-6); }
.value-card         { padding: var(--sp-8) var(--sp-7); }

/* ── Team grid ──────────────────────────────────────────────── */
.team-grid          { gap: clamp(3rem, 6vw, 5rem); }
.team-member__img   { margin-bottom: var(--sp-6); }

/* ── Contact grid ───────────────────────────────────────────── */
.contact-grid       { gap: clamp(4rem, 8vw, 7rem); padding-top: var(--sp-6); }
.contact-info       { gap: clamp(2rem, 4vw, 3rem); }

/* ── Form card: wider internal breathing room ───────────────── */
.form-card          { padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem); }
.contact-form       { gap: var(--sp-7); }
.form-row           { gap: var(--sp-7); }

/* ── Project specs sidebar ──────────────────────────────────── */
.project-spec       { padding-top: var(--sp-6); margin-bottom: var(--sp-6); }

/* ── Page hero meta items ────────────────────────────────────── */
.page-hero__meta    { gap: var(--sp-8); margin-top: var(--sp-8); padding-top: var(--sp-7); }

/* ── Filter bar (projects page) ─────────────────────────────── */
.filter-bar         { margin-bottom: clamp(3rem, 6vw, 5rem); gap: var(--sp-3); }

/* ── Container: wider on large screens ────────────────────────
   Gives text more runway and prevents cramped layouts         */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}

/* ── Mobile: keep generous but scaled ───────────────────────── */
@media (max-width: 767px) {
  .section           { padding-block: clamp(4rem, 14vw, 5.5rem); }
  .section--tight    { padding-block: clamp(3.5rem, 12vw, 4.5rem); }
  .cta-banner        { padding-block: clamp(5rem, 16vw, 6.5rem); }
  .page-hero         {
    padding-top:    calc(clamp(3.5rem, 12vw, 5rem) + 56px);
    padding-bottom: clamp(3rem, 10vw, 4.5rem);
  }
  .service-card      { padding: var(--sp-6) 0; }
  .service-deep      { padding-block: clamp(3.5rem, 12vw, 5rem); }
  .process-step      { padding: var(--sp-6) var(--sp-5); }
  .value-card        { padding: var(--sp-6) var(--sp-5); }
  .stat              { padding: var(--sp-6) var(--sp-4); }
  .pull-quote        { padding-block: clamp(3.5rem, 12vw, 5rem); }
  .team-grid         { gap: clamp(2.5rem, 10vw, 3.5rem); }
  .footer            { padding-top: clamp(4rem, 12vw, 5.5rem); }
  .form-card         {
    padding:      var(--sp-7) var(--sp-5);
    margin-inline: 0;
  }
  .contact-form      { gap: var(--sp-6); }
  .contact-grid      { gap: clamp(3rem, 10vw, 4rem); }
  .project-body      { padding-block: clamp(3rem, 10vw, 4.5rem); gap: clamp(2.5rem, 8vw, 3.5rem); }
}

/* ============================================================
   SECTION REFRESH — Studio Philosophy + Services Process
   ============================================================ */

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.philosophy-intro {
  position: relative;
  padding: var(--sp-6);
  border: 1px solid rgba(181, 97, 42, 0.22);
  background:
    linear-gradient(160deg, rgba(181, 97, 42, 0.08) 0%, rgba(181, 97, 42, 0.02) 42%, rgba(248, 246, 242, 0.85) 100%);
}

.philosophy-intro::before {
  content: "";
  position: absolute;
  inset: var(--sp-3) auto auto var(--sp-3);
  width: 44px;
  height: 1px;
  background: var(--c-accent);
}

.philosophy-intro__lead {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: var(--fw-light);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-top: var(--sp-5);
}

.philosophy-intro__body {
  margin-top: var(--sp-4);
  max-width: 34rem;
  font-size: var(--fs-base);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.philosophy-intro__note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(26, 24, 22, 0.1);
}

.philosophy-intro__note-label {
  display: inline-block;
  margin-bottom: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-accent);
}

.philosophy-intro__note-copy {
  max-width: 26rem;
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.philosophy-principles {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border);
}

.principle-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-4);
  align-items: start;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
  transition: transform var(--duration-md) var(--ease-out),
              border-color var(--duration-md) var(--ease-out);
}

.principle-item:hover {
  transform: translateX(8px);
  border-color: rgba(181, 97, 42, 0.28);
}

.principle-item__num {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(181, 97, 42, 0.75);
}

.principle-item__eyebrow {
  margin-bottom: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
}

.principle-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.principle-item__desc {
  margin-top: var(--sp-2);
  max-width: 36rem;
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.process-journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.process-journey__intro {
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
  background: rgba(248, 246, 242, 0.72);
}

.process-journey__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.process-journey__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-5);
}

.process-journey__list-item {
  padding-block: var(--sp-3);
  border-top: 1px solid var(--c-border);
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--c-border);
}

.process-stage {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-4);
  align-items: start;
}

.process-stage__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(181, 97, 42, 0.28);
  border-radius: 999px;
  background: var(--c-surface);
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  line-height: 1;
  color: var(--c-accent);
}

.process-stage__card {
  padding: var(--sp-5);
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  transition: transform var(--duration-md) var(--ease-out),
              border-color var(--duration-md) var(--ease-out),
              box-shadow var(--duration-md) var(--ease-out);
}

.process-stage:hover .process-stage__card {
  transform: translateY(-4px);
  border-color: rgba(181, 97, 42, 0.28);
  box-shadow: 0 18px 36px rgba(26, 24, 22, 0.05);
}

.process-stage__eyebrow {
  margin-bottom: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-accent);
}

.process-stage__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.process-stage__desc {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.process-stage__outcome {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
  font-size: var(--fs-sm);
  color: var(--c-text-dark);
  line-height: var(--lh-base);
}

.process-stage__outcome span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
}

@media (min-width: 768px) {
  .philosophy-layout,
  .process-journey {
    gap: var(--sp-8);
  }

  .process-stage__card {
    padding: var(--sp-6);
  }
}

@media (min-width: 1024px) {
  .philosophy-layout {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: var(--sp-10);
  }

  .process-journey {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: var(--sp-10);
  }

  .philosophy-intro,
  .process-journey__intro {
    position: sticky;
    top: calc(72px + var(--sp-5));
  }

  .process-stage:nth-child(even) .process-stage__card {
    margin-left: var(--sp-6);
  }
}

@media (max-width: 767px) {
  .philosophy-intro,
  .process-journey__intro {
    padding: var(--sp-5);
  }

  .principle-item {
    grid-template-columns: 44px 1fr;
    gap: var(--sp-3);
    padding-block: var(--sp-4);
  }

  .principle-item:hover {
    transform: none;
  }

  .process-timeline::before {
    left: 19px;
  }

  .process-stage {
    grid-template-columns: 40px 1fr;
    gap: var(--sp-3);
  }

  .process-stage__num {
    width: 40px;
    height: 40px;
    font-size: var(--fs-base);
  }

  .process-stage__card {
    padding: var(--sp-4);
  }
}

/* ============================================================
   HOME REFRESH — Complete Design Service
   ============================================================ */

.home-services {
  display: block;
}

.home-services__header {
  max-width: 36rem;
}

.home-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.home-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--sp-5);
  border: 1px solid var(--c-border);
  background: linear-gradient(180deg, rgba(248, 246, 242, 1) 0%, rgba(242, 237, 230, 0.5) 100%);
  transition: transform var(--duration-md) var(--ease-out),
              border-color var(--duration-md) var(--ease-out),
              background var(--duration-md) var(--ease-out),
              box-shadow var(--duration-md) var(--ease-out);
}

.home-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 97, 42, 0.34);
  background: linear-gradient(180deg, rgba(248, 246, 242, 1) 0%, rgba(242, 237, 230, 0.82) 100%);
  box-shadow: 0 18px 32px rgba(26, 24, 22, 0.05);
}

.home-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.home-service-card__num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: var(--fw-light);
  line-height: 1;
  color: rgba(181, 97, 42, 0.78);
}

.home-service-card__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-text-light);
}

.home-service-card__name {
  margin-top: var(--sp-4);
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: var(--fw-light);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 12ch;
}

.home-service-card__desc {
  margin-top: var(--sp-3);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
  max-width: 30rem;
}

.home-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: auto;
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--c-accent);
  transition: gap var(--duration-md) var(--ease-out),
              color var(--duration-md) var(--ease-out);
}

.home-service-card__cta svg {
  transition: transform var(--duration-md) var(--ease-out);
}

.home-service-card:hover .home-service-card__cta {
  gap: var(--sp-2);
  color: var(--c-text-dark);
}

.home-service-card:hover .home-service-card__cta svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
}

@media (min-width: 1024px) {
  .home-services__grid {
    gap: var(--sp-6);
  }
}

@media (max-width: 767px) {
  .home-service-card {
    padding: var(--sp-4);
  }

  .home-service-card__name {
    margin-top: var(--sp-4);
  }

  .home-service-card:hover {
    transform: none;
  }
}

/* ============================================================
   INTERIOR STUDIO REFINEMENT — Monochrome Editorial Pass
   ============================================================ */

:root {
  --c-bg: #f7f4ee;
  --c-surface: #f0ece4;
  --c-border: rgba(17, 17, 17, 0.1);
  --c-text-dark: #111111;
  --c-text-mid: #5f594f;
  --c-text-light: #8d8578;
  --c-accent: #111111;
  --c-accent-soft: #f0ece4;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --fs-3xl: 2.875rem;
  --fs-4xl: 4.25rem;
  --fs-5xl: 5.75rem;
  --fs-6xl: 7.25rem;
  --max-width: 1320px;
}

body {
  background: var(--c-bg);
  color: var(--c-text-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.01em;
}

::selection {
  background: rgba(17, 17, 17, 0.12);
  color: var(--c-text-dark);
}

:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.3);
  outline-offset: 3px;
}

.section {
  padding-block: clamp(7rem, 11vw, 11rem);
}

.section--tight {
  padding-block: clamp(5.75rem, 8vw, 8.5rem);
}

.section--surface {
  background: linear-gradient(180deg, rgba(240, 236, 228, 0.82) 0%, rgba(247, 244, 238, 0.98) 100%);
}

.section__header,
.section__header--center {
  margin-bottom: clamp(4rem, 6vw, 6rem);
}

.section__pretitle {
  margin-bottom: var(--sp-5);
}

.eyebrow {
  gap: var(--sp-3);
  color: var(--c-text-light);
}

.accent-line {
  width: 2.75rem;
  background: rgba(17, 17, 17, 0.16);
}

.section__title,
.page-hero__title,
.cta-banner__title,
.hero__title,
.service-deep__title,
.home-service-card__name,
.project-card__name,
.portfolio-item__label,
.studio-intro__lead,
.pull-quote__text,
.testimonial__quote,
.principle-item__title,
.process-stage__title {
  font-family: var(--font-serif);
  font-weight: var(--fw-light);
  letter-spacing: -0.04em;
}

.hero__title {
  font-size: clamp(4rem, 9vw, 7.4rem);
  line-height: 0.88;
  max-width: 11ch;
  margin-bottom: var(--sp-5);
  text-shadow: none;
}

.hero__title em {
  color: rgba(247, 244, 238, 0.72);
}

.hero__bg::after {
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.12) 0%, rgba(17, 17, 17, 0.26) 35%, rgba(17, 17, 17, 0.82) 100%),
    linear-gradient(to right, rgba(17, 17, 17, 0.42) 0%, transparent 52%);
}

.hero__content {
  max-width: 58rem;
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hero__eyebrow,
.hero__actions .btn-arrow {
  color: rgba(247, 244, 238, 0.72) !important;
}

.hero__sub {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(247, 244, 238, 0.76);
}

.section__title {
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.94;
  max-width: 12ch;
}

#testimonials-title {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.testimonials-title__line {
  display: inline-block;
  white-space: nowrap;
}

.page-hero {
  padding-top: calc(clamp(6rem, 10vw, 9rem) + 60px);
  padding-bottom: clamp(4.75rem, 7vw, 7rem);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.page-hero__title {
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.92;
}

.page-hero__sub,
.section__body,
.project-body__text,
.service-deep__body,
.home-service-card__desc,
.principle-item__desc,
.process-stage__desc,
.process-journey__list-item,
.philosophy-intro__body,
.philosophy-intro__note-copy,
.contact-info__sub,
.form-note {
  color: var(--c-text-mid);
  line-height: 1.85;
}

.page-hero__breadcrumb a:hover,
.project-nav__name:hover,
.contact-info__value a:hover,
.btn-arrow:hover {
  color: var(--c-text-dark);
}

.page-hero--dark .page-hero__breadcrumb,
.page-hero--dark .page-hero__breadcrumb-sep {
  color: rgba(247, 244, 238, 0.5);
}

.page-hero--dark .page-hero__breadcrumb a:hover,
.footer__email:hover {
  color: rgba(247, 244, 238, 0.82);
}

.navbar.scrolled,
.navbar--solid {
  background: rgba(247, 244, 238, 0.92);
  box-shadow: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.navbar__link::after {
  background: rgba(17, 17, 17, 0.6);
}

.mobile-menu {
  background: rgba(17, 17, 17, 0.98);
}

.mobile-menu__link:hover,
.footer__link:hover,
.footer__legal-link:hover {
  color: rgba(247, 244, 238, 0.78);
}

.btn {
  padding: 0.95rem 2rem;
  border-width: 1px;
}

.btn--dark {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--c-text-dark);
}

.btn--dark:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
  color: var(--c-bg);
  transform: translateY(-1px);
}

.btn--light {
  background: transparent;
  border-color: rgba(247, 244, 238, 0.42);
  color: var(--c-bg);
}

.btn--light:hover {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: var(--c-text-dark);
}

.btn--accent {
  background: var(--c-bg);
  border-color: var(--c-bg);
  color: var(--c-text-dark);
}

.btn--accent:hover {
  background: transparent;
  border-color: rgba(247, 244, 238, 0.4);
  color: var(--c-bg);
}

.navbar__link.btn.btn--dark {
  border-color: rgba(247, 244, 238, 0.34);
  color: rgba(247, 244, 238, 0.88);
}

.navbar--solid .navbar__link.btn.btn--dark,
.navbar.scrolled .navbar__link.btn.btn--dark {
  border-color: rgba(17, 17, 17, 0.14);
  color: var(--c-text-dark);
}

.navbar--solid .navbar__link.btn.btn--dark:hover,
.navbar.scrolled .navbar__link.btn.btn--dark:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
  color: var(--c-bg);
}

.cta-banner {
  background: #111111;
  padding-block: clamp(7.5rem, 12vw, 10.5rem);
}

.cta-banner::before,
.cta-banner::after {
  background: radial-gradient(ellipse at center, rgba(247, 244, 238, 0.08) 0%, transparent 72%);
}

.cta-banner__eyebrow,
.cta-banner__sub {
  color: rgba(247, 244, 238, 0.7);
}

.cta-banner__title {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.cta-banner__title em,
.page-hero--dark .page-hero__title em {
  color: rgba(247, 244, 238, 0.58);
}

.portfolio-grid,
.projects-grid {
  gap: var(--sp-8);
}

.portfolio-item__overlay,
.project-card__overlay {
  background: linear-gradient(to top, rgba(17, 17, 17, 0.64) 0%, transparent 58%);
}

.portfolio-item__meta,
.project-card__body {
  align-items: flex-start;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
}

.portfolio-item__label,
.project-card__name {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.portfolio-item__loc,
.project-card__loc,
.team-member__role,
.testimonial__role,
.process-stage__eyebrow,
.philosophy-intro__note-label {
  color: var(--c-text-light);
}

.about-preview {
  gap: clamp(4rem, 8vw, 7rem);
  align-items: start;
}

.about-preview__badge {
  right: auto;
  left: var(--sp-6);
  bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(10px);
}

.about-preview__badge-num {
  color: var(--c-text-dark);
}

.stats-row {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  gap: 0;
}

.stat {
  background: transparent;
  padding: var(--sp-8) var(--sp-5);
  border-right: 1px solid rgba(17, 17, 17, 0.07);
}

.stat:last-child {
  border-right: none;
}

.stat__num {
  font-size: clamp(3.2rem, 5vw, 5rem);
  letter-spacing: -0.05em;
}

.testimonial {
  max-width: 52rem;
}

.testimonial__quote {
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.28;
  font-style: normal;
}

.testimonials-nav__dot.active {
  background: var(--c-text-dark);
}

.form-card,
.value-card,
.process-stage__card,
.philosophy-intro,
.process-journey__intro,
.home-service-card {
  box-shadow: none;
}

.form-card,
.process-stage__card,
.philosophy-intro,
.process-journey__intro {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.form-card {
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.25rem);
}

.form-card .form-input:focus,
.form-card .form-textarea:focus,
.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-text-dark);
  box-shadow: none;
}

.form-field:focus-within .form-label,
.form-card .form-label,
.contact-info__label {
  color: var(--c-text-light);
}

.btn--dark#submit-btn {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
  color: var(--c-bg);
}

.btn--dark#submit-btn:hover {
  background: transparent;
  color: var(--c-text-dark);
}

.btn--whatsapp {
  background: transparent;
  color: var(--c-text-dark);
  border-color: rgba(17, 17, 17, 0.14);
}

.btn--whatsapp:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
  color: var(--c-bg);
}

.availability-pill {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.24);
}

.availability-pill__dot {
  background: #7fb26b;
  box-shadow: 0 0 0 0 rgba(127, 178, 107, 0.28);
  animation: pulse-dot 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.philosophy-intro,
.process-journey__intro {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.philosophy-intro::before,
.process-timeline::before,
.contact-divider,
.divider {
  background: rgba(17, 17, 17, 0.12);
}

.principle-item:hover {
  transform: translateX(4px);
  border-color: rgba(17, 17, 17, 0.14);
}

.principle-item__num,
.value-card__num,
.home-service-card__num,
.service-deep__num,
.pull-quote__mark {
  color: rgba(17, 17, 17, 0.24);
}

.process-stage__num {
  border-color: rgba(17, 17, 17, 0.14);
  background: var(--c-bg);
  color: var(--c-text-dark);
}

.process-stage:hover .process-stage__card {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: none;
}

.pull-quote {
  padding-block: clamp(5rem, 10vw, 8.5rem);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.value-card {
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.14);
}

.value-card:hover {
  border-color: rgba(17, 17, 17, 0.14);
}

.value-card::before {
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
}

.team-grid {
  gap: clamp(3rem, 6vw, 5.5rem);
}

.home-services__header {
  max-width: 44rem;
}

.home-services__grid {
  gap: var(--sp-6);
}

.home-service-card {
  min-height: 19rem;
  padding: clamp(2.25rem, 4vw, 3.25rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.12);
}

.home-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.2);
}

.home-service-card__name {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  max-width: 11ch;
}

.home-service-card__cta,
.home-service-card:hover .home-service-card__cta {
  color: var(--c-text-dark);
}

.service-includes__item::before,
.service-card::before {
  background: rgba(17, 17, 17, 0.18);
}

.filter-btn:hover,
.filter-btn.active,
.testimonials-arrows button:hover {
  background: var(--c-text-dark);
  border-color: var(--c-text-dark);
  color: var(--c-bg);
}

.portfolio-item__img,
.project-card__img,
.about-preview__img,
.studio-intro__img,
.project-hero-img,
.project-gallery__img,
.service-deep__img,
.team-member__img {
  background-color: #ece7de;
}

@media (min-width: 1024px) {
  .portfolio-grid,
  .projects-grid,
  .home-services__grid,
  .team-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .portfolio-grid .portfolio-item:first-child {
    grid-column: 1 / span 7;
  }

  .portfolio-grid .portfolio-item:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: var(--sp-10);
  }

  .portfolio-grid .portfolio-item:nth-child(3) {
    grid-column: 2 / span 4;
  }

  .portfolio-grid .portfolio-item:nth-child(4) {
    grid-column: 7 / span 6;
    margin-top: calc(var(--sp-4) * -1);
  }

  .projects-grid .project-card {
    grid-column: span 4;
  }

  .projects-grid .project-card--featured {
    grid-column: 1 / span 7;
  }

  .projects-grid .project-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: var(--sp-8);
  }

  .projects-grid .project-card:nth-child(3) {
    grid-column: 2 / span 4;
  }

  .projects-grid .project-card:nth-child(4) {
    grid-column: 7 / span 6;
    margin-top: calc(var(--sp-3) * -1);
  }

  .projects-grid .project-card:nth-child(5) {
    grid-column: 1 / span 5;
  }

  .projects-grid .project-card:nth-child(6) {
    grid-column: 6 / span 4;
    margin-top: var(--sp-6);
  }

  .projects-grid .project-card:nth-child(7) {
    grid-column: 10 / span 3;
  }

  .home-service-card:nth-child(1) {
    grid-column: 1 / span 7;
  }

  .home-service-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: var(--sp-10);
  }

  .home-service-card:nth-child(3) {
    grid-column: 2 / span 5;
  }

  .home-service-card:nth-child(4) {
    grid-column: 7 / span 6;
    margin-top: var(--sp-4);
  }

  .team-member:nth-child(1) {
    grid-column: 1 / span 4;
  }

  .team-member:nth-child(2) {
    grid-column: 5 / span 4;
    margin-top: var(--sp-10);
  }

  .team-member:nth-child(3) {
    grid-column: 9 / span 4;
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: clamp(4.5rem, 14vw, 6rem);
  }

  .section--tight {
    padding-block: clamp(4rem, 12vw, 5rem);
  }

  .hero__title {
    font-size: clamp(3.3rem, 15vw, 4.9rem);
  }

  .section__title,
  .page-hero__title,
  .cta-banner__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .home-service-card:hover,
  .process-stage:hover .process-stage__card,
  .principle-item:hover {
    transform: none;
  }
}

/* ============================================================
   NAVBAR REFINEMENT — Minimal Split Layout
   ============================================================ */
.navbar,
.navbar.scrolled,
.navbar--solid {
  padding-block: clamp(0.9rem, 1.8vw, 1.15rem);
}

.navbar.scrolled,
.navbar--solid {
  background: rgba(247, 244, 238, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: none;
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
}

.navbar__logo {
  grid-column: 2;
  justify-self: center;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(247, 244, 238, 0.96);
}

.navbar.scrolled .navbar__logo,
.navbar--solid .navbar__logo {
  color: rgba(17, 17, 17, 0.94);
}

.navbar__nav {
  display: none;
}

.navbar__nav--left,
.navbar__nav--right {
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.navbar__item {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__item--dropdown {
  padding-bottom: 1rem;
  margin-bottom: -1rem;
  isolation: isolate;
}

.navbar__item--dropdown::after {
  content: '';
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 1rem;
}

.navbar__nav--left {
  grid-column: 1;
  justify-self: start;
}

.navbar__nav--right {
  grid-column: 3;
  justify-self: end;
}

.navbar__link {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.82);
}

.navbar__link::after {
  left: 50%;
  bottom: -0.4rem;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.45;
}

.navbar__link:hover,
.navbar__link[aria-current="page"] {
  color: rgba(247, 244, 238, 0.96);
}

.navbar__link:hover::after,
.navbar__link[aria-current="page"]::after {
  width: 100%;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  display: grid;
  gap: 0.35rem;
  min-width: 11.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 244, 238, 0.92) 100%);
  box-shadow:
    0 1.1rem 2.5rem rgba(26, 24, 22, 0.12),
    0 0.2rem 0.7rem rgba(26, 24, 22, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateX(-50%) translateY(-0.15rem) scale(0.96);
  transform-origin: top center;
  filter: blur(6px);
  transition: opacity 280ms var(--ease-out),
              transform 380ms var(--ease-out),
              filter 280ms var(--ease-out),
              box-shadow 380ms var(--ease-out);
}

.navbar__dropdown::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.navbar__dropdown::after {
  content: '';
  position: absolute;
  top: -0.42rem;
  left: 50%;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(252, 251, 248, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__item--dropdown:focus-within .navbar__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  filter: blur(0);
  box-shadow:
    0 1.35rem 2.8rem rgba(26, 24, 22, 0.14),
    0 0.35rem 1rem rgba(26, 24, 22, 0.08);
}

.navbar__dropdown-link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  font-size: 0.7rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.7);
  opacity: 0;
  background: rgba(255, 255, 255, 0);
  transform: translateY(0.45rem);
  transition: color var(--duration-sm) var(--ease-out),
              transform 320ms var(--ease-out),
              opacity 220ms var(--ease-out),
              background 220ms var(--ease-out);
}

.navbar__dropdown-link:nth-child(1) { transition-delay: 0ms; }
.navbar__dropdown-link:nth-child(2) { transition-delay: 0ms; }
.navbar__dropdown-link:nth-child(3) { transition-delay: 0ms; }
.navbar__dropdown-link:nth-child(4) { transition-delay: 0ms; }
.navbar__dropdown-link:nth-child(5) { transition-delay: 0ms; }

.navbar__item--dropdown:hover .navbar__dropdown-link,
.navbar__item--dropdown:focus-within .navbar__dropdown-link {
  opacity: 1;
  transform: translateY(0);
}

.navbar__item--dropdown:hover .navbar__dropdown-link:nth-child(1),
.navbar__item--dropdown:focus-within .navbar__dropdown-link:nth-child(1) { transition-delay: 60ms; }

.navbar__item--dropdown:hover .navbar__dropdown-link:nth-child(2),
.navbar__item--dropdown:focus-within .navbar__dropdown-link:nth-child(2) { transition-delay: 95ms; }

.navbar__item--dropdown:hover .navbar__dropdown-link:nth-child(3),
.navbar__item--dropdown:focus-within .navbar__dropdown-link:nth-child(3) { transition-delay: 130ms; }

.navbar__item--dropdown:hover .navbar__dropdown-link:nth-child(4),
.navbar__item--dropdown:focus-within .navbar__dropdown-link:nth-child(4) { transition-delay: 165ms; }

.navbar__item--dropdown:hover .navbar__dropdown-link:nth-child(5),
.navbar__item--dropdown:focus-within .navbar__dropdown-link:nth-child(5) { transition-delay: 200ms; }

.navbar__dropdown-link:hover,
.navbar__dropdown-link:focus-visible {
  color: rgba(17, 17, 17, 0.96);
  background: rgba(255, 255, 255, 0.68);
  transform: translateX(0.16rem);
}

.navbar.scrolled .navbar__link,
.navbar--solid .navbar__link {
  color: rgba(17, 17, 17, 0.74);
}

.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link[aria-current="page"],
.navbar--solid .navbar__link:hover,
.navbar--solid .navbar__link[aria-current="page"] {
  color: rgba(17, 17, 17, 0.92);
}

.navbar__hamburger {
  grid-column: 3;
  justify-self: end;
}

@media (min-width: 768px) {
  .navbar__nav--left,
  .navbar__nav--right {
    display: flex;
  }

  .navbar__hamburger {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar:has(.navbar__hamburger.open) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .navbar:has(.navbar__hamburger.open) .navbar__logo {
    color: rgba(247, 244, 238, 0.96) !important;
  }

  .navbar__inner {
    column-gap: var(--sp-2);
  }

  .navbar__dropdown {
    display: none;
  }

  .navbar__logo {
    font-size: 0.72rem;
    font-weight: var(--fw-regular);
    letter-spacing: 0.2em;
  }

  .navbar__hamburger {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(247, 244, 238, 0.14);
    border-radius: 999px;
    background: rgba(247, 244, 238, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background var(--duration-md) var(--ease-out),
                border-color var(--duration-md) var(--ease-out),
                transform var(--duration-md) var(--ease-out);
  }

  .navbar.scrolled .navbar__hamburger,
  .navbar--solid .navbar__hamburger {
    border-color: rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.68);
  }

  .navbar__hamburger span {
    position: absolute;
    width: 0.95rem;
    height: 1px;
    border-radius: 999px;
    transform-origin: center;
  }

  .navbar__hamburger span:nth-child(1) { transform: translateY(-5px); }
  .navbar__hamburger span:nth-child(2) { transform: translateY(0); }
  .navbar__hamburger span:nth-child(3) { transform: translateY(5px); }

  .navbar__hamburger.open {
    transform: rotate(90deg);
  }

  .navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg); }
  .navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
  .navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

  .mobile-menu {
    inset: 0;
    padding:
      calc(5.75rem + env(safe-area-inset-top))
      var(--sp-5)
      calc(3rem + env(safe-area-inset-bottom));
    justify-content: center;
    background:
      radial-gradient(circle at top, rgba(196, 178, 154, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(30, 27, 24, 0.82) 0%, rgba(20, 18, 16, 0.94) 100%);
    opacity: 0;
    transform: translateY(-0.9rem);
    transition:
      opacity 360ms var(--ease-out),
      transform 480ms var(--ease-out);
  }

  .mobile-menu::before {
    content: '';
    position: absolute;
    inset: 1.15rem;
    border: 1px solid rgba(247, 244, 238, 0.08);
    border-radius: 1.75rem;
    pointer-events: none;
  }

  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav {
    width: min(100%, 20rem);
  }

  .mobile-menu nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: clamp(1.6rem, 4vw, 2.4rem) !important;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu nav li {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 320ms var(--ease-out),
      transform 420ms var(--ease-out);
  }

  .mobile-menu.open nav li {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.open nav li:nth-child(1) { transition-delay: 70ms; }
  .mobile-menu.open nav li:nth-child(2) { transition-delay: 120ms; }
  .mobile-menu.open nav li:nth-child(3) { transition-delay: 170ms; }
  .mobile-menu.open nav li:nth-child(4) { transition-delay: 220ms; }

  .mobile-menu__link {
    display: inline-block;
    width: 100%;
    font-size: clamp(2.05rem, 8vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.04;
    color: rgba(247, 244, 238, 0.92);
    transition:
      color var(--duration-sm) var(--ease-out),
      transform 260ms var(--ease-out),
      opacity 260ms var(--ease-out);
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:focus-visible {
    color: var(--c-white);
    transform: translateY(-1px);
  }

  .mobile-menu__footer {
    left: 50%;
    bottom: calc(1.8rem + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(0.6rem);
    font-size: 0.72rem;
    font-weight: var(--fw-light);
    letter-spacing: 0.14em;
    color: rgba(247, 244, 238, 0.46);
    opacity: 0;
    transition:
      opacity 320ms var(--ease-out),
      transform 420ms var(--ease-out);
  }

  .mobile-menu.open .mobile-menu__footer {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================================
   PROJECTS / GALLERY LAYOUT REFINEMENT
   ============================================================ */
.projects-grid {
  gap: clamp(2rem, 4vw, 3.25rem);
}

.projects-grid .project-card,
.projects-grid .project-card:nth-child(2),
.projects-grid .project-card:nth-child(3),
.projects-grid .project-card:nth-child(4),
.projects-grid .project-card:nth-child(5),
.projects-grid .project-card:nth-child(6),
.projects-grid .project-card:nth-child(7) {
  grid-column: auto;
  margin-top: 0;
}

.projects-grid .project-card__img {
  aspect-ratio: 4 / 3;
}

.project-gallery {
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
}

.project-gallery__img {
  aspect-ratio: 4 / 3;
}

.project-gallery__img--wide {
  aspect-ratio: 16 / 10;
}

.project-gallery__img--portrait {
  aspect-ratio: 4 / 5;
}

.project-gallery__img--landscape {
  aspect-ratio: 5 / 4;
}

.project-gallery__img--compact {
  aspect-ratio: 1 / 1.08;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .project-gallery__img--wide {
    grid-column: 1 / -1;
  }

  .project-gallery__img--portrait {
    grid-column: span 2;
  }

  .project-gallery__img--compact {
    grid-column: span 3;
  }

  .project-gallery__img--landscape {
    grid-column: 2 / span 4;
    margin-top: calc(var(--sp-2) * -1);
  }

  .project-gallery__img--offset {
    margin-top: var(--sp-6);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .project-gallery__img--wide {
    grid-column: 1 / span 8;
  }

  .project-gallery__img--portrait {
    grid-column: span 3;
  }

  .project-gallery__img--compact {
    grid-column: span 4;
  }

  .project-gallery__img--landscape {
    grid-column: 5 / span 6;
    margin-top: calc(var(--sp-4) * -1);
  }

  .project-gallery__img:nth-child(2) {
    grid-column: 10 / span 3;
    margin-top: var(--sp-10);
  }

  .project-gallery__img:nth-child(3) {
    grid-column: 1 / span 4;
  }

  .project-gallery__img:nth-child(5) {
    grid-column: 2 / span 3;
    margin-top: var(--sp-8);
  }

  .project-gallery__img:nth-child(6) {
    grid-column: 9 / span 4;
    margin-top: var(--sp-4);
  }
}

/* ============================================================
   Footer Refresh
   ============================================================ */

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(181, 97, 42, 0.2) 0%, transparent 28%),
    linear-gradient(145deg, #1b1612 0%, #120f0c 55%, #0f0c09 100%);
  color: #f6ede3;
  border-top: 1px solid rgba(246, 237, 227, 0.08);
  padding-block: clamp(3.4rem, 7vw, 5rem);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 237, 227, 0.03) 0%, transparent 35%),
    linear-gradient(180deg, transparent 0%, rgba(246, 237, 227, 0.02) 100%);
  pointer-events: none;
}

.footer__shell {
  position: relative;
  z-index: 1;
}

.footer__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.9rem, 4vw, 3.2rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(246, 237, 227, 0.1);
}

.footer__brand-lockup {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}

.footer__mark {
  position: relative;
  width: clamp(3.6rem, 7vw, 4.75rem);
  height: clamp(3.6rem, 7vw, 4.75rem);
}

.footer__mark span {
  position: absolute;
  background: rgba(246, 237, 227, 0.96);
}

.footer__mark span:nth-child(1) {
  inset: 18% auto 18% 0;
  width: 16%;
  border-radius: 999px;
}

.footer__mark span:nth-child(2) {
  inset: 18% auto 18% 24%;
  width: 16%;
  border-radius: 999px;
}

.footer__mark span:nth-child(3) {
  top: 10%;
  left: 50%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
}

.footer__mark span:nth-child(4) {
  left: 49%;
  bottom: 19%;
  width: 36%;
  height: 17%;
  border-radius: 999px;
  transform: rotate(42deg);
  transform-origin: left center;
}

.footer__brand-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.footer__brand-tagline {
  margin-top: var(--sp-3);
  max-width: 30rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-light);
  line-height: 1.75;
  color: rgba(246, 237, 227, 0.68);
}

.footer__intro {
  max-width: 44rem;
}

.footer__eyebrow {
  margin: 0 0 var(--sp-3);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 237, 227, 0.52);
}

.footer__headline {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: var(--fw-light);
  letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 13ch;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  margin-top: var(--sp-5);
  padding-bottom: 0.35rem;
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  color: #f6ede3;
  border-bottom: 1px solid rgba(246, 237, 227, 0.8);
  transition:
    color var(--duration-sm),
    border-color var(--duration-sm),
    transform var(--duration-sm);
}

.footer__cta:hover {
  color: rgba(246, 237, 227, 0.78);
  border-color: rgba(246, 237, 227, 0.45);
  transform: translateY(-1px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  padding-top: clamp(1.8rem, 4vw, 2.75rem);
  padding-bottom: 0;
  border-bottom: 0;
}

.footer__panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(246, 237, 227, 0.08);
}

.footer__col-title {
  margin-bottom: var(--sp-2);
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 237, 227, 0.42);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__link,
.footer__email,
.footer__text,
.footer__address,
.footer__meta,
.footer__copy,
.footer__bottom-note {
  color: rgba(246, 237, 227, 0.72);
}

.footer__link,
.footer__email,
.footer__text {
  width: fit-content;
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer__link--large {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  letter-spacing: -0.02em;
}

.footer__link,
.footer__email {
  transition: color var(--duration-sm), opacity var(--duration-sm);
}

.footer__link:hover,
.footer__email:hover {
  color: #f6ede3;
}

.footer__text {
  opacity: 0.78;
}

.footer__address,
.footer__meta {
  max-width: 18rem;
  font-size: 0.98rem;
  font-style: normal;
  line-height: 1.8;
}

.footer__meta {
  margin-top: var(--sp-2);
  color: rgba(246, 237, 227, 0.48);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
  padding-top: clamp(1.35rem, 2.2vw, 1.75rem);
  border-top: 1px solid rgba(246, 237, 227, 0.08);
}

.footer__copy,
.footer__bottom-note {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__copy {
  color: rgba(246, 237, 227, 0.42);
}

.footer__bottom-note {
  color: rgba(246, 237, 227, 0.32);
}

@media (min-width: 768px) {
  .footer__hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: end;
  }

  .footer__brand-lockup {
    grid-template-columns: auto 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--sp-8);
    row-gap: var(--sp-7);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 767px) {
  .footer {
    padding-block: clamp(2.8rem, 10vw, 3.75rem);
  }

  .footer__headline {
    max-width: 14ch;
  }

  .footer__copy,
  .footer__bottom-note {
    text-transform: none;
    letter-spacing: 0.03em;
  }
}

/* ── Hero layout override: centered copy ─────────────────── */
.hero {
  --hero-nav-offset: clamp(5.25rem, 8vw, 6.75rem);
  display: grid;
  min-height: 100svh;
  align-items: stretch;
}

.hero__content {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  max-width: 52rem;
  min-height: calc(100svh - var(--hero-nav-offset));
  margin-inline: auto;
  padding-top: var(--hero-nav-offset);
  padding-bottom: 0;
}

.hero__title,
.hero__sub {
  margin-inline: auto;
}

.hero__sub {
  max-width: 36rem;
}

.hero__actions {
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero {
    --hero-nav-offset: clamp(4.5rem, 16vw, 5.75rem);
  }

  .hero__content {
    max-width: 100%;
    min-height: calc(100svh - var(--hero-nav-offset));
    padding-top: var(--hero-nav-offset);
  }

  .hero__actions {
    justify-content: center;
    align-items: center;
  }
}

/* ── Studio philosophy redesign ──────────────────────────── */
.studio-philosophy {
  position: relative;
}

.studio-philosophy .container {
  position: relative;
}

.studio-philosophy__header {
  max-width: 30rem;
}

.studio-philosophy .philosophy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: start;
}

.studio-philosophy .philosophy-intro {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.studio-philosophy .philosophy-intro::before {
  content: none;
}

.studio-philosophy .philosophy-intro__lead {
  max-width: 14ch;
  margin-top: 0;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.studio-philosophy .philosophy-intro__body {
  max-width: 31rem;
  margin-top: var(--sp-3);
  font-size: var(--fs-base);
}

.studio-philosophy .philosophy-intro__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-2);
  align-items: baseline;
  max-width: 28rem;
  margin-top: var(--sp-4);
  padding-top: 0;
  border-top: 0;
}

.studio-philosophy .philosophy-intro__note-label {
  margin-bottom: 0;
  color: var(--c-text-light);
}

.studio-philosophy .philosophy-intro__note-copy {
  max-width: none;
  font-size: var(--fs-sm);
}

.studio-philosophy .philosophy-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 0;
}

.studio-philosophy .principle-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: var(--sp-2);
  align-items: start;
  padding: 0;
  border-bottom: 0;
  transition: none;
}

.studio-philosophy .principle-item:hover {
  transform: none;
  border-color: transparent;
}

.studio-philosophy .principle-item__num {
  padding-top: 0.2em;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.34);
}

.studio-philosophy .principle-item__content {
  max-width: 23rem;
}

.studio-philosophy .principle-item__eyebrow {
  margin-bottom: 0.35rem;
  letter-spacing: 0.14em;
}

.studio-philosophy .principle-item__title {
  max-width: 16ch;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.studio-philosophy .principle-item__desc {
  max-width: 24rem;
  margin-top: 0.5rem;
  font-size: var(--fs-sm);
}

@media (min-width: 1024px) {
  .studio-philosophy .philosophy-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(3rem, 5vw, 5rem);
  }

  .studio-philosophy .philosophy-intro {
    position: sticky;
    top: calc(72px + var(--sp-6));
  }

  .studio-philosophy .philosophy-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.75rem, 3vw, 2.5rem);
    row-gap: clamp(2rem, 3vw, 2.75rem);
    padding-top: 0.35rem;
  }
}

@media (max-width: 767px) {
  .studio-philosophy .philosophy-layout {
    gap: var(--sp-6);
  }

  .studio-philosophy .philosophy-intro__lead {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .studio-philosophy .philosophy-intro__note {
    grid-template-columns: 1fr;
    gap: var(--sp-1);
  }

  .studio-philosophy .principle-item {
    grid-template-columns: 1.75rem 1fr;
    gap: var(--sp-2);
  }

  .studio-philosophy .principle-item__title {
    font-size: clamp(1.28rem, 6vw, 1.6rem);
  }

  .studio-philosophy .principle-item__desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .studio-transition__figure {
    gap: var(--sp-2);
  }

  .studio-transition__caption {
    font-size: 1rem;
  }
}

/* ── Studio founder layout ───────────────────────────────── */
.team-grid--solo {
  grid-template-columns: 1fr;
  max-width: 60rem;
  margin: 0 auto;
}

.team-member--solo {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.team-member--solo .team-member__img {
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
}

.team-member--solo .team-member__content {
  max-width: 32rem;
}

.team-member--solo .team-member__name {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.35rem;
}

.team-member--solo .team-member__role {
  margin-bottom: var(--sp-4);
}

.team-member--solo .team-member__bio + .team-member__bio {
  margin-top: var(--sp-3);
}

@media (min-width: 900px) {
  .team-member--solo {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }
}

/* ── Studio founder to stats spacing ─────────────────────── */
.studio-founder-section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.studio-stats-section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.studio-stats-section .stats-row {
  margin-top: 0;
}

/* ── Services fees redesign ──────────────────────────────── */
.services-fees__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 68rem;
  margin: 0 auto;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.services-fees__intro {
  max-width: 24rem;
}

.services-fees__intro .section__pretitle {
  margin-bottom: var(--sp-3);
}

.services-fees__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  font-weight: var(--fw-light);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.services-fees__title em {
  font-style: italic;
  color: rgba(17, 17, 17, 0.58);
}

.services-fees__content {
  max-width: 34rem;
}

.services-fees__lead {
  max-width: 24ch;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: var(--fw-light);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.services-fees__body {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.services-fees__body p,
.services-fees__note {
  font-size: var(--fs-base);
  color: var(--c-text-mid);
  line-height: var(--lh-loose);
}

.services-fees__note {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.services-fees__action {
  align-self: end;
}

@media (min-width: 1024px) {
  .services-fees__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) auto;
    column-gap: clamp(2.5rem, 4vw, 4rem);
    align-items: start;
  }
}

@media (max-width: 767px) {
  .services-fees__layout {
    gap: var(--sp-5);
    padding-top: var(--sp-5);
  }

  .services-fees__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .services-fees__lead {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
}

.service-deep__preview,
.service-deep__toggle,
.service-includes__label,
.process-stage__toggle {
  display: none;
}

@media (min-width: 1024px) {
  .service-deep--text-first .service-deep__content {
    order: 1;
  }

  .service-deep--text-first .service-deep__img {
    order: 2;
  }
}

@media (max-width: 767px) {
  .services-deep-list {
    display: grid;
    gap: var(--sp-4);
  }

  .services-deep-list .service-deep,
  .services-deep-list .service-deep:last-of-type {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    padding: var(--sp-4);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(240, 236, 228, 0.7) 100%);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.04);
  }

  .services-deep-list .service-deep.is-expanded {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(240, 236, 228, 0.86) 100%);
  }

  .service-deep__img {
    order: -1;
    aspect-ratio: 16 / 10;
    border-radius: 1.1rem;
  }

  .service-deep__summary {
    display: grid;
    gap: var(--sp-3);
  }

  .service-deep__summary-top {
    display: grid;
    gap: var(--sp-2);
  }

  .service-deep__summary .service-deep__num {
    display: block;
    position: static;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-light);
    line-height: 1;
  }

  .service-deep__title {
    margin: 0;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 0.98;
    max-width: 10ch;
  }

  .service-deep__preview {
    display: block;
    max-width: 28ch;
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.65;
  }

  .service-deep__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    width: 100%;
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--c-text-dark);
  }

  .service-deep__toggle:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.3);
    outline-offset: 6px;
  }

  .service-deep__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 999px;
    flex-shrink: 0;
  }

  .service-deep__toggle-icon svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--duration-md) var(--ease-out);
  }

  .service-deep.is-expanded .service-deep__toggle-icon svg {
    transform: rotate(180deg);
  }

  .service-deep__details {
    display: grid;
    gap: var(--sp-5);
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .service-deep__details[hidden] {
    display: none;
  }

  .service-deep__body {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .service-includes-wrap {
    display: grid;
    gap: var(--sp-3);
  }

  .service-includes__label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--c-text-light);
  }

  .service-includes {
    margin-top: 0;
    gap: var(--sp-2);
  }

  .service-includes__item {
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .service-includes__item::before {
    width: 14px;
    margin-top: 0.72em;
    opacity: 0.55;
  }

  .process-journey {
    gap: var(--sp-4);
  }

  .process-journey__intro {
    padding: var(--sp-4);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.38);
  }

  .process-journey__lead {
    font-size: clamp(1.55rem, 7vw, 2rem);
    max-width: 12ch;
  }

  .process-journey__list {
    margin-top: var(--sp-4);
  }

  .process-journey__list-item {
    padding-block: var(--sp-2);
    font-size: 0.9rem;
  }

  .process-timeline {
    gap: var(--sp-3);
  }

  .process-timeline::before {
    display: none;
  }

  .process-stage {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
  }

  .process-stage__num {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    justify-content: start;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    font-weight: var(--fw-medium);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-light);
  }

  .process-stage__card {
    padding: var(--sp-4);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(248, 246, 242, 1) 0%, rgba(240, 236, 228, 0.84) 100%);
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.04);
  }

  .process-stage__summary {
    display: grid;
    gap: var(--sp-3);
  }

  .process-stage__eyebrow {
    margin-bottom: 0;
  }

  .process-stage__title {
    font-size: clamp(1.35rem, 6.4vw, 1.7rem);
    max-width: 14ch;
  }

  .process-stage__outcome {
    margin-top: 0;
    padding-top: var(--sp-3);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .process-stage__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    width: 100%;
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--c-text-dark);
  }

  .process-stage__toggle:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.3);
    outline-offset: 6px;
  }

  .process-stage__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 999px;
    flex-shrink: 0;
  }

  .process-stage__toggle-icon svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--duration-md) var(--ease-out);
  }

  .process-stage.is-expanded .process-stage__toggle-icon svg {
    transform: rotate(180deg);
  }

  .process-stage__details {
    display: grid;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .process-stage__details[hidden] {
    display: none;
  }

  .process-stage__desc {
    margin-top: 0;
    font-size: 0.92rem;
    line-height: 1.72;
  }
}
