:root {
  --ivory: #fbf7f2;
  --ivory-2: #f4ece3;
  --blush: #e8c9c1;
  --espresso: #2e211c;
  --espresso-soft: #5a473f;
  --rose-gold: #c2997a;
  --rose-gold-dk: #a87c5e;
  --line: rgba(46, 33, 28, 0.12);
  --shadow: 0 24px 60px -28px rgba(46, 33, 28, 0.45);
  --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);
  background: var(--ivory);
  color: var(--espresso);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }

em { font-style: italic; color: var(--rose-gold-dk); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold-dk);
  font-weight: 600;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--espresso-soft);
  max-width: 46ch;
}

/* ---- layout helpers ---- */
section { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 6vw, 7rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
.section-note { color: var(--espresso-soft); margin-top: 0.9rem; font-size: 0.98rem; }

/* ---- header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 242, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 6vw, 7rem);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--espresso);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-gold-dk);
  margin-top: 0.25rem;
  font-weight: 600;
}
nav { display: flex; align-items: center; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--espresso-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--espresso); }
.nav-cta {
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold-dk) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--rose-gold); color: var(--ivory) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--espresso);
  display: block; transition: transform 0.25s, opacity 0.25s;
}

/* ---- hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--ivory-2) 0%, var(--ivory) 60%);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  margin: 0.5rem 0 1.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: all 0.22s;
  cursor: pointer;
}
.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  border: 1px solid var(--espresso);
}
.btn-primary:hover { background: var(--rose-gold-dk); border-color: var(--rose-gold-dk); }
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--rose-gold); color: var(--rose-gold-dk); }

.hero-media { position: relative; }
.hero-frame {
  border-radius: 220px 220px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--blush);
}
.hero-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-tag {
  position: absolute;
  left: -0.6rem;
  bottom: 1.6rem;
  background: var(--ivory);
  color: var(--rose-gold-dk);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -14px rgba(46, 33, 28, 0.5);
  border: 1px solid var(--line);
}

/* ---- about ---- */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-copy p { color: var(--espresso-soft); margin-bottom: 1.1rem; max-width: 50ch; }
.about-copy strong { color: var(--espresso); font-weight: 600; }
.about-points { list-style: none; display: grid; gap: 1.4rem; }
.about-points li { display: flex; gap: 1.1rem; align-items: baseline; }
.about-points .num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--rose-gold);
  font-weight: 600;
  min-width: 2.2rem;
}
.about-points h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.about-points p { color: var(--espresso-soft); font-size: 0.95rem; }

/* ---- services (horizontal list) ---- */
.services { background: var(--espresso); color: var(--ivory); }
.services .eyebrow { color: var(--blush); }
.services .section-note { color: rgba(251, 247, 242, 0.7); }
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid rgba(251, 247, 242, 0.16);
}
.service {
  padding: 2.2rem 1.6rem;
  border-bottom: 1px solid rgba(251, 247, 242, 0.16);
  border-right: 1px solid rgba(251, 247, 242, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.25s;
}
.service:hover { background: rgba(194, 153, 122, 0.16); }
.service h3 { font-size: 1.5rem; }
.service p { color: rgba(251, 247, 242, 0.74); font-size: 0.95rem; flex: 1; }
.service .price {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 600;
}

/* ---- gallery (masonry of contained cards) ---- */
.gallery { background: var(--ivory-2); }
.masonry {
  columns: 3;
  column-gap: 1.1rem;
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
  background: var(--blush);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  box-shadow: 0 14px 34px -22px rgba(46, 33, 28, 0.55);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img { width: 100%; height: auto; transition: transform 0.5s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -22px rgba(46, 33, 28, 0.6); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:focus-visible { outline: 2px solid var(--rose-gold-dk); outline-offset: 3px; }

/* ---- contact ---- */
.contact { background: var(--ivory); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.contact-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.1rem; }
.contact-text .btn { margin-top: 1.8rem; }
.contact-card {
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.contact-card dl { display: grid; gap: 1.5rem; }
.contact-card dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold-dk);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.contact-card dd { font-family: var(--serif); font-size: 1.3rem; color: var(--espresso); }
.contact-card dd a { border-bottom: 1px solid var(--rose-gold); }
.contact-card dd a:hover { color: var(--rose-gold-dk); }
.contact-card .muted {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--espresso-soft);
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* ---- footer ---- */
footer { background: var(--espresso); color: var(--ivory); padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 6vw, 7rem); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand .brand-mark { color: var(--blush); }
.footer-brand p { color: rgba(251, 247, 242, 0.7); font-size: 0.85rem; }
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { font-size: 0.82rem; color: rgba(251, 247, 242, 0.78); transition: color 0.2s; }
.footer-links a:hover { color: var(--blush); }
.copyright { width: 100%; color: rgba(251, 247, 242, 0.45); font-size: 0.78rem; border-top: 1px solid rgba(251, 247, 242, 0.14); padding-top: 1.4rem; margin-top: 0.5rem; }

/* ---- lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(46, 33, 28, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7); }
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ivory);
  background: none;
  border: 0;
  cursor: pointer;
  width: 48px; height: 48px;
}

/* ---- sticky mobile CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 50;
  text-align: center;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 30px -10px rgba(46, 33, 28, 0.6);
}

/* ---- reveal animation ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero, .about-grid, .contact-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; }
  .masonry { columns: 2; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  nav { position: relative; }
  .nav-links {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.3rem 1.6rem;
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-cta { display: block; }
  footer { padding-bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
}
