/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #111614;
  --bg2:       #151a18;
  --bg3:       #1a201e;
  --surface:   #1e2624;
  --surface2:  #242e2b;
  --gold:      #c9a96e;
  --gold2:     #e2bc7a;
  --gold3:     #a07828;
  --gold-dim:  #6b4f18;
  --cream:     #ede5d0;
  --text:      #d8cebb;
  --text-muted:#7a8c86;
  --border:    rgba(201,169,110,0.13);
  --border-hi: rgba(201,169,110,0.32);
  --radius:    10px;
  --shadow:    0 12px 48px rgba(0,0,0,0.55);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Cinzel', serif; letter-spacing: 0.05em; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold2); }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2.5rem;
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(17,22,20,0.95);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  text-decoration: none;
}
.logo-ring {
  width: 38px; height: 38px;
  animation: slowSpin 18s linear infinite;
  filter: drop-shadow(0 0 8px rgba(201,169,110,0.25));
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-text {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 60%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links {
  display: flex; list-style: none; gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  transition: width .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--gold); font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  padding: 6px 16px; border-radius: 2px; cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
  text-transform: uppercase;
}
.lang-btn:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  color: var(--bg); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 24px rgba(201,169,110,0.28);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .55s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,169,110,0.42);
  color: var(--bg);
}
.btn-primary:hover::before { transform: translateX(200%); }

.btn-ghost {
  display: inline-block; padding: 14px 34px;
  border: 1px solid var(--border-hi); color: var(--gold);
  font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn-ghost:hover {
  background: rgba(201,169,110,0.08); border-color: var(--gold);
  transform: translateY(-2px); color: var(--gold2);
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 55%, #1a2820 0%, var(--bg) 65%);
}

.hero-atmosphere {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; pointer-events: none;
}
.atm-ring {
  position: absolute;
  width: var(--r); height: var(--r);
  border-radius: 50%;
  border: 1px solid rgba(201,169,110, var(--op));
  animation: atmSpin var(--dur) linear infinite;
  animation-direction: calc(var(--dir, 1) * 1turn > 0 ? normal : reverse);
}
@keyframes atmSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* CSS custom property direction trick */
.atm-ring:nth-child(2) { animation-direction: reverse; }

.hero-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem; padding: 0 1.5rem; padding-top: 76px;
}

/* ── Premium Ouroboros ── */
.ouroboros-wrap {
  position: relative; width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.ouroboros-svg {
  width: 260px; height: 260px;
  filter: drop-shadow(0 0 24px rgba(201,169,110,0.3));
}

.halo {
  animation: haloPulse 5s ease-in-out infinite;
}
@keyframes haloPulse {
  0%,100% { opacity: 0.8; transform-origin: 150px 150px; transform: scale(1); }
  50%     { opacity: 1;   transform-origin: 150px 150px; transform: scale(1.04); }
}

.tick-ring { animation: slowSpin 40s linear infinite; transform-origin: 150px 150px; }
.main-arc  { animation: slowSpin 28s linear infinite; transform-origin: 150px 150px; }
.mid-ring  { animation: slowSpin 20s linear infinite reverse; transform-origin: 150px 150px; }
.fine-ring { animation: slowSpin 14s linear infinite; transform-origin: 150px 150px; }

.center-gem {
  animation: gemPulse 4s ease-in-out infinite;
  transform-origin: 150px 150px;
}
@keyframes gemPulse {
  0%,100% { opacity: 0.85; }
  50%     { opacity: 1; filter: brightness(1.15); }
}

.ouro-label {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--gold); opacity: 0.18;
  animation: labelPulse 5s ease-in-out infinite; user-select: none;
  letter-spacing: 0.05em;
}
@keyframes labelPulse {
  0%,100% { opacity: 0.12; }
  50%     { opacity: 0.28; }
}

.hero-text-block { display: flex; flex-direction: column; align-items: center; gap: .75rem; }

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  animation: fadeUp .7s ease both;
  font-family: 'Inter', sans-serif;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700;
  background: linear-gradient(160deg, var(--cream) 10%, var(--gold2) 45%, var(--gold) 75%, var(--gold3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeUp .8s .1s ease both;
  letter-spacing: 0.12em;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--text-muted); letter-spacing: 0.08em;
  font-style: italic; font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}
.hero-cta-wrap {
  display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center;
  animation: fadeUp .8s .35s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-line {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-track {
  width: 1px; height: 56px; background: var(--border); overflow: hidden; border-radius: 1px;
}
.scroll-thumb {
  width: 100%; height: 40%; background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
  border-radius: 1px;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ── Ticker ── */
.ticker-strip {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-set {
  display: inline-flex; gap: 2rem; align-items: center; padding-right: 2rem;
}
.ticker-set span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
}
.ticker-set .dot { color: var(--gold); opacity: 0.6; font-size: 0.5rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ── */
.section { padding: 120px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  padding: 5px 20px; margin-bottom: 1.2rem;
  background: rgba(201,169,110,0.05);
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem); color: var(--cream);
}
.divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto 0;
}
.divider-left {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0 1.8rem;
}
.section-sub {
  color: var(--text-muted); max-width: 560px; margin: 1.2rem auto 0;
  font-size: 0.92rem; line-height: 1.8;
}
.req-star { color: var(--gold2); font-weight: 600; }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--delay, 0s) cubic-bezier(.4,0,.2,1),
              transform .7s var(--delay, 0s) cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── About ── */
.about-section { background: var(--bg2); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.about-left .section-tag { display: inline-block; }
.about-headline {
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--cream);
  margin-top: 1.2rem; line-height: 1.15;
}
.about-body {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.85;
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
}
.about-right { display: flex; flex-direction: column; gap: 0; }
.about-card {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  transition: background .25s;
}
.about-card:first-child { border-top: 1px solid var(--border); }
.card-number {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--gold); opacity: 0.6; min-width: 28px; padding-top: 3px;
}
.card-body h3 {
  font-size: 0.95rem; color: var(--cream); margin-bottom: .5rem;
  letter-spacing: 0.08em;
}
.card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Services ── */
.services-section { background: var(--bg); }
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 52px 44px 1fr 32px;
  align-items: center; gap: 2rem;
  padding: 2.2rem 0; border-bottom: 1px solid var(--border);
  transition: background .25s, padding .25s;
  cursor: default; position: relative;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(201,169,110,0.06), transparent);
  transition: width .4s;
}
.service-row:hover::before { width: 100%; }
.service-row:hover { padding-left: 1rem; }
.sr-num {
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--gold); opacity: 0.5; font-weight: 400;
}
.sr-icon {
  width: 36px; height: 36px; color: var(--gold); opacity: 0.65;
  transition: opacity .25s;
}
.sr-icon svg { width: 100%; height: 100%; }
.service-row:hover .sr-icon { opacity: 1; }
.sr-content h3 {
  font-size: 1rem; color: var(--cream); margin-bottom: .35rem;
  letter-spacing: 0.06em; transition: color .25s;
}
.service-row:hover .sr-content h3 { color: var(--gold); }
.sr-content p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.65; }
.sr-arrow {
  width: 20px; height: 20px; color: var(--gold); opacity: 0;
  transition: opacity .3s, transform .3s;
}
.sr-arrow svg { width: 100%; height: 100%; }
.service-row:hover .sr-arrow { opacity: 0.7; transform: translateX(4px); }

/* ── Stats ── */
.stats-section {
  position: relative; overflow: hidden;
  padding: 100px 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cinzel', serif; font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900; letter-spacing: 0.3em; color: var(--gold);
  opacity: 0.03; white-space: nowrap; pointer-events: none;
  user-select: none;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.stat-item {
  flex: 1; min-width: 160px; text-align: center; padding: 2rem 1rem;
  display: flex; flex-direction: column; align-items: center;
}
.stat-number {
  font-family: 'Cinzel', serif; font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; color: var(--gold2); line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold); opacity: 0.6; display: inline-block; line-height: 1;
}
.stat-item { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 0; }
.stat-item .stat-number { order: 1; }
.stat-item .stat-suffix { order: 2; align-self: flex-start; margin-top: .3rem; }
.stat-item .stat-label  { order: 3; flex-basis: 100%; text-align: center; }
.stat-label {
  color: var(--text-muted); font-size: 0.72rem; margin-top: .6rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.stat-divider {
  width: 1px; height: 60px; background: var(--border);
  flex-shrink: 0;
}

/* ── Request Form ── */
.request-section { background: var(--bg); }
.request-form {
  max-width: 860px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.8rem; position: relative; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: .6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 0; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  padding: 14px 18px; outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 42px; cursor: pointer;
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.65) sepia(1) saturate(1.5) hue-rotate(5deg); cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: #c05555;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(122,140,134,0.4);
}

.field-error {
  font-size: 0.75rem; color: #c07070; margin-top: .4rem;
  display: none; letter-spacing: 0.02em;
}
.form-group.has-error .field-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #c05555; }

/* Checkbox */
.checkbox-group { flex-direction: column; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: .9rem; cursor: pointer;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  flex-shrink: 0; width: 18px; height: 18px; border: 1px solid var(--border-hi);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s; margin-top: 3px;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gold); border-color: var(--gold);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: ''; display: block; width: 10px; height: 5px;
  border-left: 1.5px solid var(--bg); border-bottom: 1.5px solid var(--bg);
  transform: rotate(-45deg) translate(1px, -1px);
}

.form-submit-row { text-align: center; margin-top: 1.5rem; }
.btn-submit {
  min-width: 220px; display: inline-flex; align-items: center;
  justify-content: center; gap: 12px; font-size: 0.82rem; padding: 17px 50px;
}
.btn-loader {
  display: none; width: 16px; height: 16px;
  border: 1.5px solid rgba(17,22,20,0.35); border-top-color: var(--bg);
  border-radius: 50%; animation: spin .7s linear infinite;
}
.btn-submit.loading .btn-loader { display: block; }
.btn-submit.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none; text-align: center; padding: 3rem 1rem;
  animation: fadeUp .4s ease;
}
.form-success.visible { display: block; }
.success-ring { width: 80px; height: 80px; margin: 0 auto 2rem; }
.success-ring svg { width: 100%; height: 100%; }
.form-success h3 {
  color: var(--gold); margin-bottom: .75rem; font-size: 1.5rem; letter-spacing: 0.08em;
}
.form-success p { color: var(--text-muted); font-size: 0.92rem; }

/* ── Contact ── */
.contact-section { background: var(--bg2); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); max-width: 900px; margin: 0 auto;
}
.contact-item {
  padding: 3rem 2.5rem; border-right: 1px solid var(--border);
  transition: background .25s;
}
.contact-item:last-child { border-right: none; }
.contact-item:hover { background: rgba(201,169,110,0.03); }
.contact-num {
  font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.14em;
  color: var(--gold); opacity: 0.5; margin-bottom: 1.2rem;
}
.contact-item h4 {
  font-size: 0.8rem; color: var(--cream); margin-bottom: .6rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.contact-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.contact-item a { color: var(--text-muted); font-size: 0.85rem; }
.contact-item a:hover { color: var(--gold); }

/* ── Footer ── */
.footer { background: var(--bg); padding: 4rem 2rem 3rem; }
.footer-top-line {
  height: 1px; max-width: 1200px; margin: 0 auto 4rem;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cinzel', serif; font-size: 1rem;
  color: var(--gold); letter-spacing: 0.1em;
}
.footer-ring { width: 34px; height: 34px; animation: slowSpin 18s linear infinite; }
.footer-name { letter-spacing: 0.12em; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: var(--text-muted); letter-spacing: 0.06em;
}
.footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 500;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(122,140,134,0.5); letter-spacing: 0.06em; }

/* ── Nav active ── */
.nav-active { color: var(--gold) !important; }
.nav-active::after { width: 100% !important; }

/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #1a2820 0%, var(--bg) 70%);
  padding: 160px 2rem 100px; text-align: center;
}
.page-hero-content { max-width: 760px; margin: 0 auto; }
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700;
  background: linear-gradient(160deg, var(--cream) 10%, var(--gold2) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.1em; margin: .75rem 0 1rem;
}
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.2rem; color: var(--text-muted);
}
.legal-toc {
  margin-top: 2rem; display: flex; flex-wrap: wrap;
  gap: .75rem 1.2rem; justify-content: center; align-items: center;
}
.legal-toc a {
  font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.legal-toc .dot { color: var(--gold-dim); font-size: 0.5rem; }

/* ── Pricing / Package cards ── */
.pkg-section { background: var(--bg); }
.pkg-section.pkg-dark { background: var(--bg2); }

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pkg-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 2.5rem 2rem; display: flex; flex-direction: column;
  position: relative; transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pkg-card:hover {
  border-color: var(--border-hi); transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pkg-card.pkg-featured {
  border-color: rgba(201,169,110,0.4);
  background: linear-gradient(160deg, var(--surface2) 0%, var(--surface) 100%);
}
.pkg-badge {
  position: absolute; top: -1px; right: 2rem;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  color: var(--bg); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 14px;
}
.pkg-top { margin-bottom: 2rem; }
.pkg-label {
  font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.pkg-price {
  display: flex; align-items: flex-start; gap: 3px; margin-bottom: .75rem;
}
.pkg-currency {
  font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold);
  margin-top: .5rem; font-weight: 400;
}
.pkg-amount {
  font-family: 'Cinzel', serif; font-size: clamp(2.8rem, 4vw, 3.5rem);
  color: var(--cream); font-weight: 700; line-height: 1;
}
.pkg-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: var(--text-muted); line-height: 1.5;
}
.pkg-features {
  list-style: none; flex: 1; margin-bottom: 2rem; display: flex;
  flex-direction: column; gap: .65rem;
}
.pkg-features li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: 0.86rem; color: var(--text-muted); line-height: 1.5;
}
.pkg-features li.feat-no { opacity: 0.45; }
.feat-check { color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.feat-x { color: var(--text-muted); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.btn-order { width: 100%; text-align: center; }

/* Custom solution card */
.custom-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  background: var(--surface); border: 1px solid var(--border);
  padding: 3.5rem 3rem; align-items: start;
}
.custom-desc {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.8;
}
.custom-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.custom-feat { }
.cf-icon {
  font-size: 1.2rem; color: var(--gold); opacity: 0.6; margin-bottom: .75rem;
}
.custom-feat h4 {
  font-size: 0.88rem; color: var(--cream); letter-spacing: 0.06em;
  margin-bottom: .4rem;
}
.custom-feat p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── Order Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,14,13,0.88); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface); border: 1px solid var(--border-hi);
  max-width: 740px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 3rem 2.5rem; position: relative;
  transform: translateY(20px); transition: transform .3s;
  box-shadow: var(--shadow);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1rem; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--gold); }
.modal-header { margin-bottom: 2.5rem; }
.modal-header h2 {
  font-size: 1.4rem; color: var(--cream); margin-top: .75rem;
}
.order-form { }

/* ── Legal page ── */
.legal-body { }
.legal-section { padding: 80px 2rem; background: var(--bg); }
.legal-section.legal-alt { background: var(--bg2); }
.legal-header { margin-bottom: 3rem; }
.legal-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--cream); margin-top: 1rem; }

.legal-content { max-width: 820px; }
.legal-content h3 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin: 2.5rem 0 1rem;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: none; margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.legal-content ul li {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.75;
  padding-left: 1.2rem; position: relative;
}
.legal-content ul li::before {
  content: '–'; position: absolute; left: 0; color: var(--gold); opacity: 0.6;
}
.legal-content a { color: var(--gold); }
.legal-content a:hover { color: var(--gold2); }
.legal-content strong { color: var(--text); font-weight: 600; }

.legal-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem;
  font-size: 0.84rem;
}
.legal-table th {
  text-align: left; padding: .75rem 1rem; border-bottom: 1px solid var(--border-hi);
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.legal-table td {
  padding: .75rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text-muted); line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-item:last-child { border-bottom: none; }
}
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .custom-card { grid-template-columns: 1fr; gap: 2.5rem; }
  .custom-feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(17,22,20,0.98); backdrop-filter: blur(18px);
    padding: 2rem 2.5rem 2.5rem; gap: 1.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 2.5rem 1.5rem; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .service-row { grid-template-columns: 44px 1fr; gap: 1rem; }
  .sr-num { display: none; }
  .sr-arrow { display: none; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 44%; }
  .section { padding: 80px 1.5rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 2rem 1.5rem; }
  .custom-feat-grid { grid-template-columns: 1fr; }
  .legal-table { font-size: 0.78rem; }
  .legal-table th, .legal-table td { padding: .6rem .75rem; }
}
@media (max-width: 480px) {
  .ouroboros-wrap, .ouroboros-svg { width: 200px; height: 200px; }
  .navbar { padding: 0 1.5rem; }
  .footer-nav { gap: 1.5rem; }
  .page-hero { padding: 130px 1.5rem 70px; }
}

/* ── Logo Stack (office / Uroboru) ── */
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.logo-small { font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0.75; }
.logo-big   { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text); line-height: 1; }

/* ── Quiz Modal Box ── */
.quiz-box { max-width: 640px; width: 90vw; padding: 2.5rem; }
.quiz-prog-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.quiz-prog-bar { flex: 1; height: 2px; background: rgba(201,169,110,.15); border-radius: 2px; overflow: hidden; }
.quiz-prog-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s ease; }
.quiz-prog-label { font-size: 0.72rem; letter-spacing: .12em; color: var(--gold); opacity: .7; white-space: nowrap; font-family: 'Cinzel', serif; }
.quiz-question { font-family: 'Cinzel', serif; font-size: 1.35rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.quiz-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.75rem; }
.quiz-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: .85rem; }
.quiz-opts.quiz-multi { grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); }
.quiz-opt {
  background: rgba(255,255,255,.03); border: 1px solid rgba(201,169,110,.18);
  border-radius: 10px; padding: 1.1rem 1rem; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: .35rem;
  transition: border-color .25s, background .25s, transform .2s;
}
.quiz-opt:hover { border-color: var(--gold); background: rgba(201,169,110,.06); transform: translateY(-2px); }
.quiz-opt.selected { border-color: var(--gold); background: rgba(201,169,110,.12); }
.quiz-opt-icon { font-size: 1.4rem; color: var(--gold); line-height: 1; }
.quiz-opt-label { font-family: 'Cinzel', serif; font-size: .82rem; font-weight: 600; color: var(--text); }
.quiz-opt-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.quiz-next-btn { margin-top: 1.25rem; }
.quiz-nav { margin-top: 1rem; display: flex; justify-content: flex-start; }
.quiz-back-btn { font-size: .82rem; padding: .5rem 1rem; }

/* Quiz Result */
.quiz-result { text-align: center; padding: 1rem 0; }
.quiz-result-ring { width: 80px; height: 80px; margin: 0 auto 1.25rem; }
.quiz-result-ring svg { width: 100%; height: 100%; }
.quiz-result-label { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.quiz-result-pkg { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.quiz-result-price { font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; font-family: 'Cinzel', serif; }
.quiz-result-maint { display: inline-flex; align-items: center; gap: .6rem; background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.2); border-radius: 6px; padding: .5rem 1rem; margin-bottom: 1rem; font-size: .82rem; }
.quiz-result-maint-label { color: var(--muted); }
.quiz-result-maint-price { color: var(--gold); font-weight: 600; }
.quiz-result-extras { margin-bottom: 1.25rem; }
.quiz-extras-label { font-size: .78rem; color: var(--muted); margin-bottom: .5rem; }
.quiz-extra-tag { display: inline-block; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.25); border-radius: 20px; padding: .3rem .85rem; font-size: .75rem; color: var(--gold); margin: .2rem; }
.quiz-result-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* Floating Quiz Button */
.quiz-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; align-items: center; gap: .65rem;
  background: var(--surface); border: 1px solid rgba(201,169,110,.35);
  border-radius: 50px; padding: .6rem 1.1rem .6rem .7rem;
  cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: .78rem; color: var(--text); letter-spacing: .05em;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.quiz-float:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,169,110,.18); }
.quiz-float svg { width: 30px; height: 30px; flex-shrink: 0; }

/* ── Maintenance Section ── */
.maint-section { padding: 90px var(--pad); }
.maint-intro { max-width: 600px; }
.maint-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.maint-card {
  background: var(--surface); border: 1px solid rgba(201,169,110,.18);
  border-radius: 14px; padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.maint-card:hover { border-color: rgba(201,169,110,.5); transform: translateY(-4px); }
.maint-featured { border-color: rgba(201,169,110,.45); }
.maint-featured::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(201,169,110,.06), transparent 60%); pointer-events: none; }
.maint-badge { display: inline-block; background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3); border-radius: 20px; padding: .25rem .85rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.maint-name { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.maint-price { font-size: 2.25rem; font-weight: 700; color: var(--gold); font-family: 'Cinzel', serif; line-height: 1; }
.maint-per { font-size: .8rem; color: var(--muted); margin-top: .2rem; margin-bottom: 1.25rem; }
.maint-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.maint-features li { font-size: .85rem; color: var(--muted); display: flex; align-items: flex-start; gap: .5rem; }
.maint-features li::before { content: '◈'; color: var(--gold); font-size: .65rem; margin-top: .2rem; flex-shrink: 0; }
.maint-note { font-size: .75rem; color: var(--muted); opacity: .7; margin-top: 1rem; font-style: italic; }

/* ── Add-ons Section ── */
.addon-section { padding: 90px var(--pad); }
.addon-intro { max-width: 600px; margin-bottom: 3rem; }
.addon-category { margin-bottom: 3rem; }
.addon-cat-title { font-family: 'Cinzel', serif; font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); opacity: .8; margin-bottom: 1.25rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(201,169,110,.15); }
.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; }
.addon-card {
  background: var(--surface); border: 1px solid rgba(201,169,110,.12);
  border-radius: 10px; padding: 1.25rem 1.1rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .25s, transform .25s;
}
.addon-card:hover { border-color: rgba(201,169,110,.4); transform: translateY(-2px); }
.addon-icon { font-size: 1.3rem; color: var(--gold); }
.addon-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.addon-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; flex: 1; }
.addon-price { font-size: .82rem; font-weight: 700; color: var(--gold); font-family: 'Cinzel', serif; }
.addon-unit { font-size: .7rem; color: var(--muted); font-weight: 400; }
.addon-cta { margin-top: 2.5rem; text-align: center; }
.btn-ghost-dim { background: transparent; border: 1px solid rgba(201,169,110,.25); color: var(--muted); font-size: .82rem; padding: .55rem 1.25rem; border-radius: 6px; cursor: pointer; transition: border-color .25s, color .25s; }
.btn-ghost-dim:hover { border-color: var(--gold); color: var(--text); }

@media (max-width: 640px) {
  .quiz-opts { grid-template-columns: 1fr; }
  .quiz-box { padding: 1.75rem 1.25rem; }
  .quiz-float span { display: none; }
  .quiz-float { padding: .6rem; border-radius: 50%; }
  .maint-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .addon-grid { grid-template-columns: 1fr; }
}
