﻿:root {
  --bg: #f6efe6;
  --surface: #fffaf5;
  --surface-strong: #fff;
  --text: #2d2018;
  --muted: #6f5c52;
  --accent: #aa3f2b;
  --accent-dark: #7f2d20;
  --accent-soft: #f2d6c9;
  --border: #e8d8cb;
  --shadow: 0 18px 45px rgba(76, 45, 29, 0.12);
  --radius: 22px;
  --content-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(170, 63, 43, 0.08), transparent 32%),
    linear-gradient(180deg, #fbf6f1 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(251, 246, 241, 0.88);
  border-bottom: 1px solid rgba(232, 216, 203, 0.85);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 190px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item--mobile-only {
  display: none;
}

.site-nav__menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav__menu a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.site-nav__cta {
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
}

.hero {
  padding: 1.5rem 0 2rem;
}



.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.hero p,
.page-hero p,
.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero__card,
.panel,
.card,
.video-card,
.contact-card,
.highlight,
.section-image {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(232, 216, 203, 0.9);
  box-shadow: var(--shadow);
}

.hero__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 32%;
}

.hero-contact {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-top: 0.9rem;
  max-width: 360px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero-contact strong {
  display: block;
  margin-bottom: 0.2rem;
}

.section {
  padding: 2rem 0 4rem;
}

.section__header {
  margin-bottom: 1.5rem;
}

.section__header h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

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

.card,
.contact-card,
.highlight,
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.card img,
.section-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-image--top {
  object-position: center top;
}

.card__body,
.highlight,
.contact-card,
.video-card__body {
  padding: 1.25rem;
}

.card h3,
.video-card h3,
.contact-card h3,
.highlight h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.split--packages {
  align-items: stretch;
}

.split--balanced {
  align-items: stretch;
}

.section-image-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  height: 100%;
}

.section-image {
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
}

.section-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.panel {
  border-radius: 30px;
  padding: 1.6rem;
  height: 100%;
}

.bullet-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.bullet-list li,
.check-list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.bullet-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.style-list,
.package-list {
  display: grid;
  gap: 1rem;
}

.testimonials-section {
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(170, 63, 43, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 245, 0.98), rgba(242, 214, 201, 0.72));
  border: 1px solid rgba(232, 216, 203, 0.95);
  box-shadow: var(--shadow);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 216, 203, 0.92);
  box-shadow: 0 16px 34px rgba(76, 45, 29, 0.1);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(170, 63, 43, 0.14);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--accent-dark);
}

.testimonial-card__stars {
  margin-bottom: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  padding-right: 1.5rem;
  font-size: 1.02rem;
  color: var(--text);
}

.testimonial-card__meta {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials-section__more {
  margin: 1.25rem 0 0;
}

.style-item,
.package-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.7);
}

.style-item h3,
.package-item h3 {
  margin: 0 0 0.4rem;
  color: var(--accent);
}

.style-item p,
.package-item p,
.style-item ul,
.package-item ul {
  margin: 0.4rem 0 0;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background-color: #1b120e;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.video-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 18, 12, 0.16), rgba(28, 18, 12, 0.58));
}

.video-embed__overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  z-index: 1;
}

.video-embed__play {
  width: 68px;
  height: 48px;
  border-radius: 16px;
  background: rgba(170, 63, 43, 0.95);
  position: relative;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.video-embed__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.video-embed__text {
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.video-embed:focus-visible {
  outline: 3px solid rgba(170, 63, 43, 0.5);
  outline-offset: -3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-panel {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 216, 203, 0.92);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 0.9rem;
}

.contact-link {
  display: block;
  text-decoration: none;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
}

.contact-link small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list p {
  margin: 0;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand img {
  width: 62px;
  height: auto;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero__panel {
  border-radius: 30px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 250, 245, 0.95), rgba(242, 214, 201, 0.75));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.metric {
  min-width: 170px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.social-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: flex;
  gap: 0.75rem;
}

.social-bar a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(45, 32, 24, 0.92);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  box-shadow: var(--shadow);
}

.social-bar a:hover {
  background: var(--accent);
}

@media (max-width: 960px) {
  .split,
  .contact-layout,
  .contact-grid,
  .grid-3,
  .grid-2,
  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__menu {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.4rem);
    width: min(320px, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav__item--mobile-only {
    display: list-item;
  }

  .site-nav__menu.is-open {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .site-nav__cta {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-image-stack {
    grid-template-rows: none;
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding-top: 2rem;
  }

  .hero__media {
    min-height: 0;
  }

  .page-hero__panel,
  .panel,
  .testimonials-section,
  .contact-panel {
    padding: 1.2rem;
  }

  .social-bar {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .social-bar a {
    width: 48px;
    height: 48px;
  }
}

.section-image--contain {
  aspect-ratio: auto !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent;
}

