:root {
  --bg: #f7f1fb;
  --bg-strong: #e5d6f7;
  --surface: rgba(255, 251, 255, 0.8);
  --surface-strong: #fffefe;
  --surface-deep: #6e4b91;
  --text: #2f2340;
  --muted: #675579;
  --line: rgba(110, 75, 145, 0.18);
  --line-strong: rgba(110, 75, 145, 0.34);
  --accent: #8b63b8;
  --accent-strong: #6d4696;
  --accent-soft: #efe2fb;
  --gold: #d7b36a;
  --shadow: 0 30px 80px rgba(72, 42, 110, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(223, 205, 245, 0.78), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 242, 251, 0.88), transparent 24%),
    linear-gradient(180deg, #fdf9ff 0%, #f6effb 45%, #f8f2fc 100%);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 243, 253, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header-inner,
.page-section,
.site-footer-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent-strong);
}

.page-main {
  padding-bottom: 80px;
}

.page-section {
  padding: 72px 0 0;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: stretch;
  min-height: calc(100vh - 110px);
  padding-top: 28px;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.hero-copy .hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 640px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tagline::before {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.tagline span {
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: white;
  box-shadow: 0 18px 44px rgba(109, 70, 150, 0.26);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
  color: var(--text);
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.slideshow {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #efe5fb;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide[data-active="true"] {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 18, 55, 0.04), rgba(34, 18, 55, 0.42));
}

.slide-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: white;
}

.slide-caption strong {
  font-size: 1.7rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
}

.slide-caption span {
  font-size: 0.95rem;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.92);
}

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

.mini-highlight,
.panel,
.quote-card,
.award-card,
.menu-card,
.service-feature,
.gallery-note,
.story-card,
.contact-card,
.cta-band,
.review-card,
.result-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mini-highlight {
  display: grid;
  gap: 8px;
}

.mini-highlight strong {
  font-size: 1.9rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--accent-strong);
}

.mini-highlight span {
  color: var(--muted);
  font-size: 0.94rem;
}

.split-layout,
.gallery-layout,
.story-layout,
.contact-layout,
.cta-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.panel p,
.menu-card p,
.service-feature p,
.gallery-note p,
.story-card p,
.contact-card p,
.quote-card p,
.award-card p,
.review-card p,
.result-card p,
.page-intro p,
.body-copy {
  color: var(--muted);
}

.panel h3,
.menu-card h3,
.service-feature h3,
.gallery-note h3,
.story-card h3,
.contact-card h3,
.quote-card h3,
.award-card h3,
.review-card h3,
.result-card h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.eyebrow-chip,
.price-chip,
.duration-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.38rem 0.82rem;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-chip,
.duration-chip {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.price-chip {
  background: rgba(215, 179, 106, 0.14);
  color: #8b6217;
}

.status-chip {
  background: rgba(255, 255, 255, 0.54);
  color: var(--accent-strong);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.marketing-copy {
  font-size: 1.1rem;
}

.quote-grid,
.award-grid,
.review-grid,
.results-grid,
.menu-grid,
.service-grid,
.gallery-grid,
.contact-grid,
.story-grid {
  display: grid;
  gap: 20px;
}

.quote-grid,
.award-grid,
.review-grid,
.results-grid,
.gallery-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.menu-card img,
.service-feature img,
.gallery-grid img,
.story-layout img,
.contact-map img,
.result-card img,
.review-visual img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-card img,
.service-feature img,
.gallery-grid img,
.review-visual img {
  margin-bottom: 16px;
}

.menu-meta,
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.menu-card strong,
.service-feature strong,
.award-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 0.98rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  overflow: hidden;
}

thead {
  background: rgba(139, 99, 184, 0.1);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 0.98rem;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.table-section + .table-section {
  margin-top: 20px;
}

.table-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 24px;
  align-items: center;
}

.service-spotlight + .service-spotlight {
  margin-top: 24px;
}

.service-spotlight:nth-child(even) {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.service-spotlight:nth-child(even) .service-copy {
  order: -1;
}

.service-copy {
  display: grid;
  gap: 16px;
}

.service-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.recommend-copy {
  padding-left: 18px;
  border-left: 2px solid rgba(139, 99, 184, 0.26);
  color: var(--text);
}

.gallery-grid {
  align-items: start;
}

.gallery-grid img {
  height: 260px;
}

.gallery-grid .tall {
  height: 548px;
}

.gallery-note {
  display: grid;
  gap: 12px;
}

.review-visual,
.result-card {
  display: grid;
  gap: 16px;
}

.story-layout img,
.contact-map img {
  min-height: 440px;
}

.story-columns {
  display: grid;
  gap: 18px;
}

.story-card {
  display: grid;
  gap: 12px;
}

.story-card .body-copy {
  font-size: 1rem;
}

.contact-grid {
  margin-top: 20px;
}

.contact-card ul,
.story-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.contact-card li,
.story-card li {
  margin: 6px 0;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(139, 99, 184, 0.12), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.cta-layout {
  align-items: center;
}

.cta-layout h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.site-footer {
  margin-top: 80px;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.page-intro {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.page-intro h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-intro p {
  font-size: 1.05rem;
}

.simple-hero {
  padding-top: 40px;
}

.simple-hero .split-layout,
.simple-hero .story-layout,
.simple-hero .contact-layout {
  align-items: center;
}

.simple-hero img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.note-line {
  color: var(--accent-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-home,
  .split-layout,
  .gallery-layout,
  .story-layout,
  .contact-layout,
  .cta-layout,
  .service-spotlight,
  .service-spotlight:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-spotlight:nth-child(even) .service-copy {
    order: 0;
  }

  .quote-grid,
  .award-grid,
  .review-grid,
  .results-grid,
  .gallery-grid,
  .contact-grid,
  .hero-highlights,
  .menu-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .slideshow {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-section,
  .site-header-inner,
  .site-footer-inner {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .site-nav {
    justify-content: flex-start;
  }

  .quote-grid,
  .award-grid,
  .review-grid,
  .results-grid,
  .gallery-grid,
  .contact-grid,
  .hero-highlights,
  .menu-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .slideshow,
  .story-layout img,
  .contact-map img {
    min-height: 0;
    height: auto;
  }

  .slide-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .slide-caption strong {
    font-size: 1.4rem;
  }

  .page-main {
    padding-bottom: 56px;
  }

  .page-section {
    padding-top: 56px;
  }
}
