@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --black: #080808;
  --black-soft: #121212;
  --black-card: #171717;
  --gold: #d4af37;
  --gold-light: #f4d67a;
  --cream: #f5efe3;
  --white: #ffffff;
  --muted: #b7b1a6;
  --border: rgba(212, 175, 55, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.08), transparent 28%),
    var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, .88);
  border-bottom: 1px solid rgba(212,175,55,.15);
  backdrop-filter: blur(15px);
  z-index: 1000;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: inset 0 0 18px rgba(212,175,55,.08);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--cream);
}
.brand-text small {
  margin-top: 5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .62rem;
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav > a:not(.btn) {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ddd5c7;
  transition: .25s ease;
}
.nav > a:not(.btn):hover { color: var(--gold-light); }
.nav-link-register { color: var(--gold) !important; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 8px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
}

.hero {
  min-height: 100vh;
  padding: 140px 7vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: 7vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(8,8,8,.83) 48%, rgba(8,8,8,.65) 100%),
    radial-gradient(circle at 80% 35%, rgba(212,175,55,.18), transparent 24%),
    linear-gradient(135deg, #080808, #17120b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 8% 3% auto auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(212,175,55,.12);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(212,175,55,.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.hero-content, .login-card { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .74rem;
  font-weight: 700;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.5vw, 6.7rem);
  line-height: .95;
  max-width: 900px;
  font-weight: 600;
}
h1 span {
  color: var(--gold-light);
  font-style: italic;
}

.hero-copy {
  max-width: 720px;
  color: #d3cdc3;
  font-size: 1.04rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(212,175,55,.17);
}
.btn-dark { background: #101010; color: var(--white); border-color: rgba(255,255,255,.16); }
.btn-outline { color: var(--gold-light); border-color: var(--gold); background: transparent; }
.btn-full { width: 100%; }

.franchise-badge {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: .78rem;
}
.franchise-badge strong { color: var(--cream); }

.login-card {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(28,28,28,.94), rgba(12,12,12,.94));
  box-shadow: var(--shadow);
}

.login-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.5rem;
}

.login-card h2 { margin-bottom: 3px; font-size: 2.2rem; }
.login-card > p { color: var(--muted); font-size: .9rem; }
.login-card form { margin-top: 22px; }
.login-card label { display: block; margin: 13px 0 7px; color: #ddd6c9; font-size: .75rem; }

.login-card input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: white;
  background: #0c0c0c;
  border: 1px solid #35302a;
  border-radius: 4px;
  outline: none;
}
.login-card input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.08); }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 58px; }
.password-wrap button {
  position: absolute;
  right: 8px;
  top: 8px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: .75rem;
}
.login-card form .btn { margin-top: 18px; }
.forgot-link { display: block; margin: 13px 0; text-align: right; color: var(--gold); font-size: .72rem; }
.divider { display: flex; align-items: center; gap: 12px; color: #786f64; margin: 18px 0; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: #302b25; }
.login-note { margin: 14px 0 0 !important; font-size: .68rem !important; text-align: center; }

.section { padding: 110px 7vw; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading h2, .benefits h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: 1; margin-bottom: 18px; }
.section-heading > p:last-child { color: var(--muted); }

.about { background: var(--cream); color: #161616; }
.about .eyebrow { color: #8c6a17; }
.about .section-heading > p:last-child { color: #625d54; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(91,67,14,.18);
  background: rgba(255,255,255,.48);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(66,47,9,.12); }
.feature-number { color: #9a741b; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
.feature-card h3 { margin: 50px 0 10px; font-size: 2rem; }
.feature-card p { color: #625d54; }

.products { background: #0b0b0b; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { border: 1px solid rgba(212,175,55,.18); background: #121212; overflow: hidden; }
.product-visual {
  position: relative;
  height: 280px;
  padding: 0;
  overflow: hidden;
  display: block;
  background-size: cover;
  background-position: center;
}
.product-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent 70%);
}
.product-visual span {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}
.visual-1 { background: radial-gradient(circle at 70% 30%, #9c7831, transparent 25%), linear-gradient(135deg, #3c2c17, #0b0b0b); }
.visual-2 { background: radial-gradient(circle at 30% 35%, #7c4824, transparent 23%), linear-gradient(135deg, #21170f, #090909); }
.visual-3 { background: radial-gradient(circle at 62% 42%, #c29a46, transparent 21%), linear-gradient(135deg, #3b2c19, #080808); }
.product-info { padding: 26px; }
.product-info h3 { margin-bottom: 8px; font-size: 1.8rem; }
.product-info p { color: var(--muted); font-size: .9rem; }
.text-link { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

.benefits {
  padding: 110px 7vw;
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 8vw;
  align-items: center;
  background:
    radial-gradient(circle at 85% 45%, rgba(212,175,55,.18), transparent 25%),
    #111;
}
.benefits-list { display: grid; gap: 13px; }
.benefits-list > div { display: flex; gap: 12px; align-items: flex-start; color: #d5cec2; }
.benefits-list span { color: var(--gold); font-weight: 700; }
.benefits-list p { margin: 0; }

.benefits-panel {
  padding: 40px;
  border: 1px solid var(--gold);
  background: rgba(8,8,8,.7);
  box-shadow: var(--shadow);
}
.benefits-panel > p { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; }
.benefits-panel h3 { font-size: 2.4rem; line-height: 1.05; }

.footer {
  padding: 55px 7vw 30px;
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,.18);
  background: #070707;
  color: var(--muted);
}
.footer-brand { margin-bottom: 8px; }
.footer-links { display: flex; gap: 22px; color: #ddd6c9; font-size: .78rem; }
.footer > small { color: #70695f; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #121212;
  color: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  transition: .3s ease;
  z-index: 2000;
}
.toast.show { transform: translateY(0); opacity: 1; }
