:root {
  --ivory: #f4efe6;
  --ivory-deep: #e4dac7;
  --porcelain: #fffaf2;
  --blue: #082f43;
  --blue-soft: #16475c;
  --ink: #15222b;
  --muted: #59656c;
  --gold: #b89043;
  --gold-soft: #d8bd78;
  --line: rgba(8, 47, 67, 0.14);
  --shadow: 0 26px 80px rgba(8, 47, 67, 0.16);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --gold-strong: #846222;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

main#top {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 47, 67, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 47, 67, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.38;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

h1, h2, h3, p, a, label {
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 46px);
  color: var(--porcelain);
  background: rgba(8, 47, 67, 0.94);
  border-bottom: 1px solid rgba(216, 189, 120, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(216, 189, 120, 0.56);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.site-nav a {
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 189, 120, 0.3);
}

.language-switch [data-lang],
.menu-toggle {
  min-width: 42px;
  min-height: 36px;
  color: var(--porcelain);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.language-switch [data-lang].is-active {
  color: var(--blue);
  background: var(--gold-soft);
}

.language-switch a {
  display: inline-grid;
  place-items: center;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

#formVerification { min-width: 0; }
#formVerification[hidden] { display: none; }

.field-hint {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(216, 189, 120, 0.34);
}

.hero {
  position: relative;
  min-height: calc(100svh - 140px);
  overflow: hidden;
  color: var(--porcelain);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 28, 40, 0.82), rgba(6, 28, 40, 0.42) 46%, rgba(6, 28, 40, 0.12)),
    linear-gradient(0deg, rgba(6, 28, 40, 0.42), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 36px));
  min-height: calc(100svh - 140px);
  margin-left: clamp(18px, 7vw, 96px);
  padding: 64px 0 132px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.approach h2,
.closing-content h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

.hero h1 {
  max-width: 680px;
  font-size: 6rem;
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: 1.35rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-project-followup .hero-lede {
  max-width: 620px;
  margin-top: 20px;
  font-size: 1.35rem;
  line-height: 1.55;
}

.hero-followup-hint {
  margin: 18px 0 0;
  color: var(--porcelain);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-project-followup .hero-actions .button[data-client-preview] {
  border: 1px solid rgba(255, 250, 242, 0.6);
  background: rgba(255, 250, 242, 0.06);
  text-decoration: none;
}

.hero-availability {
  margin: 4px 0 0;
  color: var(--gold-soft);
  font-size: 0.875rem;
  line-height: 1.5;
}

.project-followup-status {
  max-width: 34em;
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--blue-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.project-followup.section-pad {
  padding-top: 48px;
}

.project-followup-link:not([hidden]) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
}

.project-followup-list {
  margin: 28px 0 0;
}

.project-followup-list > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.project-followup-list dt {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.125rem;
}

.project-followup-list dd {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.site-header.has-social {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 18px;
}

.has-social .site-nav {
  gap: clamp(12px, 1.5vw, 22px);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 4px;
  color: var(--porcelain);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--gold-soft);
  background: rgba(255, 250, 242, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  text-align: center;
}

.button-primary {
  color: var(--blue);
  background: var(--gold-soft);
}

.button-secondary {
  color: var(--porcelain);
  border-color: rgba(255, 250, 242, 0.44);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-caption {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 48px);
  z-index: 1;
  width: min(380px, calc(100% - 36px));
  padding-top: 18px;
  border-top: 1px solid rgba(216, 189, 120, 0.72);
}

.hero-caption span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-caption strong {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1rem;
  font-weight: 500;
}

.section-pad {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 4vw, 46px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro {
  background: var(--porcelain);
}

.intro-grid,
.approach-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro h2,
.approach h2,
.contact h2,
.closing-content h2,
.section-heading h2 {
  color: var(--blue);
  font-size: 3.5rem;
}

.intro-copy {
  color: var(--blue-soft);
  font-size: 1.125rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  color: var(--gold-strong);
}

.intro .section-kicker,
.contact .section-kicker,
.project-body p,
.gallery-body p {
  color: var(--gold-strong);
}

.section-heading p:not(.section-kicker) {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.has-ev .site-nav {
  flex-wrap: wrap;
  row-gap: 4px;
}

.has-ev .site-nav a {
  white-space: nowrap;
}

.ev-charging {
  background: var(--porcelain);
  border-top: 1px solid var(--line);
}

.ev-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.ev-heading h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1.15;
}

.ev-heading .section-kicker {
  color: var(--gold-strong);
}

.ev-brand-origin {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.ev-introduction p {
  margin: 0;
  font-size: 1rem;
}

.ev-introduction .ev-area {
  margin-top: 12px;
  color: var(--muted);
}

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

.ev-photos figure {
  min-width: 0;
  margin: 0;
}

.ev-photos .ev-photo-black {
  object-position: 65% 50%;
}

.ev-photos img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
}

.ev-photos figcaption {
  padding-top: 12px;
  color: var(--blue);
  font-size: 0.875rem;
}

.ev-photo-credit {
  margin: 12px 0 32px;
  color: var(--muted);
  font-size: 0.8125rem;
}

.ev-photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ev-benefits {
  margin: 36px 0 44px;
}

.ev-benefits h3 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.35;
}

.ev-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

.ev-benefits-grid > div {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.ev-benefits-grid dt {
  color: var(--blue);
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
}

.ev-benefits-grid dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.ev-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

.ev-steps > div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.ev-steps dt {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.4;
}

.ev-steps dt > span:first-child {
  color: var(--gold-strong);
  font-size: 0.875rem;
}

.ev-steps dd {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.ev-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.ev-contact > div {
  min-width: 0;
  max-width: 680px;
}

.ev-contact h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.25rem;
}

.ev-contact p {
  margin: 8px 0 0;
}

.ev-contact .ev-note {
  color: var(--muted);
  font-size: 0.875rem;
}

.ev-contact .button {
  flex-shrink: 0;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 920px) {
  .has-ev .site-nav { flex-wrap: nowrap; }
  .ev-heading { grid-template-columns: 1fr; gap: 20px; }
  .ev-heading h2 { font-size: 2.5rem; }
  .ev-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ev-steps { grid-template-columns: 1fr; gap: 24px; }
  .ev-contact { align-items: flex-start; flex-direction: column; gap: 20px; }
}

@media (max-width: 640px) {
  .ev-heading h2 { font-size: 2rem; }
  .ev-benefits-grid { grid-template-columns: 1fr; gap: 22px; }
  .ev-photos { gap: 10px; }
  .ev-photos img { aspect-ratio: 3 / 4; }
  .ev-photos figcaption { font-size: 0.875rem; line-height: 1.4; }
  .ev-contact .button { width: 100%; }
}

.focus {
  background: linear-gradient(180deg, var(--ivory), #ebe1d0);
}

.focus-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  min-height: 560px;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--blue);
  border: 1px solid rgba(184, 144, 67, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.focus-media {
  min-height: 560px;
  overflow: hidden;
  background: #d9cfbe;
}

.focus-media img {
  height: 100%;
  object-fit: cover;
}

.focus-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 38px 112px;
  border-left: 1px solid rgba(216, 189, 120, 0.22);
}

.focus-panel h3,
.detail-hero h1,
.detail-approach h2,
.service-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

.focus-panel h3 {
  color: var(--porcelain);
  font-size: 2.5rem;
}

.focus-panel p:not(.section-kicker) {
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 1.06rem;
}

.focus-panel span {
  margin-top: 28px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  color: var(--gold-soft);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.focus-controls {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(6, 29, 41, 0.78);
  border: 1px solid rgba(216, 189, 120, 0.28);
  backdrop-filter: blur(8px);
}

.focus-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--porcelain);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.focus-dots {
  display: inline-flex;
  gap: 0;
}

.focus-dots button {
  width: 36px;
  min-width: 36px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.focus-dots button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.4);
}

.focus-dots button.is-active::before {
  background: var(--gold-soft);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  min-height: 420px;
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 47, 67, 0.08);
}

.project-card-large {
  grid-column: span 2;
}

.project-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ivory-deep);
}

.project-card-large .project-media {
  aspect-ratio: 2 / 1;
}

.project-media img,
.expertise-card img,
.closing-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.project-card:hover .project-media img,
.expertise-card:hover img {
  transform: scale(1.035);
}

.project-body {
  padding: 22px;
}

.project-body p,
.project-body span {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 10px 0 18px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.18;
}

.project-body span {
  color: var(--muted);
  text-transform: none;
}

.approach {
  color: var(--porcelain);
  background: var(--blue);
}

.approach .section-kicker,
.approach h2 {
  color: var(--gold-soft);
}

.approach-copy p:not(.section-kicker) {
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.06rem;
}

.method-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
}

.method-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid rgba(216, 189, 120, 0.5);
}

.method-list h3 {
  margin: 0 0 6px;
  color: var(--porcelain);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.method-list p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
}

.experience-band {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  color: var(--porcelain);
  background: #071f2d;
}

.experience-image {
  position: absolute;
  inset: 0;
}

.experience-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 26, 38, 0.94) 0%, rgba(5, 26, 38, 0.78) 48%, rgba(5, 26, 38, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 26, 38, 0.54), rgba(5, 26, 38, 0.12));
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.02);
}

.experience-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 820px;
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(72px, 9vw, 118px);
  margin-left: clamp(0px, 5vw, 80px);
}

.experience-content h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fffaf2;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 0.96;
}

.experience-content p:not(.section-kicker) {
  max-width: 700px;
  margin: 0 0 16px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.125rem;
  line-height: 1.72;
}

.experience-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 32px;
  border: 1px solid rgba(216, 189, 120, 0.28);
  background: rgba(216, 189, 120, 0.28);
}

.experience-proof span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #fffaf2;
  background: rgba(7, 31, 45, 0.72);
  font-weight: 800;
  text-align: center;
}

.audience {
  background:
    linear-gradient(180deg, rgba(216, 189, 120, 0.08), transparent 46%),
    var(--porcelain);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(8, 47, 67, 0.16);
  border: 1px solid rgba(8, 47, 67, 0.14);
}

.audience-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--ivory);
}

.audience-card span {
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 360px;
  margin: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.08;
}

.audience-card p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-area {
  color: var(--porcelain);
  background: var(--blue);
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.service-area h2 {
  max-width: 760px;
  margin: 8px 0 16px;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.08;
}

.service-area p {
  max-width: 68ch;
  color: rgba(255, 250, 242, 0.78);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(216, 189, 120, 0.28);
  list-style: none;
}

.service-area-list li {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.expat-note {
  padding: 4px 0 4px 28px;
  border-left: 1px solid rgba(216, 189, 120, 0.48);
}

.expat-note h3 {
  margin: 0 0 12px;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.expat-note .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-soft);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: calc(100svh - 76px);
  color: var(--porcelain);
  background: var(--blue);
}

.detail-hero-media {
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: #d9cfbe;
}

.detail-hero-media img {
  height: 100%;
  object-fit: cover;
}

body[data-page="bespoke"] .detail-hero-media img {
  object-position: center;
}

body[data-page="renovation"] .detail-hero-media img {
  object-position: center;
}

.detail-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 86px);
}

.back-link {
  width: fit-content;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.72);
  border-bottom: 1px solid rgba(216, 189, 120, 0.56);
}

.detail-hero h1 {
  color: var(--porcelain);
  font-size: 3.5rem;
}

.detail-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.125rem;
}

.detail-approach {
  background: var(--porcelain);
}

.detail-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 7vw, 88px);
}

.detail-approach h2,
.service-cta h2 {
  color: var(--blue);
  font-size: 3rem;
}

.detail-approach p:not(.section-kicker),
.service-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.detail-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--blue-soft);
  list-style: none;
}

.detail-points li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.case-study {
  color: var(--porcelain);
  background: var(--blue);
}

.case-study-heading {
  display: block;
  max-width: 860px;
}

.case-study-heading h2 {
  color: var(--porcelain);
}

.case-study .section-kicker {
  color: var(--gold-soft);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(32px, 5vw, 58px);
  border-top: 1px solid rgba(216, 189, 120, 0.35);
}

.case-study-grid article {
  min-width: 0;
  padding: 26px clamp(18px, 3vw, 34px) 4px 0;
}

.case-study-grid article + article {
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 1px solid rgba(216, 189, 120, 0.22);
}

.case-study-grid h3 {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.case-study-grid p {
  margin: 0;
  color: rgba(255, 250, 242, 0.8);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 47, 67, 0.08);
}

.gallery-card-large {
  grid-column: span 2;
}

.gallery-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-deep);
}

.gallery-card-large .gallery-media {
  aspect-ratio: 16 / 9;
}

.gallery-media img {
  height: 100%;
  object-fit: cover;
}

.gallery-body {
  padding: 22px;
}

.gallery-body p,
.gallery-body span {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-body h3 {
  margin: 10px 0 16px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.18;
}

.gallery-body span {
  color: var(--muted);
  text-transform: none;
}

.service-cta {
  background: var(--porcelain);
}

.service-cta-inner {
  max-width: 850px;
}

.closing-band {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--porcelain);
}

.closing-image,
.closing-image::after {
  position: absolute;
  inset: 0;
}

.closing-image::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 47, 67, 0.9), rgba(8, 47, 67, 0.5)),
    linear-gradient(0deg, rgba(8, 47, 67, 0.8), transparent);
}

.closing-content {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 9vw, 108px) clamp(18px, 4vw, 46px);
}

.closing-content h2 {
  max-width: 780px;
  color: var(--porcelain);
}

.closing-content p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.08rem;
}

.contact {
  background: var(--porcelain);
}

.contact-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.owner-note {
  margin: 0;
  padding: 16px 18px;
  color: var(--blue);
  background: rgba(255, 250, 242, 0.78);
  border-left: 3px solid var(--gold);
}

.contact-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  min-height: 170px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.contact-details > .contact-card {
  min-height: 0;
  grid-template-rows: auto auto auto auto;
}

.contact-card span {
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a.phone-link {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.25;
}

.contact-card a {
  color: var(--ink);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  min-height: 44px;
}

.contact-action {
  align-self: end;
  justify-self: start;
  width: 100%;
  max-width: 180px;
  min-height: 42px;
  margin-top: 8px;
  padding: 10px 16px;
  justify-content: center;
}

.contact-card .whatsapp-action {
  color: #ffffff;
  background: linear-gradient(135deg, #1f6f51 0%, #2f8a62 72%, #b89043 160%);
  border-color: rgba(31, 111, 81, 0.72);
  box-shadow: 0 10px 22px rgba(21, 91, 64, 0.16);
}

.whatsapp-action:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #18583f 0%, #277655 72%, #a97f35 160%);
  border-color: rgba(24, 88, 63, 0.78);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  min-width: 0;
}

.contact-form .consent-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent-copy a {
  margin-left: 6px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  min-width: 0;
  width: 100%;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid rgba(8, 47, 67, 0.2);
  border-radius: 0;
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
  min-height: 138px;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 144, 67, 0.46);
  outline-offset: 2px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 26px;
  margin: 0;
  color: var(--blue-soft);
}

.form-status.is-success {
  color: #1f6f51;
}

.form-status.is-error {
  color: #8b2f2f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 46px);
  color: var(--porcelain);
  background: #061d29;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.7);
}

.site-footer p + p {
  font-size: 0.84rem;
}

.site-footer a {
  color: var(--gold-soft);
}

.legal-page {
  min-height: calc(100svh - 76px);
  background: var(--porcelain);
}

.legal-inner {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
}

.legal-header {
  padding-bottom: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
}

.legal-sections {
  display: grid;
  gap: 0;
}

.legal-sections section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-sections h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.legal-sections p {
  max-width: 74ch;
  margin: 0;
  color: var(--blue-soft);
}

@media (min-width: 921px) {
  .hero-project-followup h1 {
    font-size: 5rem;
  }

  .hero-project-followup .hero-content {
    padding-top: 32px;
    padding-bottom: 112px;
  }

  .contact-grid {
    align-items: stretch;
  }

  .contact-copy {
    display: flex;
    flex-direction: column;
  }

  .contact-details {
    margin-top: auto;
    padding-top: 28px;
  }

  .contact-form {
    grid-template-rows: repeat(3, auto) minmax(auto, 1fr) repeat(3, auto);
  }

  .contact-form > label.full:not(.consent-row) {
    grid-template-rows: auto minmax(auto, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header.has-social {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
  }

  .has-social .header-social { grid-column: 2; grid-row: 1; }
  .has-social .language-switch { grid-column: 3; }
  .has-social .menu-toggle { grid-column: 4; }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding-block: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    grid-column: 3;
    grid-row: 1;
    min-width: 48px;
    min-height: 44px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-column: auto;
    flex-direction: column;
    justify-content: start;
    gap: 4px;
    padding: 12px 20px 20px;
    max-height: calc(100svh - 80px);
    overflow-y: auto;
    background: var(--blue);
    box-shadow: 0 16px 24px rgba(6, 29, 41, 0.16);
    border-top: 1px solid rgba(216, 189, 120, 0.24);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding: 2px;
    gap: 0;
  }

  .language-switch [data-lang] {
    min-width: 40px;
    min-height: 44px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    width: min(700px, calc(100% - 36px));
    margin-left: 18px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .intro-grid,
  .approach-grid,
  .contact-grid,
  .detail-approach-grid,
  .service-area-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .expat-note {
    padding: 24px 0 0;
    border-top: 1px solid rgba(216, 189, 120, 0.32);
    border-left: 0;
  }

  .contact-phone-grid {
    grid-template-columns: 1fr;
  }

  .focus-shell,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .experience-content {
    margin-left: 0;
  }

  .focus-media,
  .detail-hero-media {
    min-height: 0;
  }

  .focus-media {
    aspect-ratio: 16 / 9;
  }

  .detail-hero-media img {
    height: auto;
  }

  .detail-hero {
    min-height: 0;
  }

  .focus-panel {
    padding: 32px;
    min-height: 370px;
    border-top: 1px solid rgba(216, 189, 120, 0.22);
    border-left: 0;
  }

  .focus-controls {
    position: static;
    justify-self: end;
    margin: 0 24px 24px;
    backdrop-filter: none;
  }

  .section-heading h2,
  .intro h2,
  .approach h2,
  .contact h2,
  .closing-content h2,
  .experience-content h2,
  .service-area h2,
  .detail-approach h2,
  .service-cta h2 {
    font-size: 2.5rem;
    line-height: 1.12;
  }

  .project-grid,
  .audience-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-header.has-social {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 4px;
    padding: 12px;
  }

  .has-social .brand img { width: 36px; height: 36px; }
  .has-social .header-social { justify-self: end; gap: 4px; }
  .has-social .social-link { width: 40px; height: 44px; }
  .has-social .language-switch [data-lang] { min-width: 30px; }
  .has-social .menu-toggle { min-width: 42px; }

  .site-header {
    min-height: 68px;
    gap: 8px;
    padding: 8px 16px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
    background: var(--blue);
  }

  .hero-media img {
    height: auto;
    object-fit: contain;
  }

  .hero-media {
    bottom: auto;
    aspect-ratio: 3 / 2;
  }

  .hero-shade {
    background: linear-gradient(180deg, transparent 35%, rgba(8, 47, 67, 0.1) 55%, var(--blue));
  }

  .hero-content {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 62% 20px 32px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.75rem;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 3.25rem;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero .hero-actions .button-secondary {
    min-height: 44px;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .hero-actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-caption {
    display: none;
  }

  .section-pad {
    padding: 56px 20px;
  }

  .section-heading h2,
  .intro h2,
  .approach h2,
  .contact h2,
  .closing-content h2,
  .experience-content h2,
  .service-area h2,
  .detail-approach h2,
  .service-cta h2,
  .legal-header h1 {
    font-size: 2rem;
    line-height: 1.16;
  }

  .section-kicker {
    font-size: 0.8125rem;
  }

  .intro-copy,
  .focus-panel p:not(.section-kicker),
  .detail-lede {
    font-size: 1rem;
  }

  .section-inner,
  .contact-grid > *,
  .footer-grid > * {
    min-width: 0;
  }

  .project-grid,
  .audience-grid,
  .case-study-grid,
  .gallery-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .case-study-grid article,
  .case-study-grid article + article {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(216, 189, 120, 0.22);
  }

  .experience-proof {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card-large,
  .gallery-card-large {
    grid-column: auto;
    min-height: 0;
  }

  .project-card-large .project-media,
  .project-media,
  .gallery-card-large .gallery-media,
  .gallery-media {
    aspect-ratio: auto;
  }

  .project-media img,
  .gallery-media img {
    height: auto;
  }

  .focus-shell {
    min-height: 0;
  }

  .focus-media {
    min-height: 0;
  }

  .focus-panel {
    padding: 24px;
    min-height: 440px;
  }

  .focus-panel h3 {
    font-size: 1.875rem;
  }

  .detail-hero {
    min-height: 0;
  }

  .detail-hero-media {
    min-height: 0;
  }

  .detail-hero-content {
    padding: 28px 20px 40px;
  }

  .detail-hero h1 {
    font-size: 2.125rem;
    line-height: 1.12;
  }

  .back-link {
    margin-bottom: 22px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .detail-lede {
    margin-top: 18px;
  }

  .experience-content {
    padding: 56px 20px;
  }

  .experience-proof span {
    min-height: 68px;
    padding: 14px;
  }

  .contact-form {
    padding: 20px;
    gap: 20px;
    box-shadow: none;
  }

  .contact-form button {
    padding-inline: 12px;
  }

  .contact-card a[href^="tel:"],
  .contact-card a[href^="mailto:"] {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .legal-inner {
    width: 100%;
  }

  .method-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .method-number {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 359px) {
  .focus-panel {
    min-height: 480px;
  }

  .hero h1 {
    font-size: 2.875rem;
  }

  .contact-form {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
