@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f0e6;
  --bg-alt: #fffaf3;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-solid: #fffaf3;
  --line: rgba(63, 43, 30, 0.12);
  --text: #2e2118;
  --muted: #715f52;
  --accent: #b6633f;
  --accent-2: #7b8b61;
  --accent-3: #d3a55e;
  --shadow: 0 22px 60px rgba(53, 31, 18, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  background:
    radial-gradient(
      circle at top left,
      rgba(227, 185, 129, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(123, 139, 97, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, #fbf5eb 0%, #f7f0e6 40%, #f4ece0 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Alegreya Sans", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.55),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  position: relative;
  -webkit-tap-highlight-color: rgba(182, 99, 63, 0.12);
  touch-action: manipulation;
}

html.js-enhanced body {
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.58),
      transparent 30%
    ),
    radial-gradient(circle at 82% 10%, rgba(182, 99, 63, 0.1), transparent 20%),
    linear-gradient(180deg, #fbf5eb 0%, #f7f0e6 36%, #f4ece0 100%);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 0 0 14px 0;
  background: var(--accent);
  color: #fffaf3;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(46, 33, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 33, 24, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
img[loading="lazy"] {
  content-visibility: auto;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-height: 90px;
  backdrop-filter: blur(18px);
  background: rgba(251, 245, 235, 0.72);
  border-bottom: 1px solid rgba(63, 43, 30, 0.08);
}

.header-inner {
  min-height: 84px;
  max-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  width: clamp(152px, 18vw, 238px);
  height: auto;
}

.site-header .brand-logo {
  width: auto;
  height: clamp(52px, 6vw, 64px);
  max-height: 64px;
}

.footer .brand-logo {
  width: clamp(176px, 24vw, 280px);
  height: auto;
  max-height: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: url("brand/logomark.png") center/cover no-repeat;
  box-shadow: 0 10px 24px rgba(182, 99, 63, 0.18);
}

.brand span {
  display: block;
  font-weight: 700;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav .btn-primary {
  color: #fffaf3;
}

.site-nav a:hover,
.footer-links a:hover,
.brand:hover,
.btn:hover {
  opacity: 0.98;
}

.language-switcher {
  position: relative;
  color: var(--muted);
  font-weight: 800;
  align-self: center;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 7px 12px;
  border: 1px solid rgba(63, 43, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.98);
  color: var(--text);
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 24px rgba(53, 31, 18, 0.08);
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "⌄";
  color: var(--accent);
  font-size: 0.86rem;
  line-height: 1;
  transform: translateY(-1px);
}

.language-switcher[open] summary::after {
  transform: translateY(1px) rotate(180deg);
}

.language-switcher summary:focus-visible,
.language-menu a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(182, 99, 63, 0.16);
}

.language-flag {
  width: 24px;
  height: 18px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(63, 43, 30, 0.12);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 156px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(63, 43, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 20px 42px rgba(53, 31, 18, 0.16);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text);
}

.language-menu a:hover,
.language-menu a.active {
  background: rgba(182, 99, 63, 0.1);
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  padding: 54px 0 24px;
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, rgba(251, 245, 235, 0.82), rgba(247, 240, 230, 0.94)), url("brand/organic-abstract-background.png") center top / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto;
  height: 380px;
  background:
    radial-gradient(
      circle at 25% 18%,
      rgba(227, 185, 129, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(123, 139, 97, 0.12),
      transparent 30%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("brand/brand-pattern.png") right top / min(52vw, 760px) auto
    no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero-grid,
.split-grid,
.page-grid,
.auth-grid,
.booking-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-grid > * {
  position: relative;
  z-index: 1;
}
.split-grid,
.booking-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.booking-layout {
  grid-template-columns:
    minmax(280px, 0.9fr)
    minmax(360px, 1.08fr)
    minmax(280px, 0.92fr);
  align-items: start;
}

.booking-summary,
.booking-calendar,
.booking-times {
  display: grid;
  gap: 18px;
}

.booking-summary {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 250, 243, 0.86)),
    url("brand/gradient-background.png") right top / cover no-repeat;
  background-blend-mode: normal, soft-light;
}

.booking-calendar,
.booking-times {
  background: rgba(255, 250, 243, 0.76);
  border: 1px solid rgba(63, 43, 30, 0.1);
}

.booking-calendar,
.booking-times {
  align-content: start;
}

.booking-monthbar,
.booking-timebar,
.booking-summary-meta,
.booking-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-summary-meta,
.booking-footer-actions {
  flex-wrap: wrap;
}

.booking-summary-list {
  display: grid;
  gap: 12px;
}

.booking-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(63, 43, 30, 0.08);
}

.booking-stat strong {
  font-size: 1.05rem;
}

.booking-stat span,
.booking-meta,
.booking-status {
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.booking-status {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(123, 139, 97, 0.1);
  border: 1px solid rgba(123, 139, 97, 0.16);
  color: var(--text);
}

.booking-calendar-grid,
.booking-weekdays,
.time-grid {
  display: grid;
  gap: 8px;
}

.booking-weekdays,
.booking-calendar-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-weekdays span {
  text-align: center;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.calendar-day,
.time-pill,
.icon-btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(63, 43, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.calendar-day,
.time-pill {
  padding: 10px 12px;
}

.calendar-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.calendar-day.is-muted,
.calendar-day:disabled,
.time-pill:disabled {
  opacity: 0.44;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.44);
  cursor: not-allowed;
}

.calendar-day.is-selected,
.time-pill.is-selected {
  background: linear-gradient(135deg, var(--accent), #9d4f30);
  color: #fffaf3;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(182, 99, 63, 0.22);
}

.calendar-day:focus-visible,
.time-pill:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid rgba(182, 99, 63, 0.26);
  outline-offset: 2px;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(123, 139, 97, 0.28);
}

.calendar-day:hover:not(:disabled),
.time-pill:hover:not(:disabled),
.icon-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(53, 31, 18, 0.1);
}

.icon-btn {
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.booking-calendar-panel,
.booking-time-panel {
  display: grid;
  gap: 14px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form .btn {
  width: 100%;
}
.page-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.about-hero-grid {
  align-items: stretch;
}

.about-hero-grid .section-image,
.about-hero-grid .media-link {
  height: 100%;
  min-height: 0;
}

.about-hero-grid .section-image img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 99, 63, 0.16);
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(123, 139, 97, 0.14);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}
h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}
h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.lead {
  font-size: clamp(1.1rem, 1.3vw, 1.28rem);
  color: var(--muted);
  max-width: 60ch;
}

.hero-copy {
  padding: 12px 0;
  max-width: 52ch;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.brand:focus-visible {
  box-shadow: 0 0 0 4px rgba(182, 99, 63, 0.16);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #9d4f30);
  color: #fffaf3;
  box-shadow: 0 14px 28px rgba(182, 99, 63, 0.24);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  border-color: rgba(63, 43, 30, 0.14);
}

.trust-line {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-media,
.media-card,
.panel,
.info-card,
.quote-card,
.form-card,
.legal-card,
.auth-card,
.article-card,
.admin-card,
.status-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(63, 43, 30, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media,
.panel,
.info-card,
.quote-card,
.form-card,
.legal-card,
.auth-card,
.article-card,
.admin-card,
.status-card,
.section-image {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-media:hover,
  .panel:hover,
  .info-card:hover,
  .quote-card:hover,
  .form-card:hover,
  .auth-card:hover,
  .section-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(53, 31, 18, 0.14);
  }
}

.hero-media {
  padding: 14px;
}

.media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hero-media .media-link,
.section-image .media-link {
  line-height: 0;
}

.hero-media .media-link:focus-visible,
.section-image .media-link:focus-visible {
  outline: 3px solid rgba(182, 99, 63, 0.26);
  outline-offset: 4px;
  border-radius: inherit;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.hero-ambient canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media .hero-ambient {
  z-index: 0;
}

.hero-media .media-link,
.hero-media .media-stack,
.hero-media > img {
  position: relative;
  z-index: 1;
}

.hero-media .media-stack .media-card {
  background: rgba(255, 255, 255, 0.6);
}

.hero-media .media-stack .media-card img,
.section-image img,
.media-link img {
  transition: transform 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-media:hover .media-link img,
  .hero-media:hover .media-stack .media-card img,
  .section-image:hover img {
    transform: scale(1.015);
  }
}
.hero-media img,
.media-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  object-fit: cover;
}
.hero-media img {
  aspect-ratio: 4 / 5;
}

.media-stack {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 14px;
}
.media-stack .media-card img {
  aspect-ratio: 1 / 1.08;
}

.section {
  padding: 42px 0;
}
.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 74ch;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.panel,
.info-card,
.quote-card,
.form-card,
.legal-card,
.auth-card,
.admin-card,
.status-card,
.article-card {
  padding: 22px;
}

.panel.soft,
.info-card.soft,
.quote-card.soft,
.status-card.soft {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.82)),
    url("brand/light-background-texture.png") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
}

.form-card,
.auth-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 250, 243, 0.86)),
    url("brand/light-background-texture.png") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
}

.feature-grid,
.value-grid,
.faq-grid,
.card-grid,
.article-grid,
.pricing-grid,
.account-grid,
.admin-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.account-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  display: grid;
  gap: 8px;
}

.metric strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
}

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

.list-clean,
.nav-list,
.check-list,
.timeline,
.footer-links,
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.meta-list li,
.timeline li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list li::before,
.meta-list li::before,
.timeline li::before {
  content: "•";
  color: var(--accent);
  font-weight: 800;
  line-height: 1.2;
}

.section-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(63, 43, 30, 0.12);
  box-shadow: var(--shadow);
}

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

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(63, 43, 30, 0.12);
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.94rem;
}

.rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(63, 43, 30, 0.14),
    transparent
  );
  margin: 22px 0;
}

.quote {
  font-size: 1.18rem;
  color: var(--text);
}

.quote em {
  color: var(--accent);
  font-style: normal;
}

.step-list {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(63, 43, 30, 0.1);
}

.step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  color: var(--accent-2);
}

.home-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 76px);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.home-hero-grid > *,
.about-feature-grid > *,
.process-grid > *,
.values-grid > *,
.reassurance-panel > * {
  min-width: 0;
}

.home-hero-copy {
  max-width: 58ch;
}

.home-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7.2vw, 7rem);
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-reassurance span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(63, 43, 30, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.home-hero-media {
  overflow: visible;
  padding: 12px;
  transform: rotate(1.4deg);
}

.home-hero-media > .media-link img {
  aspect-ratio: 4 / 5.35;
  height: clamp(620px, 70vh, 820px);
  object-position: 50% 28%;
}

.consult-card {
  position: absolute;
  left: -52px;
  bottom: 28px;
  z-index: 2;
  width: min(320px, 76%);
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(63, 43, 30, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(255, 250, 243, 0.88)),
    url("brand/light-background-texture.png") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 24px 54px rgba(53, 31, 18, 0.18);
  transform: rotate(-1.4deg);
}

.consult-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.home-intro-section {
  padding-top: 24px;
}

.reassurance-panel,
.final-cta-panel,
.values-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 43, 30, 0.12);
  box-shadow: var(--shadow);
}

.reassurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(243, 226, 205, 0.84)),
    url("brand/gradient-background.png") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
}

.reassurance-panel h2 {
  margin-top: 14px;
  max-width: 13ch;
}

.reassurance-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.about-feature-grid,
.values-grid,
.process-grid {
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.about-feature-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.about-portrait {
  height: 100%;
}

.about-portrait img {
  aspect-ratio: 4 / 5.05;
  height: 100%;
  object-position: 50% 32%;
}

.about-feature-copy {
  display: grid;
  gap: 18px;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.profile-card-wide {
  grid-column: 1 / -1;
}

.centered-head {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.benefit-section {
  padding-top: 52px;
}

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

.benefit-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 43, 30, 0.12);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 18px 46px rgba(53, 31, 18, 0.08);
}

.benefit-card span {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.featured-benefit {
  background:
    linear-gradient(145deg, rgba(46, 33, 24, 0.92), rgba(86, 56, 35, 0.9)),
    url("brand/dark-background-texture.png") center / cover no-repeat;
  color: #fffaf3;
  transform: translateY(24px);
}

.featured-benefit p,
.featured-benefit span {
  color: rgba(255, 250, 243, 0.82);
}

.process-grid {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.process-copy .btn {
  justify-self: start;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(63, 43, 30, 0.12);
  background: rgba(255, 250, 243, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(63, 43, 30, 0.1);
}

.process-list li:first-child {
  border-top: 0;
}

.process-list li::before {
  content: "0" counter(process);
  font-family: "Fraunces", Georgia, serif;
  color: var(--accent-2);
  font-size: 1.7rem;
  line-height: 1;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.process-list span {
  color: var(--muted);
}

.values-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  align-items: stretch;
}

.values-image {
  height: 100%;
}

.values-card {
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.93), rgba(248, 236, 219, 0.86)),
    url("brand/light-background-texture.png") center / cover no-repeat;
  background-blend-mode: normal, soft-light;
}

.values-card blockquote {
  margin: 18px 0 26px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.values-image img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: 4 / 5;
  object-position: 50% 28%;
}

.final-cta-section {
  padding-bottom: 58px;
}

.final-cta-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(46, 33, 24, 0.93), rgba(105, 70, 43, 0.88)),
    url("brand/dark-background-texture.png") center / cover no-repeat;
  color: #fffaf3;
}

.final-cta-panel .eyebrow {
  background: rgba(255, 250, 243, 0.12);
  border-color: rgba(255, 250, 243, 0.18);
  color: #f1d3b0;
}

.final-cta-panel h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.final-cta-panel p {
  max-width: 52ch;
  color: rgba(255, 250, 243, 0.78);
  font-size: 1.18rem;
}

.final-cta-panel .btn-secondary {
  background: rgba(255, 250, 243, 0.12);
  border-color: rgba(255, 250, 243, 0.2);
  color: #fffaf3;
}

@media (hover: hover) and (pointer: fine) {
  .home-hero-media:hover {
    transform: rotate(1.4deg) translateY(-4px);
  }
}

.faq-item,
details.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(63, 43, 30, 0.12);
  background: rgba(255, 255, 255, 0.66);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}
.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.faq-item .faq-body {
  padding: 0 18px 18px;
  color: var(--muted);
}

.footer {
  padding: 34px 0 48px;
}

.footer-inner {
  display: grid;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(63, 43, 30, 0.1);
}

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

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(63, 43, 30, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(182, 99, 63, 0.26);
  outline-offset: 2px;
}

.form-help,
.field-note,
.form-status,
.notice,
.help-line {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(123, 139, 97, 0.11);
  border: 1px solid rgba(123, 139, 97, 0.16);
  display: none;
}
.form-status.is-visible {
  display: block;
}

.swal2-container {
  font-family: "Alegreya Sans", system-ui, sans-serif;
}

.swal2-popup {
  border-radius: 24px !important;
}

.swal2-title,
.swal2-html-container {
  color: #2e2118 !important;
}

.step-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(63, 43, 30, 0.12);
}

.hero h1,
.section h2,
.panel h2,
.panel h3,
.article-card h1,
.article-card h2,
.article-card h3 {
  text-wrap: balance;
}

.article-card p,
.panel p,
.info-card p,
.legal-card p,
.auth-card p,
.quote-card p,
.status-card p,
.form-card p {
  text-wrap: pretty;
}

.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
th,
td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(63, 43, 30, 0.1);
}
th {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(123, 139, 97, 0.11);
  color: var(--accent-2);
  font-weight: 800;
  font-size: 0.84rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(182, 99, 63, 0.1);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.84rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-toolbar .muted {
  margin: 0;
  max-width: 54ch;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn-inline.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
}

.hero-note {
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.98rem;
}

.stack {
  display: grid;
  gap: 12px;
}

.article-card h3,
.admin-card h3,
.auth-card h3,
.form-card h3,
.legal-card h3 {
  margin-bottom: 8px;
}

.article-card p,
.admin-card p,
.auth-card p,
.form-card p,
.legal-card p {
  color: var(--muted);
}

.nav-panel {
  display: contents;
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .page-grid,
  .auth-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .about-feature-grid,
  .process-grid,
  .values-grid,
  .reassurance-panel {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    height: auto;
  }

  .about-portrait img {
    height: auto;
  }

  .values-image {
    height: auto;
  }

  .values-image img {
    height: auto;
  }

  .about-hero-grid .section-image,
  .about-hero-grid .media-link,
  .about-hero-grid .section-image img {
    height: auto;
  }

  .home-hero-copy h1 {
    max-width: 13ch;
  }

  .home-hero-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .consult-card {
    left: 18px;
  }

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

  .featured-benefit {
    transform: none;
  }

  .process-copy {
    position: static;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid,
  .article-grid,
  .pricing-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: 84px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(63, 43, 30, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - 110px);
    overflow: auto;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .language-switcher {
    width: 100%;
  }

  .language-switcher summary {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher summary span {
    margin-right: auto;
  }

  .language-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    box-shadow: none;
    background: rgba(247, 240, 230, 0.78);
  }

  .language-menu a {
    justify-content: center;
    padding: 8px 6px;
  }

  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  .hero {
    padding-top: 28px;
  }

  .home-hero {
    padding-top: 34px;
  }

  .home-hero-media {
    transform: none;
  }

  .consult-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -38px 12px 0;
    transform: none;
  }

  .profile-card-grid {
    grid-template-columns: 1fr;
  }

  .profile-card-wide {
    grid-column: auto;
  }

  .values-image img {
    min-height: 360px;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .card-grid,
  .article-grid,
  .pricing-grid,
  .admin-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-media:hover,
  .panel:hover,
  .info-card:hover,
  .quote-card:hover,
  .form-card:hover,
  .auth-card:hover,
  .section-image:hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--content));
  }

  .home-hero .container {
    width: min(calc(100% - 48px), var(--content));
  }

  .section {
    padding: 30px 0;
  }

  .header-inner {
    min-height: 74px;
  }
  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .home-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.6vw, 3rem);
    line-height: 0.94;
  }

  .home-hero-copy {
    width: min(100%, 318px);
    padding-right: 24px;
  }

  .home-hero-copy .lead,
  .home-hero .action-row,
  .home-hero .hero-reassurance {
    max-width: 100%;
  }

  .home-hero .btn {
    width: 100%;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .btn {
    width: 100%;
  }
  .action-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-media {
    padding: 10px;
  }

  .home-hero-media > .media-link img {
    aspect-ratio: 4 / 4.8;
    height: 620px;
  }

  .consult-card {
    margin-inline: 8px;
  }

  .consult-card h2 {
    font-size: 1.22rem;
  }

  .reassurance-panel,
  .values-card,
  .final-cta-panel {
    border-radius: 26px;
  }

  .benefit-card {
    min-height: 220px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-list strong,
  .process-list span {
    grid-column: auto;
  }

  .brand-logo {
    width: min(64vw, 220px);
  }

  .footer .brand-logo {
    width: min(70vw, 240px);
  }

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

  .booking-weekdays,
  .booking-calendar-grid {
    gap: 6px;
  }

  .panel,
  .info-card,
  .quote-card,
  .form-card,
  .legal-card,
  .auth-card,
  .admin-card,
  .status-card,
  .article-card {
    padding: 18px;
  }
}
