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

:root {
  --white:      #fffbfa;
  --offwhite:   #fbeeeb;
  --blush-pale: #f4dbd7;
  --blush:      #c68f88;
  --blush2:     #a8685f;
  --navy:       #1f3350;
  --navy2:      #2c4763;
  --ink:        #3d3330;
  --ink2:       #8a7972;
  --border:     rgba(168,104,95,0.16);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Mulish', 'Helvetica Neue', Arial, sans-serif;
}

/* ───────────────────────────────────────────
   Mobile-first base styles (no media query = phone)
   Larger breakpoints below progressively enhance up.
   ─────────────────────────────────────────── */

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(198,143,136,0.3); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }

/* ─── NAV ─── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--navy); line-height: 1.15; }
.brand span { display: block; font-family: var(--sans); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); margin-top: 0.2rem; }

.nav-links { display: none; }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--navy);
}
.mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.mobile-menu-btn span { width: 20px; height: 2px; background: var(--navy); display: block; }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: var(--white); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform 0.3s ease;
}
.mobile-nav-overlay.open { transform: translateY(0); }
.mobile-nav-overlay a { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--navy); cursor: pointer; }

/* ─── HERO ─── */
.hero { padding: 2.5rem 0 3rem; }
.hero-copy .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blush); margin-bottom: 1rem;
}
.hero-copy h1 { font-family: var(--serif); font-weight: 600; font-size: 2.2rem; color: var(--navy); line-height: 1.12; margin-bottom: 1rem; }
.hero-copy .tagline { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--navy2); margin-bottom: 1.5rem; }
.hero-copy p.lede { font-size: 1.12rem; color: var(--ink2); margin-bottom: 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.7rem; border-radius: 999px; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid transparent;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); }

.hero-art {
  aspect-ratio: 3/2; background: var(--offwhite); border-radius: 10px; overflow: hidden;
  box-shadow: 0 20px 45px rgba(168,104,95,0.14);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art p { font-size: 0.78rem; color: var(--ink2); max-width: 26ch; padding: 1.5rem; text-align: center; }

/* ─── SECTION SHELL ─── */
section.block { padding: 3rem 0; }
section.block.alt { background: var(--offwhite); }
.block-head { max-width: 560px; margin: 0 auto 2rem; text-align: center; }
.block-head .eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); margin-bottom: 0.6rem; }
.block-head h2 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.7rem; }
.block-head p { color: var(--ink2); font-size: 0.96rem; }

/* ─── FEATURED ─── */
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.featured-card {
  background: var(--white); border-radius: 3px; overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow:
    inset 0 0 0 5px var(--white),
    inset 0 0 0 6px var(--blush2),
    0 16px 34px rgba(31,51,80,0.14);
}
.featured-photo { aspect-ratio: 4/3.2; background: var(--offwhite); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; color: var(--blush); text-align: center; padding: 1rem; }
.placeholder-tile svg { width: 28px; height: 28px; }
.placeholder-tile span { font-size: 0.65rem; letter-spacing: 0.04em; }
.featured-info { padding: 1rem 1.1rem 1.2rem; }
.featured-info h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; }
.featured-info p { font-size: 0.86rem; color: var(--ink2); }
.featured-tag {
  display: inline-block; margin-top: 0.6rem; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy); background: var(--blush-pale); padding: 0.22rem 0.55rem; border-radius: 999px;
}

/* ─── GALLERY ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.gallery-item { aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: var(--white); border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-note { text-align: center; margin-top: 1.6rem; font-size: 0.85rem; color: var(--ink2); }
.gallery-note a { color: var(--navy); border-bottom: 1px solid var(--blush); }

/* ─── STORY ─── */
.story { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.story-photo { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--offwhite); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-copy .eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); margin-bottom: 0.6rem; }
.story-copy h2 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; }
.story-placeholder {
  border: 1px dashed var(--blush); border-radius: 8px; padding: 1.1rem 1.2rem;
  font-size: 0.9rem; color: var(--ink2); font-style: italic; line-height: 1.7; background: var(--offwhite);
}

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.6rem 1.5rem; }
.service-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--ink2); }
.service-card .terms { display: block; margin-top: 0.8rem; font-size: 0.7rem; color: var(--ink2); font-style: italic; }

/* ─── CONTACT ─── */
.contact-info h2 { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.8rem; }
.contact-info > p { color: var(--ink2); margin-bottom: 1.6rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-list-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list-item .ci-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--offwhite); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0;
}
.contact-list-item .ci-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blush); margin-bottom: 0.15rem; }
.contact-list-item .ci-value { font-size: 0.96rem; color: var(--ink); }
.map-embed { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); height: 260px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ─── FOOTER ─── */
.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); }
.site-footer .wrap { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 0.95rem; color: var(--navy); }
.footer-note { font-size: 0.74rem; color: var(--ink2); }
.footer-note a { border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   TABLET AND UP (≥ 700px) — progressive enhancement
   ═══════════════════════════════════════════ */
@media (min-width: 700px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-copy h1 { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════
   DESKTOP AND UP (≥ 960px)
   ═══════════════════════════════════════════ */
@media (min-width: 960px) {
  .wrap { padding: 0 2rem; }
  .site-nav .wrap { height: 82px; }
  .brand { font-size: 1.35rem; }
  .nav-links { display: flex; align-items: center; gap: 1.9rem; }
  .nav-links a {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink2); padding: 0.35rem 0; border-bottom: 1px solid transparent;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--navy); border-color: var(--blush); }
  .mobile-menu-btn { display: none; }

  #home { min-height: calc(100vh - 82px); max-height: calc(100vh - 82px); display: flex; align-items: center; overflow: hidden; }
  .hero { padding: 1.75rem 0; display: grid; grid-template-columns: 0.76fr 1.24fr; align-items: center; gap: 2.5rem; width: 100%; }
  .hero-copy .eyebrow { font-size: 0.75rem; margin-bottom: 0.7rem; }
  .hero-copy h1 { font-size: 2.5rem; margin-bottom: 0.7rem; }
  .hero-copy .tagline { font-size: 1.05rem; margin-bottom: 1.1rem; }
  .hero-copy p.lede { font-size: 0.98rem; max-width: 42ch; margin-bottom: 1.4rem; }
  .hero-actions { margin-bottom: 0; }
  .btn { padding: 0.8rem 1.6rem; font-size: 0.8rem; }

  section.block { padding: 5rem 0; }
  .block-head { margin-bottom: 3rem; }
  .block-head h2 { font-size: 2.1rem; }

  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .featured-card { transition: transform 0.2s ease; }
  .featured-card:hover { transform: translateY(-3px); }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }

  .story { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: center; }

  .services-grid { gap: 1.75rem; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .map-embed { height: 320px; }

  .site-footer .wrap { flex-direction: row; justify-content: space-between; text-align: left; }
}
