/* ============================================================
   410.autospa — dark luxury theme
   Palette: near-black base, bronze / silver / gold metallics,
   cool steel-blue accent for the ceramic coating section.
   ============================================================ */

:root {
  --bg: #060608;
  --bg-2: #0b0b0f;
  --panel: #0e0e13;
  --line: rgba(255, 255, 255, 0.09);
  --text: #e9e7e1;
  --muted: #9b978e;

  --gold: #d3ab5e;
  --gold-2: #f4dd9d;
  --gold-dim: rgba(211, 171, 94, 0.35);

  --silver: #c9cdd6;
  --silver-2: #f2f4f8;

  --bronze: #b57e46;
  --bronze-2: #e2ae7a;

  --steel: #8fa8c8;
  --steel-2: #cfdcee;

  --font-display: "Cinzel", serif;
  --font-body: "Jost", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-dim); color: #fff; }

/* ---------- metallic text helpers ---------- */
.hero-title,
.strip-price,
.tier-price,
.ceramic-price {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--text);
  text-align: center;
}

.btn-gold {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(211, 171, 94, 0.16), rgba(211, 171, 94, 0.04));
  color: var(--gold-2);
}
.btn-gold:hover {
  background: linear-gradient(160deg, var(--gold), #a97f34);
  color: #14100a;
  box-shadow: 0 0 28px rgba(211, 171, 94, 0.35);
}

.btn-ghost:hover {
  border-color: var(--silver);
  box-shadow: 0 0 20px rgba(201, 205, 214, 0.15);
}

.btn-steel {
  border-color: rgba(143, 168, 200, 0.5);
  color: var(--steel-2);
}
.btn-steel:hover {
  background: linear-gradient(160deg, rgba(143, 168, 200, 0.9), rgba(94, 122, 160, 0.9));
  color: #0a0e14;
  box-shadow: 0 0 24px rgba(143, 168, 200, 0.3);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(6, 6, 8, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}
.nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
}
.nav-brand em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--gold-2); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #14100a;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: rgba(6, 6, 8, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 2rem 1.6rem;
    gap: 1.1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(211, 171, 94, 0.10), transparent 60%),
    radial-gradient(ellipse 70% 45% at 50% 110%, rgba(143, 168, 200, 0.07), transparent 60%),
    var(--bg);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.35), transparent 100%),
    radial-gradient(1px 1px at 75% 20%, rgba(255,255,255,0.25), transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(255,255,255,0.2), transparent 100%),
    radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,0.25), transparent 100%),
    radial-gradient(1px 1px at 88% 60%, rgba(255,255,255,0.2), transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-logo {
  width: clamp(110px, 16vw, 150px);
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 60px rgba(211, 171, 94, 0.18);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  background-image: linear-gradient(180deg, #ffffff 0%, #d8dade 35%, #8e929b 70%, #c9cdd6 100%);
}
.hero-title .dot {
  background-image: linear-gradient(180deg, var(--gold-2), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(0.65rem, 1.6vw, 0.85rem);
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-tagline span { color: var(--gold); }

.hero-ctas {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-loc {
  margin-top: 2.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SIGNATURE STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(211, 171, 94, 0.06) 50%, transparent);
}
.strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  text-align: center;
}
.strip-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.strip-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  letter-spacing: 0.1em;
}
.strip-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  background-image: linear-gradient(180deg, var(--gold-2), var(--gold));
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 4vw, 3rem);
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.8rem, 6vw, 4.5rem);
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.kicker::before, .kicker::after {
  content: "—";
  color: var(--line);
  margin: 0 0.8rem;
}
.kicker-steel { color: var(--steel); }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
}

.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.section-sub em { color: var(--gold-2); font-style: normal; }

/* ============================================================
   MEMBERSHIP TIERS
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: start;
}

.tier {
  position: relative;
  background: linear-gradient(175deg, #121218 0%, var(--panel) 55%, #0a0a0e 100%);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.4rem 1.8rem 2rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tier:hover { transform: translateY(-6px); }

.tier-bronze { border-top: 2px solid var(--bronze); }
.tier-silver { border-top: 2px solid var(--silver); }
.tier-gold   { border-top: 2px solid var(--gold); }

.tier-bronze:hover { box-shadow: 0 18px 50px -18px rgba(181, 126, 70, 0.45); }
.tier-silver:hover { box-shadow: 0 18px 50px -18px rgba(201, 205, 214, 0.35); }
.tier-gold:hover   { box-shadow: 0 18px 50px -18px rgba(211, 171, 94, 0.5); }

.tier-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.32rem 1rem 0.28rem;
  border-radius: 2px;
  background: linear-gradient(160deg, var(--silver-2), var(--silver));
  color: #101014;
}

.tier-crest {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50%;
  border: 1px solid;
}
.tier-bronze .tier-crest { color: var(--bronze-2); border-color: var(--bronze); background: radial-gradient(circle at 35% 30%, rgba(226,174,122,0.2), transparent 70%); }
.tier-silver .tier-crest { color: var(--silver-2); border-color: var(--silver); background: radial-gradient(circle at 35% 30%, rgba(242,244,248,0.18), transparent 70%); }
.tier-gold .tier-crest   { color: var(--gold-2);   border-color: var(--gold);   background: radial-gradient(circle at 35% 30%, rgba(244,221,157,0.2), transparent 70%); }

.tier-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.tier-bronze .tier-name { color: var(--bronze-2); }
.tier-silver .tier-name { color: var(--silver-2); }
.tier-gold .tier-name   { color: var(--gold-2); }

.tier-plan {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: 1.2rem;
  line-height: 1;
}
.tier-bronze .tier-price { background-image: linear-gradient(180deg, var(--bronze-2), var(--bronze)); }
.tier-silver .tier-price { background-image: linear-gradient(180deg, var(--silver-2), #9298a3); }
.tier-gold .tier-price   { background-image: linear-gradient(180deg, var(--gold-2), var(--gold)); }

.tier-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  background-image: none;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
}

.tier-counts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem 0;
  padding: 1rem 0.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-counts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}
.tier-counts .plus { font-size: 1.2rem; color: var(--gold); }

.tier-features {
  list-style: none;
  text-align: left;
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  gap: 0.65rem;
}
.tier-features li {
  padding-left: 1.4rem;
  position: relative;
}
.tier-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.tier-features strong { color: var(--text); font-weight: 500; }

.tier-visits {
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-size: 0.85rem;
}
.tier-visits strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}
.tier-visits span { color: var(--muted); font-size: 0.82rem; }
.tier-bronze .tier-visits { background: rgba(181, 126, 70, 0.08); border-color: rgba(181, 126, 70, 0.25); }
.tier-silver .tier-visits { background: rgba(201, 205, 214, 0.06); border-color: rgba(201, 205, 214, 0.2); }
.tier-gold .tier-visits   { background: rgba(211, 171, 94, 0.08);  border-color: rgba(211, 171, 94, 0.28); }

.tier-save {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.tier-save em { color: var(--muted); font-style: normal; text-transform: none; letter-spacing: 0.04em; }

.btn-tier { margin-top: 1.5rem; width: 100%; }
.tier-bronze .btn-tier { border-color: rgba(181, 126, 70, 0.5); color: var(--bronze-2); }
.tier-bronze .btn-tier:hover { background: linear-gradient(160deg, var(--bronze-2), var(--bronze)); color: #14100a; }
.tier-silver .btn-tier { border-color: rgba(201, 205, 214, 0.5); color: var(--silver-2); }
.tier-silver .btn-tier:hover { background: linear-gradient(160deg, var(--silver-2), var(--silver)); color: #101014; }
.tier-gold .btn-tier { border-color: rgba(211, 171, 94, 0.6); color: var(--gold-2); }
.tier-gold .btn-tier:hover { background: linear-gradient(160deg, var(--gold-2), var(--gold)); color: #14100a; }

/* ---------- perks ---------- */
.perks {
  margin-top: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(211, 171, 94, 0.05), transparent 40%);
  text-align: center;
}
.perks-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 2rem;
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.6rem 1rem;
}
.perk { display: grid; gap: 0.3rem; justify-items: center; font-size: 0.85rem; }
.perk-ico { font-size: 1.3rem; color: var(--gold); }
.perk strong { font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.perk span:last-child { color: var(--muted); font-size: 0.78rem; }

.fine-print {
  list-style: none;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fine-print li::before { content: "\2713 "; color: var(--gold); }

/* ============================================================
   CERAMIC COATING
   ============================================================ */
.section-ceramic {
  max-width: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(143, 168, 200, 0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-ceramic > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.section-ceramic .section-head { margin-bottom: 2.5rem; }

.ceramic-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.8rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel-2);
}
.cp-ico { color: var(--steel); margin-right: 0.6rem; }

.ceramics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: start;
}

.ceramic {
  background: linear-gradient(175deg, #10131a 0%, #0b0d13 60%, #08090d 100%);
  border: 1px solid rgba(143, 168, 200, 0.22);
  border-radius: 10px;
  padding: 2.2rem 1.8rem 2rem;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ceramic:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px -18px rgba(143, 168, 200, 0.4);
}

.ceramic-ico { font-size: 1.6rem; margin-bottom: 1rem; filter: grayscale(0.4); }

.ceramic h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.ceramic h3 span {
  display: block;
  font-size: 0.75rem;
  color: var(--steel);
  letter-spacing: 0.22em;
  margin-top: 0.3rem;
}

.ceramic ul {
  list-style: none;
  text-align: left;
  margin: 1.6rem 0;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.ceramic li { padding-left: 1.4rem; position: relative; }
.ceramic li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--steel);
  font-size: 0.8rem;
}
.ceramic li strong { color: var(--steel-2); font-weight: 500; }

.ceramic-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  background-image: linear-gradient(180deg, var(--steel-2), var(--steel));
  line-height: 1;
  margin-bottom: 1.4rem;
}
.ceramic-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  -webkit-text-fill-color: var(--steel);
  color: var(--steel);
}

.btn-steel { width: 100%; }

/* ============================================================
   ADD-ONS
   ============================================================ */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.addon {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.8rem 1.2rem;
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.addon:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.addon-ico { font-size: 1.5rem; color: var(--gold); }
.addon strong { font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; }
.addon-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-2);
}
.addons-note {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   GALLERY
   ============================================================ */
.section-work { max-width: 1240px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--panel);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.9) contrast(1.02);
}
.gallery figure:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(4, 4, 6, 0.92));
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-more { text-align: center; margin-top: 2.2rem; }
.gallery-more a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
  transition: color 0.3s;
}
.gallery-more a:hover { color: var(--gold-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  max-width: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(211, 171, 94, 0.07), transparent 65%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.section-contact > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.inquiry {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  display: grid;
  gap: 1.2rem;
}
.inquiry label { display: grid; gap: 0.45rem; }
.inquiry label > span {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.inquiry input,
.inquiry select,
.inquiry textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.inquiry select { appearance: none; cursor: pointer; }
.inquiry select option { background: #101014; color: var(--text); }
.inquiry input:focus,
.inquiry select:focus,
.inquiry textarea:focus { border-color: var(--gold-dim); }
.inquiry textarea { resize: vertical; }

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.inquiry-actions .btn { flex: 1 1 140px; }

.inquiry-hint {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 1.3rem 1.5rem;
  display: grid;
  gap: 0.15rem;
  transition: border-color 0.3s, transform 0.3s;
}
.contact-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.cc-label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.cc-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--text);
}
.cc-note { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
}
.footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold-dim);
  opacity: 0.9;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.4rem 0 1.4rem;
}
.footer-fine { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }
.footer-fine a { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* Animation styles only apply when JS is running (html.js is added by
   main.js), so content is never invisible if scripts fail to load. */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
