/* Venus Stone – Global Styles */

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

:root {
  --stone:    #C8B89A;
  --sand:     #F0EAE0;
  --deep:     #1C1916;
  --warm:     #2E2820;
  --mid:      #6B5E52;
  --light:    #FAF8F5;
  --white:    #FFFFFF;
  --accent:   #8B6B4A;

  --display:  'Cormorant Garamond', Georgia, serif;
  --body:     'Jost', system-ui, sans-serif;

  --max:      1200px;
  --gap:      clamp(1.5rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.1;
  color: var(--warm);
  background: var(--light);
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(4rem, 8vw, 7rem); }
h2 { font-size: clamp(3rem, 6vw, 5rem); }
h3 { font-size: clamp(2rem, 3.5vw, 3rem); }

em { font-style: italic; color: var(--accent); }

.eyebrow {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 1rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--gap);
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,184,154,0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(28,25,22,0.08); }

.nav-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--deep);
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--deep); }

.nav-cta {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--accent); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--deep);
  color: var(--white);
  border: 1px solid var(--deep);
}

.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.btn-outline:hover { background: var(--deep); color: var(--white); }

.btn-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-light:hover { background: var(--white); color: var(--deep); }

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

section { padding: clamp(4rem, 8vw, 7rem) var(--gap); }

.section-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  margin-top: 1rem;
  color: var(--mid);
  font-size: 1.6rem;
}

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--stone);
  margin: 1.5rem 0;
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 5rem) var(--gap) 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: block; }

.footer-brand p { font-size: 1.3rem; line-height: 2.1; max-width: 280px; }

.footer-col h4 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--stone); }

.footer-bottom {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--light);
    padding: 2rem var(--gap);
    gap: 1.5rem;
    border-bottom: 1px solid var(--sand);
    z-index: 99;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

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