@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #f7f2ef;
  --bg-soft: #fcf8f6;
  --surface: rgba(255, 252, 250, 0.92);
  --surface-strong: #fffdfc;
  --text: #211b1d;
  --muted: #6d6066;
  --line: rgba(33, 27, 29, 0.1);
  --line-strong: rgba(33, 27, 29, 0.18);
  --accent: #9f6271;
  --accent-deep: #6f414d;
  --accent-soft: #ead5db;
  --shadow: 0 24px 64px rgba(58, 35, 45, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 213, 219, 0.45), transparent 26%),
    linear-gradient(180deg, #fffdfc 0%, var(--bg) 46%, #f1e7e5 100%);
}

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

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

.site-header,
.page-main,
.site-footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 248, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(56, 35, 39, 0.07);
}

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

.brand-logo {
  width: auto;
  height: auto;
  max-width: min(180px, 38vw);
  max-height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(234, 213, 219, 0.9) 58%, rgba(159, 98, 113, 0.94));
  border: 1px solid rgba(159, 98, 113, 0.18);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.48);
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label::before,
.nav-toggle-label::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-label::before {
  transform: translateY(-6px);
}

.nav-toggle-label::after {
  transform: translateY(4px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease, box-shadow 180ms ease,
    filter 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, #2c161b 0%, #6f414d 100%);
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(71, 39, 47, 0.34);
  box-shadow: 0 18px 34px rgba(65, 36, 44, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-strong);
  color: var(--text);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.04);
  box-shadow: 0 22px 38px rgba(65, 36, 44, 0.28);
}

.site-nav .nav-book-button {
  white-space: nowrap;
  padding-inline: 28px;
  box-shadow: 0 18px 36px rgba(58, 32, 40, 0.3);
}

.site-nav .nav-book-button,
.site-nav .nav-book-button:visited {
  color: #ffffff;
}

.site-nav .nav-book-button:hover,
.site-nav .nav-book-button:focus-visible,
.site-nav .nav-book-button:active {
  color: #ffffff;
  transform: translateY(-1px) scale(1.02);
}

.page-main {
  padding: 32px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

p,
li,
dd,
dt {
  line-height: 1.8;
}

.hero-copy p,
.section-heading p,
.intro-copy,
.service-card p,
.trust-card p,
.contact-panel p,
.footer-note,
.page-intro p,
.info-text,
.cta-copy p,
.gallery-caption,
.hours-list,
.service-item p,
.review-card p,
.footer-detail-card p,
.action-card span,
.hero-detail-list dd,
.steps-list,
.service-summary p,
.breadcrumbs {
  color: var(--muted);
  font-size: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
  padding: 42px 0 18px;
}

.hero-copy {
  display: grid;
  gap: 0;
}

.intro-copy {
  max-width: 56ch;
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(135deg, #f4dce3 0%, #d9b4bf 50%, #9f7180 100%);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.hero-detail-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 252, 250, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(43, 25, 30, 0.14);
}

.hero-detail-card .eyebrow {
  margin-bottom: 12px;
}

.hero-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-detail-list div {
  display: grid;
  gap: 4px;
}

.hero-detail-list dt {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-detail-list dd {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.hero-detail-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 42px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 56ch;
  margin: 12px 0 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.story-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 248, 0.78));
  box-shadow: var(--shadow);
}

.story-card p + p {
  margin-top: 14px;
}

.service-grid,
.trust-grid,
.review-grid,
.gallery-grid,
.contact-grid,
.services-layout,
.info-grid,
.faq-list,
.footer-details,
.contact-action-grid {
  display: grid;
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 30px;
  border-radius: var(--radius-xl);
}

.info-grid.plain {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.info-item {
  padding: 8px 6px 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-item:last-child,
.info-item:nth-last-child(2) {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-item dt,
.service-item strong,
.trust-card strong,
.footer-detail-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-item dd {
  margin: 0;
  color: var(--muted);
}

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

.service-card,
.trust-card,
.contact-panel,
.service-list,
.gallery-photo,
.cta-banner,
.review-card,
.action-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: linear-gradient(135deg, rgba(234, 213, 219, 0.88), rgba(241, 228, 233, 0.6));
  color: var(--accent-deep);
  font-size: 1.25rem;
  font-weight: 800;
}

.service-label,
.review-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 28px;
}

.service-summary strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.service-summary p {
  margin: 0;
}

.service-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 26px;
}

.review-card h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

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

.trust-card {
  padding: 26px;
  border-radius: 26px;
}

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

.gallery-photo {
  display: grid;
  overflow: hidden;
  border-radius: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-photo-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-photo-featured img {
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-photo figcaption {
  padding: 14px 18px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 251, 249, 0.98));
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-photo:hover,
.gallery-photo:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px rgba(58, 35, 45, 0.16);
}

.gallery-photo:hover img,
.gallery-photo:focus-within img {
  transform: scale(1.03);
}

.services-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list {
  padding: 28px;
  border-radius: 28px;
}

.service-list h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: none;
  margin-bottom: 18px;
}

.service-item + .service-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-panel {
  padding: 30px;
  border-radius: 28px;
}

.steps-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 20px;
}

.contact-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.action-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.action-card strong {
  font-size: 1rem;
}

.action-card-primary {
  background: linear-gradient(135deg, #3d242b 0%, #8c5c69 100%);
  border-color: rgba(111, 65, 77, 0.22);
}

.action-card-primary strong,
.action-card-primary span {
  color: #fff;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(58, 35, 45, 0.14);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 14px;
}

.sitemap-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.sitemap-list li + li {
  margin-top: 12px;
}

.sitemap-list a {
  color: var(--text);
  font-weight: 600;
}

.sitemap-list a:hover,
.sitemap-list a:focus-visible {
  color: var(--accent-deep);
}

.map-card {
  min-height: 100%;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 242, 239, 0.84));
  box-shadow: var(--shadow);
}

.map-embed {
  min-height: 420px;
  width: 100%;
  border: 0;
  border-radius: 24px;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 213, 219, 0.5)),
    var(--surface);
}

.cta-banner-strong {
  background:
    linear-gradient(135deg, rgba(255, 252, 250, 0.97), rgba(234, 213, 219, 0.66)),
    var(--surface);
}

.cta-copy h2 {
  max-width: none;
  margin-bottom: 10px;
}

.cta-actions {
  justify-content: flex-end;
}

.page-intro {
  display: grid;
  gap: 16px;
  max-width: 56rem;
  padding: 36px 0 14px;
}

.page-intro h1 {
  max-width: 12ch;
}

.breadcrumbs {
  font-size: 0.92rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  color: var(--text);
}

.button-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer-inner {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 252, 250, 0.86);
  box-shadow: var(--shadow);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
  max-width: 44rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-detail-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.footer-detail-card p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.footer-note {
  margin: 0;
}

@media (max-width: 1024px) {
  .hero,
  .split-section,
  .contact-grid,
  .cta-banner,
  .section-heading,
  .services-layout,
  .faq-list,
  .footer-details,
  .service-summary {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-grid,
  .review-grid,
  .contact-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-photo-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-panel {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    border-radius: 28px;
    align-items: flex-start;
    padding: 14px;
  }

  .nav-toggle-label {
    display: inline-flex;
    margin-left: auto;
  }

  .brand-logo {
    max-width: min(156px, 42vw);
    max-height: 40px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 252, 250, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label::before {
    transform: translateY(2px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label::after {
    transform: translateY(0) rotate(-45deg);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero,
  .section,
  .page-main {
    padding-top: 20px;
  }

  .hero-panel {
    min-height: 430px;
  }

  .service-grid,
  .trust-grid,
  .review-grid,
  .info-grid,
  .gallery-grid,
  .footer-details,
  .contact-action-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-featured {
    grid-column: span 1;
  }

  .button-row,
  .footer-actions,
  .service-summary-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-row .button,
  .footer-actions .button,
  .service-summary-actions .button {
    width: 100%;
  }

  .site-nav .nav-book-button {
    width: auto;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    justify-content: center;
  }

  .footer-top,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-detail-card {
    position: static;
    margin: 18px;
  }
}
