:root {
  --accent: #f5cfc7;
  --accent-soft: #fff4f1;
  --ink: #050505;
  --muted: #665d59;
  --paper: #fffaf8;
  --line: rgba(5, 5, 5, 0.12);
  --shadow: 0 24px 80px rgba(5, 5, 5, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.nav-links,
.hero-actions,
.embed-actions,
footer ul {
  align-items: center;
  display: flex;
  gap: 18px;
}

.brand {
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  aspect-ratio: 1;
  background: var(--ink);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  width: 30px;
}

.nav-links a,
.service-grid a,
.text-link {
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  background: var(--accent);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  min-height: 650px;
}

.hero-copy {
  align-self: center;
  padding: 56px clamp(24px, 6vw, 72px);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  margin-bottom: 24px;
  text-transform: uppercase;
}

h1 strong {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: inline-block;
  font: inherit;
  margin-top: 12px;
  padding: 8px 24px 14px;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-text {
  max-width: 560px;
}

.button {
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  text-decoration: none;
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line);
}

.hero-image {
  background:
    linear-gradient(90deg, var(--accent) 0%, rgba(245, 207, 199, 0) 35%),
    url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1200&q=82") center / cover;
  min-height: 440px;
}

.proof-band {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.quote-card,
.rating-card {
  align-items: center;
  display: flex;
  gap: 28px;
  padding: 44px clamp(24px, 6vw, 72px);
}

.quote-card img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  width: 86px;
}

.quote-card p,
.rating-card p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.rating-card {
  background: rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.rating-card strong,
.review-score strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.stars {
  color: var(--accent);
  font-weight: 900;
}

.section-grid,
.benefits,
.services,
.reviews,
.booking {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

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

.image-strip img {
  aspect-ratio: 0.62;
  border-radius: 8px;
  object-fit: cover;
}

.benefits {
  background: #111;
  color: white;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.benefits p,
.benefits li {
  color: rgba(255, 255, 255, 0.78);
}

.benefits ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.benefits strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 780px;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.service-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-grid article > *:not(img) {
  margin-left: 22px;
  margin-right: 22px;
}

.service-grid img {
  aspect-ratio: 1.05;
  margin-bottom: 22px;
  object-fit: cover;
  width: 100%;
}

.service-grid a {
  display: inline-block;
  margin-bottom: 24px;
}

.reviews {
  background: var(--accent-soft);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
}

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

blockquote {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 28px;
}

cite {
  font-style: normal;
  font-weight: 900;
}

.booking {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.assigned-url {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 28px;
  padding: 20px;
}

.assigned-url span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.assigned-url strong,
.assigned-url strong span {
  color: var(--ink);
  display: inline;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.embed-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.embed-tabs {
  background: #f1ebe8;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
  padding: 5px;
}

.embed-tab {
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 44px;
}

.embed-tab.is-active {
  background: white;
  box-shadow: 0 8px 20px rgba(5, 5, 5, 0.08);
}

.embed-panel {
  min-height: 480px;
  position: relative;
}

.embed-panel iframe {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  height: 480px;
  width: 100%;
}

.embed-panel.has-url iframe {
  display: block;
}

.embed-panel.has-url .embed-fallback {
  display: none;
}

.embed-fallback {
  align-items: center;
  background: linear-gradient(135deg, var(--accent-soft), white);
  border: 1px dashed rgba(5, 5, 5, 0.24);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 480px;
  padding: 28px;
  text-align: center;
}

.embed-actions {
  margin-top: 16px;
}

.customizer {
  bottom: 24px;
  position: fixed;
  right: 24px;
  width: min(360px, calc(100vw - 32px));
  z-index: 30;
}

.customizer-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 8px 8px 0 0;
  color: white;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 18px;
  width: 100%;
}

.customizer-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-height: min(72vh, 680px);
  overflow: auto;
  padding: 18px;
}

.customizer.is-collapsed .customizer-panel {
  display: none;
}

.customizer h2 {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 6px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

input[type="color"] {
  padding: 4px;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

footer p,
footer li {
  color: rgba(255, 255, 255, 0.78);
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .hero,
  .proof-band,
  .section-grid,
  .benefits,
  .reviews,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 420px;
    order: -1;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    width: 100%;
  }

  .hero-actions,
  .embed-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    aspect-ratio: 1.4;
  }

  .quote-card,
  .rating-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .customizer {
    bottom: 12px;
    right: 16px;
  }
}
