@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --rose: #b8756b;
  --rose-light: #f6eeeb;
  --rose-mid: #dfc3bc;
  --rose-dark: #7a4840;
  --sage: #7a9e8a;
  --cream: #faf8f5;
  --warm: #f2ebe2;
  --warm-dark: #e8ddd0;
  --text: #251e1b;
  --muted: #7a6e6a;
  --subtle: #b0a49f;
  --border: #e0d6ce;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-in.visible { opacity: 1; transform: none; }

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-left.visible { opacity: 1; transform: none; }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-right.visible { opacity: 1; transform: none; }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── PAGE LOAD ANIMATION ── */
@keyframes heroFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroSlide { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes slideInNav { from { transform: translateY(-100%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes rotateIn { from { transform: rotate(-6deg) scale(0.9); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes countUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes borderGrow { from { width: 0; } to { width: 100%; } }
@keyframes backgroundPan { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ── NAV ── */
nav {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
  animation: slideInNav 0.5s ease both;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.nav-brand:hover { color: var(--rose); }

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.4s ease;
}
.nav-brand:hover .brand-logo { transform: rotate(8deg) scale(1.05); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-menu {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--rose); padding-left: 6px; }

/* ── TYPOGRAPHY ── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
  position: relative;
}
.tag::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--rose);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1px;
}

h1.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}

h3.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
}

p.lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-dark { background: var(--text); color: var(--cream); }
.btn-dark:hover { background: #3a2f2b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,30,27,0.22); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--warm); border-color: var(--rose-mid); transform: translateY(-2px); }

.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,117,107,0.35); }

/* ── HERO ── */
.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero > div:first-child { animation: heroFade 0.85s 0.1s both; }

.hero-visual {
  border-radius: 4px;
  height: 490px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: heroSlide 0.85s 0.2s both;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,117,107,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-visual:hover img { transform: scale(1.04); }

/* Floating accent decoration */
.hero-visual::after {
  content: '✦';
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 28px;
  color: rgba(255,255,255,0.7);
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.badge:hover { border-color: var(--rose-mid); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(184,117,107,0.1); }
.badge i { font-size: 14px; color: var(--rose); }

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--warm);
  padding: 0 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 2.25rem 1rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(184,117,107,0.05); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  animation: countUp 0.6s ease both;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SERVICE CARDS ── */
.services-section { padding: 5rem 4rem; border-bottom: 1px solid var(--border); }
.services-intro { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(184,117,107,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--rose-light); }
.service-card:hover::before { width: 100%; }
.service-card:hover::after { opacity: 1; }

.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.25s, transform 0.3s;
}
.service-card:hover .svc-icon { background: var(--rose-mid); transform: scale(1.1) rotate(5deg); }
.svc-icon i { font-size: 22px; color: var(--rose); }

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--text);
  transition: color 0.2s;
}
.service-card:hover .svc-name { color: var(--rose-dark); }

.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }

.svc-price {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.svc-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--subtle);
}
.svc-duration i { font-size: 13px; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap 0.25s, color 0.2s;
}
.svc-link:hover { gap: 10px; color: var(--rose-dark); }

/* ── PRICING ── */
.pricing-strip {
  background: var(--warm);
  padding: 3.5rem 4rem;
  border-bottom: 1px solid var(--border);
}
.pricing-header { margin-bottom: 1.75rem; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.price-card:hover {
  border-color: var(--rose-mid);
  box-shadow: 0 6px 24px rgba(184,117,107,0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border: 1.5px solid var(--rose);
  background: var(--rose-light);
}

.price-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.price-amt {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

/* ── ABOUT ── */
.about-section {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.about-img {
  height: 520px;
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--rose-mid);
  border-radius: 4px;
  z-index: -1;
  transition: transform 0.3s ease;
}
.about-img:hover::after { transform: translate(4px, 4px); }
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-img:hover img { transform: scale(1.04); }

.about-content { padding-top: 0.5rem; }

.about-list { margin-top: 2rem; list-style: none; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  transition: color 0.2s, padding-left 0.2s;
}
.about-list li:last-child { border-bottom: none; }
.about-list li:hover { color: var(--text); padding-left: 4px; }
.about-list i { font-size: 16px; color: var(--rose); flex-shrink: 0; margin-top: 2px; }

/* ── PHILOSOPHY STRIP ── */
.philosophy-strip {
  background: var(--warm);
  padding: 3.5rem 4rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.philosophy-item {
  padding: 1.5rem;
  border-left: 2px solid var(--rose-mid);
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0 4px 4px 0;
}
.philosophy-item:hover { border-color: var(--rose); background: rgba(184,117,107,0.04); }
.philosophy-item p.philo-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}
.philosophy-item p.philo-body { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── GALLERY ── */
.album-section { padding: 5rem 4rem; border-bottom: 1px solid var(--border); }
.album-header { margin-bottom: 2rem; }

.album-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  width: fit-content;
}

.album-tab {
  padding: 10px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s;
}
.album-tab:last-child { border-right: none; }
.album-tab:hover { background: var(--warm); color: var(--text); }
.album-tab.active { background: var(--text); color: var(--cream); }

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.album-cell {
  border-radius: 4px;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.album-cell.tall { grid-row: span 2; }
.album-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(37,30,27,0);
  transition: background 0.4s;
}
.album-cell:hover::after { background: rgba(37,30,27,0.12); }
.album-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.album-cell:hover img { transform: scale(1.07); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 5rem 4rem; border-bottom: 1px solid var(--border); }
.testimonials-intro { text-align: center; margin-bottom: 3.5rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 3rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem;
  border-radius: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--rose-light);
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  box-shadow: 0 10px 36px rgba(37,30,27,0.08);
  transform: translateY(-4px);
  border-color: var(--rose-mid);
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars i { font-size: 14px; color: #c9923a; transition: transform 0.15s; }
.testi-card:hover .testi-stars i { transform: scale(1.15); }

.testi-date {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.85rem;
}

.testi-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-dark);
  flex-shrink: 0;
  transition: background 0.2s;
}
.testi-card:hover .testi-avatar { background: var(--rose-mid); }
.testi-name { font-size: 14px; font-weight: 500; color: var(--text); }
.testi-loc { font-size: 12px; color: var(--subtle); }

.testi-summary {
  background: var(--warm);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  margin-top: 1rem;
}
.testi-summary-stat { text-align: center; }
.testi-summary-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 4px;
}
.testi-summary-stat span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── REVIEW SUBMIT FORM ── */
.review-submit {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
  margin-top: 3rem;
}
.star-select { display: flex; gap: 6px; margin-bottom: 1.5rem; }
.star-select i {
  font-size: 26px;
  color: var(--border);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.star-select i:hover { transform: scale(1.2); }
.star-select i.active, .star-select i:hover { color: #c9923a; }

/* ── CONTACT ── */
.contact-section { padding: 5rem 4rem; border-bottom: 1px solid var(--border); }
.contact-header { text-align: center; margin-bottom: 3.5rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(184,117,107,0.1);
  transform: translateY(-1px);
}
.form-textarea { min-height: 130px; resize: vertical; }

.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.35rem 1.5rem;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.contact-info-item:hover { border-color: var(--rose-mid); transform: translateX(4px); box-shadow: 0 4px 16px rgba(184,117,107,0.08); }

.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contact-info-item:hover .cinfo-icon { background: var(--rose-light); }
.cinfo-icon i { font-size: 19px; color: var(--rose); }

.cinfo-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); margin-bottom: 2px; }
.cinfo-value { font-size: 15px; color: var(--text); }
.cinfo-value a { color: inherit; text-decoration: none; }
.cinfo-value a:hover { color: var(--rose); }

.hours-card {
  margin-top: 1.25rem;
  padding: 1.75rem;
  background: var(--rose-light);
  border: 1px solid var(--rose-mid);
  border-radius: 4px;
  transition: box-shadow 0.25s;
}
.hours-card:hover { box-shadow: 0 4px 16px rgba(184,117,107,0.12); }
.hours-card p.hours-title { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--rose-dark); margin-bottom: 10px; }
.hours-card p { font-size: 14px; color: var(--muted); line-height: 1.85; }
.hours-card p.hours-note { font-size: 12px; color: var(--subtle); margin-top: 8px; }

/* ── HOME SERVICE PREVIEWS ── */
.home-services-grid {
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  border-bottom: 1px solid var(--border);
}

.home-svc-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.home-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.home-svc-card:hover { border-color: var(--rose-mid); box-shadow: 0 8px 24px rgba(184,117,107,0.1); transform: translateY(-4px); }
.home-svc-card:hover::before { transform: scaleX(1); }
.home-svc-card i { font-size: 24px; color: var(--rose); margin-bottom: 14px; display: block; transition: transform 0.3s; }
.home-svc-card:hover i { transform: scale(1.15) rotate(5deg); }
.home-svc-card .svc-name { margin-bottom: 10px; }
.home-svc-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 5rem 4rem;
  text-align: center;
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✦ ✦ ✦';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 16px;
  color: var(--rose-mid);
}

/* ── ORNAMENT DIVIDER ── */
.ornament-divider {
  text-align: center;
  padding: 1.5rem;
  color: var(--rose-mid);
  font-size: 18px;
  letter-spacing: 0.6em;
  border-bottom: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: #c0b0aa;
  padding: 4.5rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-tagline { font-size: 14px; line-height: 1.8; max-width: 240px; font-weight: 300; }

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 14px;
  color: #c0b0aa;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid #3d3330;
  padding-top: 1.75rem;
  margin-top: 0.5rem;
  font-size: 12px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.04em;
  color: #9a8a86;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--text);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--rose); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .about-section, .contact-grid { grid-template-columns: 1fr !important; padding: 3rem 1.75rem !important; gap: 2.5rem !important; }
  .hero-visual { height: 280px; }
  .about-img { height: 280px; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 0 1.75rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-section, .album-section, .testimonials-section, .contact-section, .pricing-strip, .home-services-grid, .cta-banner { padding: 3rem 1.75rem !important; }
  .philosophy-strip { grid-template-columns: 1fr !important; padding: 2.5rem 1.75rem !important; gap: 1.75rem !important; }
  .album-grid { grid-template-columns: 1fr 1fr !important; }
  .album-cell.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .pricing-cards { grid-template-columns: repeat(3, 1fr) !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 500px) {
  nav { padding: 0 1.25rem; }
  .hero, .services-section, .about-section { padding: 2.5rem 1.25rem !important; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 0; }
  .pricing-cards { grid-template-columns: 1fr 1fr !important; }
  h1.display { font-size: 34px !important; }
  h2.section-title { font-size: 26px !important; }
  .scroll-top { bottom: 16px; right: 16px; }
}

body, html { max-width: 100%; overflow-x: hidden; }
p, h1, h2, h3, span, div, a, button { word-wrap: break-word; overflow-wrap: break-word; }
