/* ============================================================
   GN Design — base design system
   Warm beige · brushed gold · calm luxury
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream:        #F4EFE7;
  --cream-2:      #EEE7DB;
  --paper:        #FBF8F2;
  --ink:          #2B2722;
  --ink-2:        #4A433B;
  --ink-soft:     #756B5F;
  --line:         #E0D7C8;
  --line-strong:  #CFC2AD;

  /* accent — default: brushed gold */
  --accent:        #A6824B;
  --accent-deep:   #8A6A38;
  --accent-tint:   #ECE2CF;
  --accent-on:     #FFFFFF;

  /* rhythm (overridden by [data-density]) */
  --section-y: 116px;
  --gap: 28px;
  --container: 1240px;
  --radius: 4px;

  --shadow-soft: 0 24px 60px -34px rgba(60,48,30,.45);
  --shadow-card: 0 18px 50px -30px rgba(60,48,30,.40);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* fonts (overridden by [data-concept]) */
  --font-display: "Playfair Display", Georgia, serif;
  --font-eyebrow: "Forum", Georgia, serif;
  --font-body: "Golos Text", system-ui, sans-serif;
  --display-weight: 500;
  --display-spacing: -0.01em;
  --img-radius: 4px;
  --btn-radius: 2px;
}

[data-accent="blue"] {
  --accent:      #2E3A82;
  --accent-deep: #232C66;
  --accent-tint: #E3E4EF;
}
[data-accent="neutral"] {
  --accent:      #897C69;
  --accent-deep: #6C6151;
  --accent-tint: #E8E1D4;
}

[data-density="compact"] { --section-y: 78px;  --gap: 20px; }
[data-density="regular"] { --section-y: 116px; --gap: 28px; }
[data-density="comfy"]   { --section-y: 168px; --gap: 40px; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--accent-on); }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), 92vw); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
section[id], main [id] { scroll-margin-top: 88px; }
.section--paper { background: var(--paper); }
.section--cream2 { background: var(--cream-2); }

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: 12.5px;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.is-center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: var(--display-spacing); line-height: 1.08; margin: 0; color: var(--ink); }

.display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-spacing);
  line-height: 1.06;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
}
.h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.08; }
.h3 { font-size: clamp(1.3rem, 1.9vw, 1.75rem); line-height: 1.18; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-2); line-height: 1.62; font-weight: 400; }
.muted { color: var(--ink-soft); }
.measure { max-width: 60ch; }
.measure-s { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--accent-on); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
.btn .ar { transition: transform .35s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  color: var(--accent-deep);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: 14px; border-color: var(--accent); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  padding-block: 22px;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  padding-block: 13px;
  border-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 58px; width: auto; transition: height .4s var(--ease); }
.scrolled .brand img { height: 48px; }
.brand-text { line-height: 1; }
.brand-text b { font-family: var(--font-eyebrow); font-size: 19px; letter-spacing: .14em; font-weight: 500; display: block; }
.brand-text span { font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding-bottom: 4px; letter-spacing: .01em;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

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

/* concept switcher */
.concept-switch {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 4px; border: 1px solid var(--line-strong); border-radius: 100px;
  background: color-mix(in srgb, var(--paper) 60%, transparent);
}
.concept-switch button {
  border: none; background: transparent; color: var(--ink-soft);
  font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: .12em;
  width: 34px; height: 26px; border-radius: 100px; transition: all .3s var(--ease);
}
.concept-switch button.active { background: var(--accent); color: var(--accent-on); }
.concept-switch button:not(.active):hover { color: var(--ink); }

.menu-toggle { display: none; background: none; border: none; padding: 8px; color: var(--ink); }
.menu-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(30,24,16,.45); opacity: 0; transition: opacity .4s var(--ease); }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--paper); transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; gap: 8px; padding: 84px 32px 32px;
}
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { font-family: var(--font-display); font-size: 26px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--ink); }
.drawer-close svg { width: 26px; height: 26px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: 150px; padding-bottom: var(--section-y); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 22px 0 0; font-size: clamp(2.7rem, 5.6vw, 5rem); }
.hero h1 em { font-style: italic; color: var(--accent-deep); }
.hero-sub { margin-top: 26px; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-media { position: relative; }
.hero-media .frame { position: relative; overflow: hidden; border-radius: var(--img-radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/4.6; }
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.2s var(--ease); }
.hero-media .tagchip {
  position: absolute; left: -26px; bottom: 38px; z-index: 3;
  background: var(--paper); padding: 16px 22px; border-radius: var(--img-radius);
  box-shadow: var(--shadow-card); max-width: 230px;
}
.hero-media .tagchip b { font-family: var(--font-display); font-size: 20px; display: block; }
.hero-media .tagchip span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .02em; }
.hero-scroll { display: inline-flex; align-items: center; gap: 10px; margin-top: 40px; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-eyebrow); }
.hero-scroll .ln { width: 46px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-scroll .ln::after { content:""; position:absolute; left:-46px; top:0; width:46px; height:1px; background: var(--accent); animation: slide 2.4s var(--ease) infinite; }
@keyframes slide { 0%{left:-46px} 60%,100%{left:46px} }

/* ============================================================
   Section heading block
   ============================================================ */
.head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 56px; }
.head .lead { margin: 0; }
.head-stack > * + * { margin-top: 18px; }
.section-num { font-family: var(--font-eyebrow); font-size: 13px; color: var(--accent); letter-spacing: .1em; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); align-items: center; }
.about-statement { font-family: var(--font-display); font-size: clamp(1.6rem,2.6vw,2.5rem); line-height: 1.24; font-weight: var(--display-weight); }
.about-statement em { font-style: italic; color: var(--accent-deep); }
.about-points { margin-top: 30px; padding: 0; display: grid; gap: 18px; list-style: none; }
.about-points li { display: flex; gap: 14px; list-style: none; align-items: flex-start; color: var(--ink-2); }
.about-points li::before { content:""; flex: none; width: 7px; height: 7px; margin-top: 9px; background: var(--accent); border-radius: 50%; }
.about-points ul { padding: 0; margin: 0; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow-soft); }
.about-media .stat { position: absolute; right: -22px; top: 40px; background: var(--accent); color: var(--accent-on); padding: 20px 26px; border-radius: var(--img-radius); box-shadow: var(--shadow-card); }
.about-media .stat b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1; }
.about-media .stat span { font-size: 12px; letter-spacing: .04em; opacity: .9; }

/* ---------- Process ---------- */
.process-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-item {
  display: grid; grid-template-columns: 86px 1fr 1.1fr; gap: 24px; align-items: baseline;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), padding-inline .4s var(--ease);
}
.process-item:hover { background: var(--paper); padding-inline: 22px; }
.process-item .pnum { font-family: var(--font-eyebrow); font-size: 17px; color: var(--accent); }
.process-item h3 { font-size: clamp(1.25rem,1.7vw,1.6rem); }
.process-item p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--img-radius);
  padding: 34px 30px 30px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--accent); transition: width .5s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-card .ic { width: 46px; height: 46px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; color: var(--accent-deep); margin-bottom: 22px; }
.svc-card .ic svg { width: 22px; height: 22px; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-card p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ---------- Gallery carousel ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; padding-block: 12px; cursor: grab; -webkit-user-select: none; user-select: none; }
.carousel-viewport.dragging { cursor: grabbing; }
.carousel-track { display: flex; gap: var(--gap); will-change: transform; transition: transform .75s cubic-bezier(.4,.0,.1,1); }
.carousel-track.no-anim { transition: none; }
.cslide {
  flex: 0 0 58%; margin: 0; position: relative; border-radius: var(--img-radius);
  overflow: hidden; background: var(--cream-2);
  opacity: .32; transform: scale(.9);
  transition: opacity .75s var(--ease), transform .75s var(--ease), box-shadow .75s var(--ease);
}
.cslide.is-active { opacity: 1; transform: scale(1); box-shadow: var(--shadow-soft); cursor: pointer; }
.cslide:not(.is-active) { cursor: pointer; }
.cslide-img { aspect-ratio: 16 / 10.4; overflow: hidden; }
.cslide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); pointer-events: none; }
.cslide.is-active:hover img { transform: scale(1.05); }
.cslide::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(28,21,11,.6), rgba(28,21,11,0) 48%);
  opacity: 0; transition: opacity .7s var(--ease);
}
.cslide.is-active::after { opacity: 1; }
.cslide figcaption {
  position: absolute; left: 30px; bottom: 26px; z-index: 2; color: #fff;
  opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.cslide.is-active figcaption { opacity: 1; transform: none; transition-delay: .12s; }
.cslide figcaption b { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); display: block; line-height: 1.1; }
.cslide figcaption span { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; opacity: .82; }
.cslide .plus {
  position: absolute; top: 18px; right: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff;
  opacity: 0; transform: scale(.7); transition: all .55s var(--ease);
}
.cslide.is-active .plus { opacity: 1; transform: scale(1); }
.cslide.is-active .plus:hover { background: rgba(255,255,255,.3); }
.cslide .plus svg { width: 20px; height: 20px; }

.carousel-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 36px; }
.carousel-arrows { display: flex; gap: 12px; }
.cnav {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--paper); color: var(--ink); display: grid; place-items: center;
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.cnav:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.cnav:active { transform: translateY(0) scale(.96); }
.cnav svg { width: 22px; height: 22px; }
.cdots { display: flex; align-items: center; gap: 10px; }
.cdot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 100px; background: var(--line-strong); cursor: pointer; transition: background .4s var(--ease), width .4s var(--ease); }
.cdot.active { background: var(--accent); width: 30px; }
.ccounter { font-family: var(--font-eyebrow); font-size: 15px; letter-spacing: .1em; color: var(--ink-soft); white-space: nowrap; }
.ccounter b { color: var(--accent-deep); font-weight: 500; }
.ccounter .csep { opacity: .5; margin: 0 2px; }

/* ---------- Quote ---------- */
.quote-band { background: var(--accent-tint); position: relative; overflow: hidden; }
.quote-mark { font-family: var(--font-display); font-size: clamp(8rem, 16vw, 15rem); line-height: .7; color: var(--accent); opacity: .26; position: absolute; left: 4%; top: 8%; }
.quote-band blockquote {
  margin: 0; max-width: 24ch; position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: var(--display-weight); font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.28; color: var(--ink);
}
.quote-cite { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
.quote-cite .ln { width: 40px; height: 1px; background: var(--accent); }
.quote-cite span { font-family: var(--font-eyebrow); letter-spacing: .2em; text-transform: uppercase; font-size: 13px; color: var(--accent-deep); }

/* ---------- Story ---------- */
.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px,5vw,76px); align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow-soft); }
.story-copy p { color: var(--ink-2); margin: 0 0 18px; }
.story-copy p.first::first-letter {
  font-family: var(--font-display); float: left; font-size: 4.4rem; line-height: .76;
  padding: 8px 14px 0 0; color: var(--accent-deep);
}
.editable-note { font-size: 12.5px; color: var(--accent-deep); background: var(--accent-tint); border-radius: 3px; padding: 2px 8px; font-style: normal; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 clamp(30px,5vw,70px); }
.why-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.why-item .wn { font-family: var(--font-eyebrow); font-size: 15px; color: var(--accent); border: 1px solid var(--accent); border-radius: 50%; width: 44px; height: 44px; display: grid; place-items: center; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.why-item p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px,5vw,72px); }
.contact-info .row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-info .row .ic { color: var(--accent-deep); margin-top: 2px; }
.contact-info .row .ic svg { width: 20px; height: 20px; }
.contact-info .row .lbl { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-eyebrow); }
.contact-info .row .val { font-size: 17px; color: var(--ink); white-space: nowrap; }
.contact-info .row a.val:hover { color: var(--accent-deep); }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: all .3s var(--ease); }
.socials a:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-3px); }
.socials a svg { width: 19px; height: 19px; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--img-radius); padding: clamp(26px,3.4vw,44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; position: relative; }
.field label { display: block; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--font-eyebrow); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: var(--btn-radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--paper);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B4513E; background: #FBF1EE; }
.field .err { font-size: 12.5px; color: #B4513E; margin-top: 6px; min-height: 0; opacity: 0; transform: translateY(-3px); transition: all .25s var(--ease); }
.field.invalid .err { opacity: 1; transform: translateY(0); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--ink-soft); max-width: 38ch; }
.form-success {
  text-align: center; padding: 30px 10px;
}
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; animation: pop .5s var(--ease); }
.form-success .check svg { width: 30px; height: 30px; }
@keyframes pop { 0%{transform:scale(.4);opacity:0} 60%{transform:scale(1.08)} 100%{transform:scale(1);opacity:1} }
.is-hidden { display: none !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E8E0D2; padding-block: 70px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand b { font-family: var(--font-eyebrow); font-size: 26px; letter-spacing: .14em; display: block; }
.footer-brand span { font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: rgba(232,224,210,.6); }
.footer-brand p { margin-top: 18px; max-width: 34ch; color: rgba(232,224,210,.7); font-size: 15px; }
.footer-col h4 { font-family: var(--font-eyebrow); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(232,224,210,.78); font-size: 15px; margin-bottom: 11px; transition: color .3s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(232,224,210,.55); }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; pointer-events: none; }
.lightbox-scrim { position: absolute; inset: 0; background: rgba(22,17,10,.92); opacity: 0; transition: opacity .4s var(--ease); }
.lightbox.open { pointer-events: auto; }
.lightbox.open .lightbox-scrim { opacity: 1; }
.lightbox-stage { position: relative; z-index: 2; width: min(92vw, 1160px); transform: scale(.96); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.lightbox.open .lightbox-stage { transform: scale(1); opacity: 1; }
.lightbox-stage img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 3px; }
.lightbox-cap { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 16px; color: #EDE6D8; }
.lightbox-cap b { font-family: var(--font-display); font-size: 22px; }
.lightbox-cap span { font-family: var(--font-eyebrow); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: rgba(237,230,216,.6); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; display: grid; place-items: center; transition: background .3s var(--ease); }
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: -76px; }
.lb-next { right: -76px; }
.lb-close { position: absolute; top: -54px; right: 0; z-index: 3; background: none; border: none; color: #fff; display: flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-eyebrow); }
.lb-btn svg, .lb-close svg { width: 22px; height: 22px; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll .ln::after { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-right .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 520px; }
  .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .head { grid-template-columns: 1fr; }
  .cslide { flex: 0 0 70%; }
  .about-media .stat { right: 16px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { background: rgba(255,255,255,.18); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero { padding-top: 124px; }
  .process-item { grid-template-columns: 50px 1fr; }
  .process-item p { grid-column: 1 / -1; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cslide { flex: 0 0 86%; }
  .cslide figcaption { left: 20px; bottom: 20px; }
  .carousel-foot { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .cnav { width: 50px; height: 50px; }
  .hero-media .tagchip { left: 12px; }
  .about-media .stat { position: static; display: inline-block; margin-top: 16px; }
}


/* ---------- Language switcher ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-strong);
  background: rgba(251, 248, 242, .72);
  backdrop-filter: blur(10px);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang-switch button.active {
  background: var(--accent);
  color: var(--accent-on);
}
.lang-switch--drawer {
  margin-top: 18px;
  width: max-content;
}
html[lang="hy"] {
  --font-display: "Noto Sans Armenian", "Golos Text", system-ui, sans-serif;
  --font-eyebrow: "Noto Sans Armenian", "Golos Text", system-ui, sans-serif;
  --font-body: "Noto Sans Armenian", "Golos Text", system-ui, sans-serif;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-error {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(150, 55, 55, .28);
  color: #7b2e2e;
  background: rgba(255,255,255,.48);
  font-size: 14px;
  line-height: 1.5;
}
button[disabled] {
  opacity: .72;
  pointer-events: none;
}
@media (max-width: 980px) {
  .nav-right .lang-switch { display: none; }
}
