/* ============================================================
   LIMELIGHT LETTERS
   Theatrical marquee design system
   Palette : warm tungsten bulbs on a stage-black ground
   ============================================================ */

:root {
  /* Stage and surfaces */
  --stage:      #0a0908;
  --stage-2:    #100d0a;
  --velvet:     #16120d;
  --velvet-2:   #1f1912;
  --line:       rgba(248, 179, 75, 0.16);
  --line-soft:  rgba(247, 241, 230, 0.08);

  /* Bulbs and warmth */
  --bulb:        #f8b34b;
  --bulb-bright: #ffd98a;
  --brass:       #c8902f;
  --brass-deep:  #5f4416;
  --glow:        rgba(248, 179, 75, 0.55);
  --glow-soft:   rgba(248, 179, 75, 0.20);

  /* Light / text */
  --globe:   #f7f1e6;
  --smoke:   #b3a895;
  --smoke-2: #7d7264;
  --rose:    #e6abab;

  /* Type */
  --display: "Bodoni Moda", "Didot", "Georgia", serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --marquee: "Anton", "Arial Narrow", system-ui, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--stage);
  color: var(--globe);
  line-height: 1.62;
  font-size: 17px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--bulb); color: #1a1206; }

/* ambient stage grain + vignette */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(248,179,75,0.10), transparent 60%),
    radial-gradient(80% 60% at 100% 110%, rgba(248,179,75,0.05), transparent 60%);
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 1; padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 640; line-height: 1.04; letter-spacing: -0.005em; font-optical-sizing: auto; }
.display {
  font-family: var(--display);
  font-weight: 660;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; font-weight: 600; color: var(--bulb-bright); }
.h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: 1.05; }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: var(--smoke); max-width: 60ch; line-height: 1.55; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--bulb);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--bulb); box-shadow: 0 0 10px var(--glow), 0 0 22px var(--glow-soft);
}

.glow-text { text-shadow: 0 0 26px var(--glow-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.7em; border-radius: 100px;
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  will-change: transform;
}
.btn--bulb {
  background: linear-gradient(180deg, var(--bulb-bright), var(--bulb));
  color: #21160a;
  box-shadow: 0 0 0 1px rgba(255,217,138,0.4), 0 14px 40px -14px var(--glow);
}
.btn--bulb:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(255,217,138,0.6), 0 22px 50px -16px var(--glow); }
.btn--ghost { border: 1px solid var(--line); color: var(--globe); }
.btn--ghost:hover { border-color: var(--bulb); color: var(--bulb-bright); transform: translateY(-3px); }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- bulb-dot divider ---------- */
.dots {
  display: flex; gap: 18px; align-items: center; justify-content: center;
  padding-block: 8px;
}
.dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--glow-soft);
  animation: twinkle 2.6s var(--ease) infinite;
}
.dots span:nth-child(2n) { animation-delay: 0.4s; }
.dots span:nth-child(3n) { animation-delay: 0.9s; background: var(--bulb); box-shadow: 0 0 12px var(--glow); }
@keyframes twinkle { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ============================================================
   MARQUEE BULB FRAME  (SVG dotted rect, chase-lit)
   ============================================================ */
.frame { position: relative; }
.frame > .frame-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
.frame-svg rect {
  fill: none;
  stroke: var(--bulb);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0.1 22;
  filter: drop-shadow(0 0 4px var(--glow));
  animation: chase 7s linear infinite;
}
@keyframes chase { to { stroke-dashoffset: -440; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark { height: 44px; width: 44px; filter: drop-shadow(0 0 14px rgba(248,179,75,0.3)); }
.brand__word { display: flex; flex-direction: column; line-height: 0.94; }
.brand__lime { font-family: var(--display); font-weight: 600; font-size: 1.06rem; letter-spacing: 0.02em; color: var(--globe); }
.brand__letters { font-family: var(--marquee); font-size: 0.9rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bulb); text-shadow: 0 0 12px var(--glow-soft); }
.nav-menu { flex: 1 1 auto; display: flex; align-items: center; gap: clamp(16px, 2.5vw, 30px); }
.nav-links { display: flex; align-items: center; gap: clamp(4px, 1.4vw, 22px); margin-inline: auto; }
.nav-links a {
  position: relative; padding: 8px 12px; font-size: 0.92rem; font-weight: 500;
  color: var(--smoke); border-radius: 8px; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--globe); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--bulb); border-radius: 2px; box-shadow: 0 0 10px var(--glow);
}
.nav-cta { flex: 0 0 auto; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--globe); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--globe); transition: transform 0.3s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO  +  MARQUEE BUILDER (signature)
   ============================================================ */
.hero { position: relative; padding-top: clamp(120px, 18vh, 190px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__spot {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 140vw; height: 120vh; pointer-events: none; z-index: 0;
  background: radial-gradient(45% 40% at 50% 22%, rgba(248,179,75,0.16), transparent 70%);
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0; opacity: 0.16;
  background-size: cover; background-position: center;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 35%, #000 30%, transparent 78%);
          mask-image: radial-gradient(70% 70% at 50% 35%, #000 30%, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero .display { margin: 0 auto; max-width: 16ch; }
.hero .lede { margin: 26px auto 0; text-align: center; }

.builder { margin: clamp(34px, 5vw, 56px) auto 0; max-width: 940px; }
.builder__label { font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--smoke-2); margin-bottom: 18px; }
.builder__stage {
  position: relative; min-height: 150px;
  display: flex; flex-wrap: wrap; gap: clamp(8px, 1.3vw, 16px);
  align-items: center; justify-content: center;
  padding: clamp(20px, 3vw, 36px);
}

/* a single illuminated letter tile */
.tile {
  position: relative;
  width: clamp(52px, 8.5vw, 92px); aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: linear-gradient(180deg, #221b12, #15110c);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(248,179,75,0.18), 0 18px 40px -22px #000;
}
.tile.space { background: none; box-shadow: none; width: clamp(20px, 3vw, 36px); }
.tile__glyph {
  font-family: var(--marquee); font-weight: 400;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  color: var(--globe); line-height: 1;
  text-shadow: 0 0 14px var(--glow), 0 0 30px var(--glow-soft);
}
.tile__bulbs { position: absolute; inset: 6px; pointer-events: none; }
.tile__bulbs rect {
  fill: none; stroke: var(--bulb-bright); stroke-width: 3.4;
  stroke-linecap: round; stroke-dasharray: 0.1 13;
  filter: drop-shadow(0 0 3px var(--glow));
}
.tile.lit .tile__bulbs rect { animation: chase 5s linear infinite; }
.tile.flick { animation: flickOn 0.7s steps(1) both; }
@keyframes flickOn {
  0%,12% { opacity: 0.15; } 14% { opacity: 1; } 18% { opacity: 0.3; }
  22% { opacity: 1; } 40% { opacity: 0.55; } 44%,100% { opacity: 1; }
}

.builder__controls { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; margin-top: 30px; }
.builder__input {
  background: var(--velvet); border: 1px solid var(--line);
  border-radius: 100px; padding: 0.85em 1.4em; min-width: 260px;
  color: var(--globe); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.builder__input::placeholder { color: var(--smoke-2); letter-spacing: 0.12em; }
.builder__input:focus { outline: none; border-color: var(--bulb); box-shadow: 0 0 0 4px var(--glow-soft); }
.builder__hint { font-size: 0.82rem; color: var(--smoke-2); margin-top: 14px; text-align: center; }

.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* trust strip */
.trust { display: flex; flex-wrap: wrap; gap: clamp(18px,4vw,56px); justify-content: center; margin-top: clamp(40px,6vw,70px); }
.trust div { text-align: center; }
.trust b { font-family: var(--display); font-size: clamp(1.7rem,3vw,2.4rem); color: var(--bulb-bright); display: block; line-height: 1; }
.trust span { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--smoke-2); }

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.shead { max-width: 64ch; }
.shead.center { margin-inline: auto; text-align: center; }
.shead .h2 { margin-top: 18px; }
.shead p { margin-top: 18px; color: var(--smoke); }

/* ============================================================
   OCCASIONS  (editorial list)
   ============================================================ */
.occasions { display: grid; gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.occasion {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px,3vw,40px);
  padding: clamp(22px,3vw,34px) clamp(20px,3vw,38px); background: var(--stage);
  transition: background 0.4s;
}
.occasion:hover { background: var(--velvet); }
.occasion__no { font-family: var(--marquee); font-size: 1.4rem; color: var(--brass); }
.occasion__name { font-family: var(--display); font-size: clamp(1.4rem,2.8vw,2.2rem); letter-spacing: -0.01em; }
.occasion__desc { color: var(--smoke); font-size: 0.98rem; max-width: 46ch; }
.occasion__arrow { color: var(--bulb); opacity: 0; transform: translateX(-8px); transition: 0.4s var(--ease); }
.occasion:hover .occasion__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 760px) {
  .occasion { grid-template-columns: auto 1fr; }
  .occasion__desc { grid-column: 1 / -1; }
  .occasion__arrow { display: none; }
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.range-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, var(--velvet), var(--stage-2));
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -30px #000; }
.card__media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(248,179,75,0.12), transparent 70%),
    linear-gradient(180deg, #1d1710, #100c08);
  display: grid; place-items: center;
}
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), opacity 0.5s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__fallback { font-family: var(--marquee); font-size: 3rem; color: var(--globe); text-shadow: 0 0 18px var(--glow); letter-spacing: 0.1em; }
.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 100px;
  background: rgba(10,9,8,0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--bulb);
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-family: var(--display); font-size: 1.32rem; line-height: 1.1; }
.card__dim { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }
.card__desc { font-size: 0.94rem; color: var(--smoke); flex: 1; }
.card__cta { margin-top: 4px; font-size: 0.9rem; font-weight: 600; color: var(--bulb); display: inline-flex; align-items: center; gap: 0.5em; }
.card__cta svg { width: 1em; height: 1em; transition: transform 0.3s; }
.card:hover .card__cta svg { transform: translateX(4px); }

/* ============================================================
   GALLERY  (masonry-ish)
   ============================================================ */
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery figure {
  break-inside: avoid; margin-bottom: 16px; border-radius: 14px; overflow: hidden;
  position: relative; background: var(--velvet); border: 1px solid var(--line-soft);
}
.gallery img { width: 100%; transition: transform 0.7s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .ph { aspect-ratio: var(--ar, 1); display: grid; place-items: center; }
.gallery .ph span { font-family: var(--marquee); font-size: 2.4rem; color: var(--brass); text-shadow: 0 0 16px var(--glow-soft); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 16px 14px; font-size: 0.82rem; color: var(--globe);
  background: linear-gradient(transparent, rgba(10,9,8,0.85)); opacity: 0; transition: opacity 0.4s;
}
.gallery figure:hover figcaption { opacity: 1; }

/* ============================================================
   SOCIAL  (Instagram feed + Facebook panel)
   ============================================================ */
.social-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(24px, 3.4vw, 48px); align-items: stretch; }
@media (max-width: 940px) { .social-grid { grid-template-columns: 1fr; } }

.feed-col { display: flex; flex-direction: column; }

/* Shared header so the two columns line up to the same baseline */
.feed-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 58px; padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft); flex-wrap: nowrap;
}
.feed-head__id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.feed-head__ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.feed-head__ico svg { width: 20px; height: 20px; }
.feed-head__ico--ig { color: var(--bulb); background: rgba(248,179,75,0.12); border: 1px solid var(--line); }
.feed-head__ico--fb { color: #aebfe6; background: rgba(96,128,200,0.16); border: 1px solid rgba(120,150,210,0.28); }
.feed-head__meta { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.feed-head__meta b { font-family: var(--display); font-weight: 600; font-size: 1.16rem; letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-head__meta small { color: var(--smoke-2); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.feed-head__link { display: inline-flex; align-items: center; gap: 0.45em; flex: 0 0 auto; font-size: 0.86rem; font-weight: 600; color: var(--bulb); white-space: nowrap; }
.feed-head__link svg { width: 14px; height: 14px; }
.feed-head__link:hover { color: var(--bulb-bright); }

.feed-note { margin-top: 16px; font-size: 0.82rem; color: var(--smoke-2); }

.ig-feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; flex: 1 1 auto; align-content: start; }
.ig-cell {
  position: relative; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, #221a11, #100b07); border: 1px solid var(--line-soft);
  display: block;
}
.ig-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ig-cell::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(247,241,230,0.05); border-radius: inherit; pointer-events: none; }
.ig-cell:hover img { transform: scale(1.07); }
.ig-cell__ico { position: absolute; top: 10px; right: 10px; width: 17px; height: 17px; color: #fff; opacity: 0; transform: translateY(-3px); transition: 0.3s var(--ease); filter: drop-shadow(0 1px 5px rgba(0,0,0,0.8)); pointer-events: none; }
.ig-cell:hover .ig-cell__ico { opacity: 0.95; transform: none; }

/* Facebook column shares feed-col; only the embed keeps a frame */
.fb-embed { border-radius: 14px; overflow: hidden; background: #0d0b08; min-height: 360px; border: 1px solid var(--line-soft); flex: 1 1 auto; }
.fb-embed iframe { width: 100%; height: 100%; min-height: 560px; border: 0; display: block; }
.fb-fallback { padding: 26px; text-align: center; color: var(--smoke-2); font-size: 0.9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.quote {
  position: relative; padding: 34px 30px 30px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--velvet), var(--stage-2)); border: 1px solid var(--line-soft);
}
.quote__mark { font-family: var(--display); font-size: 4.6rem; line-height: 0.4; color: var(--brass); opacity: 0.5; height: 0.5em; display: block; }
.quote p { color: var(--globe); font-size: 1.04rem; line-height: 1.6; margin: 10px 0 20px; }
.quote cite { font-style: normal; font-weight: 600; color: var(--bulb); font-size: 0.92rem; letter-spacing: 0.04em; }
.quote__stars { display: flex; gap: 3px; margin-bottom: 6px; color: var(--bulb); }
.quote__stars svg { width: 16px; height: 16px; }

/* ============================================================
   BIG CTA  (framed, chase-lit)
   ============================================================ */
.spotlight {
  position: relative; text-align: center; border-radius: 26px; overflow: hidden;
  padding: clamp(46px, 7vw, 90px) clamp(24px, 5vw, 80px);
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(248,179,75,0.16), transparent 65%),
    linear-gradient(180deg, var(--velvet-2), var(--stage-2));
}
.spotlight .display { font-size: clamp(2.1rem, 5vw, 4rem); }
.spotlight p { color: var(--smoke); margin: 18px auto 30px; max-width: 52ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--smoke); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--velvet); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 0.85em 1em; color: var(--globe); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bulb); box-shadow: 0 0 0 4px var(--glow-soft); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--smoke-2); margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 0.92rem; min-height: 1.4em; }
.form-status.ok { color: var(--bulb-bright); }
.form-status.err { color: var(--rose); }

.info-card { border-radius: var(--radius); background: linear-gradient(180deg, var(--velvet), var(--stage-2)); border: 1px solid var(--line-soft); padding: 30px; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: none; }
.info-row .ico { color: var(--bulb); flex-shrink: 0; margin-top: 2px; }
.info-row .ico svg { width: 20px; height: 20px; }
.info-row b { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke-2); margin-bottom: 3px; }
.info-row a, .info-row span { color: var(--globe); }
.info-row a:hover { color: var(--bulb-bright); }
.map-embed { margin-top: 22px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-soft); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) brightness(0.9) contrast(0.92); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; } }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg,#1d1610,#0f0b07); display: grid; place-items: center; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .ph { font-family: var(--marquee); font-size: 4rem; color: var(--brass); text-shadow: 0 0 20px var(--glow-soft); }
.checklist { list-style: none; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--smoke); }
.checklist .ico { color: var(--bulb); flex-shrink: 0; margin-top: 3px; }
.checklist .ico svg { width: 18px; height: 18px; }
.checklist b { color: var(--globe); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-head { position: relative; padding-top: clamp(140px, 18vh, 200px); padding-bottom: clamp(30px, 5vw, 60px); text-align: center; overflow: hidden; }
.page-head__spot { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 120vw; height: 90vh; background: radial-gradient(40% 50% at 50% 30%, rgba(248,179,75,0.13), transparent 70%); pointer-events: none; }
.page-head .display { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.page-head p { margin: 20px auto 0; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke-2); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--bulb); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding-block: clamp(50px, 7vw, 80px) 36px; background: var(--stage-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 50px); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 50px; margin-bottom: 16px; filter: drop-shadow(0 0 14px rgba(248,179,75,0.25)); }
.footer-brand p { color: var(--smoke); font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--body); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bulb); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: var(--smoke); font-size: 0.94rem; padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--globe); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--smoke); transition: 0.3s; }
.footer-social a:hover { color: var(--bulb); border-color: var(--bulb); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-base { margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--smoke-2); }
.footer-base a:hover { color: var(--bulb); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE NAV
   ============================================================ */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-menu {
    position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,9,8,0.97); backdrop-filter: blur(20px); padding: 14px var(--gutter) 26px;
    border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: 0.35s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; margin: 0; }
  .nav-links a { padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-cta { margin: 16px 0 0; width: 100%; justify-content: center; }
  .gallery { columns: 2 200px; }
}
@media (max-width: 520px) {
  .ig-feed { gap: 7px; }
  .gallery { columns: 1; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* focus visibility */
:focus-visible { outline: 2px solid var(--bulb); outline-offset: 3px; border-radius: 4px; }
