/* ============================================================
     1. PALETTE & TOKENS — slightly warmer greige, hunter green added
     ============================================================ */
:root {
  --bone: #ECEDEE;
  --greige-50: #E1E2E5;
  --greige-100: #D0D2D6;
  --greige-200: #B5B8BD;
  --greige-300: #94979D;
  --greige-400: #72757B;
  --greige-500: #50535A;
  --greige-600: #383B42;
  --ink: #15171B;
  --ink-soft: #2A2D34;

  --ink-blue: #1E2A3D;
  --ink-blue-soft: #2E3D55;

  --hunter: #243B2C;
  --hunter-mid: #2D4A39;
  --hunter-deep: #1A2B1F;
  --hunter-accent: #3D5C46;
  --hunter-glow: #4F7355;
  --hunter-sage: #8AA890;

  --cool-100: #E8EDF2;
  --cool-200: #D5DCE4;
  --cool-300: #B5C0CD;
  --cool-400: #95A2B2;

  --font-sans: 'Figtree', system-ui, -apple-system, sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; }

/* ============================================================
     3. TYPE SYSTEM
     ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-eyebrow, var(--greige-500));
}

.numeral {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--c-numeral, var(--hunter));
}

.display {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: var(--c-title, var(--ink-soft));
}

h1.display { font-size: clamp(40px, 6vw, 50px); }
h2.display { font-size: clamp(36px, 5vw, 56px); }

.editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 23px);
  line-height: 1.55;
  color: var(--c-body, var(--greige-600));
}

.subhead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--c-title, var(--ink-soft));
}

.body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-body, var(--greige-600));
}

.num {
  font-variant-numeric: tabular-nums;
  color: var(--c-num, var(--greige-300));
}

/* ============================================================
     4. LAYOUT & GRID
     ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

.container-narrow { max-width: 880px; }
.constrain-md { max-width: 720px; }
.constrain-lg { max-width: 1080px; }

.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .grid-12 {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 48px;
    row-gap: 48px;
  }
}

.rule {
  border: none;
  height: 0.5px;
  width: 100%;
  background: var(--c-rule, var(--greige-200));
}

/* ============================================================
     5. SECTION COLOR THEMES
     ============================================================ */
.section {
  padding: 80px 20px;
  --c-title: var(--ink-soft);
  --c-body: var(--greige-600);
  --c-eyebrow: var(--hunter-accent);
  --c-numeral: var(--hunter-accent);
  --c-num: var(--greige-300);
  --c-rule: rgba(61, 92, 70, 0.28);
  --c-accent: var(--ink-blue);
}

@media (min-width: 768px) {
  .section { padding: 128px 40px; }
}

.theme-bone { background: var(--bone); }
.theme-greige-50 { background: var(--greige-50); }

.theme-greige-100 {
  background: var(--greige-100);
  --c-rule: rgba(61, 92, 70, 0.32);
}

.theme-hunter {
  background: var(--hunter);
  --c-title: #F4F8F5;
  --c-body: rgba(220, 232, 222, 0.96);
  --c-eyebrow: rgba(220, 232, 222, 0.85);
  --c-numeral: #C6E0CC;
  --c-num: rgba(220, 232, 222, 0.55);
  --c-rule: rgba(220, 232, 222, 0.28);
  --c-accent: #F4F8F5;
}

.theme-ink-blue {
  background: var(--ink-blue);
  --c-title: var(--cool-100);
  --c-body: rgba(181, 192, 205, 0.9);
  --c-eyebrow: rgba(181, 192, 205, 0.85);
  --c-numeral: rgba(213, 220, 228, 0.85);
  --c-num: rgba(181, 192, 205, 0.5);
  --c-rule: rgba(181, 192, 205, 0.25);
  --c-accent: var(--cool-100);
}

/* ============================================================
     6. SECTION HEADER
     ============================================================ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
}

@media (min-width: 1024px) {
  .section-header { max-width: 820px; gap: 28px; }
}

.section-meta {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.section-meta .eyebrow { font-size: 14px; letter-spacing: 0.18em; }

@media (min-width: 768px) {
  .section-meta .eyebrow { font-size: 15px; }
}

.section-body { margin-top: 56px; }

@media (min-width: 768px) {
  .section-body { margin-top: 80px; }
}

@media (min-width: 1024px) {
  .section-body { margin-top: 96px; }
}

/* ============================================================
     7. ATMOSPHERIC PLACEHOLDERS
     ============================================================ */
.atmosphere {
  position: relative;
  overflow: hidden;
  background: var(--greige-50);
  border-radius: 1px;
}

.atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 25%, rgba(30, 42, 61, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(168, 163, 153, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(26, 26, 24, 0.22) 0%, transparent 50%);
}

.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.atmosphere-warm::before {
  background-image:
    radial-gradient(ellipse at 40% 30%, rgba(168, 163, 153, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(219, 214, 203, 0.6) 0%, transparent 60%),
    linear-gradient(160deg, #C4BFB3 0%, #A8A399 100%);
}

.atmosphere-hunter::before {
  background-image:
    radial-gradient(ellipse at 25% 30%, rgba(45, 74, 57, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(26, 43, 31, 0.7) 0%, transparent 60%),
    linear-gradient(135deg, #2D4A39 0%, #1A2B1F 100%);
}

.atmo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (min-width: 768px) {
  .atmo-caption { bottom: 32px; left: 32px; }
}

/* ============================================================
     8. BUTTONS & LINKS
     ============================================================ */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-accent, var(--ink-blue));
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding-bottom: 3px;
  border-bottom: 0.5px solid currentColor;
  transition: gap 0.3s ease;
  cursor: pointer;
}

.cta-link:hover { gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bone);
  padding: 16px 28px;
  border: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover { background: var(--ink-blue); }
.btn:active { transform: scale(0.98); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: #FFFFFF; color: var(--hunter); }

/* ============================================================
     9. FORM
     ============================================================ */
.field {
  width: 100%;
  background: rgba(244, 248, 245, 0.08);
  border: 0.5px solid rgba(244, 248, 245, 0.22);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #F4F8F5;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field:focus {
  outline: none;
  border-color: rgba(244, 248, 245, 0.7);
  background: rgba(244, 248, 245, 0.14);
}

.field::placeholder {
  color: rgba(244, 248, 245, 0.5);
  font-weight: 300;
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23C6E0CC' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(244, 248, 245, 0.08);
  padding-right: 36px;
  cursor: pointer;
}

.field-select:invalid { color: rgba(244, 248, 245, 0.5); }

.field-select option {
  background: var(--hunter-deep);
  color: #F4F8F5;
  padding: 8px;
}

.field-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #C6E0CC;
  margin-bottom: 8px;
}

textarea.field {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

/* ============================================================
     10. ANIMATION
     ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeUp 0.9s ease-out both; }

section { scroll-margin-top: 80px; }

/* ============================================================
     11. MASTHEAD (neutral greige strip)
     ============================================================ */
.masthead {
  background: var(--greige-100);
  border-bottom: 0.5px solid rgba(80, 83, 90, 0.12);
}

.masthead-inner {
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

@media (min-width: 720px) {
  .masthead-inner { justify-content: space-between; }
}

@media (min-width: 768px) {
  .masthead-inner { padding: 14px 40px; gap: 24px; }
}

.masthead-inner .eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
}

@media (min-width: 480px) {
  .masthead-inner .eyebrow { font-size: 11px; letter-spacing: 0.16em; }
}

@media (min-width: 768px) {
  .masthead-inner .eyebrow { font-size: 13px; letter-spacing: 0.18em; }
}

/* Side text — hidden on mobile, visible from 720px up */
.masthead-side { display: none; }

@media (min-width: 720px) {
  .masthead-side { display: inline; letter-spacing: 0.14em; }
}

/* Italic studio descriptor — visible on all sizes, centered on mobile */
.masthead-mid {
  display: inline;
  font-family: var(--font-editorial);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: var(--greige-500);
  font-weight: 400;
  text-align: center;
}

@media (min-width: 720px) {
  .masthead-mid { font-size: 14px; flex: 0 1 auto; }
}

@media (min-width: 1024px) {
  .masthead-mid { font-size: 17px; }
}

.masthead .eyebrow { color: var(--greige-500); }

/* ============================================================
     12. HEADER / NAV
     ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--hunter-deep);
  border-bottom: 0.5px solid rgba(244, 248, 245, 0.08);
  color: rgba(244, 248, 245, 0.85);
}

.header-inner {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner { padding: 18px 40px; }
}

/* Mobile — center the logo, hamburger pinned right */
@media (max-width: 767px) {
  .header-inner {
    position: relative;
    justify-content: flex-end;
  }

  .header-inner > .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.logo {
  display: inline-block;
  line-height: 1;
  color: inherit;
}

.logo-text {
  display: inline-block;
  font-family: var(--font-editorial);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  white-space: nowrap;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

@media (min-width: 640px) {
  .logo-text { font-size: 13px; letter-spacing: 0.24em; }
}

@media (min-width: 768px) {
  .logo-text { font-size: 14px; letter-spacing: 0.26em; }
}

.logo:hover .logo-text {
  color: #FFFFFF;
  letter-spacing: 0.28em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 40px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
  padding-bottom: 4px;
  color: rgba(244, 248, 245, 0.78);
}

.nav-desktop a:hover { color: #FFFFFF; }
.nav-desktop a.active { color: #FFFFFF; }

.nav-desktop a.active:not(.cta-link):not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(244, 248, 245, 0.55);
}

.nav-desktop a.cta-link.active {
  color: var(--cool-100) !important;
  border-bottom-color: transparent;
}

.nav-desktop a.nav-cta {
  background: rgba(244, 248, 245, 0.08);
  color: var(--cool-100);
  border: 0.5px solid rgba(244, 248, 245, 0.4);
  border-radius: 2px;
  padding: 9px 18px;
  padding-bottom: 9px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-desktop a.nav-cta:hover {
  background: var(--cool-100);
  color: var(--ink-blue);
  border-color: var(--cool-100);
  gap: 10px;
}

.nav-desktop a.nav-cta:hover .nav-num,
.nav-desktop a.nav-cta .nav-num { display: none; }

.nav-desktop .nav-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: rgba(244, 248, 245, 0.5);
  transition: color 0.2s ease;
}

.nav-desktop a:hover .nav-num,
.nav-desktop a.active .nav-num { color: rgba(244, 248, 245, 0.85); }

.nav-mobile a.active {
  color: #FFFFFF;
  font-weight: 500;
}

.nav-mobile a.active .nav-num { color: rgba(244, 248, 245, 0.85); }

/* Mobile CTA — styled as a button */
.nav-mobile .nav-cta-mobile {
  display: block;
  margin-top: 8px;
  background: rgba(244, 248, 245, 0.08);
  color: var(--cool-100);
  border: 0.5px solid rgba(244, 248, 245, 0.4);
  border-radius: 2px;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-mobile .nav-cta-mobile:hover,
.nav-mobile .nav-cta-mobile:active {
  background: var(--cool-100);
  color: var(--ink-blue);
  border-color: var(--cool-100);
}

.nav-toggle {
  display: inline-flex;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(244, 248, 245, 0.85);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  border-top: 0.5px solid rgba(244, 248, 245, 0.08);
  padding: 24px 20px;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  color: rgba(244, 248, 245, 0.78);
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: rgba(244, 248, 245, 0.5);
  margin-right: 12px;
}

/* ============================================================
     13b. HERO MINI-FORM
     ============================================================ */
.hero-form {
  background: rgba(244, 248, 245, 0.06);
  border: 0.5px solid rgba(244, 248, 245, 0.4);
  border-radius: 2px;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .hero-form { padding: 26px 24px; }
}

.hero-form-eyebrow {
  margin-bottom: 18px;
  color: var(--cool-200);
}

.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
  }
  .hero-form-grid .hero-select { grid-column: span 2; }
}

.hero-field {
  width: 100%;
  background: rgba(244, 248, 245, 0.08);
  border: 0.5px solid rgba(244, 248, 245, 0.22);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #F4F8F5;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-field:focus {
  outline: none;
  border-color: rgba(244, 248, 245, 0.7);
  background: rgba(244, 248, 245, 0.14);
}

.hero-field::placeholder {
  color: rgba(244, 248, 245, 0.55);
  font-weight: 300;
}

.hero-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23D5DCE4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.hero-select:invalid { color: rgba(244, 248, 245, 0.55); }

.hero-select option {
  background: var(--ink-blue);
  color: #F4F8F5;
  padding: 8px;
}

.hero-form-submit {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-submit .btn {
  width: 100%;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--bone);
  color: var(--ink);
}

.hero-form-submit .btn:hover {
  background: #FFFFFF;
  color: var(--ink-blue);
}

.hero-form-note {
  font-size: 13px;
  color: rgba(244, 248, 245, 0.7);
  line-height: 1.55;
  text-align: center;
}

.hero-form-note strong {
  color: #F4F8F5;
  font-weight: 500;
}

/* ============================================================
     S1. SERVICES
     ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 80px;
    row-gap: 0;
  }
}

.service { padding: 0; }

@media (min-width: 768px) {
  .service { position: relative; }

  .service + .service::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    border-left: 0.5px solid rgba(61, 92, 70, 0.22);
  }
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: transparent;
  background-image: url('images/flower-icon.png');
  background-size: 90%;
  background-position: center;
  background-repeat: none;
  border: 0px solid rgba(61, 92, 70, 0.3);
  border-radius: 2px;
  margin-bottom: 32px;
  display: block;
}

.service-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  background: var(--greige-100);
  border-radius: 2px;
  aspect-ratio: 3 / 2;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service:hover .service-image img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.service h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.service p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--greige-600);
  margin-bottom: 20px;
}

.service .service-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--greige-400);
  font-weight: 500;
}

/* ============================================================
     S2. PROCESS
     ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 56px;
  }
}

.step { position: relative; }

.step-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--c-numeral, var(--hunter-accent));
  margin-bottom: 20px;
  display: block;
}

.step-rule {
  border: none;
  height: 0.5px;
  background: var(--c-rule, rgba(61, 92, 70, 0.32));
  margin-bottom: 20px;
  width: 100%;
}

.step h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--c-title, var(--ink-soft));
  margin-bottom: 14px;
}

.step p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-body, var(--greige-600));
}

.step-meta {
  margin-top: 16px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--c-body, var(--greige-500));
  opacity: 0.75;
}

/* ============================================================
     13. HERO — full background image, light text overlay
     ============================================================ */
.hero {
  position: relative;
  padding: 100px 20px 80px;
  background-color: var(--hunter-deep);
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .hero { padding: 140px 40px 120px; }
}

@media (min-width: 1024px) {
  .hero {
    padding: 160px 40px 140px;
    min-height: 88vh;
    display: flex;
    align-items: center;
  }
  .hero .container { width: 100%; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #0E1622;
  background-size: cover;
  background-position: center 75%;
  background-image: url('images/hero-background.webp');
  filter: saturate(1) brightness(2) contrast(1);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 22, 34, 0.35) 0%, rgba(11, 17, 24, 0.25) 60%, rgba(8, 14, 22, 0.55) 100%),
    linear-gradient(to right, rgba(11, 17, 24, 0.45) 0%, rgba(11, 17, 24, 0.1) 50%, rgba(11, 17, 24, 0.35) 100%);
  pointer-events: none;
}

background-image: url('images/img-001-b7460d26ac.webp');
background-size: cover;
background-position: center 35%;
filter: saturate(0.55) brightness(0.62) contrast(0.95) hue-rotate(-8deg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 32, 26, 0.55) 0%, rgba(20, 32, 26, 0.45) 50%, rgba(14, 22, 18, 0.65) 100%),
    linear-gradient(to right, rgba(11, 17, 14, 0.55) 0%, rgba(11, 17, 14, 0.2) 35%, rgba(11, 17, 14, 0.15) 65%, rgba(11, 17, 14, 0.4) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(6, 12, 26, 0.65) 0%, rgba(3, 7, 16, 0.65) 100%);
  border: 0.5px solid rgba(213, 220, 228, 0.16);
  border-radius: 3px;
  padding: 36px 28px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media (min-width: 768px) {
  .hero-grid { padding: 48px 44px; }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 48px;
    row-gap: 0;
    align-items: center;
    padding: 56px 56px;
  }
  .hero-content { grid-column: span 8; }
  .hero-form-wrap { grid-column: 9 / span 4; }
}

@media (min-width: 1200px) {
  .hero-grid { column-gap: 56px; padding: 64px 64px; }
  .hero-content { grid-column: span 8; }
  .hero-form-wrap { grid-column: 9 / span 4; }
}

.hero-eyebrow {
  color: var(--cool-200);
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0;
  max-width: 24ch;
  color: #F4F8F5;
}

.hero-lead {
  color: rgba(244, 248, 245, 0.85);
  margin-top: 28px;
  max-width: 64ch;
}

/* Hide the second sentence of the hero lead on mobile */
.hero-lead-more { display: none; }

@media (min-width: 768px) {
  .hero-lead-more { display: inline; }
}

@media (min-width: 768px) {
  .hero-eyebrow { margin-bottom: 32px; }
  .hero-lead { margin-top: 36px; }
}

.hero-form-wrap { margin-top: 0; }

@media (max-width: 899px) {
  .hero-form-wrap { margin-top: 32px; }
}

.hero-fee-note { font-size: 13px; color: var(--greige-500); }
.hero-fee-note strong { color: var(--ink-soft); font-weight: 500; }
.hero-atmosphere .atmo-caption { color: rgba(236, 237, 238, 0.7); }

/* ============================================================
     14. APPROACH
     ============================================================ */
.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .principles {
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 56px;
  }
}

.principle { max-width: none; }

.principle-marker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.principle-marker .num-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 22px;
  color: var(--c-numeral, var(--hunter-accent));
}

.principle h3 { margin-bottom: 12px; }

/* ============================================================
     15. RECENT WORK
     ============================================================ */
.featured-projects {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .featured-projects { gap: 80px; margin-bottom: 112px; }
}

.project + .project {
  padding-top: 56px;
  border-top: 0.5px solid var(--greige-200);
}

@media (min-width: 768px) {
  .project + .project { padding-top: 80px; }
}

.project {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .project {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 56px;
    align-items: center;
  }
  .project-image { grid-column: span 7; }
  .project-info { grid-column: span 5; }
}

.project-image {
  aspect-ratio: 4 / 3;
  background: var(--greige-100);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(45, 74, 57, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(168, 163, 153, 0.4) 0%, transparent 65%),
    linear-gradient(135deg, #B5B8BD 0%, #94979D 100%);
}

.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.project-image .project-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 248, 245, 0.85);
}

.project-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-variant-numeric: tabular-nums;
  color: var(--greige-400);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

.project-meta .project-no { color: var(--hunter-accent); }

.project h3 {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.project-desc {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--greige-600);
  margin-bottom: 22px;
}

.project-scope {
  font-size: 14px;
  line-height: 1.85;
  color: var(--greige-500);
  padding-top: 18px;
  border-top: 0.5px solid var(--greige-200);
}

.project-scope strong { color: var(--ink-soft); font-weight: 500; }

.archive-divider {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}

.archive-divider .eyebrow { color: var(--hunter-accent); }
.archive-divider .rule { flex: 1; }

.work-list ul li {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 0.5px solid var(--greige-200);
}

.work-list ul li:last-child { border-bottom: 0.5px solid var(--greige-200); }

@media (min-width: 768px) {
  .work-list ul li { padding: 24px 0; }
}

.work-year { grid-column: span 2; font-size: 14px; }
.work-no { grid-column: span 2; font-size: 14px; }
.work-title { grid-column: span 5; font-size: 17px; letter-spacing: -0.005em; }
.work-city {
  grid-column: span 3;
  text-align: right;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 17px;
  color: var(--greige-500);
}

@media (min-width: 768px) {
  .work-year { grid-column: span 1; }
  .work-no { grid-column: span 2; }
  .work-title { grid-column: span 6; }
  .work-city { grid-column: span 3; }
}

.work-atmosphere {
  margin-top: 64px;
  height: clamp(220px, 38vh, 420px);
}

@media (min-width: 768px) {
  .work-atmosphere { margin-top: 96px; }
}

.work-atmosphere .atmo-caption { color: var(--greige-600); }

/* ------------------------------------------------------------
     Editorial collage gallery
     ------------------------------------------------------------ */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 13rem;
  gap: 16px;
  grid-auto-flow: dense;
}

.collage-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--greige-100);
  border-radius: 2px;
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collage-tile:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

.collage-tile.wide { grid-column: span 2; }
.collage-tile.tall { grid-row: span 2; }

@media (max-width: 1024px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 12rem;
  }
  .collage-tile.wide { grid-column: span 2; }
  .collage-tile.tall { grid-row: span 2; }
}

/* Mobile — 2-column grid with neutralized spans (uniform tiles) */
@media (max-width: 640px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 9rem;
    gap: 8px;
  }

  .collage-tile.wide,
  .collage-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.collage-tile { cursor: zoom-in; }

.collage-tile:focus-visible {
  outline: 2px solid var(--cool-200);
  outline-offset: 3px;
}

/* ------------------------------------------------------------
     Lightbox
     ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 14, 22, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 96px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 200ms ease;
}

.lightbox-image.is-loading { opacity: 0; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0.5px solid rgba(244, 248, 245, 0.3);
  color: rgba(244, 248, 245, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  background: rgba(244, 248, 245, 0.1);
  color: #FFFFFF;
  border-color: rgba(244, 248, 245, 0.6);
  outline: none;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244, 248, 245, 0.6);
  font-variant-numeric: tabular-nums;
}

body.lightbox-locked { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox-stage { padding: 64px 16px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; width: 40px; height: 40px; }
  .lightbox-next { right: 8px; width: 40px; height: 40px; }
}

/* ============================================================
     16. STUDIO
     ============================================================ */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .studio-grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 64px;
  }
  .studio-portrait { grid-column: span 5; }
  .studio-content { grid-column: span 7; }
}

.studio-portrait .atmosphere { aspect-ratio: 4/5; }
.studio-portrait .atmo-caption { color: rgba(200, 218, 200, 0.7); }

.studio-pull {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #F4F8F5;
  margin-bottom: 28px;
  max-width: 30ch;
}

.studio-rule {
  border: none;
  width: 60px;
  height: 0.5px;
  background: rgba(200, 218, 200, 0.45);
  margin-bottom: 28px;
}

.studio-content p {
  color: rgba(200, 218, 200, 0.85);
  margin-bottom: 18px;
  line-height: 1.75;
  max-width: 56ch;
}

.studio-content p:last-of-type { margin-bottom: 28px; }
.studio-content .cta-link { color: #F4F8F5; }

/* ============================================================
     17. VOICES
     ============================================================ */
.voices-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .voices-stack { gap: 40px; }
}

.voice {
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.45);
  border: 0.5px solid rgba(80, 83, 90, 0.08);
  border-radius: 3px;
  padding: 48px 32px;
}

.voice::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px solid var(--greige-50);
  border-radius: inherit;
  pointer-events: none;
}

@media (min-width: 768px) {
  .voice { padding: 64px 56px; }
}

.voice-quote-mark {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 96px;
  line-height: 0.6;
  color: var(--hunter-sage);
  margin-bottom: 16px;
}

.voice blockquote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--c-title, var(--ink-soft));
  letter-spacing: -0.005em;
}

.voice figcaption {
  margin-top: 32px;
  color: var(--greige-500);
}

/* ============================================================
     18. SERVICE AREA
     ============================================================ */
.service-cities {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.service-cities li {
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 12px;
  line-height: 1.2;
  border-right: 0.5px solid var(--greige-300);
  color: var(--ink-soft);
}

.service-cities li:last-child { border-right: none; }

/* ============================================================
     19. CONSULTATION
     ============================================================ */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  color: var(--cool-200);
}

@media (min-width: 768px) {
  .consult-grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 64px;
  }
  .consult-left { grid-column: span 5; }
  .consult-right { grid-column: span 7; }
}

.consult-right {
  background: rgba(244, 248, 245, 0.07);
  padding: clamp(28px, 4vw, 44px);
  border: 0.5px solid rgba(244, 248, 245, 0.18);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.consult-left .eyebrow { margin-bottom: 18px; }

.consult-left ul {
  font-size: 16px;
  color: var(--c-body, var(--greige-600));
  line-height: 2;
  margin: 0 0 25px 0;
}

.consult-left p { color: rgb(255,255,255, .75); }

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .form {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
  .form-full { grid-column: span 2; }
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .form-submit {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

.form-submit-note {
  font-size: 13px;
  color: rgba(244, 248, 245, 0.7);
  line-height: 1.55;
}

.form-success {
  padding: 32px 0 32px 32px;
  border-left: 0.5px solid rgba(244, 248, 245, 0.25);
}

.form-success-headline {
  margin-top: 24px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 32px;
  color: #F4F8F5;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.form-success-note {
  font-size: 14px;
  color: rgba(244, 248, 245, 0.7);
  margin-top: 20px;
}

/* ============================================================
     20. FAQ
     ============================================================ */
.faq-item { border-top: 0.5px solid var(--greige-200); }
.faq-item:last-child { border-bottom: 0.5px solid var(--greige-200); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-trigger { padding: 28px 0; }
}

.faq-trigger > span:first-child {
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.faq-trigger .num {
  font-size: 14px;
  margin-right: 16px;
  color: var(--hunter-accent);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--ink-blue);
  line-height: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item.open .faq-content { grid-template-rows: 1fr; }

.faq-content p {
  padding: 0 0 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--greige-600);
  max-width: 78ch;
}

@media (min-width: 768px) {
  .faq-content p { padding-left: 48px; }
}

/* ============================================================
     21. FOOTER
     ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 64px 20px;
}

@media (min-width: 768px) {
  .footer { padding: 80px 40px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    column-gap: 48px;
  }
  .footer-brand { grid-column: span 5; }
  .footer-studio { grid-column: span 3; }
  .footer-contact { grid-column: span 4; }
}

.footer-brand .logo { margin-bottom: 24px; color: var(--bone); }

.footer-brand p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: rgba(236, 237, 238, 0.7);
  line-height: 1.55;
  max-width: 32ch;
}

.footer-col .eyebrow {
  color: rgba(236, 237, 238, 0.5);
  margin-bottom: 16px;
}

.footer-col ul { font-size: 15px; line-height: 2; }
.footer-col a:hover { opacity: 0.7; }

.footer-col .area-list {
  color: rgba(236, 237, 238, 0.5);
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 0.5px solid rgba(236, 237, 238, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236, 237, 238, 0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}