:root {
  --bg: #f4efe7;
  --bg-soft: #ede4d6;
  --ink: #2f2924;
  --muted: #6f655d;
  --card: #fffcf8;
  --line: rgba(47, 41, 36, 0.16);
  --accent-boutique: #a66d3e;
  --accent-reiki: #4f7c68;
  --shadow: 0 14px 36px rgba(54, 37, 21, 0.14);
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Nunito Sans', 'Trebuchet MS', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 244, 228, 0.88), transparent 48%),
    radial-gradient(circle at 94% 88%, rgba(214, 234, 220, 0.75), transparent 42%),
    linear-gradient(140deg, #f8f3ec, #f1e8da);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  width: min(1200px, calc(100% - 2rem));
  margin: 1.2rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.86);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 1rem;
  z-index: 20;
  box-shadow: 0 10px 26px rgba(72, 48, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 64px;
  min-height: 52px;
}

.brand img {
  width: 84px;
  height: auto;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 240px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.main-nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(79, 124, 104, 0.14);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
}

.site-main {
  width: min(1200px, calc(100% - 2rem));
  margin: 1.1rem auto 4rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
}

.hero {
  margin-top: 2rem;
  background: linear-gradient(135deg, #fff6eb, #f7f4f0);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.2rem, 2.4vw, 2.3rem);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-reiki);
  font-size: 0.75rem;
  font-weight: 700;
}

.lead {
  margin: 1rem 0;
  font-size: clamp(1rem, 1.9vw, 1.24rem);
  max-width: 54ch;
}

.motto {
  margin: 0.6rem 0 1rem;
  font-style: italic;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn.boutique {
  background: var(--accent-boutique);
  color: #fff;
}

.btn.reiki {
  background: var(--accent-reiki);
  color: #fff;
}

.hero-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  background: #dcd2c6;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.section {
  margin-top: 2.2rem;
  padding: clamp(1rem, 2.2vw, 2rem);
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.section-head {
  margin-bottom: 1rem;
}

.split-cards,
.cards-3,
.timeline,
.facts,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.split-cards {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(84, 54, 26, 0.08);
}

.split-card.compact img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-card-body {
  padding: 1rem 1rem 1.15rem;
}

.split-card-body p {
  margin: 0.8rem 0;
}

.split-card-body a,
.info-card a {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-boutique);
}

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

.info-card,
.quote-card,
.timeline-item,
.facts article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.info-card .meta,
.quote-card .meta,
.timeline-item .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-card blockquote {
  margin: 0.8rem 0;
}

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

.timeline-item h3 {
  margin: 0.1rem 0 0.45rem;
}

.center {
  text-align: center;
}

.cta-line {
  margin-top: 1.3rem;
}

.page {
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1rem, 2.3vw, 2rem);
  margin-top: 1.4rem;
}

.page-header .lead {
  margin-top: 0.7rem;
}

.page-cover {
  margin: 1rem 0 1.4rem;
  border-radius: 16px;
  overflow: hidden;
  background: #d8cdc1;
}

.page-cover img {
  max-height: 560px;
  object-fit: cover;
}

.text-block {
  margin-top: 1rem;
  font-size: 1rem;
}

.text-block p,
.text-block ul,
.text-block ol,
.text-block h2,
.text-block h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.text-block ul,
.text-block ol {
  padding-left: 1.2rem;
}

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

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.legal {
  max-width: 980px;
  margin-inline: auto;
}

.legal-text {
  font-size: 0.97rem;
}

.site-footer {
  width: min(1200px, calc(100% - 2rem));
  margin: 2rem auto 2.5rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.84);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 0.4rem;
}

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

.site-footer li {
  margin-bottom: 0.3rem;
}

.site-footer p {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--accent-reiki);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split-cards,
  .cards-3,
  .timeline,
  .facts,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .brand-tagline {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.4rem;
    width: min(320px, calc(100vw - 3rem));
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .split-cards,
  .cards-3,
  .timeline,
  .facts,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-main,
  .site-footer {
    width: calc(100% - 1rem);
  }

  .hero,
  .section,
  .page {
    border-radius: 16px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.booking-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  align-self: start;
}

.booking-intro {
  margin-top: 0.4rem;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.booking-form label {
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.booking-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.3rem 0;
}

.consent input {
  width: auto;
  margin-top: 0.2rem;
}

.notice {
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin-top: 0.8rem;
}

.notice.success {
  border: 1px solid rgba(79, 124, 104, 0.4);
  background: rgba(79, 124, 104, 0.12);
}

.notice.error {
  border: 1px solid rgba(166, 73, 62, 0.35);
  background: rgba(166, 73, 62, 0.1);
}

.notice p {
  margin: 0 0 0.35rem;
}

.notice ul {
  margin: 0;
  padding-left: 1rem;
}

.service-list {
  margin-top: 1rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.8rem;
}

.service-list ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.service-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(47, 41, 36, 0.08);
}

.service-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .booking-grid-2 {
    grid-template-columns: 1fr;
  }
}
