:root {
  --bg: #120f0f;
  --panel: #1d1718;
  --panel-soft: #251d1f;
  --text: #f7f2ee;
  --muted: #cebfb8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c75d6b;
  --accent-soft: rgba(199, 93, 107, 0.18);
  --cream: #efe3d9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #110f0f 0%, #191314 55%, #efe6de 55%, #efe6de 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell { width: min(1280px, calc(100% - 32px)); margin: 0 auto; padding: 16px 0 48px; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border: 1px solid var(--line);
  background: rgba(20, 16, 16, 0.78); backdrop-filter: blur(18px);
  border-radius: 14px; margin-bottom: 16px;
}
.brand { display: flex; gap: 12px; align-items: center; }
.brand-badge {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: linear-gradient(135deg, #d26c7a, #8d3949);
  font-weight: 700; font-family: Georgia, serif;
}
.brand-copy strong { display: block; font-size: 20px; }
.brand-copy small, .topnav a, .eyebrow { color: var(--muted); }
.summary-label { color: #9a7e73; font-weight: 700; }
.topnav { display: flex; gap: 18px; font-size: 14px; }

.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px;
  align-items: stretch; min-height: 620px; padding: 28px;
  border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(circle at left top, rgba(199, 93, 107, 0.2), transparent 35%), rgba(17, 14, 14, 0.8);
}
.hero-copy { display: flex; flex-direction: column; justify-content: end; padding: 22px 6px; }
.hero-copy h1 { font: 700 clamp(52px, 7vw, 92px)/0.95 Georgia, serif; margin: 0 0 18px; }
.lead { font-size: clamp(22px, 2.2vw, 34px); line-height: 1.28; max-width: 620px; margin: 0 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin: 0 0 18px; }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 0 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 600;
}
.button.primary { background: var(--accent); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,0.25); color: var(--text); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }

.summary-strip, .section, .contact-box {
  margin-top: 24px; border-radius: 24px; padding: 28px;
}
.summary-strip {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  background: rgba(239, 230, 222, 0.88); color: #342826;
}
.summary-copy { max-width: 760px; }
.summary-strip p { margin: 8px 0 0; font-size: 24px; line-height: 1.35; max-width: 720px; }
.summary-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.summary-stats div {
  min-width: 112px; padding: 16px; border-radius: 18px; background: #fff; text-align: center;
  box-shadow: 0 12px 30px rgba(31, 24, 24, 0.06);
}
.summary-stats strong { display: block; font-size: 28px; font-family: Georgia, serif; }
.summary-stats span { color: #7b6760; font-size: 13px; }

.section, .contact-box { background: #f6efe9; color: #221918; }
.section.alt { background: #fff7f3; }
.section-head {
  display: grid; grid-template-columns: 1fr minmax(280px, 420px); gap: 24px; align-items: end; margin-bottom: 24px;
}
.section-head h2, .section-head h3, .two-column h2, .contact-box h2 { margin: 0; font: 700 clamp(34px, 4vw, 58px)/1 Georgia, serif; }
.section-head p:last-child { margin: 0; color: #6d5c56; line-height: 1.65; }

.category-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 8px;
}
.category-card {
  position: relative; border: 0; padding: 0; cursor: pointer; border-radius: 20px; overflow: hidden; background: #1f1717;
  min-height: 220px; text-align: left; box-shadow: 0 18px 48px rgba(28, 20, 18, 0.14);
  transition: transform 160ms ease, outline-color 160ms ease, box-shadow 160ms ease;
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(17, 13, 13, 0.88)); }
.category-card .label { position: absolute; left: 18px; right: 18px; bottom: 18px; color: #fff; display: grid; gap: 4px; }
.category-card .label strong { font-size: 22px; }
.category-card .label small { color: rgba(255,255,255,0.75); }
.category-card.is-active { outline: 3px solid rgba(199, 93, 107, 0.55); transform: translateY(-2px); }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 24px 54px rgba(28, 20, 18, 0.2); }

.gallery-group {
  display: none;
  margin-top: 26px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 100%);
  box-shadow: inset 0 0 0 1px rgba(34, 25, 24, 0.05);
}
.gallery-group.is-visible { display: block; }
.gallery-head {
  display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 18px;
}
.gallery-head h3 { margin: 8px 0 0; font: 700 34px/1.05 Georgia, serif; }
.gallery-head span { color: #7a6660; }
.gallery-lead {
  margin: 10px 0 0;
  max-width: 720px;
  color: #6d5c56;
  line-height: 1.6;
}
.gallery-toggle { margin-top: 18px; display: flex; justify-content: center; }
.photo-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.photo-grid-expanded {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(34, 25, 24, 0.08);
}
.photo-grid-expanded.is-visible { display: grid; }
.photo-card {
  border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 18px 48px rgba(28, 20, 18, 0.1);
}
.photo-card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.photo-copy { padding: 16px; display: grid; gap: 8px; }
.photo-copy strong { font-size: 20px; }
.photo-copy p { color: #6c5c57; margin: 0; line-height: 1.55; }
.photo-copy a { color: var(--accent); font-weight: 600; }
.show-all-button.is-hidden { display: none; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card {
  padding: 22px; border-radius: 20px; background: #fff; box-shadow: 0 18px 44px rgba(28, 20, 18, 0.08);
}
.service-card h3 { margin: 10px 0 10px; font-size: 24px; }
.service-card p { margin: 0; color: #6d5c56; line-height: 1.55; }
.price { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 700; }

.two-column {
  display: grid; grid-template-columns: 1fr 0.95fr; gap: 24px; align-items: center;
}
.two-column p { color: #6d5c56; line-height: 1.7; font-size: 18px; }
.signature { margin-top: 18px; font: 700 24px/1.1 Georgia, serif; color: var(--accent); }
.about-media img { width: 100%; border-radius: 24px; aspect-ratio: 4 / 5; object-fit: cover; }

.contact-box { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 36px; }

@media (max-width: 1100px) {
  .hero, .two-column, .section-head, .contact-box { grid-template-columns: 1fr; display: grid; }
  .category-grid, .photo-grid, .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 20px, 1280px); }
  .topbar { padding: 14px; border-radius: 18px; }
  .topnav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 18px; }
  .hero-copy h1 { font-size: 56px; }
  .lead { font-size: 24px; }
  .summary-strip { display: block; }
  .summary-label { display: inline-block; margin-bottom: 6px; }
  .summary-strip p { font-size: 20px; }
  .summary-stats { margin-top: 16px; }
  .category-grid, .photo-grid, .service-grid { grid-template-columns: 1fr; }
  .section, .summary-strip, .contact-box { padding: 22px; border-radius: 20px; }
  .featured-panel h3, .section-head h2, .two-column h2, .contact-box h2 { font-size: 34px; }
  .section-head { grid-template-columns: 1fr; }
  .gallery-group { padding: 18px; }
}
