:root {
  --rose: #E7C9C9;
  --rose-soft: #F2DEDD;
  --cream: #FAF3EF;
  --cream-deep: #F3E8E1;
  --mauve: #6E4F5B;
  --mauve-deep: #503843;
  --taupe: #CBB6A8;
  --ink: #3D2E33;
  --muted: #8A7178;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 60px -28px rgba(80, 56, 67, 0.45);
  --shadow-sm: 0 12px 30px -16px rgba(80, 56, 67, 0.35);
  --serif: "Gilda Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0; }

::selection { background: var(--rose); color: var(--mauve-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--mauve);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--mauve-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--mauve);
  border-color: var(--taupe);
}
.btn-ghost:hover { background: var(--rose-soft); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.1rem, 4vw, 3.5rem);
  background: rgba(250, 243, 239, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203, 182, 168, 0.4);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--mauve-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  flex: none;
}
.brand-name { font-family: var(--serif); font-size: 1.12rem; color: var(--ink); letter-spacing: 0.01em; }
.brand-amp { color: var(--mauve); }

nav { display: flex; align-items: center; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.9rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--mauve);
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--rose);
  color: var(--mauve-deep) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  transition: background .25s ease;
}
.nav-cta:hover { background: var(--taupe); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--mauve);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.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); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.1rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(1100px 600px at 78% 8%, var(--rose-soft) 0%, transparent 58%),
    radial-gradient(900px 700px at 6% 92%, var(--cream-deep) 0%, transparent 55%),
    var(--cream);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mauve);
  margin: 0 0 1.3rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.6rem);
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--muted);
  max-width: 30rem;
  margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  padding: 0; margin: 0;
  font-size: 0.86rem;
  color: var(--mauve);
}
.hero-points li { display: flex; align-items: center; gap: 0.45rem; }
.hero-points li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-media { position: relative; }
.hero-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 6px solid var(--white);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.hero-frame-sm {
  position: absolute;
  width: 38%;
  right: -14px;
  bottom: -34px;
  border-radius: var(--radius);
  border-width: 5px;
}
.hero-frame-sm img { aspect-ratio: 1 / 1; }

/* ---------- section shells ---------- */
.section-head { text-align: center; max-width: 38rem; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mauve);
  margin: 0 0 0.9rem;
}
.section-sub { color: var(--muted); margin: 1rem auto 0; font-size: 1rem; }

/* ---------- about ---------- */
.about { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.1rem, 5vw, 5rem); background: var(--cream-deep); }
.about-inner { max-width: 60rem; margin: 0 auto; text-align: center; }
.about h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--ink); margin-bottom: 1.3rem; }
.about-lead { color: var(--muted); font-size: 1.08rem; max-width: 40rem; margin: 0 auto 3rem; }
.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; text-align: left; }
.about-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  border: 1px solid rgba(203, 182, 168, 0.4);
  box-shadow: var(--shadow-sm);
}
.about-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.8rem;
}
.about-card h3 { font-size: 1.28rem; color: var(--mauve-deep); margin-bottom: 0.6rem; }
.about-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- services ---------- */
.services { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.1rem, 5vw, 5rem); }
.services h2, .gallery h2, .contact h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--ink); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 58rem;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  border: 1px solid rgba(203, 182, 168, 0.4);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); }
.service-card h3 { font-size: 1.35rem; color: var(--mauve-deep); margin-bottom: 0.7rem; }
.service-card p { color: var(--muted); font-size: 0.96rem; margin: 0 0 1.3rem; }
.price-tag {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mauve);
  background: var(--rose-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ---------- gallery ---------- */
.gallery { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.1rem, 5vw, 5rem); background: var(--cream-deep); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 70rem;
  margin: 0 auto;
}
.gallery-item {
  padding: 0;
  border: 5px solid var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .5s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:focus-visible { outline: 3px solid var(--mauve); outline-offset: 3px; }

/* ---------- contact ---------- */
.contact { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.1rem, 5vw, 5rem); }
.contact-inner {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, var(--rose-soft) 0%, transparent 60%),
    var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3.2rem);
  border: 1px solid rgba(203, 182, 168, 0.4);
  box-shadow: var(--shadow);
}
.contact h2 { margin-bottom: 1.2rem; }
.contact-lead { color: var(--muted); margin: 0 auto 2.2rem; max-width: 34rem; }
.contact-list { list-style: none; padding: 0; margin: 0 auto 2.4rem; max-width: 26rem; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(203, 182, 168, 0.4);
  text-align: left;
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mauve);
}
.contact-value { color: var(--ink); font-size: 0.98rem; }
.contact-value a { color: var(--mauve); text-decoration: none; border-bottom: 1px solid var(--rose); }

/* ---------- footer ---------- */
footer { background: var(--mauve-deep); color: var(--cream); padding: clamp(2.6rem, 5vw, 3.6rem) 1.5rem; text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 0.6rem; }
.footer-line { margin: 0.25rem 0; font-size: 0.92rem; color: var(--rose); }
.footer-line a { color: var(--rose); text-decoration: none; border-bottom: 1px solid rgba(231, 201, 201, 0.4); }
.footer-copy { margin: 1.2rem 0 0; font-size: 0.8rem; color: var(--taupe); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 46, 51, 0.92);
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 760px);
  max-height: 88vh;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--mauve-deep);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--rose); }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 45;
  text-align: center;
  text-decoration: none;
  background: var(--mauve);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { max-width: 26rem; margin: 0 auto; }
  .about-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: 0.6rem 1.4rem 1.2rem;
    border-bottom: 1px solid rgba(203, 182, 168, 0.5);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; width: 100%; }
  .nav-cta { display: inline-block; margin-top: 0.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { display: block; }
  main { padding-bottom: 4.5rem; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-frame-sm { width: 42%; right: 0; bottom: -24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
