/* ============ TOKENS ============ */
:root {
  --blush: #f6ecee;
  --rose: #c98a9b;
  --rose-deep: #a85f74;
  --plum: #3b2530;
  --ink: #2a1f25;
  --cream: #fbf7f5;
  --line: #e7d8dd;
  --shadow: 0 18px 40px -20px rgba(59, 37, 48, .45);
  --radius: 14px;
  --maxw: 1160px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--plum); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.5px; }
h1 em { font-style: italic; color: var(--rose-deep); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }

.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem;
  font-weight: 600; color: var(--rose-deep); margin-bottom: 14px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-size: .92rem; font-weight: 500; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose-deep); color: #fff; }
.btn-primary:hover { background: var(--plum); }
.btn-ghost { border-color: var(--rose-deep); color: var(--rose-deep); background: transparent; }
.btn-ghost:hover { background: var(--rose-deep); color: #fff; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 245, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-size: 1.4rem; color: var(--plum); }
.brand-sub { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .92rem; font-weight: 500; color: var(--plum); transition: color .2s; }
.nav a:hover { color: var(--rose-deep); }
.nav-cta { padding: 10px 20px; border-radius: 999px; background: var(--rose-deep); color: #fff !important; }
.nav-cta:hover { background: var(--plum); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--plum); transition: .25s; }

/* ============ HERO ============ */
.hero { padding: clamp(48px, 7vw, 90px) 0; background:
  radial-gradient(120% 90% at 85% 0%, var(--blush) 0%, var(--cream) 55%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: 22px; }
.lead { font-size: 1.12rem; color: #5a4953; max-width: 30em; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--tall { grid-row: span 2; aspect-ratio: 3/4.4; }
.hero-photo--wide { aspect-ratio: 4/3; align-self: center; }

/* ============ STRIP ============ */
.strip { background: var(--plum); color: var(--blush); padding: 30px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.strip-num { display: block; font-family: var(--serif); font-size: 2rem; color: #fff; }
.strip-lbl { font-size: .82rem; opacity: .8; letter-spacing: .04em; }

/* ============ SECTIONS ============ */
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section--alt { background: var(--blush); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-intro { color: #5a4953; margin-top: 14px; }

/* ============ GALLERY ============ */
.gallery { columns: 3; column-gap: 18px; }
.gal-item { margin: 0 0 18px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; }
.gal-item img { width: 100%; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.05); }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-copy p { margin-bottom: 16px; color: #5a4953; }
.about-list { list-style: none; margin: 22px 0 28px; display: grid; gap: 10px; }
.about-list li { padding-left: 26px; position: relative; }
.about-list li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); }

/* ============ CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--feature { background: var(--plum); color: var(--blush); border-color: var(--plum); }
.card--feature h3, .card--feature .price { color: #fff; }
.card-tag {
  position: absolute; top: -12px; left: 30px; background: var(--rose); color: #fff;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.price { font-family: var(--serif); font-size: 1.5rem; color: var(--rose-deep); margin-bottom: 20px; }
.card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; font-size: .95rem; }
.card li { padding-left: 22px; position: relative; }
.card li::before { content: "·"; position: absolute; left: 6px; font-weight: 700; color: var(--rose); }
.card--feature li::before { color: var(--rose); }
.card .btn { margin-top: auto; text-align: center; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-copy p { color: #5a4953; margin-bottom: 24px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--rose-deep); }
.contact-list a { color: var(--plum); }
.contact-list a:hover { color: var(--rose-deep); text-decoration: underline; }
.contact-form { display: grid; gap: 16px; background: #fff; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--plum); }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--cream); color: var(--ink); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--rose); border-color: transparent; }
.hp { position: absolute; left: -9999px; visibility: hidden; }

/* ============ FOOTER ============ */
.site-footer { background: var(--plum); color: var(--blush); padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.footer-credit { opacity: .65; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(26, 16, 21, .92);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 22px; right: 30px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photos { max-width: 460px; }
  .about-photo { order: -1; max-width: 420px; }
  .gallery { columns: 2; }
  .cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav.open { max-height: 340px; }
  .nav a { width: 100%; padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav-cta { border-radius: 0; text-align: center; }
}
@media (max-width: 540px) {
  .gallery { columns: 1; }
  .footer-wrap { flex-direction: column; }
}
