/* ═══════════════════════════════════════════
   AARA STUDIO — style.css
   Light, warm, luxury interior design theme
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── VARIABLES ── */
:root {
  --bg:         #FAF7F2;
  --bg-alt:     #F3EDE3;
  --bg-dark:    #EDE5D8;
  --surface:    #FFFFFF;
  --border:     #E0D8CC;
  --border-dk:  #C8BEA8;
  --text:       #1A1510;
  --text-mid:   #5A5040;
  --text-muted: #9A8E7A;
  --gold:       #A07840;
  --gold-lt:    #C49A58;
  --gold-pale:  rgba(160,120,64,0.12);
  --terra:      #C4714A;
  --nav-h:      72px;
  --px:         clamp(20px, 5vw, 80px);
  --py:         clamp(60px, 8vw, 120px);
  --radius:     3px;
}

/* ── BASE ── */
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }

/* ── CUSTOM CURSOR (fine pointer / desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .25s;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(160,120,64,.42);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, border-color .2s;
  }
  .cursor.big      { width: 18px; height: 18px; }
  .cursor-ring.big { width: 56px; height: 56px; border-color: var(--gold); }
}
@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .7s ease, visibility .7s ease;
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.l-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 7vw, 54px);
  font-style: italic;
  letter-spacing: .06em;
  color: var(--text);
  overflow: hidden;
}
.l-brand span {
  display: inline-block;
  animation: charUp .7s cubic-bezier(.16,1,.3,1) both;
}
.l-line {
  height: 1px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: growLine 1.6s ease forwards .3s;
}
.l-sub {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn .5s ease forwards 1.1s;
}

/* ── PROGRESS BAR ── */
#progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 600;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  transition: width .06s linear;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, height .3s;
}
#nav.solid {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  height: 60px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  letter-spacing: .06em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.nav-logo b { color: var(--gold); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--gold);
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s, transform .2s !important;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  z-index: 502;
  flex-shrink: 0;
  padding: 4px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 24px; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 501;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}
.drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.drawer .d-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 7vw, 42px);
  font-style: italic;
  color: var(--text);
  letter-spacing: .04em;
  transition: color .2s;
}
.drawer .d-link:hover { color: var(--gold); }
.drawer .d-cta {
  margin-top: 8px;
  padding: 14px 44px;
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-style: normal;
  transition: background .25s;
}
.drawer .d-cta:hover { background: var(--gold-lt); color: #fff; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Split image panels */
.h-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 55% 45%;
}
.h-panel {
  position: relative;
  overflow: hidden;
}
.h-img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transition: transform .1s ease;
}

/* Dark gradient overlay for text readability */
.h-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(250,247,242,.08)  0%,
    rgba(250,247,242,.0)  25%,
    rgba(250,247,242,.0)  50%,
    rgba(250,247,242,.95) 88%,
    rgba(250,247,242,1)   100%
  );
}

/* Body content */
.h-body {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: clamp(36px,6vw,80px) var(--px) clamp(46px,6vw,80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px,4vw,48px);
  align-items: flex-end;
}

.h-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .8s 2.1s ease forwards;
}
.h-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.h-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6.5vw, 92px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--text);
}
.h-title .ln { display: block; overflow: hidden; }
.h-title .ln span {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.h-title .ln:nth-child(1) span { animation-delay: 2.2s; }
.h-title .ln:nth-child(2) span { animation-delay: 2.36s; }
.h-title .ln:nth-child(3) span { animation-delay: 2.52s; font-style: italic; color: var(--gold); }

.h-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 4px;
  opacity: 0;
  animation: fadeIn .9s 2.7s ease forwards;
}
.h-desc {
  font-size: clamp(13px,1.4vw,15px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 330px;
  text-align: right;
}
.h-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Stats bar */
.h-stats {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeIn .8s 3s ease forwards;
}
.h-stat {
  flex: 1;
  min-width: 120px;
  padding: clamp(14px,2.5vw,26px) var(--px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-stat:last-child { border-right: none; }
.s-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 400;
  color: var(--text);
}
.s-lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Scroll indicator */
.h-scroll {
  position: absolute;
  bottom: 100px;
  right: var(--px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 3.2s ease forwards;
}
.h-scroll span {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.h-stem {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: stemPulse 2.5s ease-in-out infinite;
}

/* ── Hero Responsive ── */
@media (max-width: 640px) {
  .h-panels { grid-template-columns: 1fr; grid-template-rows: 55% 45%; }
  .h-body { grid-template-columns: 1fr; }
  .h-right { align-items: flex-start; }
  .h-desc { text-align: left; }
  .h-btns { justify-content: flex-start; }
  .h-scroll { display: none; }
}
@media (max-width: 420px) {
  .h-stat { min-width: 50%; }
  .h-stat:nth-child(2) { border-right: none; }
  .h-stat:nth-child(3), .h-stat:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: clamp(11px,1.5vw,14px) clamp(22px,3vw,36px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-fill { background: var(--gold); color: #fff; }
.btn-fill:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,120,64,.28);
}
.btn-outline { border: 1.5px solid var(--border-dk); color: var(--text-mid); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee {
  background: var(--gold);
  overflow: hidden;
  display: flex;
}
.m-track {
  display: flex;
  flex-shrink: 0;
  animation: mscroll 24s linear infinite;
}
.m-track:nth-child(2) { animation-delay: -12s; }
.m-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.m-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.45);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section { padding: var(--py) var(--px); }

.s-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.s-lbl::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.s-ttl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,4vw,52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.s-ttl em { font-style: italic; color: var(--gold); }

/* Scroll-reveal */
.rev {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.rev.d1 { transition-delay: .1s; }
.rev.d2 { transition-delay: .2s; }
.rev.d3 { transition-delay: .3s; }
.rev.d4 { transition-delay: .4s; }
.rev.on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
.portfolio { background: var(--bg); }

.port-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: clamp(32px,5vw,60px);
}
.view-all {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .25s, gap .25s;
  white-space: nowrap;
  align-self: flex-end;
}
.view-all:hover { color: var(--gold); gap: 14px; }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 360px 260px;
  gap: 12px;
}
.p0 { grid-row: span 2; }
.p3 { grid-column: span 2; }

.pc {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  cursor: pointer;
  border-radius: var(--radius);
}
.pr {
  position: absolute;
  inset: 0;
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}
.pc:hover .pr { transform: scale(1.07); }

.pov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(15,10,5,.82) 100%);
  opacity: 0;
  transition: opacity .45s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px,2vw,24px);
}
.pc:hover .pov { opacity: 1; }
.pv-tag {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 5px;
}
.pv-nm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px,2vw,22px);
  color: #fff;
}
.pv-ar { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 3px; }

@media (max-width: 960px) {
  .port-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .p0, .p3 { grid-row: auto; grid-column: auto; }
  .pc { aspect-ratio: 4/3; }
}
@media (max-width: 520px) {
  .port-grid { grid-template-columns: 1fr; }
  .pc { aspect-ratio: 4/3; }
}

/* ══════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════ */
.ba-sec { background: var(--bg-alt); }

.ba-hd {
  text-align: center;
  margin-bottom: clamp(28px,5vw,52px);
}
.ba-hd .s-lbl { justify-content: center; }
.ba-hd .s-lbl::before { display: none; }
.ba-hint {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

.ba-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(100,80,40,.18);
  touch-action: none;
  user-select: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}
.ba-before { z-index: 2; clip-path: inset(0 0 0 50%); }

.ba-after img,
.ba-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-lbl {
  position: absolute;
  bottom: 18px;
  z-index: 20;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.lbl-a { left: 16px; background: rgba(158,118,60,.9); color: #fff; }
.lbl-b { right: 16px; background: rgba(16,12,8,.6);   color: #fff; }

.ba-div {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 10;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,.45);
  pointer-events: none;
}
.ba-hdl {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.16);
  font-size: 15px;
  color: var(--text-mid);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 560px) { .ba-wrap { aspect-ratio: 4/3; } }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.proc-intro {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 18px 0 36px;
  max-width: 480px;
}

.p-steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: clamp(14px, 2.5vw, 26px);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: padding-left .3s ease;
}
.step:hover { padding-left: 12px; }
.step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s ease;
}
.step:hover::before { transform: scaleY(1); }

.st-n {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-style: italic;
  font-weight: 400;
  color: var(--bg-dark);
  line-height: 1;
  flex-shrink: 0;
  transition: color .3s;
}
.step:hover .st-n { color: var(--gold-lt); }
.st-b h4 {
  font-size: clamp(14px,1.6vw,16px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 5px;
}
.st-b p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Process visual */
.proc-visual { position: sticky; top: calc(var(--nav-h) + 20px); }

.proc-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.proc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.proc-img:hover img { transform: scale(1.04); }

.proc-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 96px; height: 96px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pb-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.pb-txt {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

@media (max-width: 800px) {
  .process { grid-template-columns: 1fr; }
  .proc-visual { position: static; }
  .proc-img { aspect-ratio: 16/9; }
  .proc-badge { display: none; }
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--bg-alt); }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(32px, 5vw, 56px);
}

.tc {
  background: var(--surface);
  padding: clamp(22px,3vw,38px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(100,80,40,.1);
}
.tc::before {
  content: '"';
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1;
}
.tc-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tc-txt {
  font-size: clamp(13px,1.3vw,14px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 22px;
  font-style: italic;
}
.tc-auth { display: flex; align-items: center; gap: 11px; }
.tc-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.tc-nm { font-size: 13px; font-weight: 400; color: var(--text); }
.tc-loc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .t-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  background: var(--text);
  padding: var(--py) var(--px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  background: radial-gradient(circle, rgba(160,120,64,.11) 0%, transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(160,120,64,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,120,64,.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.contact .s-lbl {
  color: var(--gold-lt);
  justify-content: center;
  position: relative;
  z-index: 1;
}
.contact .s-lbl::before { background: var(--gold-lt); }
.contact .s-ttl {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.c-sub {
  font-size: clamp(13px,1.4vw,15px);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

/* Form */
.c-form {
  display: flex;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}
.c-inp {
  flex: 1;
  padding: clamp(13px,2vw,17px) 18px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-right: none;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color .25s;
  min-width: 0;
}
.c-inp::placeholder { color: rgba(255,255,255,.28); }
.c-inp:focus { border-color: var(--gold); }
.c-btn {
  padding: 0 clamp(18px,3vw,30px);
  background: var(--gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
  flex-shrink: 0;
  white-space: nowrap;
}
.c-btn:hover { background: var(--gold-lt); }

/* Contact info row */
.c-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.c-info span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

@media (max-width: 480px) {
  .c-form { flex-direction: column; }
  .c-inp { border-right: 1.5px solid rgba(255,255,255,.1); border-bottom: none; }
  .c-btn { padding: 16px; }
  .c-info { gap: 14px; flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--text);
  padding: 48px var(--px) 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ft-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.ft-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 8px;
}
.ft-logo b { color: var(--gold); font-weight: 400; }
.ft-tagline {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-weight: 300;
}
.ft-links {
  display: flex;
  gap: clamp(14px,2.5vw,28px);
  flex-wrap: wrap;
  align-items: center;
}
.ft-links a {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .25s;
}
.ft-links a:hover { color: var(--gold-lt); }
.ft-socials { display: flex; gap: 10px; }
.ft-soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
  text-transform: lowercase;
  transition: border-color .25s, color .25s, background .25s;
}
.ft-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(160,120,64,.08);
}
.ft-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-bottom p { font-size: 11px; color: rgba(255,255,255,.2); }

@media (max-width: 600px) {
  .ft-inner { flex-direction: column; gap: 24px; }
  .ft-bottom { flex-direction: column; }
}

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes charUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes growLine { to { width: min(220px, 60vw); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp  { to   { opacity: 1; transform: translateY(0); } }
@keyframes mscroll  { to   { transform: translateX(-100%); } }
@keyframes stemPulse {
  0%,100% { opacity: .3; transform: scaleY(.4); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1); }
}
