/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --forest:    #113426;
  --blush:     #f4cfcc;
  --pink:      #e6066b;
  --white:     #ffffff;
  --off-white: #faf8f6;
  --light-gray:#f2f0ee;
  --muted:     #666666;
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; overscroll-behavior: none; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #222;
  background: var(--off-white);
  overflow-x: hidden;
  overscroll-behavior: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ─── UTILITIES ──────────────────────────────────── */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

/* ─── FOCUS ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  padding: 14px 28px;
  border: 1px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 100px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--pink); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--forest);
  padding: 14px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(17,52,38,0.35);
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  padding: 14px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-light:hover { background: var(--white); color: var(--forest); border-color: var(--white); }

/* ─── NAVIGATION ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 30px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-style: normal;
  font-weight: 300;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links .nav-cta a {
  background: var(--forest);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 100px;
  letter-spacing: 0.18em;
}
.nav-links .nav-cta a:hover { background: var(--pink); 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(--forest);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; z-index: 101; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--forest);
  line-height: 1;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #0a1f15;
  padding: 76px 120px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  position: relative;
  z-index: 4;
  align-items: start;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 230px;
  margin: 0;
}
.footer-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
}
.footer-connect-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.footer-social-link:hover { opacity: 1; }
.footer-social-link img { width: 14px; height: 14px; display: block; }
.footer-logo img {
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  list-style: none;
}
.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.footer-credit img {
  width: 32px;
  height: 32px;
  display: block;
}
.footer-credit::after {
  content: 'Website by a slice of lemon.';
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(10,31,21,0.92);
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.footer-credit:hover::after { opacity: 1; }

/* ─── FOOTER LEGAL LINKS ─────────────────────────── */
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  padding: 24px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal::before {
  content: '';
  flex: 1;
  order: 1;
}
.footer-legal-links {
  order: 2;
}
.footer-legal .footer-bottom {
  order: 3;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  font-weight: 300;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

.footer-legal-sep {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.12);
  font-weight: 300;
}

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal-hero {
  padding: clamp(120px, 15vw, 180px) 64px clamp(64px, 8vw, 100px);
  background: var(--forest);
  text-align: center;
}

.legal-hero .section-label { color: var(--blush); }

.legal-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.legal-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.legal-content {
  background: var(--off-white);
  padding: clamp(64px, 8vw, 100px) 64px;
}

.legal-inner {
  max-width: 740px;
  margin: 0 auto;
}

.legal-section { margin-bottom: 72px; }

.legal-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17,52,38,0.12);
}

.legal-article { margin-bottom: 36px; }

.legal-article h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}

.legal-article h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--forest);
  margin-top: 22px;
  margin-bottom: 8px;
}

.legal-article p,
.legal-article li {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
  margin-bottom: 8px;
}

.legal-article ul {
  list-style: none;
  padding: 0;
}

.legal-article ul li {
  padding-left: 18px;
  position: relative;
}

.legal-article ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(17,52,38,0.3);
}

.legal-business {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(17,52,38,0.1);
}

.legal-business p {
  font-size: 0.8rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.35);
  font-weight: 300;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (min-width: 769px) and (max-width: 980px) {
  footer { padding: 64px 64px 0; }
  .footer-brand { margin-left: 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { margin-top: 8px; }
}

@media (max-width: 806px) {
  nav { padding: 22px 28px; }
  nav.scrolled { padding: 15px 28px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  footer {
    padding: 100px 28px 0;
    position: relative;
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
  }
  .footer-brand { margin-left: 0; align-items: center; }
  .footer-logo { justify-content: center; }
  .footer-nav-col { align-items: center; }
  .footer-connect-col { align-items: center; }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }
  .footer-legal::before { display: none; }
  .footer-legal-links { order: unset; justify-content: center; }
  .footer-legal .footer-bottom { order: unset; flex: unset; justify-content: center; }

  .legal-hero { padding: 100px 28px 56px; }
  .legal-content { padding: 56px 28px 72px; }
}
