/* FormHome — MVP styles. Light, airy, premium. Black + gold accents. */

:root {
  --gold: #C9922E;
  --gold-dark: #9A6C1E;
  --graphite: #2A2D31;
  --cream: #F7F4EF;
  --cream-2: #EFEAE1;
  --near-black: #17181A;
  --silver: #C7CDD1;
  --muted: #6E7176;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Dark theme — same layout, inverted palette (toggled via data-theme on <html>) */
:root[data-theme="dark"] {
  --gold: #D6A544;
  --gold-dark: #C89234;
  --graphite: #E7E4DE;
  --cream: #131316;
  --cream-2: #1B1B1F;
  --near-black: #0D0D0F;
  --muted: #9A968E;
}
:root[data-theme="dark"] .site-header { background: rgba(13,13,15,.82); border-bottom-color: rgba(214,165,68,.16); }
:root[data-theme="dark"] .feature { background: var(--cream-2); border-color: rgba(214,165,68,.16); }
:root[data-theme="dark"] .feature:hover { box-shadow: 0 16px 40px rgba(0,0,0,.5); }
:root[data-theme="dark"] .tile { background: linear-gradient(160deg,#1d1d21,#101012); border-color: rgba(214,165,68,.2); }
:root[data-theme="dark"] .contact-side { background: var(--cream-2); border-color: rgba(214,165,68,.2); }
:root[data-theme="dark"] .field input,
:root[data-theme="dark"] .field textarea { background: rgba(255,255,255,.03); border-color: rgba(214,165,68,.25); color: var(--graphite); }
:root[data-theme="dark"] .btn-outline { border-color: rgba(231,228,222,.4); color: var(--graphite); }
:root[data-theme="dark"] .btn-outline:hover { background: rgba(231,228,222,.06); color: var(--graphite); }
:root[data-theme="dark"] .prose p { color: #c9c5bd; }
:root[data-theme="dark"] .contact-side .row { color: #c9c5bd; }

/* Theme toggle button */
.theme-toggle {
  background: none; border: 1px solid rgba(42,45,49,.22); color: var(--graphite);
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center; margin-left: 6px;
  transition: border-color .25s, transform .25s;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(-12deg); }
:root[data-theme="dark"] .theme-toggle { border-color: rgba(214,165,68,.35); }

/* Language switcher — compact EN | ES | PT segmented control */
.lang-switch-mount { display: inline-flex; align-items: center; }
.lang-switch {
  display: inline-flex; align-items: center; margin-left: 8px;
  border: 1px solid rgba(42,45,49,.22); border-radius: 999px; overflow: hidden;
}
.lang-switch .lang-opt {
  background: none; border: 0; cursor: pointer; padding: 5px 9px;
  font-family: inherit; font-size: .66rem; letter-spacing: .1em; font-weight: 600;
  text-transform: uppercase; color: var(--muted); line-height: 1;
  transition: background-color .2s, color .2s;
}
.lang-switch .lang-opt + .lang-opt { border-left: 1px solid rgba(42,45,49,.14); }
.lang-switch .lang-opt:hover { color: var(--graphite); }
.lang-switch .lang-opt.active { background: var(--gold); color: #fff; }
:root[data-theme="dark"] .lang-switch { border-color: rgba(214,165,68,.35); }
:root[data-theme="dark"] .lang-switch .lang-opt + .lang-opt { border-left-color: rgba(214,165,68,.22); }
:root[data-theme="dark"] .lang-switch .lang-opt.active { color: #131316; }

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, Helvetica, Arial, sans-serif;
  color: var(--graphite);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .3px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, #E7B85B, var(--gold) 55%, var(--gold-dark));
  color: #1c1407; box-shadow: 0 6px 18px rgba(154,108,30,.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(154,108,30,.36); }
.btn-outline { border-color: var(--graphite); color: var(--graphite); background: transparent; }
.btn-outline:hover { background: var(--graphite); color: var(--cream); }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,45,49,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg, .brand img { height: 42px; width: 42px; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: .5px; }
.brand-name b { color: var(--gold-dark); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  color: var(--graphite); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.4rem; color: var(--graphite); }

/* Hero */
.hero {
  position: relative; text-align: center;
  padding: 108px 0 96px;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(201,146,46,.10), transparent 60%),
    var(--cream);
}
.hero .logo-badge { width: 132px; height: 132px; margin: 0 auto 26px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 10px 0 18px; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section.block { padding: 88px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 12px 0 14px; }
.section-head p { color: var(--muted); }

/* Feature trio */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature {
  background: #fff; border: 1px solid rgba(42,45,49,.07); border-radius: 4px;
  padding: 38px 30px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23,24,26,.08); }
.feature .ico { font-size: 1.7rem; color: var(--gold-dark); margin-bottom: 14px; }
.feature h3 { font-size: 1.5rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* Collection / coming soon */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile {
  aspect-ratio: 4/5; border-radius: 4px; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--cream-2), #e3ddd1);
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px solid rgba(42,45,49,.08);
}
.tile span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--muted);
  letter-spacing: .05em;
}
.tile .ico { font-size: 2rem; color: var(--gold); opacity: .55; }
.coming-band {
  text-align: center; margin-top: 46px;
}

/* Newsletter */
.newsletter {
  background: var(--near-black); color: var(--cream); text-align: center;
  padding: 84px 0;
}
.newsletter h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.newsletter p { color: #b9b6b0; max-width: 480px; margin: 0 auto 30px; }
.news-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.news-form input {
  flex: 1 1 240px; padding: 14px 18px; border: 1px solid #3a3d41; background: #202225;
  color: var(--cream); border-radius: 2px; font-family: inherit; font-size: .95rem;
}
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-msg { min-height: 22px; margin-top: 14px; font-size: .9rem; color: var(--gold); }

/* Story / prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 22px; font-size: 1.08rem; color: #45484c; }
.prose .drop::first-letter { font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; color: var(--gold-dark); float: left; line-height: .8; padding: 6px 12px 0 0; }
.rule { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 22px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(42,45,49,.18); border-radius: 2px;
  font-family: inherit; font-size: .96rem; background: #fff; color: var(--graphite);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.contact-side { background: #fff; border: 1px solid rgba(42,45,49,.08); border-radius: 4px; padding: 34px; }
.contact-side h3 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-side .row { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; color: #45484c; }
.contact-side .row .k { color: var(--gold-dark); width: 22px; }

/* Footer */
.site-footer { background: var(--near-black); color: #9a9793; padding: 56px 0 30px; }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 34px; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand svg, .foot-brand img { height: 44px; width: 44px; }
.foot-brand .brand-name { color: var(--cream); }
.foot-brand .brand-name b { color: var(--gold); }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #c7c4bf; }
.foot-links a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid #2c2e31; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; }
.foot-bottom a:hover { color: var(--gold); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .features, .gallery { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid rgba(42,45,49,.1);
    transform: translateY(-140%); transition: transform .35s var(--ease); box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 15px 24px; width: 100%; }
  .nav-links .nav-cta { margin: 12px 24px; }
  .nav-links .lang-switch-mount { padding: 6px 24px 14px; }
  .nav-links .lang-switch { margin-left: 0; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .features, .gallery { grid-template-columns: 1fr; }
  section.block { padding: 60px 0; }
}
