:root {
  --ink: #11111f;
  --ink-soft: #181827;
  --green: #3e6b20;
  --green-dark: #31551a;
  --green-on-dark: #91b879;
  --paper: #f4f1e9;
  --paper-deep: #e8e3d7;
  --white: #fff;
  --muted: #696962;
  --line: rgba(17, 17, 31, .14);
  --max: 1180px;
  --header-max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  background: var(--green);
  color: var(--ink);
  padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 17, 31, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}
.scroll-progress { position: absolute; inset: auto 0 0; height: 2px; background: rgba(255,255,255,.08); }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--green-on-dark); }
.nav-shell {
  width: min(calc(100% - 40px), var(--header-max));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { position: relative; display: flex; align-items: center; margin-right: auto; }
.brand img { width: 205px; height: auto; object-fit: contain; object-position: left center; filter: saturate(.82) brightness(.9) contrast(1.12); }
.main-nav { display: flex; align-items: center; gap: 24px; color: #f6f6f4; }
.main-nav a:not(.button) { position: relative; padding: 31px 0 28px; font-size: .76rem; font-weight: 650; letter-spacing: .035em; transition: color .2s ease; }
.main-nav a:not(.button)::after { position: absolute; inset: auto 0 20px; height: 2px; content: ""; background: var(--green-on-dark); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.main-nav a:not(.button):hover,
.main-nav a:not(.button)[aria-current="location"] { color: var(--green-on-dark); }
.main-nav a:not(.button)[aria-current="location"]::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 7px; padding: 31px 0 28px; border: 0; background: transparent; color: inherit; cursor: pointer; font-size: .76rem; font-weight: 650; letter-spacing: .035em; }
.nav-dropdown-toggle span { color: var(--green-on-dark); font-size: .9rem; transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span,
.nav-dropdown.is-open .nav-dropdown-toggle span { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% - 8px); left: -22px; width: 270px; padding: 12px; background: #181827; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 45px rgba(0,0,0,.3); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-dropdown-menu-right { right: -22px; left: auto; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .nav-dropdown-menu a:not(.button) { display: block; padding: 11px 12px; color: rgba(255,255,255,.82); font-size: .76rem; font-weight: 600; letter-spacing: .02em; line-height: 1.3; }
.main-nav .nav-dropdown-menu a:not(.button)::after { display: none; }
.main-nav .nav-dropdown-menu a:not(.button):hover { color: var(--green-on-dark); background: rgba(255,255,255,.05); }
.language-nav { display: flex; gap: 4px; color: #fff; font-size: .72rem; font-weight: 750; }
.language-nav a { padding: .38rem .42rem; opacity: .55; }
.language-nav a[aria-current="page"], .language-nav a:hover { opacity: 1; color: var(--green-on-dark); }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: white;
  padding: .5rem;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: currentColor; }

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  background: var(--green);
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); }
.button-outline { border-color: rgba(255,255,255,.45); background: transparent; color: white; }
.button-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; font-weight: 750; }
.text-link::after { content: "→"; color: var(--green-dark); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  color: white;
  background: var(--ink);
}
.hero-offer {
  position: relative;
  z-index: 3;
  inset: auto;
  min-height: 82px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(11,11,21,.9);
  border-top: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
}
.hero-offer span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem .75rem;
  color: rgba(255,255,255,.86);
  border-right: 1px solid rgba(255,255,255,.12);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .055em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.hero-offer span:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,11,21,.96) 0%, rgba(11,11,21,.86) 39%, rgba(11,11,21,.23) 68%, rgba(11,11,21,.06) 100%);
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/website-preview/home-hero.webp") center center / cover no-repeat;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(17,17,31,.58));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  min-height: 698px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .45fr);
  gap: 8vw;
  align-items: center;
}
.hero-copy { padding: 68px 0; }
.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--green);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
h1 { max-width: 900px; margin-bottom: 1.45rem; font-size: clamp(3.6rem, 6.8vw, 6.7rem); line-height: .94; }
h1 em, h2 em { color: var(--green); font-weight: inherit; }
.hero h1 em, .section-dark h2 em, .feature-story h2 em { color: var(--green-on-dark); }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.7vw, 1.28rem); line-height: 1.65; }
.hero-signature { margin: 1.15rem 0 0; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.7rem); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.promise-card { align-self: end; margin-bottom: 72px; border-left: 1px solid rgba(255,255,255,.25); padding: 1rem 0 1rem 2rem; }
.promise-card small { display: block; margin-bottom: .75rem; color: var(--green-on-dark); font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.promise-card strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; line-height: 1.35; }

.section { padding: 110px 0; }
.section-dark { background: var(--ink); color: white; }
.section-white { background: #fff; }
.section-green { background: #e7eee2; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: auto; }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 1.3rem; font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1; }
.section-heading p { max-width: 700px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }
.section-dark .eyebrow, .feature-story .eyebrow, .hero .eyebrow { color: var(--green-on-dark); }
.heading-row { max-width: none; display: grid; grid-template-columns: .95fr 1.05fr; gap: 8vw; align-items: end; }
.heading-row > p { margin-bottom: .45rem; }
.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.split-intro h2 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1; }
.split-copy { max-width: 640px; }
.split-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.statement { margin-top: 2rem; color: var(--ink) !important; font-weight: 750; }

.work-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 300px); gap: 16px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.solution-card {
  position: relative;
  min-height: 285px;
  padding: 28px 25px 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.solution-card { transition: background .2s ease, transform .2s ease; }
.solution-card:hover { z-index: 1; background: #f4f1e9; transform: translateY(-3px); }
.solution-card:first-child { grid-column: span 2; background: var(--paper); }
.solution-card-secondary { background: #faf9f6; }
.solution-card b { color: var(--green); font-size: .68rem; letter-spacing: .16em; }
.solution-card h3 { margin: auto 0 .75rem; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 400; line-height: 1.05; }
.solution-card p { min-height: 4.8em; margin-bottom: 1.4rem; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.solution-card span { padding-top: .9rem; border-top: 1px solid var(--line); color: var(--green-dark); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.selected-solutions { margin-bottom: 18px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.selected-solutions a { color: var(--green-dark); }
.work-card { position: relative; overflow: hidden; color: white; background: var(--ink); }
.work-card-large { grid-row: 1 / 3; }
.work-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(8,8,16,.9), rgba(8,8,16,.04) 68%); }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.work-card-large img { transform: scale(1.012); }
.work-card:hover img { transform: scale(1.025); }
.work-card-large:hover img { transform: scale(1.035); }
.work-card-copy { position: absolute; z-index: 2; inset: auto 0 0; padding: 28px; }
.work-card-copy small { display: block; margin-bottom: .5rem; color: var(--green-on-dark); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.work-card-copy strong { display: block; max-width: 560px; font-family: Georgia, serif; font-size: clamp(1.45rem, 2.8vw, 2.6rem); font-weight: 400; line-height: 1.08; }
.work-card-copy em { display: block; margin-top: 1rem; font-size: .76rem; font-style: normal; font-weight: 750; letter-spacing: .04em; }

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
  min-height: 720px;
  background: var(--ink);
  color: white;
}
.feature-image { min-height: 620px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.feature-copy {
  align-self: center;
  max-width: 650px;
  padding: 90px clamp(42px, 7vw, 110px);
}
.feature-copy h2 { margin-bottom: 1.8rem; font-size: clamp(2.8rem, 4.4vw, 5rem); line-height: 1; }
.feature-copy p { color: rgba(255,255,255,.7); font-size: 1.04rem; line-height: 1.72; }
.feature-copy .text-link { margin-top: 1rem; color: white; }
.feature-copy .text-link::after { color: var(--green-on-dark); }

.studio-story { padding: 100px 0 110px; background: #f2efe8; }
.studio-story-heading {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 48px;
}
.studio-story-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .98; }
.studio-story-heading h2 em { color: var(--green-dark); }
.studio-story-heading > p { max-width: 620px; margin: 0 0 .4rem; color: var(--muted); font-size: 1.05rem; line-height: 1.72; }
.studio-story-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 14px; }
.studio-shot { position: relative; min-height: 0; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #d8d3c8; }
.studio-shot-wide { aspect-ratio: 16 / 9; }
.studio-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.studio-shot-wide img { object-position: 50% 50%; }
.studio-shot:not(.studio-shot-wide) img { object-position: 50% 42%; }
.studio-shot:nth-child(2) img { object-position: 50% 50%; }
.studio-shot:hover img { transform: scale(1.018); }
.studio-shot::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(17,17,31,.82));
  pointer-events: none;
}
.studio-shot figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 24px 22px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: white;
}
.studio-shot figcaption span { color: var(--green-on-dark); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.studio-shot figcaption strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 400; }
.material-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 14px; }
.material-detail-grid figure { position: relative; min-height: 270px; margin: 0; overflow: hidden; background: var(--ink); }
.material-detail-grid figure::after { position: absolute; inset: 35% 0 0; content: ""; background: linear-gradient(transparent, rgba(17,17,31,.88)); pointer-events: none; }
.material-detail-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.material-detail-grid figure:hover img { transform: scale(1.02); }
.material-detail-grid figcaption { position: absolute; z-index: 1; inset: auto 22px 20px; color: white; }
.material-detail-grid small { display: block; margin-bottom: .45rem; color: var(--green-on-dark); font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.material-detail-grid strong { display: block; font-family: Georgia, serif; font-size: 1.18rem; font-weight: 400; line-height: 1.25; }

.intake-story { padding: 105px 0; background: #dfe8d9; border-top: 1px solid rgba(62,107,32,.16); border-bottom: 1px solid rgba(62,107,32,.16); }
.intake-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.intake-copy h2 { margin-bottom: 1.5rem; font-size: clamp(2.8rem, 5vw, 5.1rem); line-height: .98; }
.intake-copy h2 em { color: var(--green-dark); }
.intake-copy > p { max-width: 570px; color: #4c5946; font-size: 1.05rem; line-height: 1.72; }
.intake-copy .button { margin-top: 1rem; }
.project-start-summary { padding: 34px 0; border-top: 1px solid rgba(62,107,32,.3); border-bottom: 1px solid rgba(62,107,32,.24); }
.project-start-summary span { display: block; margin-bottom: 1.2rem; color: var(--green-dark); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.project-start-summary strong { display: block; max-width: 620px; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.2; }

.request-experience { padding: 110px 0; scroll-margin-top: 80px; background: #e7eee2; border-block: 1px solid rgba(62,107,32,.16); }
.request-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem 8vw; align-items: end; margin-bottom: 48px; }
.request-heading .eyebrow { grid-column: 1 / -1; margin-bottom: .2rem; }
.request-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: 1.02; }
.request-heading h2 em { display: block; margin-top: .16em; color: var(--green-dark); line-height: 1.08; }
.request-heading > p:last-child { max-width: 590px; margin: 0 0 .3rem; color: var(--muted); font-size: 1.05rem; line-height: 1.72; }
.request-layout { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); align-items: start; background: #fff; box-shadow: 0 24px 70px rgba(17,17,31,.1); }
.request-guide { position: sticky; top: 105px; padding: 42px 38px; color: #fff; background: var(--ink); }
.request-guide-intro > span { display: block; margin-bottom: 1rem; color: var(--green-on-dark); font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.request-guide-intro > strong { display: block; font-family: Georgia, serif; font-size: clamp(1.65rem,2.5vw,2.35rem); font-weight: 400; line-height: 1.16; }
.request-reasons { margin: 2.25rem 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.request-reasons li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.request-reasons b { color: var(--green-on-dark); font-size: .65rem; letter-spacing: .12em; }
.request-reasons strong { display: block; margin-bottom: .3rem; font-size: .9rem; }
.request-reasons p { margin: 0; color: rgba(255,255,255,.63); font-size: .79rem; line-height: 1.55; }
.request-next { padding: 1.15rem; background: rgba(145,184,121,.1); border-left: 2px solid var(--green-on-dark); }
.request-next small { display: block; margin-bottom: .45rem; color: var(--green-on-dark); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.request-next p { margin: 0; color: rgba(255,255,255,.72); font-size: .82rem; line-height: 1.6; }
.request-form { min-width: 0; padding: 24px 22px 16px; background: #fff; }
.request-form-top { display: flex; justify-content: space-between; gap: 1rem; padding: 4px 8px 18px; border-bottom: 1px solid var(--line); }
.request-form-top span { color: var(--ink); font-weight: 800; }
.request-form-top small { color: var(--muted); }
.fillout-standard-embed { width: 100%; min-height: 690px; }
.request-fallback { margin: .7rem 1rem .2rem; color: var(--muted); text-align: center; font-size: .82rem; }
.request-fallback a { color: var(--green-dark); font-weight: 750; text-decoration: underline; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.process-step { min-height: 270px; padding: 32px 34px 30px 0; }
.process-step + .process-step { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.18); }
.process-step:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.18); }
.process-step:nth-child(4) { padding-left: 0; border-left: 0; }
.process-step b { color: var(--green-on-dark); font-size: .86rem; letter-spacing: .14em; }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-top svg { width: 34px; height: 34px; fill: none; stroke: var(--green-on-dark); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; opacity: .9; }
.process-step h3 { max-width: 300px; margin: 1.8rem 0 .8rem; font-family: Georgia, serif; font-size: clamp(1.55rem, 2.2vw, 2rem); line-height: 1.08; font-weight: 400; }
.process-step p { max-width: 320px; color: rgba(255,255,255,.68); font-size: .94rem; line-height: 1.65; }
.process-line { margin-top: 54px; color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

.library-wrap { display: grid; grid-template-columns: .78fr 1.22fr; gap: 7vw; align-items: center; }
.library-copy h2 { font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .98; }
.library-copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.library-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.library-tile { position: relative; min-height: 178px; overflow: hidden; background: var(--paper-deep); }
.library-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.library-tile:hover img { transform: scale(1.025); }
.library-tile span { position: absolute; inset: auto 0 0; padding: 16px; color: white; background: linear-gradient(transparent, rgba(17,17,31,.85)); font-weight: 750; }

.professional-section { background: var(--paper); }
.section-compact { padding-top: 86px; padding-bottom: 86px; }
.professional-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.professional-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.professional-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 18px 50px rgba(32,57,22,.09); }
.professional-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--green); color: var(--green); }
.professional-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.professional-card small { display: block; margin-bottom: 1rem; color: var(--green-dark); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.professional-card strong { display: block; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 400; line-height: 1.05; }
.professional-card p { margin: 1rem 0 1.4rem; color: var(--muted); line-height: 1.65; }
.professional-benefits { display: block; margin: -.25rem 0 1.4rem; color: var(--ink); font-size: .76rem; font-weight: 720; line-height: 1.65; }
.professional-card em { color: var(--green-dark); font-size: .78rem; font-style: normal; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }

.studio-location { padding: 96px 0 0; overflow: hidden; background: #e7eee2; border-top: 1px solid rgba(62,107,32,.18); border-bottom: 1px solid rgba(62,107,32,.18); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: end; padding-bottom: 64px; }
.location-heading h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; }
.location-heading h2 em { color: var(--green-dark); }
.location-copy > p { max-width: 650px; margin-bottom: 1.7rem; color: #44513d; font-size: 1.05rem; line-height: 1.7; }
.location-details { display: flex; flex-wrap: wrap; gap: 24px 46px; align-items: end; }
.location-details address { color: #33412e; font-style: normal; font-weight: 700; line-height: 1.65; }
.location-gallery { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(220px, .55fr) minmax(180px, .38fr); gap: 18px; margin-bottom: 38px; }
.location-photo { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: #d9e2d3; }
.location-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.location-photo-main img { object-position: center; }
.location-photo-meeting img { object-position: 50% 46%; }
.location-photo-entry img { object-position: 50% 50%; }
.location-photo figcaption { position: absolute; left: 18px; bottom: 18px; padding: 9px 12px; background: rgba(17,17,31,.82); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.location-photo:hover img { transform: scale(1.015); }
.island-coverage { display: flex; gap: 28px; align-items: center; justify-content: space-between; padding: 24px 0 26px; border-top: 1px solid rgba(62,107,32,.25); color: #44513d; }
.island-coverage strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 400; color: var(--ink); }
.island-coverage span { font-size: .76rem; font-weight: 750; letter-spacing: .035em; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.about-photo { position: relative; min-height: 520px; margin: 0; overflow: hidden; background: #1a1a24; }
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,21,.78));
  pointer-events: none;
}
.about-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 50% 50%; }
.about-photo figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 28px 25px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: white;
}
.about-photo figcaption span { color: var(--green); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.about-photo figcaption strong { white-space: nowrap; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.about-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; }
.about-copy h2 em { color: var(--green-on-dark); }
.about-copy p { color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.72; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.16); }
.about-facts span { color: rgba(255,255,255,.58); font-size: .76rem; line-height: 1.45; }
.about-facts strong { display: block; margin-bottom: .35rem; color: white; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }

.cta-section { padding: 70px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center; }
.cta-grid h2 { max-width: 790px; margin: 0; font-size: clamp(2.7rem, 5.6vw, 5.6rem); line-height: .98; }
.cta-grid p:not(.eyebrow) { max-width: 680px; margin: 1.2rem 0 0; line-height: 1.65; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; min-width: 250px; }
.cta-actions .text-link::after { color: var(--ink); }
.professional-link { margin-top: 1.5rem; font-size: .9rem; }
.professional-link a { font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.site-footer { padding: 60px 0 28px; background: #0b0b15; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 205px; height: auto; margin-bottom: 1.3rem; filter: saturate(.82) brightness(.9) contrast(1.12); }
.footer-brand p { max-width: 380px; line-height: 1.6; }
.footer-column h3 { margin-bottom: 1rem; color: white; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.appointment-note { display: block; margin: -.2rem 0 1rem; color: var(--green-on-dark); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin: .65rem 0; line-height: 1.5; }
.footer-column a:hover { color: var(--green); }
.footer-bottom { margin-top: 45px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.development-main { min-height: calc(100vh - 82px); background: var(--ink); color: white; }
.development-hero { padding: clamp(90px, 12vw, 160px) 0 110px; }
.development-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: end; }
.development-grid h1 { margin: 0; font-size: clamp(3.5rem, 6.6vw, 7rem); }
.development-grid h1 em { color: var(--green-on-dark); }
.development-copy { max-width: 590px; padding-bottom: .7rem; }
.development-copy > strong { display: block; margin-bottom: 1.4rem; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; line-height: 1.15; }
.development-copy p { color: rgba(255,255,255,.7); font-size: 1.08rem; line-height: 1.75; }
.development-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.development-note { padding: 42px 0; background: #e7eee2; color: var(--ink); }
.development-note .shell { display: flex; justify-content: space-between; gap: 4vw; align-items: center; }
.development-note span { color: var(--green-dark); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.development-note p { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.65; }
.guide-development-page footer { padding: 26px 0; background: #0b0b15; color: rgba(255,255,255,.72); }
.guide-development-page .footer-bottom { margin-top: 0; padding-top: 0; border-top: 0; }

@media (max-width: 980px) {
  .nav-shell { min-height: 72px; }
  .brand img { width: 180px; }
  .menu-toggle { display: block; }
  .language-nav { margin-left: 0; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    overflow-y: auto;
    padding: 42px 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    background: var(--ink);
  }
  .menu-open .main-nav { display: flex; }
  .main-nav a:not(.button) { padding: 0; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
  .main-nav a:not(.button)::after { inset: auto 0 -7px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0; color: white; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; text-align: left; }
  .nav-dropdown-menu,
  .nav-dropdown-menu-right { position: static; display: none; width: 100%; padding: 12px 0 0 18px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .main-nav .nav-dropdown-menu a:not(.button) { padding: 7px 0; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .95rem; font-weight: 600; }
  .hero-inner { grid-template-columns: 1fr; padding: 90px 0 70px; }
  .hero { padding-bottom: 0; }
  .hero-offer { overflow-x: auto; justify-content: flex-start; }
  .hero-offer span { flex: 0 0 160px; }
  .promise-card { align-self: auto; margin: 0; max-width: 480px; }
  .heading-row, .split-intro, .library-wrap, .about-grid, .feature-story, .studio-story-heading, .intake-grid, .location-grid, .request-heading, .request-layout, .development-grid { grid-template-columns: 1fr; }
  .development-note .shell { align-items: flex-start; flex-direction: column; }
  .request-guide { position: static; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 520px 300px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card-large { grid-column: 1 / 3; grid-row: auto; }
  .feature-image { min-height: 560px; }
  .feature-copy { max-width: none; padding: 80px max(32px, 8vw); }
  .studio-story-grid { grid-template-columns: 1.2fr .8fr; }
  .studio-shot-wide { min-height: 0; }
  .studio-shot { min-height: 0; }
  .material-detail-grid { grid-template-columns: 1fr 1fr; }
  .professional-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 250px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 650px) {
  .nav-shell { width: min(calc(100% - 24px), var(--max)); gap: 8px; }
  .brand img { width: 138px; }
  .language-nav a { padding: .35rem .3rem; }
  .menu-toggle { padding: .4rem .25rem .4rem .4rem; }
  .hero { min-height: auto; }
  .hero { padding-bottom: 0; }
  .hero-offer { min-height: 68px; padding: 0; }
  .hero-offer span { flex-basis: 145px; font-size: .63rem; }
  .hero-inner { width: min(calc(100% - 32px), var(--max)); min-height: 0; gap: 55px; padding: 72px 0 64px; }
  h1 { font-size: clamp(2.95rem, 15vw, 4.6rem); overflow-wrap: anywhere; }
  .section-heading h2,
  .split-intro h2,
  .studio-story-heading h2,
  .location-heading h2,
  .about-copy h2,
  .cta-grid h2 { font-size: clamp(2.45rem, 12vw, 3.45rem); }
  .hero-actions .button { width: 100%; }
  .promise-card { padding-left: 1.2rem; }
  .hero::before { background: linear-gradient(90deg, rgba(11,11,21,.92), rgba(11,11,21,.63)), linear-gradient(0deg, rgba(11,11,21,.48), transparent 60%); }
  .hero-image { background-position: 58% center; }
  .section { padding: 78px 0; }
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: 420px 280px 280px; }
  .solution-grid { grid-template-columns: 1fr; margin-bottom: 50px; }
  .solution-card:first-child { grid-column: auto; }
  .solution-card { min-height: 245px; }
  .selected-solutions { align-items: flex-start; flex-direction: column; }
  .work-card-large { grid-column: auto; }
  .intake-story { padding: 74px 0; }
  .intake-grid { gap: 52px; }
  .request-experience { padding: 74px 0; }
  .request-heading { margin-bottom: 34px; }
  .request-guide { padding: 32px 24px; }
  .request-form { padding: 12px 0 8px; }
  .request-form-top { margin: 0 14px; padding: 8px 2px 15px; }
  .fillout-standard-embed { min-height: 620px; }
  .feature-image { min-height: 420px; }
  .feature-copy { padding: 66px 24px 72px; }
  .studio-story { padding: 72px 0 78px; }
  .studio-story-heading { margin-bottom: 32px; }
  .studio-story-grid { grid-template-columns: 1fr; gap: 10px; }
  .studio-shot { min-height: 0; aspect-ratio: 4 / 3; }
  .studio-shot-wide { aspect-ratio: 16 / 9; }
  .studio-shot img { object-position: center; }
  .material-detail-grid { grid-template-columns: 1fr; gap: 10px; }
  .material-detail-grid figure { grid-column: auto; min-height: 310px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(4) {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { margin-top: 1.5rem; }
  .library-preview {
    width: calc(100vw - 16px);
    margin-right: calc(50% - 50vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(255px, 82vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .library-tile { min-height: 205px; scroll-snap-align: start; }
  .professional-card { min-height: 0; grid-template-columns: 1fr; padding: 28px 24px; }
  .studio-location { padding-top: 72px; }
  .location-grid { gap: 38px; padding-bottom: 50px; }
  .location-gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  .location-photo { min-height: 0; aspect-ratio: 4 / 3; }
  .location-photo-main { grid-column: 1 / -1; }
  .location-photo-main img { object-position: 50% 52%; }
  .location-photo-meeting,
  .location-photo-entry { aspect-ratio: 3 / 4; }
  .location-photo-meeting img { object-position: 50% 45%; }
  .location-photo figcaption { left: 12px; right: 12px; bottom: 12px; width: fit-content; max-width: calc(100% - 24px); }
  .island-coverage { align-items: flex-start; flex-direction: column; gap: 10px; }
  .island-coverage span { line-height: 1.7; }
  .about-photo, .about-photo img { min-height: 390px; }
  .about-photo img { object-position: 50% 50%; }
  .about-photo figcaption { inset: auto 20px 18px; }
  .about-photo figcaption strong { font-size: 1.12rem; }
  .about-facts { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-column a { overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; }
}
