@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --g-dark:   #053329;
  --g-mid:    #0a4a38;
  --g-light:  #0d5c45;
  --gold:     #deb074;
  --gold-lt:  #f0c98a;
  --gold-dk:  #b8935a;
  --cream:    #f5f0e8;
  --off:      #d8d0c0;
  --muted:    #8a8070;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--g-dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  position: fixed;
  padding: 0.8rem 3rem;
  background: rgba(5,51,41,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222,176,116,0.15);
}
.nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.nav-logo img { height: 52px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-weight: 400; font-size: 0.76rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--off); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g-dark); background: var(--gold);
  padding: 0.5rem 1.2rem; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); margin: 5px 0; transition: 0.2s; }

/* ── FOOTER ── */
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(222,176,116,0.1);
  padding: 3rem;
  text-align: center;
}
footer img { height: 28px; margin-bottom: 1rem; opacity: 0.8; }
footer p {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--muted); margin-bottom: 0.4rem;
}
footer .tagline { color: var(--gold-dk); }
footer .footer-links { display: flex; gap: 2rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
footer .footer-links a {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans); font-weight: 400; font-size: 0.76rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--g-dark); background: var(--gold);
  padding: 0.9rem 2rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  font-family: var(--sans); font-weight: 400; font-size: 0.76rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(222,176,116,0.4);
  padding: 0.9rem 2rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-1px); }

/* ── UTILS ── */
.gold-rule { width: 50px; height: 1px; background: var(--gold-dk); margin: 0 auto; }
.gold-rule.left { margin: 0; }
.section-label {
  font-family: var(--sans); font-weight: 400; font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05;
  color: var(--cream); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold-lt); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 56px; left: 0; right: 0;
    background: rgba(5,51,41,0.98);
    padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid rgba(222,176,116,0.15);
  }
  .nav-links.open a { padding: 0.7rem 0; border-bottom: 1px solid rgba(222,176,116,0.08); }
  .nav-hamburger { display: block; }
  .nav-cta { font-size: 0.65rem; padding: 0.45rem 0.9rem; }
}

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  .nav-logo img { height: 38px; }
  #hero { padding-top: 5rem; padding-bottom: 3rem; min-height: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 320px; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 0.8rem 1.2rem; }
  .nav-cta { display: none; }
  section { padding: 4rem 1.2rem; }
  .hero-title { font-size: 2.8rem; }
  #hero { padding-top: 4.5rem; }
}
img { max-width: 100%; height: auto; }
