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

:root {
  --ink: #0d0d0d;
  --paper: #f7f4ef;
  --gold: #b89355;
  --gold-light: #d4b07a;
  --slate: #1c2533;
  --mid: #6b7280;
  --rule: rgba(184,147,85,0.25);
  --paper2: #f2ede6;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--paper); color: var(--ink); overflow-x: hidden; }

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
  background: rgba(12, 18, 28, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,147,85,0.2);
}
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,236,228,0.55); text-decoration: none; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid var(--gold);
  color: var(--gold); text-decoration: none; font-weight: 500; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: #0d0d0d; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-hero {
  background: var(--slate); padding: 170px 80px 110px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,147,85,0.1) 0%, transparent 65%);
}
.page-hero-kicker {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.page-hero-kicker::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px); font-weight: 300; color: #f0ece4;
  line-height: 1.08; max-width: 720px; position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 16px; line-height: 1.8; color: rgba(240,236,228,0.6);
  max-width: 540px; margin-top: 28px; position: relative;
}

/* ─── SECTIONS ─── */
section { padding: 100px 80px; }
.inner { max-width: 1200px; margin: 0 auto; }
.section-kicker {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.section-kicker::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px); font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 28px;
}
.section-h2 em { font-style: italic; }
hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0 80px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block; background: var(--gold); color: #0d0d0d;
  padding: 13px 32px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  padding: 13px 32px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: white; }

/* ─── FOOTER ─── */
footer {
  background: #0a0e15; padding: 50px 80px 36px;
  border-top: 1px solid rgba(184,147,85,0.15);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 20px; mix-blend-mode: screen; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(240,236,228,0.4); max-width: 260px; }
.footer-col h5 {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(240,236,228,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(184,147,85,0.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(240,236,228,0.25); }
.footer-bottom a { font-size: 11px; color: rgba(240,236,228,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── TESTIMONIAL ─── */
.testimonial-block { background: var(--slate); text-align: center; padding: 90px 80px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 100px; line-height: 0.6;
  color: var(--gold); opacity: 0.3; margin-bottom: 24px; display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 32px); font-weight: 300; font-style: italic;
  color: #f0ece4; max-width: 780px; margin: 0 auto 32px; line-height: 1.45;
}
.quote-attr { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info p { font-size: 15px; line-height: 1.75; color: var(--mid); margin-top: 18px; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 14px; }
.contact-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); min-width: 56px; padding-top: 2px; }
.contact-value { font-size: 14px; color: var(--ink); line-height: 1.5; }
.form-stack { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.form-field input, .form-field select, .form-field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  padding: 10px 0; font-size: 14px; color: var(--ink); font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-submit {
  background: var(--ink); color: var(--paper); padding: 14px; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border: none;
  cursor: pointer; margin-top: 8px; transition: background 0.2s; width: 100%;
}
.form-submit:hover { background: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.28s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.4s ease both; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  hr.rule { margin: 0 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
