:root {
  --ink: #09213d;
  --ink-2: #061a32;
  --paper: #fffaf2;
  --rose: #f198a7;
  --mint: #9ed8cf;
  --mint-2: #e3f6f1;
  --line: #eadfd4;
  --text: #172033;
  --muted: #5a6370;
  --shadow: 0 16px 40px rgba(9, 33, 61, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100vw - 48px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 84px;
  background: rgba(255, 250, 242, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 223, 212, .8);
}
.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 172px 1fr 230px;
  align-items: center;
  position: relative;
}
.brand-mark {
  position: absolute;
  left: 0;
  top: 26px;
  width: 132px;
  height: 132px;
  z-index: 4;
  border-radius: 50%;
  filter: drop-shadow(0 12px 22px rgba(9, 33, 61, .18));
}
.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.95);
  outline: 3px solid #bca46d;
}
.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: #ed8495; }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--rose);
}
.nav-cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 196px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--ink);
  font-weight: 900;
}
.hamburger {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.75);
  color: var(--ink);
}

.page-hero {
  padding: 86px 0 50px;
  background:
    radial-gradient(circle at 85% 18%, rgba(241, 152, 167, .22) 0 8rem, transparent 8.1rem),
    linear-gradient(130deg, #fffaf2 0%, #fff1e8 52%, #e8f7f3 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: center;
}
.page-hero h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  text-transform: uppercase;
}
.page-hero p {
  margin: 0;
  max-width: 620px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}
.page-hero img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section { padding: 54px 0; }
.section.mint { background: var(--mint-2); }
.section-title {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.section-title::after {
  content: "♡";
  display: block;
  width: 104px;
  margin: 9px auto 0;
  color: var(--rose);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border-top: 2px solid var(--rose);
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(9, 33, 61, .08);
  overflow: hidden;
}
.card.pad { padding: 24px; }
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.card-body { padding: 18px; }

.ice-card { position: relative; cursor: pointer; }
.ice-card img { aspect-ratio: 1.18 / 1; height: auto; border-radius: 12px; }
.ice-label {
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  min-width: 124px;
  max-width: calc(100% - 16px);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(9,33,61,.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(9,33,61,.08);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.footer {
  background: var(--ink-2);
  color: #fff;
  padding: 34px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr 1.05fr;
  gap: 44px;
}
.footer h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}
.footer p,
.footer a,
.footer div {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.5;
}
.legal {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  flex-wrap: wrap;
}
.legal a { text-decoration: underline; text-underline-offset: 3px; }

.page-modal-overlay,
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 120;
  background: rgba(6, 26, 50, .72);
}
.page-modal-overlay.active,
.lightbox.open { display: flex; }
.page-modal {
  width: min(720px, 100%);
  max-height: 84vh;
  overflow: auto;
  background: var(--paper);
  border-radius: 12px;
}
.page-modal-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-modal-body { padding: 22px; white-space: pre-wrap; line-height: 1.7; }
.page-modal-close,
.lightbox button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
}
.lightbox button {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .nav { height: 72px; }
  .nav-inner { grid-template-columns: 80px 1fr 44px; }
  .brand-mark { position: static; width: 62px; height: 62px; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,250,242,.98);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links a { min-height: 44px; padding: 0 12px; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-grid; place-items: center; }
  .page-hero { padding: 34px 0 36px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .page-hero img { height: 240px; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .container { width: calc(100vw - 28px); }
  .page-hero h1 { font-size: 42px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
  .ice-card img { aspect-ratio: 1.5 / 1; }
  .legal { justify-content: flex-start; }
}
