/* =========================================================
   EXPAT TURKEY — Real Estate & Relocation
   Shared stylesheet
   ========================================================= */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---- Tokens ---- */
:root {
  --navy: #0F2233;
  --navy-700: #16314a;
  --navy-300: #46607a;
  --gold: #C8A96B;
  --gold-deep: #b08f4f;
  --gold-soft: #e8d9bb;
  --white: #FFFFFF;
  --cream: #F7F6F3;
  --cream-2: #efece5;
  --ink: #1A1A1A;
  --ink-soft: #4a4a47;
  --line: rgba(15, 34, 51, 0.14);
  --line-soft: rgba(15, 34, 51, 0.08);

  --serif: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --sans: "Mulish", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(22px, 5vw, 80px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 70px -40px rgba(15, 34, 51, 0.45);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }

/* ---- Type helpers ---- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.light { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}
.h-hero { font-size: clamp(44px, 6.6vw, 104px); }
.h1 { font-size: clamp(36px, 4.6vw, 68px); }
.h2 { font-size: clamp(30px, 3.6vw, 52px); }
.h3 { font-size: clamp(23px, 2.4vw, 32px); }
.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 150px); }
.section.tight { padding-block: clamp(54px, 6vw, 92px); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .lede { color: rgba(255,255,255,0.74); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

.grid { display: grid; gap: clamp(28px, 4vw, 60px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.items-center { align-items: center; }

hr.rule { border: 0; height: 1px; background: var(--line); margin: 0; }
.gold-rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid transparent;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
  position: relative;
}
.btn .arr { transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--gold); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 4px;
  position: relative;
}
.tlink.light { color: #fff; }
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(1); transform-origin: left;
  transition: transform .5s var(--ease);
}
.tlink .arr { transition: transform .45s var(--ease); color: var(--gold); }
.tlink:hover .arr { transform: translateX(5px); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 22px;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
/* default = over dark hero */
.site-header { color: #fff; }
.site-header.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  color: var(--navy);
  padding-block: 14px;
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 40px -32px rgba(15,34,51,0.5);
}
/* pages with light header from the start */
.site-header.static-light {
  color: var(--navy);
  border-bottom-color: var(--line-soft);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
}

.nav-main { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav-main a {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding: 6px 0; opacity: 0.92;
  transition: opacity .3s var(--ease);
}
.nav-main a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav-main a:hover { opacity: 1; }
.nav-main a:hover::after, .nav-main a.active::after { width: 100%; }
.nav-main a.active { color: var(--gold-deep); }
.site-header:not(.solid):not(.static-light) .nav-main a.active { color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 22px; }

/* language switch */
.lang {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  border: 1px solid currentColor; border-radius: 999px; overflow: hidden;
  opacity: 0.85;
}
.lang button {
  background: transparent; border: 0; color: inherit;
  padding: 6px 11px; font-weight: 600; letter-spacing: 0.12em; font-size: 11.5px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang button.active { background: var(--gold); color: var(--navy); }
.header-cta { white-space: nowrap; }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px 0; }
.burger span { width: 26px; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--gutter) 60px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .6s var(--ease), opacity .4s var(--ease);
}
.drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a {
  font-family: var(--serif); font-size: clamp(30px, 8vw, 46px); font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: baseline; gap: 16px;
}
.drawer a .num { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; color: var(--gold); }
.drawer .drawer-foot { margin-top: 36px; display: flex; flex-direction: column; gap: 8px; color: rgba(255,255,255,0.6); font-size: 14px; }
.drawer .drawer-foot a { font-family: var(--sans); font-size: 14px; border: 0; padding: 2px 0; color: var(--gold); }

/* =========================================================
   LOGO
   ========================================================= */
.logo { display: inline-flex; align-items: center; gap: 14px; color: inherit; }
.logo svg { width: 38px; height: 38px; flex: none; display: block; }
.logo .emblem-stroke { stroke: var(--gold); }
.logo .wm { display: flex; flex-direction: column; line-height: 1; }
.logo .wm-1 {
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.logo .wm-2 {
  font-family: var(--sans); font-weight: 600; font-size: 8.5px;
  letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.72; margin-top: 5px;
}
.logo.lg svg { width: 64px; height: 64px; }
.logo.lg .wm-1 { font-size: 30px; }
.logo.lg .wm-2 { font-size: 11px; letter-spacing: 0.36em; margin-top: 8px; }

/* =========================================================
   IMAGE PLACEHOLDERS
   ========================================================= */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(15,34,51,0.045) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--cream-2), #e3ded4);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-300);
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, #16314a, #0c1c2c);
  color: rgba(255,255,255,0.5);
}
.ph .ph-label {
  font-family: var(--sans), monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid currentColor; padding: 8px 14px; border-radius: 2px;
  background: rgba(255,255,255,0.35); backdrop-filter: blur(2px);
}
.ph.dark .ph-label { background: rgba(0,0,0,0.18); }
.ph::after { /* corner ticks */
  content: ""; position: absolute; inset: 14px; border: 1px solid currentColor; opacity: 0.18;
  pointer-events: none;
}

/* parallax media frame */
.media { position: relative; overflow: hidden; }
.media .ph, .media img { position: absolute; inset: -8% 0; height: 116%; width: 100%; }
.media .ph { object-fit: cover; }
[data-parallax] { will-change: transform; }

/* zoom-on-hover wrapper */
.zoom { overflow: hidden; }
.zoom .ph, .zoom img { transition: transform 1.1s var(--ease); }
.zoom:hover .ph, .zoom:hover img { transform: scale(1.06); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.hero .hero-media .ph { position: absolute; inset: -10% 0; height: 120%; width: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,34,51,0.55) 0%, rgba(15,34,51,0.15) 38%, rgba(15,34,51,0.78) 100%);
}
.hero .hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(58px, 8vw, 110px); padding-top: 150px; }
.hero .h-hero { max-width: 16ch; }
.hero .lede { color: rgba(255,255,255,0.86); max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 38px; }

/* page sub-hero (inner pages) */
.subhero { position: relative; padding-top: clamp(150px, 18vh, 220px); padding-bottom: clamp(56px, 7vw, 96px); overflow: hidden; }
.subhero.bg-navy::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(120% 90% at 80% -10%, rgba(200,169,107,0.16), transparent 55%);
  pointer-events:none;
}
.subhero .wrap { position: relative; z-index: 1; }
.subhero .crumb { color: rgba(255,255,255,0.6); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.subhero .crumb a { color: var(--gold); }

/* =========================================================
   CARDS / EDITORIAL
   ========================================================= */
/* destination cards */
.dest { position: relative; display: block; }
.dest .media { aspect-ratio: 3/4; }
.dest .dest-body { padding-top: 22px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.dest .dest-body h3 { font-family: var(--serif); font-size: 27px; font-weight: 500; }
.dest .meta { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.dest .desc { color: var(--ink-soft); font-size: 15.5px; margin-top: 8px; }
.dest .media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(15,34,51,0.5));
  opacity: 0; transition: opacity .5s var(--ease);
}
.dest:hover .media::after { opacity: 1; }

/* capabilities list */
.cap-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.cap {
  background: var(--white); padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 38px);
  display: flex; flex-direction: column; gap: 14px; min-height: 240px;
  transition: background .5s var(--ease);
}
.bg-cream .cap-list { background: var(--line); }
.bg-cream .cap { background: var(--cream); }
.cap:hover { background: var(--navy); color: #fff; }
.cap:hover .cap-num, .cap:hover .cap p { color: rgba(255,255,255,0.7); }
.cap:hover h3 { color: #fff; }
.cap .cap-num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-deep); }
.cap h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; transition: color .4s; }
.cap p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; transition: color .4s; margin-top: auto; }

/* founder block */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.founder .portrait { aspect-ratio: 4/5; }
.founder blockquote { margin: 0; }
.founder .qmark { font-family: var(--serif); font-size: 80px; line-height: 0.5; color: var(--gold); display: block; height: 40px; }
.founder .sig { font-family: var(--serif); font-style: italic; font-size: 22px; margin-top: 26px; }
.founder .sig small { display: block; font-family: var(--sans); font-style: normal; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; font-weight: 600; }

/* featured properties — editorial alternating */
.prop { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.prop.flip { grid-template-columns: 1fr 1.25fr; }
.prop.flip .prop-media { order: 2; }
.prop .prop-media { aspect-ratio: 4/3; }
.prop .prop-tag { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.prop h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; margin-top: 14px; line-height: 1.1; }
.prop .prop-loc { color: var(--ink-soft); margin-top: 10px; font-size: 15.5px; }
.prop .prop-specs { display: flex; flex-wrap: wrap; gap: 0; margin-top: 26px; border-top: 1px solid var(--line); }
.prop .prop-specs > div { padding: 16px 26px 16px 0; margin-right: 26px; border-right: 1px solid var(--line); }
.prop .prop-specs > div:last-child { border-right: 0; }
.prop .prop-specs .k { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy-300); font-weight: 600; }
.prop .prop-specs .v { font-family: var(--serif); font-size: 22px; margin-top: 4px; }
.prop .prop-price { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--navy); margin-top: 24px; }

/* testimonials */
.testi { max-width: 60ch; margin-inline: auto; text-align: center; }
.testi q { font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.32; font-weight: 500; quotes: "“" "”"; }
.testi .who { margin-top: 34px; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); }
.testi .who span { color: var(--navy-300); }
.bg-navy .testi .who span { color: rgba(255,255,255,0.6); }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line); transition: background .4s, transform .4s; }
.bg-navy .testi-dots button { background: rgba(255,255,255,0.25); }
.testi-dots button.active { background: var(--gold); transform: scale(1.3); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .ph { position: absolute; inset: 0; height: 100%; }
.cta-band::after { content:""; position:absolute; inset:0; background: rgba(15,34,51,0.84); }
.cta-band .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.svc { display: grid; grid-template-columns: 88px 1.1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: start; padding-block: clamp(44px, 5vw, 76px); border-top: 1px solid var(--line); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc .svc-num { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--gold); }
.svc h3 { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); font-weight: 500; line-height: 1.12; }
.svc .svc-lead { color: var(--ink-soft); margin-top: 16px; font-size: 16px; }
.svc ul { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 12px; }
.svc ul li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: 15.5px; }
.svc ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 9px; height: 1px; background: var(--gold); }
.svc .svc-media { aspect-ratio: 4/3; margin-top: 6px; }

/* about / value rows */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--white); padding: clamp(28px,3vw,40px); }
.bg-cream .value { background: var(--cream); }
.value .value-i { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 17px; }
.value h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; margin-top: 8px; }
.value p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); }
.stat .n { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1; }
.stat .l { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-top: 12px; }
.stat .d { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }
.bg-navy .stat .d { color: rgba(255,255,255,0.6); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.field label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--navy-300); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 12px 2px; transition: border-color .4s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--gold); }
.field textarea { resize: vertical; min-height: 96px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; flex-direction: column; gap: 5px; }
.info-item .k { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); }
.info-item .v { font-family: var(--serif); font-size: 21px; }
.info-item .v.sm { font-size: 18px; }
.whatsapp {
  display: inline-flex; align-items: center; gap: 12px; align-self: flex-start;
  background: #1f8a5b; color: #fff; padding: 15px 26px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.whatsapp:hover { background: #186e49; }
.map { aspect-ratio: 16/7; margin-top: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-top: clamp(60px, 7vw, 96px); }
.site-footer .foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,56px); padding-bottom: 56px; }
.site-footer h4 { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.site-footer .logo { color: #fff; margin-bottom: 22px; }
.site-footer .logo .wm-2 { opacity: 0.6; }
.site-footer .foot-blurb { font-size: 15px; line-height: 1.7; max-width: 34ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.site-footer ul a, .site-footer .foot-contact a { font-size: 14.5px; transition: color .3s var(--ease); }
.site-footer ul a:hover, .site-footer .foot-contact a:hover { color: var(--gold); }
.site-footer .foot-contact { display: grid; gap: 14px; font-size: 14.5px; line-height: 1.6; }
.site-footer .foot-contact .lbl { color: var(--gold); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 3px; }
.site-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-block: 26px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5);
}
.site-footer .foot-bottom .legal { display: flex; gap: 26px; flex-wrap: wrap; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .founder { grid-template-columns: 1fr; }
  .founder .portrait { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}
@media (max-width: 1180px) {
  .header-cta, .lang { display: none; }
}
@media (max-width: 860px) {
  .nav-main, .header-cta, .lang { display: none; }
  .burger { display: flex; }
  .cap-list { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: 1fr; gap: 18px; }
  .svc .svc-num { font-size: 26px; }
  .prop, .prop.flip { grid-template-columns: 1fr; }
  .prop.flip .prop-media { order: 0; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .site-footer .foot-top { grid-template-columns: 1fr; }
  .prop .prop-specs > div { padding-right: 18px; margin-right: 18px; }
}
