/* ─── Gyovani Luxury Landing Page ─── */

:root {
  --bg: #060504;
  --bg-elevated: #0f0d0b;
  --bg-card: #161310;
  --text: #faf6ef;
  --text-muted: #a69e92;
  --gold: #d4b76a;
  --gold-light: #f0ddb0;
  --gold-dim: #9a7d42;
  --champagne: #e8d9b8;
  --border: rgba(212, 183, 106, 0.22);
  --border-subtle: rgba(250, 246, 239, 0.07);
  --glow: rgba(212, 183, 106, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 183, 106, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(154, 125, 66, 0.05) 0%, transparent 50%);
}

/* Vignette */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
}

.logo-mark {
  font-family: var(--font-accent);
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.25); }
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
  background: rgba(10, 9, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-menu.open {
  display: flex;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate(var(--parallax-x), var(--parallax-y));
  transition: transform 0.6s var(--ease-out);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: float 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 40vh;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  transform: translate(-50%, -50%) rotate(15deg);
  opacity: 0.3;
}

.hero-crest {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.5em;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  max-width: 320px;
  margin-inline: auto;
}

.hero-divider span:first-child,
.hero-divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-divider-gem {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.8;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: 0.02em;
}

.hero-title-line--accent {
  font-family: var(--font-accent);
  font-style: italic;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold-light) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944f 50%, var(--gold-light) 100%);
  background-size: 200% 200%;
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212, 183, 106, 0.2);
}

.btn--primary:hover {
  background-position: 100% 100%;
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 183, 106, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
}

/* ─── Marquee ─── */
.marquee {
  border-block: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--gold-dim) !important;
  font-size: 0.6rem !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Prestige strip ─── */
.prestige {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border-subtle);
}

.prestige-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.prestige-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(22, 19, 16, 0.6);
  transition: border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.prestige-item:hover {
  border-color: var(--border);
  box-shadow: 0 0 40px var(--glow);
}

.prestige-word {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.prestige-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Sections shared ─── */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2,
.heritage-text h2,
.craft-text h2,
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* ─── African Roots ─── */
.roots {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(154, 125, 66, 0.1) 0%, transparent 70%),
    var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.roots-inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.roots-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.roots-inner p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.9;
  font-size: 1.05rem;
}

.roots-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2.5rem;
}

.roots-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(22, 19, 16, 0.5);
  transition: background 0.4s, box-shadow 0.4s;
}

.roots-tags span:hover {
  background: rgba(212, 183, 106, 0.08);
  box-shadow: 0 0 24px var(--glow);
}

/* ─── Heritage ─── */
.heritage {
  padding: 8rem 0;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.heritage-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1.25rem;
  line-height: 1.85;
}

.heritage-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, #1c1812 100%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 183, 106, 0.08);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.stat-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: var(--border);
}

/* ─── Collections ─── */
.collections {
  padding: 8rem 0;
  background: var(--bg-elevated);
}

.collection-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.collection-card {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.collection-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 60px var(--glow);
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.collection-card-visual--light {
  background: linear-gradient(135deg, #1a1816 0%, #2a2418 50%, #1a1816 100%);
}

.collection-card-visual--fashion {
  background: linear-gradient(135deg, #16141a 0%, #1e1a24 50%, #16141a 100%);
}

.collection-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.collection-card:hover .collection-icon {
  opacity: 1;
  transform: scale(1.1);
}

.collection-card-body {
  padding: 2rem 2.25rem 2.5rem;
}

.collection-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.collection-card-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 0.5rem 0 1rem;
  color: var(--gold-light);
}

.collection-card-body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.collection-features {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.collection-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.collection-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 1px;
  background: var(--gold);
}

.collection-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.3s;
}

.collection-link:hover {
  color: var(--gold-light);
}

/* ─── Craft ─── */
.craft {
  padding: 8rem 0;
}

.craft-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.craft-frame {
  aspect-ratio: 3/4;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
}

.craft-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-subtle);
  transform: translate(12px, 12px);
  pointer-events: none;
}

.craft-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 183, 106, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--bg-card) 0%, #221e18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.craft-monogram {
  font-family: var(--font-accent);
  font-size: 8rem;
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(160deg, var(--gold-light), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(212, 183, 106, 0.2));
}

.craft-text p {
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1.25rem;
  line-height: 1.85;
}

.craft-pillars {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.pillar-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0.35rem 0 0.5rem;
}

.pillar p {
  font-size: 0.85rem;
  margin-top: 0 !important;
}

/* ─── Quote ─── */
.quote {
  padding: 6rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.quote blockquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-light);
}

.quote-ornament {
  text-align: center;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

.quote-words {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.quote-words span {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ─── Contact ─── */
.contact {
  padding: 8rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1.25rem;
  line-height: 1.85;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details a {
  color: var(--gold);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.contact-details a:hover {
  color: var(--gold-light);
}

.contact-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.contact-form {
  background: linear-gradient(160deg, var(--bg-card) 0%, #13100d 100%);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 183, 106, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s;
  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='%239a9288' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  font-weight: 300;
}

/* ─── Footer ─── */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #040302 100%);
  position: relative;
}

.footer-crest {
  text-align: center;
  font-size: 0.5rem;
  color: var(--gold);
  letter-spacing: 0.6em;
  opacity: 0.5;
  margin-bottom: 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.logo--footer {
  font-size: 1.25rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-trademark {
  margin-top: 0.75rem;
  font-size: 0.65rem !important;
  line-height: 1.6;
  max-width: 700px;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-credit-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.footer-by {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
}

.footer-name {
  color: var(--gold-light);
  font-weight: 500;
  background: linear-gradient(135deg, var(--champagne), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.3s, filter 0.3s;
}

.footer-name:hover {
  opacity: 0.85;
  filter: brightness(1.15);
}

.footer-roots {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

@media (min-width: 600px) {
  .footer-roots {
    display: inline;
    margin-top: 0;
    margin-left: 0.25rem;
  }
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 200;
  transition: transform 0.5s var(--ease-out), opacity 0.5s;
  opacity: 0;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── SEO content (visually hidden, crawlable) ─── */
.seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .prestige-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heritage-grid,
  .collection-cards,
  .craft-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .heritage-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .craft-frame {
    max-width: 280px;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .prestige-grid {
    grid-template-columns: 1fr;
  }

  .quote-words {
    gap: 1rem 1.5rem;
  }

  .footer-credit {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-credit-line {
    max-width: 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
