:root {
  --cream: #f8f1e4;
  --cream-soft: #fffaf1;
  --green: #183323;
  --green-2: #254531;
  --gold: #b0843a;
  --gold-light: #d3af68;
  --ink: #172819;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(20, 20, 20, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
}

.site-header {
  min-height: 118px;
  padding: 22px clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, #fffaf1, #f6ead7);
  border-bottom: 2px solid rgba(176, 132, 58, .45);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--green);
}

.brand-mark {
  width: 78px;
  height: 78px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 58px/1 Georgia, serif;
  position: relative;
}

.brand-text { display: grid; gap: 2px; }
.brand-main {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: .13em;
  line-height: .9;
}
.brand-sub {
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold);
  font-size: clamp(17px, 2vw, 26px);
  letter-spacing: .48em;
  text-transform: uppercase;
  padding-left: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--green);
  margin: 7px 0;
}

.hero {
  min-height: clamp(520px, 68vw, 760px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../assets/hero-family.jpg") center / cover no-repeat;
  border-bottom: 5px solid var(--gold);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -84px;
  height: 165px;
  background: var(--cream-soft);
  border-top: 5px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 27, 18, .84) 0%, rgba(12, 27, 18, .56) 32%, rgba(12, 27, 18, .12) 63%, rgba(12, 27, 18, .08) 100%),
    radial-gradient(circle at 70% 35%, rgba(255,255,255,.18), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(620px, 90%);
  margin-left: clamp(28px, 7vw, 100px);
  color: white;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 72px;
  height: 2px;
  background: var(--gold-light);
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(54px, 8vw, 108px);
  line-height: .98;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold-light);
  font-size: 28px;
  margin: 20px 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  width: 106px;
  height: 2px;
  background: var(--gold-light);
}

.hero-line {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.55;
  margin: 0;
}

.coming-soon {
  position: relative;
  z-index: 6;
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 100px 22px 88px;
  background: radial-gradient(circle at 50% 25%, #fffaf2, var(--cream) 74%);
}

.heart-medallion {
  width: 82px;
  height: 82px;
  border: 5px solid var(--gold);
  background: var(--cream-soft);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: -110px auto 70px;
  box-shadow: var(--shadow);
}

.ornament {
  width: 260px;
  height: auto;
  opacity: .95;
  margin-bottom: 22px;
}

.coming-soon h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(34px, 5vw, 60px);
}

.coming-soon p {
  margin: 2px 0 0;
  font-family: "Great Vibes", cursive;
  color: var(--gold);
  font-size: clamp(42px, 6vw, 70px);
}

.ornament.lower {
  transform: rotate(180deg);
  margin-top: 24px;
  margin-bottom: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 50% -10%, rgba(211,175,104,.18), transparent 34%),
    linear-gradient(135deg, #102417, #183323 58%, #102417);
  color: var(--cream-soft);
  text-align: center;
  padding: 62px 24px 48px;
  border-top: 1px solid rgba(176, 132, 58, .45);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  margin: 20px auto 8px;
}
.footer-divider::before,
.footer-divider::after {
  content: "";
  width: min(220px, 28vw);
  height: 2px;
  background: var(--gold);
}

.footer-script {
  font-family: "Great Vibes", cursive;
  color: var(--gold-light);
  font-size: clamp(28px, 4vw, 46px);
  margin: 10px 0 38px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
  font-size: 16px;
}
.footer-contact a {
  color: var(--cream-soft);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--gold-light); }

@media (max-width: 760px) {
  .site-header {
    min-height: 90px;
    padding: 16px 20px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    font-size: 40px;
  }

  .brand-main {
    font-size: 30px;
  }

  .brand-sub {
    font-size: 14px;
    letter-spacing: .35em;
  }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream-soft);
    border-bottom: 1px solid rgba(176,132,58,.35);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
  }

  .site-nav.open { display: flex; }

  .hero {
    min-height: 610px;
    background-position: 58% center;
  }

  .hero-content {
    margin: 0 auto;
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 72px);
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 42px;
  }

  .coming-soon {
    min-height: 360px;
  }
}
