:root {
  --bg: #0f0c0a;
  --bg-soft: #17120f;
  --card: rgba(255,255,255,0.04);
  --line: rgba(214, 182, 116, 0.24);
  --text: #f5f1ea;
  --muted: #c8bdaf;
  --gold: #d6b674;
  --gold-soft: #b9954a;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(214,182,116,0.10), transparent 28%),
    radial-gradient(circle at left center, rgba(255,255,255,0.04), transparent 24%),
    linear-gradient(180deg, #0e0b09 0%, #14100d 50%, #0f0c0a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 12%, rgba(214,182,116,.9) 0 1.2px, transparent 2.6px),
    radial-gradient(circle at 64% 35%, rgba(255,255,255,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 20% 72%, rgba(214,182,116,.8) 0 1px, transparent 2.2px),
    radial-gradient(circle at 88% 78%, rgba(255,255,255,.75) 0 1px, transparent 2px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(11,9,8,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(214,182,116,0.45);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: inset 0 0 30px rgba(214,182,116,0.08);
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-text small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a:hover,
.nav a:focus-visible { color: var(--white); }

.header-cta,
.btn,
.contact-link.primary {
  border: 1px solid rgba(214,182,116,0.45);
  background: linear-gradient(180deg, rgba(214,182,116,0.20), rgba(214,182,116,0.08));
  color: var(--white);
  padding: 13px 20px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.header-cta:hover,
.btn:hover,
.contact-link.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  border-color: rgba(214,182,116,0.7);
}

.hero {
  padding: 90px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 0.78rem;
  color: var(--gold);
}
.holiday-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214,182,116,0.24);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 0.86rem;
}
.hero h1,
.section-heading h2,
.editorial-copy h2,
.service-card h2,
.note-box h2,
.contact-copy h2,
.festive-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 11ch;
}
.hero h1 span {
  color: var(--gold);
  font-style: italic;
}
.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
}
.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
.hero-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.glow-card,
.collection-card,
.service-card,
.contact-panel,
.note-box,
.quote-block,
.festive-panel,
.mini-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(214,182,116,0.28), transparent 70%);
  pointer-events: none;
}
.card-label, .card-topline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
}
.hero-card h2 {
  margin: 8px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
}
.hero-card p { color: var(--muted); }
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.card-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,182,116,0.20);
  font-size: 0.84rem;
  color: var(--text);
}

.section { padding: 88px 0; }
.dark-band {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-number {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}
.feature-strip h3,
.collection-card h3,
.service-card h3,
.mini-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}
.feature-strip p,
.section-heading p,
.collection-card p,
.collection-card li,
.editorial-copy p,
.service-card p,
.note-box p,
.contact-copy p,
.small-print,
.festive-panel p,
.mini-card p {
  color: var(--muted);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); }

.festive-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}
.festive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.festive-panel {
  padding: 34px;
}
.festive-panel h2 {
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  margin-bottom: 16px;
}
.festive-list {
  display: grid;
  gap: 18px;
}
.mini-card {
  padding: 24px;
}
.mini-icon {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.15rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  padding: 28px;
}
.collection-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}
.highlight-card {
  box-shadow: 0 20px 70px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(214,182,116,0.16);
}
.inline-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 600;
}

.editorial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.editorial-copy h2,
.service-card h2,
.note-box h2,
.contact-copy h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.editorial-panel {
  display: flex;
  align-items: center;
}
.quote-block {
  width: 100%;
  padding: 48px;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.quote-block p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}
.service-card { padding: 28px; }
.service-card.big {
  grid-row: span 2;
  min-height: 100%;
}
.note-box {
  text-align: center;
  padding: 44px;
}
.contact-panel {
  padding: 30px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 0 18px;
}
.contact-link:not(.primary):hover {
  border-color: rgba(214,182,116,0.3);
}
.small-print { font-size: 0.92rem; }
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .hero-grid,
  .editorial-grid,
  .contact-grid,
  .feature-strip,
  .collection-grid,
  .service-grid,
  .festive-grid {
    grid-template-columns: 1fr;
  }
  .service-card.big { grid-row: auto; }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }
  .brand { width: 100%; justify-content: center; }
  .header-cta { width: 100%; text-align: center; }
  .hero { padding-top: 56px; }
  .hero-card,
  .collection-card,
  .service-card,
  .contact-panel,
  .quote-block,
  .note-box,
  .festive-panel,
  .mini-card {
    padding: 24px;
  }
  .container { width: min(var(--container), calc(100% - 24px)); }
}
