/* =========================================================
   Diamond Date — design system
   Warm ivory base · bronze/champagne accents · deep emerald CTA
   Calm, editorial, elegant — not "casino dark"
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #f8f4ec;   /* warm ivory */
  --bg-1:      #ffffff;   /* white surface */
  --bg-2:      #efe9da;   /* warm sand (alt sections) */
  --bg-3:      #faf7f0;   /* card surface */
  --line:      #e3dac6;   /* soft sand border */
  --line-2:    #c9bda1;   /* mid-tone border */

  /* Text */
  --text:      #1d1a14;   /* warm near-black */
  --text-soft: #56503f;   /* warm brown-gray */
  --text-mute: #8d8675;   /* muted warm gray */

  /* Accents */
  --gold:      #a48243;   /* refined bronze-gold */
  --gold-dark: #7d6230;   /* hover bronze */
  --gold-soft: #d9c195;   /* soft champagne */
  --gold-pale: #ede2c8;   /* pale gold for chips */

  --green:     #244238;   /* deep forest / emerald (primary CTA) */
  --green-dark:#16302a;
  --burgundy:  #6a2530;   /* optional deep wine for highlights */

  --grad-gold: linear-gradient(135deg, #b89456 0%, #a48243 50%, #7d6230 100%);
  --grad-cream:linear-gradient(180deg, #faf7f0 0%, #f0e9d8 100%);

  --shadow-1: 0 1px 2px rgba(40,32,16,.04), 0 18px 40px -22px rgba(40,32,16,.18);
  --shadow-2: 0 30px 80px -30px rgba(40,32,16,.25);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ------------------- Reset ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; color: var(--text); }
p { margin: 0; }

/* ------------------- Subtle texture ------------------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(217,193,149,.35), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(247,239,222,.6), transparent 60%);
  z-index: 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

/* ------------------- Typography helpers ------------------- */
.kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.eyebrow__line {
  width: 40px; height: 1px;
  background: var(--grad-gold);
  display: inline-block;
}
.section__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.section__title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.section__lead {
  margin-top: 18px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}
.section__lead--right { text-align: right; margin-left: auto; }
.section__head { margin-bottom: 56px; }
.section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ------------------- Buttons ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--green);
  color: #f3ead5;
  box-shadow: 0 12px 30px -12px rgba(36,66,56,.45);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(36,66,56,.55);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(255,255,255,.9);
}

/* ------------------- NAV ------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(248,244,236,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark { width: 28px; height: 28px; flex-shrink: 0; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name-main {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: .005em;
  color: var(--text);
}
.brand__name-sub {
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--text-mute);
  margin-top: 5px;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 13.5px;
  color: var(--text-soft);
  letter-spacing: .03em;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-mute);
}
.lang__btn {
  padding: 4px 2px;
  color: var(--text-mute);
  transition: color .2s;
}
.lang__btn:hover { color: var(--text-soft); }
.lang__btn.is-active { color: var(--gold-dark); font-weight: 500; }
.lang__sep { opacity: .4; }

.burger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------- HERO ------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 50% at 70% 10%, rgba(217,193,149,.5), transparent 70%),
    radial-gradient(60% 50% at 20% 90%, rgba(237,226,200,.6), transparent 70%);
}
.hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  mix-blend-mode: multiply;
  filter: saturate(.85);
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(248,244,236,.55) 0%, rgba(248,244,236,.1) 40%, rgba(248,244,236,.85) 100%),
    linear-gradient(90deg, rgba(248,244,236,.7) 0%, rgba(248,244,236,.1) 50%, rgba(248,244,236,.1) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(36,28,16,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,28,16,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.hero__glow--1 { top: -200px; right: -150px; background: radial-gradient(circle, rgba(196,164,112,.5), transparent 70%); }
.hero__glow--2 { bottom: -200px; left: -150px; background: radial-gradient(circle, rgba(174,196,180,.35), transparent 70%); }

.hero__sparkles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: sparkle 6s infinite ease-in-out;
}
.hero__sparkles span:nth-child(1)  { top: 22%; left:  8%; animation-delay: .0s; }
.hero__sparkles span:nth-child(2)  { top: 36%; left: 88%; animation-delay: .9s; }
.hero__sparkles span:nth-child(3)  { top: 62%; left:  6%; animation-delay: 1.8s; }
.hero__sparkles span:nth-child(4)  { top: 76%; left: 92%; animation-delay: 2.7s; }
.hero__sparkles span:nth-child(5)  { top: 14%; left: 64%; animation-delay: 3.6s; }
.hero__sparkles span:nth-child(6)  { top: 84%; left: 42%; animation-delay: 4.5s; }
@keyframes sparkle {
  0%, 100% { transform: scale(0.4); opacity: 0; }
  50% { transform: scale(1.2); opacity: .6; }
}

.hero__content { max-width: 980px; }
.hero__title {
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.hero__lead {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero__meta {
  display: flex;
  gap: clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta b {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
}
.hero__meta span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 8px;
  background: var(--gold);
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ------------------- SECTIONS ------------------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section--alt {
  background: var(--bg-2);
}

/* ------------------- PAGE HEADER (inner pages) ------------------- */
.page-header {
  position: relative;
  padding: 200px 0 90px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-header__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(217,193,149,.45), transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(237,226,200,.55), transparent 70%);
}
.page-header__inner { max-width: 920px; }
.page-header h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 400;
  margin-top: 18px;
  margin-bottom: 24px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.page-header__lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 680px;
}
.page-header__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.page-header__crumbs a:hover { color: var(--gold-dark); }
.page-header__crumbs span { color: var(--line-2); }

/* ------------------- CTA BLOCK (pre-footer) ------------------- */
.cta-block {
  padding: 90px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-block__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-block h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.cta-block h2 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.cta-block p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
}
.cta-block__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ------------------- SERVICES ------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.card { padding: 44px 36px; background: var(--bg-1); transition: background .3s, transform .3s; }
.service { display: flex; flex-direction: column; gap: 18px; min-height: 280px; }
.service:hover { background: var(--bg-3); }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale);
  border: 1px solid rgba(164,130,67,.25);
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.card__icon svg { width: 28px; height: 28px; }
.service h3 {
  font-size: 25px;
  font-weight: 500;
}
.service p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ------------------- Section link (home cards) ------------------- */
.service__more {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service__more::after { content: "→"; transition: transform .2s; }
.service:hover .service__more { gap: 10px; }

/* link wrap card */
a.card { display: flex; color: inherit; }
a.card:hover h3 { color: var(--gold-dark); }
a.card h3 { transition: color .2s; }

/* ------------------- HOME — quick reasons strip ------------------- */
.quick-why {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.quick-why__item {
  padding: 30px 28px;
  background: var(--bg-1);
}
.quick-why__item b {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--gold-dark);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.quick-why__item span {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ------------------- ADD-ONS (production stack) ------------------- */
.addons {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.addons__label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-right: 10px;
  flex-shrink: 0;
}
.addons__chip {
  padding: 9px 18px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-soft);
  transition: border-color .2s, color .2s, background .2s;
}
.addons__chip:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--bg-3); }

/* ------------------- PROCESS ------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line-2);
}
.step {
  text-align: center;
  padding: 0 14px;
  position: relative;
}
.step__num {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-dark);
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s, color .3s;
}
.step:hover .step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff8e8;
}
.step h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ------------------- PORTFOLIO ------------------- */
.portfolio {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.port-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line);
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
}
.port-card--lg { grid-column: span 4; }
.port-card--lg:nth-of-type(2n) { grid-column: span 2; }
.port-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-1);
}
.port-card__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.port-card__media::before {
  content: "";
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: transform .6s ease;
}
.port-card:hover .port-card__media::before { transform: scale(1.1); }
.port-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .6s ease;
  z-index: 1;
}
.port-card:hover .port-card__img { transform: scale(1.1); }
.port-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,15,8,.35));
  z-index: 2;
}
.port-card__media[data-tone="emerald"] { background: linear-gradient(135deg, #4a6a5e, #2c4a3e); }
.port-card__media[data-tone="emerald"]::before { background-image: radial-gradient(circle at 30% 30%, #7a9e88, transparent 60%), radial-gradient(circle at 70% 70%, #3a5e4e, transparent 60%); }
.port-card__media[data-tone="amber"]  { background: linear-gradient(135deg, #c69558, #8b6238); }
.port-card__media[data-tone="amber"]::before  { background-image: radial-gradient(circle at 30% 30%, #e8c898, transparent 60%), radial-gradient(circle at 70% 80%, #9c7240, transparent 50%); }
.port-card__media[data-tone="violet"] { background: linear-gradient(135deg, #806890, #4a3a5e); }
.port-card__media[data-tone="violet"]::before { background-image: radial-gradient(circle at 30% 30%, #b89cc8, transparent 60%), radial-gradient(circle at 70% 70%, #604878, transparent 60%); }
.port-card__media[data-tone="rose"]   { background: linear-gradient(135deg, #b87880, #80424c); }
.port-card__media[data-tone="rose"]::before   { background-image: radial-gradient(circle at 30% 30%, #d8a0a8, transparent 60%), radial-gradient(circle at 70% 70%, #985868, transparent 60%); }
.port-card__media[data-tone="ice"]    { background: linear-gradient(135deg, #8da8b4, #4a6878); }
.port-card__media[data-tone="ice"]::before    { background-image: radial-gradient(circle at 30% 30%, #b8d0d8, transparent 60%), radial-gradient(circle at 70% 70%, #5a7888, transparent 60%); }

.port-card__body { padding: 24px 28px 30px; }
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.port-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
.port-card p {
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ------------------- ABOUT ------------------- */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.4), rgba(0,0,0,.05)),
    radial-gradient(circle at 30% 20%, #d8c4a0, #b89556 70%),
    radial-gradient(circle at 70% 80%, #a48243, transparent 60%);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.about__photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%, transparent 100%);
  background-size: 200% 200%;
  animation: shimmer 8s infinite linear;
}
@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}
.about__badge {
  position: absolute;
  right: -20px; bottom: 40px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 18px;
  max-width: 280px;
  box-shadow: var(--shadow-2);
}
.about__badge b {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-dark);
  font-weight: 400;
}
.about__badge span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

.about__text p {
  color: var(--text-soft);
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
}
.about__list {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about__list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.about__list li span {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--text);
}
.about__list li i {
  color: var(--text-soft);
  font-style: normal;
  font-size: 14.5px;
}

/* ------------------- WHY US (USP grid) ------------------- */
.usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp__card {
  padding: 36px 32px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.usp__card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.usp__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.usp__icon svg { width: 24px; height: 24px; }
.usp__card h4 {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}
.usp__card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ------------------- INDUSTRIES ------------------- */
.industries {
  margin-top: 60px;
  padding: 36px 40px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.industries__label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mute);
  max-width: 160px;
  line-height: 1.5;
}
.industries__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  flex: 1;
}
.industries__list li {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-soft);
  position: relative;
  padding-right: 28px;
}
.industries__list li::after {
  content: "·";
  position: absolute;
  right: 6px;
  color: var(--line-2);
}
.industries__list li:last-child::after { display: none; }

/* ------------------- GEOGRAPHY ------------------- */
.geo {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.geo__map {
  position: relative;
  aspect-ratio: 2/1;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-1);
  padding: 30px;
  overflow: hidden;
  color: var(--gold-dark);
  box-shadow: var(--shadow-1);
}
.geo__map-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(36,28,16,.06) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}
.geo__map svg {
  position: relative;
  width: 100%; height: 100%;
}
.geo__pins circle {
  filter: drop-shadow(0 0 5px currentColor);
  animation: pulse 3s infinite ease-in-out;
}
.geo__pins circle:nth-child(2n) { animation-delay: .6s; }
.geo__pins circle:nth-child(3n) { animation-delay: 1.2s; }
.geo__pins circle:nth-child(4n) { animation-delay: 1.8s; }
@keyframes pulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}

.geo__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 30px;
}
.geo__group h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.geo__group ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.geo__group li {
  font-size: 15px;
  color: var(--text-soft);
}

/* ------------------- REVIEWS ------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.review:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.review__quote {
  width: 36px; height: 36px;
  color: var(--gold);
  opacity: .55;
}
.review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}
.review figcaption {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review figcaption b {
  font-weight: 500;
  font-size: 15px;
}
.review figcaption span {
  font-size: 13px;
  color: var(--text-mute);
}

/* ------------------- FAQ ------------------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
}
.faq__head:hover { color: var(--gold-dark); }
.faq__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s ease, border-color .2s, background .2s;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: background .2s, opacity .2s;
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 12px; }
.faq__item.is-open .faq__icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq__item.is-open .faq__icon::before { background: #fff8e8; }
.faq__item.is-open .faq__icon::after { opacity: 0; }
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq__inner {
  padding: 0 0 26px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}

/* ------------------- CONTACT ------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact__list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact__list li span {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contact__list li a,
.contact__list li i {
  font-style: normal;
  font-size: 17px;
  color: var(--text);
  transition: color .2s;
}
.contact__list li a:hover { color: var(--gold-dark); }

.form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-1);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label > span {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--text);
  font: inherit;
  padding: 12px 0;
  transition: border-color .2s;
  font-family: var(--sans);
}
.form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%),
                    linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%);
  background-position: calc(100% - 12px) 18px, calc(100% - 6px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.form select option { background: var(--bg-1); color: var(--text); }
.form textarea {
  resize: vertical;
  min-height: 88px;
  padding-top: 12px;
  font-family: var(--sans);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-mute);
  font-family: var(--sans);
}
.form .btn--block { margin-top: 6px; }
.form__hint { color: var(--text-mute); font-size: 12px; text-align: center; }
.form__ok {
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: rgba(36,66,56,.06);
  border: 1px solid rgba(36,66,56,.2);
  color: var(--green);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form__ok b { font-size: 15px; font-weight: 600; }
.form__ok span { font-size: 14px; color: var(--text-soft); }

/* ------------------- FOOTER ------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  background: var(--bg-2);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
}
.footer__brand p {
  color: var(--text-soft);
  margin-top: 14px;
  max-width: 320px;
  font-size: 14px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__cols h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__cols a,
.footer__cols span {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--gold-dark); }
.footer__bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-mute);
}

/* ------------------- Reveal animation ------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------- Responsive ------------------- */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .portfolio { grid-template-columns: repeat(4, 1fr); }
  .port-card, .port-card--lg, .port-card--lg:nth-of-type(2n) { grid-column: span 2; }
  .about, .geo, .contact { grid-template-columns: 1fr; gap: 50px; }
  .reviews { grid-template-columns: 1fr; }
  .usp { grid-template-columns: repeat(2, 1fr); }
  .quick-why { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .process::before { display: none; }
}

@media (max-width: 1100px) {
  .cta-block__inner { grid-template-columns: 1fr; }
  .cta-block__actions { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .page-header { padding: 130px 0 64px; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(248,244,236,.98);
    backdrop-filter: blur(12px);
    padding: 22px var(--pad);
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .burger { display: flex; }
  .nav .btn { display: none; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero__cta { margin-bottom: 56px; }
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 40px; }
  .services { grid-template-columns: 1fr; }
  .portfolio { grid-template-columns: 1fr; gap: 16px; }
  .port-card, .port-card--lg, .port-card--lg:nth-of-type(2n) { grid-column: span 1; }
  .geo__list { grid-template-columns: 1fr; }
  .usp { grid-template-columns: 1fr; }
  .quick-why { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 28px; }
  .step { text-align: left; display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
  .step__num { margin: 0; width: 56px; height: 56px; font-size: 22px; }
  .about__list li,
  .contact__list li { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .about__badge { right: 0; bottom: 0; transform: translateY(40%); padding: 18px 22px; }
  .about__badge b { font-size: 44px; }
  .industries { padding: 28px; gap: 18px; }
  .industries__label { max-width: none; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .review { padding: 28px; }
  .review blockquote { font-size: 19px; }
  .faq__head { font-size: 18px; padding: 22px 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(40px, 12vw, 64px); }
  .brand__name-sub { display: none; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .addons { padding: 22px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
