@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Great+Vibes&family=Manrope:wght@400;500;650;750;800&display=swap");

:root {
  --noir: #103f37;
  --noir-2: #0b332d;
  --espresso: #17493f;
  --ivory: #fffaf1;
  --paper: #f6efe4;
  --muted: #6f817a;
  --line: rgba(255, 250, 241, 0.2);
  --line-dark: rgba(16, 63, 55, 0.14);
  --champagne: #d9b763;
  --champagne-2: #f1d98b;
  --carmine: #9a3246;
  --olive: #2f6b58;
  --shadow: 0 28px 80px rgba(16, 63, 55, 0.18);
  --header-h: 76px;
  font-family: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: #123c35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(16, 63, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 63, 55, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.94);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 14px 45px rgba(16, 63, 55, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(142px, 16vw, 206px);
  height: 54px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  color: rgba(18, 60, 53, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  padding: 10px 0;
}

.desktop-nav a:hover {
  color: #123c35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(13, 11, 8, 0.14);
  border-radius: 4px;
  background: #fff;
  color: var(--noir);
  padding: 0 14px;
  outline: none;
}

textarea {
  resize: vertical;
  padding-top: 12px;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(215, 182, 106, 0.22);
}

.language-label select {
  width: 70px;
  min-height: 42px;
  color: #123c35;
  background: #fff;
  border-color: rgba(16, 63, 55, 0.18);
}

.primary-button,
.secondary-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 0;
  min-height: 48px;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.primary-button {
  padding: 0 20px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--olive), var(--noir));
  font-weight: 850;
  box-shadow: 0 18px 40px rgba(16, 63, 55, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.primary-button.compact {
  min-height: 42px;
  padding: 0 14px;
}

.primary-button.full {
  width: 100%;
}

.secondary-button {
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  color: var(--ivory);
  background: rgba(255, 250, 241, 0.09);
}

.secondary-button.dark {
  border-color: rgba(13, 11, 8, 0.16);
  color: var(--noir);
  background: rgba(255, 255, 255, 0.72);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 240, 230, 0.2);
  color: #123c35;
  background: #fff;
  border-color: rgba(16, 63, 55, 0.18);
}

[data-lucide] {
  width: 19px;
  height: 19px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 58px) clamp(16px, 5vw, 76px) 64px;
  overflow: hidden;
}

.logo-cover {
  min-height: 0;
  display: block;
  padding: var(--header-h) 0 0;
  background: #c6c4be;
}

.hero > picture,
.hero > picture img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero > picture img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.logo-cover-image {
  display: block;
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto !important;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.logo-cover-mobile {
  display: none;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.94) 0%, rgba(255, 250, 241, 0.78) 42%, rgba(255, 250, 241, 0.24) 100%),
    linear-gradient(to top, rgba(16, 63, 55, 0.42), rgba(255, 250, 241, 0.06) 55%);
}

.hero-frame {
  position: absolute;
  inset: 106px clamp(16px, 5vw, 76px) 36px;
  border: 1px solid rgba(16, 63, 55, 0.18);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding-left: clamp(0px, 2vw, 34px);
}

.family-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(62px, 8vw, 108px);
  background:
    linear-gradient(135deg, rgba(217, 183, 99, 0.14), transparent 38%),
    var(--ivory);
}

.family-intro .hero-content {
  padding-left: 0;
}

.family-intro .hero-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
}

.family-intro .secondary-button {
  border-color: rgba(16, 63, 55, 0.18);
  color: var(--noir);
  background: rgba(255, 255, 255, 0.86);
}

.entrance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
  color: var(--noir);
}

.entrance-copy {
  max-width: 620px;
}

.entrance-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(18, 60, 53, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.entrance-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.entrance-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: var(--ivory);
  box-shadow: 0 18px 54px rgba(16, 63, 55, 0.12);
}

.entrance-photo.main {
  grid-row: span 2;
}

.entrance-photo picture {
  display: block;
}

.entrance-photo img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f8f3ea;
  filter: saturate(1.12) contrast(1.08) brightness(1.06);
}

.entrance-photo:not(.main) img {
  aspect-ratio: 4 / 3;
}

.entrance-photo figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--noir);
  background: var(--ivory);
  border-top: 1px solid rgba(16, 63, 55, 0.12);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.family-intro h1 {
  margin: 0;
  max-width: 820px;
  color: var(--noir);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(18, 60, 53, 0.78);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero .secondary-button {
  border-color: rgba(16, 63, 55, 0.22);
  color: var(--noir);
  background: rgba(255, 255, 255, 0.56);
}

.hero-card {
  position: absolute;
  z-index: 1;
  right: clamp(16px, 6vw, 86px);
  bottom: 54px;
  width: min(360px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid rgba(16, 63, 55, 0.18);
  background: rgba(255, 250, 241, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(16, 63, 55, 0.16);
}

.hero-card span,
.hero-card strong,
.hero-card p {
  display: block;
}

.hero-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 10px;
  color: var(--noir);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.08;
}

.hero-card p {
  margin: 12px 0 0;
  font-size: 16px;
  color: rgba(18, 60, 53, 0.7);
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(16px, 5vw, 76px);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(16, 63, 55, 0.14);
}

.proof-strip div {
  min-height: 138px;
  display: grid;
  align-content: center;
  padding: 24px;
  background: var(--ivory);
}

.proof-strip strong {
  color: var(--noir);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1;
}

.proof-strip span {
  margin-top: 8px;
  color: rgba(18, 60, 53, 0.66);
  font-weight: 650;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading.editorial {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
}

/* Keep the kicker on its own top row so the title and the description
   line up cleanly in two columns instead of scattering. */
.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

h2 {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(38px, 5.3vw, 70px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.family-intro h1,
.services-section h2,
.bonus-section h2,
.hours-section h2,
.quote-section h2,
.contact-section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.entrance-section h2,
.owner-card-copy h2,
.real-section h2,
.consultation-section h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.entrance-section h2,
.real-section h2,
.consultation-section h2 {
  font-size: clamp(44px, 6.1vw, 82px);
}

.section-heading p:not(.section-kicker),
.consultation-section p,
.quote-copy p,
.contact-section p {
  margin: 0;
  color: rgba(246, 240, 230, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.services-section h2,
.real-section h2,
.hours-section h2 {
  color: var(--ivory);
}

.services-section .section-heading p:not(.section-kicker),
.real-section .section-heading p:not(.section-kicker),
.hours-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 250, 241, 0.68);
}

.services-section,
.hours-section {
  background: linear-gradient(180deg, var(--noir) 0%, var(--noir-2) 100%);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 0;
  display: grid;
  overflow: hidden;
  grid-template-rows: auto auto;
  border: 1px solid rgba(217, 183, 99, 0.34);
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(7, 35, 30, 0.18);
}

.service-card.large {
  grid-column: span 6;
}

.service-card picture,
.service-card img {
  position: relative;
  height: auto;
}

.service-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(217, 183, 99, 0.11), transparent 46%),
    #f8f3ea;
  filter: saturate(1.1) contrast(1.08) brightness(1.06);
  transition: transform 450ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 238px;
  padding: 24px;
  color: var(--noir);
  background:
    linear-gradient(135deg, rgba(217, 183, 99, 0.13), transparent 42%),
    var(--ivory);
  border-top: 1px solid rgba(16, 63, 55, 0.12);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--noir);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 16px 0 12px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 400;
  line-height: 1.02;
}

.service-card p {
  margin: 0;
  font-size: 15px;
  color: rgba(18, 60, 53, 0.72);
  line-height: 1.62;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--noir);
  font-weight: 800;
}

.bonus-section {
  color: var(--noir);
  background: var(--paper);
}

.bonus-section .section-kicker {
  color: var(--carmine);
}

.bonus-section .section-heading p {
  color: rgba(13, 11, 8, 0.66);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 24px 60px rgba(13, 11, 8, 0.08);
}

.bonus-card.featured {
  color: var(--ivory);
  background: var(--noir);
}

.bonus-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--carmine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured .bonus-top {
  color: var(--champagne);
}

.bonus-card h3 {
  margin: 24px 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.bonus-card p {
  color: rgba(13, 11, 8, 0.66);
  line-height: 1.65;
}

.featured p {
  color: rgba(246, 240, 230, 0.72);
}

.bonus-price {
  font-size: 34px;
  font-weight: 850;
}

.real-section {
  background: var(--noir);
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 182, 106, 0.28);
  background: var(--ivory);
}

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

.gallery-item.wide {
  grid-column: span 6;
}

.gallery-item picture {
  display: block;
}

.real-gallery img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.06) brightness(1.04);
}

.gallery-item.tall img {
  aspect-ratio: 4 / 5;
}

.gallery-item figcaption {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--noir);
  background: var(--ivory);
  border-top: 1px solid rgba(16, 63, 55, 0.12);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  background: var(--ivory);
  color: var(--noir);
}

.consultation-section picture {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.consultation-section img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.consultation-section p {
  margin: 22px 0 28px;
  color: rgba(18, 60, 53, 0.7);
}

.owner-section {
  background: var(--paper);
}

.owner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background:
    radial-gradient(circle at 20% 18%, rgba(217, 183, 99, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(16, 63, 55, 0.08), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.owner-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(217, 183, 99, 0.42);
  pointer-events: none;
}

.owner-portrait {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(160deg, var(--noir) 0%, var(--olive) 100%);
}

.owner-portrait::before {
  content: "";
  position: absolute;
  width: min(82%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 241, 0.18);
}

.owner-portrait picture {
  position: relative;
  z-index: 1;
  width: min(360px, 82vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid var(--ivory);
  border-radius: 48% 48% 6px 6px;
  box-shadow: 0 30px 80px rgba(4, 24, 21, 0.35);
}

.owner-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: saturate(1.03) contrast(1.06) brightness(1.02);
}

.owner-portrait span {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 10px 18px;
  color: var(--noir);
  background: var(--champagne-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.owner-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 76px);
}

.owner-card-copy h2 {
  color: var(--noir);
  font-family: "Great Vibes", cursive;
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.85;
}

.owner-card-copy p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(18, 60, 53, 0.7);
  font-size: 18px;
  line-height: 1.75;
}

.owner-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.owner-highlights span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(16, 63, 55, 0.06);
  color: var(--noir);
  font-size: 13px;
  font-weight: 800;
}

.owner-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.owner-contact strong,
.owner-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(16, 63, 55, 0.18);
}

.owner-contact a {
  color: var(--ivory);
  background: var(--noir);
  font-weight: 850;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  color: var(--noir);
  background: linear-gradient(135deg, #fffaf1 0%, #eee2cf 58%, #fff 100%);
}

.quote-section .section-kicker {
  color: var(--carmine);
}

.quote-copy p {
  color: rgba(13, 11, 8, 0.66);
  margin-top: 22px;
}

.hours-mini {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.6);
}

.hours-mini span,
.hours-mini strong {
  display: block;
}

.hours-mini span {
  color: var(--carmine);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-mini strong {
  margin-top: 8px;
}

.quote-form {
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.quote-form label,
.quote-form label span {
  display: block;
}

.quote-form label {
  margin-bottom: 16px;
}

.quote-form label span {
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-note {
  margin: 13px 0 0;
  color: rgba(13, 11, 8, 0.58);
  font-size: 13px;
  text-align: center;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: start;
}

.hours-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list strong {
  color: var(--champagne-2);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
  color: var(--noir);
}

.contact-section .section-kicker {
  color: var(--carmine);
}

.contact-section p {
  color: rgba(13, 11, 8, 0.66);
}

.contact-actions {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 18px 42px rgba(31, 157, 85, 0.36);
}

.floating-whatsapp i {
  width: 27px;
  height: 27px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(16px, 5vw, 76px);
  color: rgba(246, 240, 230, 0.64);
  background: var(--noir);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .logo-cover-desktop {
    display: none;
  }

  .logo-cover-mobile {
    display: block;
    width: 100% !important;
    max-width: 390px !important;
    margin: 0;
  }

  .service-card,
  .service-card.large {
    grid-column: span 6;
  }

  .section-heading,
  .consultation-section,
  .owner-card,
  .family-intro,
  .entrance-section,
  .quote-section,
  .hours-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 118px;
    height: 46px;
  }

  .icon-button,
  .primary-button.compact {
    display: none;
  }

  .language-label select {
    width: 58px;
  }

  .hero {
    min-height: 90svh;
    padding: calc(var(--header-h) + 42px) 16px 30px;
  }

  .logo-cover {
    min-height: 0;
    padding: var(--header-h) 0 0;
  }

  .hero-frame {
    inset: 86px 12px 20px;
  }

  .hero-scrim {
    background:
      linear-gradient(to bottom, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.56) 48%, rgba(16, 63, 55, 0.34)),
      linear-gradient(90deg, rgba(255, 250, 241, 0.88), rgba(255, 250, 241, 0.26));
  }

  .hero > picture img {
    object-position: center 38%;
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 48px);
    padding-left: 0;
  }

  .hero h1,
  .family-intro h1 {
    width: min(286px, 100%);
    max-width: 100%;
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.02;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-copy {
    width: 100%;
    max-width: min(330px, calc(100vw - 48px));
    font-size: 15px;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .hero-card strong {
    font-size: 22px;
  }

  h2 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .entrance-section h2,
  .owner-card-copy h2,
  .real-section h2,
  .consultation-section h2 {
    max-width: min(320px, 100%);
    font-size: clamp(34px, 9.4vw, 48px);
    line-height: 0.94;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .services-section h2,
  .bonus-section h2,
  .hours-section h2,
  .quote-section h2,
  .contact-section h2 {
    max-width: min(330px, calc(100vw - 48px));
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.02;
    text-wrap: balance;
  }

  .section-heading p:not(.section-kicker),
  .entrance-copy p:not(.section-kicker),
  .consultation-section p,
  .quote-copy p,
  .contact-section p {
    width: 100%;
    max-width: min(330px, calc(100vw - 48px));
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
  }

  .family-intro .hero-card {
    margin-top: 0;
  }

  .proof-strip,
  .bonus-grid,
  .real-gallery,
  .entrance-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .entrance-photo.main {
    grid-row: auto;
  }

  .real-gallery picture,
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    transform: none;
  }

  .real-gallery img,
  .gallery-item.tall img {
    aspect-ratio: 4 / 5;
  }

  .service-card,
  .service-card.large {
    grid-column: span 12;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .service-body {
    min-height: 220px;
    padding: 22px 20px 24px;
  }

  .service-card h3 {
    font-size: clamp(23px, 6.4vw, 30px);
    overflow-wrap: break-word;
  }

  .service-card p {
    font-size: 14px;
  }

  .site-footer {
    display: grid;
  }

  .owner-card {
    min-height: auto;
  }

  .owner-card::before {
    inset: 14px;
  }

  .owner-portrait {
    min-height: 500px;
  }

  .owner-portrait picture {
    width: min(300px, 78vw);
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 108px;
    height: 42px;
  }

  .hero h1,
  .family-intro h1 {
    width: min(286px, calc(100vw - 64px));
    font-size: clamp(29px, 7.7vw, 34px);
  }

  .service-card {
    grid-template-rows: auto auto;
  }

  .service-body {
    padding: 26px 22px 28px;
  }

  .service-card h3 {
    font-size: clamp(22px, 6.2vw, 28px);
  }
}

/* ============================================================
   PREMIUM UPGRADE — galerie, evenimente, lightbox, footer, social
   ============================================================ */
:root{ --gold:#c7a96b; --gold-soft:#e7d3a1; }

/* Servicii cu foto reală */
.service-photo{overflow:hidden;aspect-ratio:4/5;background:#ece7de}
.service-photo img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.service-card:hover .service-photo img{transform:scale(1.06)}
.service-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:14px}
.service-gallery-link{display:inline-flex;align-items:center;gap:6px;background:none;border:0;color:var(--noir,#241a17);font:inherit;font-weight:700;font-size:13px;cursor:pointer;opacity:.75;padding:0}
.service-gallery-link:hover{opacity:1;color:#8a2b38}
.service-gallery-link i{width:16px;height:16px}

/* Galerie de stiluri */
.gallery-section{background:linear-gradient(180deg,#faf7f1,#f3ece0)}
.gallery-filters{display:flex;flex-wrap:wrap;gap:9px;justify-content:center;margin:0 0 26px}
.gal-chip{border:1px solid rgba(120,90,40,.28);background:#fff;color:#6a5c48;border-radius:999px;padding:9px 16px;font:inherit;font-size:13px;font-weight:700;cursor:pointer;transition:.2s}
.gal-chip:hover{border-color:var(--gold)}
.gal-chip.active{background:#123c35;color:#fff;border-color:#123c35}
.gallery-grid-pro{columns:4;column-gap:12px}
@media(max-width:1080px){.gallery-grid-pro{columns:3}}
@media(max-width:760px){.gallery-grid-pro{columns:2}}
@media(max-width:420px){.gallery-grid-pro{columns:2;column-gap:8px}}
.gal-item{display:block;width:100%;margin:0 0 12px;padding:0;border:0;background:none;cursor:pointer;break-inside:avoid;border-radius:14px;overflow:hidden;box-shadow:0 10px 26px rgba(60,30,25,.12)}
.gal-item img{width:100%;display:block;transition:transform .5s ease}
.gal-item:hover img{transform:scale(1.05)}

/* Lightbox */
.lightbox{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;background:rgba(15,10,10,.9);padding:24px}
.lightbox.open{display:flex}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:10px;box-shadow:0 30px 80px rgba(0,0,0,.5)}
.lightbox-close{position:absolute;top:18px;right:22px;width:46px;height:46px;border-radius:50%;border:0;background:rgba(255,255,255,.15);color:#fff;font-size:20px;cursor:pointer}

/* Evenimente la domiciliu */
.events-section{background:linear-gradient(150deg,#123c35,#0a2b26);color:#fff}
.events-section .section-kicker{color:var(--gold-soft)}
.events-section h2{color:#fff}
.events-section .section-heading p:not(.section-kicker){color:rgba(255,250,241,.75)}
.events-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:1080px){.events-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.events-grid{grid-template-columns:1fr}}
.event-card{background:#fff;color:var(--noir,#241a17);border-radius:20px;overflow:hidden;box-shadow:0 20px 50px rgba(7,35,30,.3);display:flex;flex-direction:column}
.event-photo{aspect-ratio:4/5;overflow:hidden;background:#eee}
.event-photo img{width:100%;height:100%;object-fit:cover}
.event-body{padding:18px 18px 22px;display:flex;flex-direction:column;gap:6px;flex:1}
.event-body h3{margin:0;font-family:"DM Serif Display",Georgia,serif;font-size:21px}
.event-body p{margin:0;font-size:13.5px;color:#6a6058;line-height:1.55;flex:1}
.event-price{margin-top:8px;color:#8a2b38;font-weight:800;font-size:17px}
.events-note{max-width:760px;margin:26px auto 0;text-align:center;font-size:13px;color:rgba(255,250,241,.62);font-style:italic}
.events-cta{display:flex;justify-content:center;margin-top:24px}

/* Formular: consimțământ + butoane */
.consent-row{display:flex!important;align-items:flex-start;gap:10px;flex-direction:row!important;font-size:13px;color:#5b5348;line-height:1.5;margin-top:4px}
.consent-row input{width:18px;height:18px;flex:none;margin-top:1px}
.form-buttons{display:flex;gap:12px;flex-wrap:wrap}
.form-buttons .full{flex:1;min-width:180px}
.secondary-button.full{width:100%;justify-content:center;background:#fff;border:1px solid #123c35;color:#123c35}

/* Footer premium */
.site-footer{background:#0a1916;color:#fff;padding:52px 7vw 30px}
.footer-top{display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;max-width:1200px;margin:0 auto}
.footer-logo{font-family:"Cormorant Garamond","DM Serif Display",serif;font-size:26px;color:#fff}
.footer-brand p{color:rgba(255,255,255,.6);font-size:14px;margin:8px 0}
.footer-social-label{color:var(--gold-soft);font-size:12px;letter-spacing:.14em;text-transform:uppercase;margin-top:16px!important}
.socials{display:flex;gap:12px;margin-top:8px}
.socials a{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.09);color:#fff;transition:.25s}
.socials a:hover{background:var(--gold);color:#20211f;transform:translateY(-2px)}
.socials i{width:19px;height:19px}
.footer-contact p{color:rgba(255,255,255,.72);font-size:14px;margin:4px 0}
.footer-contact a{color:var(--gold-soft);text-decoration:none}
.footer-legal{max-width:1200px;margin:34px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);font-size:12px;color:rgba(255,255,255,.5);text-align:center}
.footer-legal a{color:rgba(255,255,255,.7);text-decoration:none}
.footer-legal a:hover{color:var(--gold-soft)}
.footer-copy{margin-top:10px!important}

/* Fix: titluri centrate pe galerie & evenimente (fără suprapunere) */
.gallery-section .section-heading,
.events-section .section-heading{display:block;text-align:center;max-width:820px;margin-left:auto;margin-right:auto}
.gallery-section .section-heading p:not(.section-kicker),
.events-section .section-heading p:not(.section-kicker){margin-left:auto;margin-right:auto}
