:root {
  --bg: #0f0f10;
  --bg-soft: #151517;
  --bg-card: rgba(22, 22, 24, 0.92);
  --line: rgba(212, 175, 55, 0.18);
  --text: #f4f1ea;
  --muted: #b7b0a5;
  --gold: #caa75d;
  --gold-soft: #e3c98f;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(202, 167, 93, 0.08), transparent 26%),
    linear-gradient(180deg, #0c0c0d 0%, #111113 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 32px), 860px);
}

.section {
  padding: 92px 0;
}

.section-kicker,
.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header.compact {
  position: relative;
}

.header-inner,
.footer-inner,
.contact-actions,
.hero-actions,
.fact-strip,
.hero-highlights,
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-inner,
.footer-inner {
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(202, 167, 93, 0.36);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 600;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav a {
  color: #ddd5c6;
  font-size: 0.96rem;
}

.site-nav a:hover,
.map-link:hover {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center center;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.94) 0%, rgba(9, 9, 10, 0.70) 44%, rgba(9, 9, 10, 0.48) 100%),
    linear-gradient(180deg, rgba(9, 9, 10, 0.10) 0%, rgba(9, 9, 10, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 100px;
}

.hero p {
  max-width: 640px;
  font-size: 1.08rem;
  color: #ddd5c6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #d6b06a 0%, #b98a35 100%);
  color: #181411;
  box-shadow: 0 10px 30px rgba(185, 138, 53, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(202, 167, 93, 0.28);
  color: var(--text);
}

.hero-highlights {
  margin-top: 34px;
  flex-wrap: wrap;
}

.highlight-card,
.service-card,
.review-card,
.contact-card,
.pricing-card,
.notice-box,
.occasion-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 18px 18px 16px;
  min-width: 210px;
}

.highlight-label {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.section-grid.two-col,
.contact-grid,
.pricing-grid {
  display: grid;
  gap: 28px;
}

.section-grid.two-col,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 34px;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.service-grid,
.review-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.review-card,
.pricing-card {
  padding: 26px;
}

.service-card ul,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li,
.price-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #dfd7ca;
}

.service-card li:last-child,
.price-list li:last-child {
  border-bottom: none;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-auto-rows: 280px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 11, 12, 0.78) 100%);
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--text);
  font-size: 0.98rem;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.portrait-card {
  display: flex;
  align-items: center;
}

.portrait-frame {
  width: 100%;
  position: relative;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(202,167,93,0.18), rgba(255,255,255,0.04));
}

.portrait-frame img {
  border-radius: 24px;
  height: 620px;
  object-fit: cover;
}

.fact-strip {
  flex-wrap: wrap;
  margin-top: 28px;
}

.fact-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(202,167,93,0.24);
  color: #e5dccf;
  font-size: 0.94rem;
}

.occasion-box {
  padding: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1.2fr;
}

.review-stars {
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 12px;
}

.review-link-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  padding: 28px;
}

.contact-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-item:last-of-type {
  margin-bottom: 18px;
}

.contact-item span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.map-link {
  display: inline-block;
  margin-top: 18px;
  color: #ddd5c6;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(11, 11, 12, 0.7);
}

.site-footer p,
.site-footer a {
  color: #c9c1b4;
  font-size: 0.94rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ad66b 0%, #19a64f 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(25, 166, 79, 0.3);
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
}

.legal-copy h2 {
  font-size: 1.8rem;
  margin-top: 30px;
}

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(202, 167, 93, 0.34);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(202, 167, 93, 0.16);
  color: var(--gold-soft);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.top-space {
  margin-top: 28px;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .review-grid,
  .section-grid.two-col,
  .contact-grid,
  .occasion-box {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 20px), var(--max));
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
    background: rgba(16, 16, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav.static {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 124px;
    padding-bottom: 72px;
  }

  h1 {
    max-width: 10.5ch;
  }

  .hero-actions,
  .hero-highlights,
  .contact-actions,
  .footer-inner,
  .header-inner {
    flex-wrap: wrap;
  }

  .service-grid,
  .gallery-grid,
  .review-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .portrait-frame img {
    height: 420px;
  }

  .section {
    padding: 74px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
