/* ===== CUSTOM PROPERTIES ===== */
:root {
  --c-bg:        #faf8f2;
  --c-surface-1: #f2ece0;
  --c-surface-2: #e6dfd0;
  --c-gold:      #9a7528;
  --c-gold-lt:   #b8913a;
  --c-gold-dim:  rgba(154, 117, 40, 0.2);
  --c-crimson:   #7a1f2e;
  --c-ink:       #1a1510;
  --c-ink-soft:  #2e2418;
  --c-ink-faint: #6b5d4a;

  --f-title:  'Cinzel', Georgia, serif;
  --f-body:   'Cormorant Garamond', Georgia, serif;
  --f-accent: 'IM Fell English', Georgia, serif;

  --w-main:   760px;
  --w-narrow: 580px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--c-bg);
  color: var(--c-ink-soft);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--c-ink); }

img { max-width: 100%; display: block; }

/* ===== LAYOUT ===== */
.wrap {
  max-width: var(--w-main);
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap-narrow {
  max-width: var(--w-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.5rem;
  background: rgba(250, 248, 242, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(154, 117, 40, 0.15);
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 20%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.nav-brand-group {
  text-decoration: none;
}
.nav-brand-group:hover .nav-logo { color: var(--c-ink); }

.nav-logo {
  font-family: var(--f-title);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  line-height: 1.1;
  transition: color 0.25s ease;
}

.nav-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.67rem;
  color: var(--c-ink-faint);
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
}
.nav-links a { color: var(--c-ink-faint); }
.nav-links a:hover { color: var(--c-gold); }
.nav-dot {
  color: var(--c-gold-dim);
  font-size: 0.45rem;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 65% at 50% 45%, var(--c-surface-1) 0%, var(--c-bg) 68%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 30% at 50% 30%, rgba(154, 117, 40, 0.055) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s ease both;
}

.hero-icon {
  width: 128px;
  height: 128px;
  border-radius: 22%;
  object-fit: cover;
  margin-bottom: 2.5rem;
  box-shadow:
    0 0 0 1px rgba(154, 117, 40, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 50px rgba(154, 117, 40, 0.07);
}

.hero-title {
  font-family: var(--f-title);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: 0.1em;
  color: var(--c-ink);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero-ornament-line {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-dim));
}
.hero-ornament-line:last-child {
  background: linear-gradient(90deg, var(--c-gold-dim), transparent);
}
.hero-ornament-gem {
  color: var(--c-gold-dim);
  font-size: 0.45rem;
}

.hero-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--c-ink-soft);
  max-width: 420px;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.hero-desc {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-ink-faint);
  max-width: 440px;
  line-height: 1.85;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse 2.8s ease-in-out infinite;
  z-index: 1;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(154, 117, 40, 0.35), transparent);
}

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }

.section-eyebrow {
  font-family: var(--f-title);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-align: center;
  margin-bottom: 1.25rem;
}

.section-rule {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold-dim), transparent);
  margin: 0 auto 3rem;
}

/* ===== SECTION: WHAT ===== */
.section-what {
  background: linear-gradient(to bottom,
    var(--c-bg) 0%,
    var(--c-surface-1) 30%,
    var(--c-surface-1) 70%,
    var(--c-bg) 100%
  );
}

/* SVG illustration inside section */
.section-illustration {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 3.5rem;
}

.what-text {
  font-family: var(--f-body);
  font-size: 1.1rem;
  color: var(--c-ink-soft);
  text-align: center;
  line-height: 1.88;
  margin-bottom: 1.4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.what-text:last-child { margin-bottom: 0; }

/* ===== SECTION: FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.1rem;
}

.feature-name {
  font-family: var(--f-title);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.9rem;
}

.feature-text {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-ink-faint);
  line-height: 1.82;
}

/* ===== SECTION: CLOSING ===== */
.section-closing {
  text-align: center;
  background: linear-gradient(to bottom,
    var(--c-bg) 0%,
    var(--c-surface-1) 30%,
    var(--c-surface-1) 70%,
    var(--c-bg) 100%
  );
}

.closing-gems {
  font-size: 0.4rem;
  letter-spacing: 0.6em;
  color: rgba(154, 117, 40, 0.28);
  margin-bottom: 2rem;
}

.closing-quote {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
}
.closing-links a { color: var(--c-ink-faint); }
.closing-links a:hover { color: var(--c-gold); }
.closing-dot {
  color: var(--c-gold-dim);
  font-size: 0.4rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2.75rem 0;
  border-top: 1px solid rgba(154, 117, 40, 0.15);
  background: var(--c-surface-2);
  text-align: center;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand {
  font-family: var(--f-title);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-body);
  font-size: 0.85rem;
}
.footer-links a { color: var(--c-ink-faint); }
.footer-links a:hover { color: var(--c-gold); }
.footer-links span {
  color: var(--c-gold-dim);
  font-size: 0.4rem;
}

.footer-copy {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-ink-faint);
  opacity: 0.6;
}

/* ===== SOCIAL / STORE STRIP ===== */
.section-social {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(154, 117, 40, 0.1);
  border-bottom: 1px solid rgba(154, 117, 40, 0.1);
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(154, 117, 40, 0.18);
  flex-shrink: 0;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--c-ink-faint);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.social-link:hover {
  color: var(--c-gold);
  transform: translateY(-3px);
}
.social-link-button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}
.social-link svg {
  width: 36px;
  height: 36px;
}
.social-link-label {
  font-family: var(--f-title);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: inherit;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--c-ink);
  color: var(--c-bg);
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 300;
  white-space: nowrap;
}
.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== SCROLL-TO-TOP ===== */
.btn-scrolltop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(154, 117, 40, 0.28);
  background: var(--c-bg);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  z-index: 150;
}
.btn-scrolltop svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-scrolltop:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
  box-shadow: 0 4px 18px rgba(154, 117, 40, 0.22);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 5.5rem;
  padding-bottom: 6rem;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(154, 117, 40, 0.15);
}

.legal-page-title {
  font-family: var(--f-title);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}

.legal-updated {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-ink-faint);
}

.legal-section { margin-bottom: 2.75rem; }

.legal-section-title {
  font-family: var(--f-title);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 0.9rem;
}

.legal-body {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-ink-faint);
  margin-bottom: 0.75rem;
}
.legal-body:last-child { margin-bottom: 0; }
.legal-body a {
  color: var(--c-gold);
  border-bottom: 1px solid rgba(154, 117, 40, 0.25);
}
.legal-body a:hover {
  color: var(--c-ink);
  border-bottom-color: rgba(26, 21, 16, 0.25);
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0.75rem 0;
}
.legal-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--c-ink-faint);
}
.legal-bullet {
  color: var(--c-gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1.82;
  opacity: 0.7;
}
.legal-strong {
  color: var(--c-ink-soft);
  font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.65; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner  { animation: none; }
  .hero-scroll { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .features {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-nav { padding: 0.85rem 1.25rem; }
  .wrap, .wrap-narrow { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .hero { padding: 7.5rem 1.25rem 5rem; }
  .hero-icon { width: 108px; height: 108px; }
  .btn-scrolltop { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
  .nav-tagline { display: none; }
}
