:root {
  --bg: #f4efe6;
  --surface: rgba(244, 239, 230, 0.82);
  --surface-strong: #f4efe6;
  --ink: #292a28;
  --muted: #625b55;
  --line: rgba(41, 42, 40, 0.14);
  --accent: #743a45;
  --accent-deep: #3a2c27;
  --forest: #3a2c27;
  --olive: #5c6248;
  --cool-accent: #667d89;
  --greige: #cec3b4;
  --champagne: #b9a078;
  --bg-top: #fbf8f3;
  --header-bg: rgb(244 239 230 / 0.9);
  --hero-panel: #f4efe6;
  --on-dark: #fff8f0;
  --accent-rgb: 116 58 69;
  --dark-rgb: 58 44 39;
  --surface-rgb: 244 239 230;
  --ambient-rgb: 92 98 72;
  --shadow: 0 24px 80px rgba(58, 44, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgb(var(--accent-rgb) / 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgb(var(--ambient-rgb) / 0.16), transparent 32%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
  transition: background 300ms ease, color 250ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

.page-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  margin-bottom: 36px;
  backdrop-filter: blur(22px);
  background: var(--header-bg);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #fff8f0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.brand-name,
.brand-tag,
.mini-label,
.eyebrow {
  margin: 0;
}

.brand-name {
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

/* Theme + language switcher */
.header-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-picker {
  display: grid;
  grid-template-columns: repeat(4, 20px);
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgb(var(--surface-rgb) / 0.72);
  border: 1px solid var(--line);
}

.theme-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.theme-dot:hover {
  transform: scale(1.12);
}

.theme-dot.active {
  border-color: var(--ink);
}

.theme-dot.theme-aurea { background: linear-gradient(135deg, #743a45, #b9a078); }
.theme-dot.theme-rose { background: linear-gradient(135deg, #b78387, #6e3c56); }
.theme-dot.theme-verde { background: linear-gradient(135deg, #8ea081, #3e4a3a); }
.theme-dot.theme-onyx { background: linear-gradient(135deg, #31445a, #5a3a56); }
.theme-dot.theme-coffee { background: linear-gradient(135deg, #453434, #decfba); }
.theme-dot.theme-rhodonite { background: linear-gradient(135deg, #302c52, #d4d4cc); }
.theme-dot.theme-marina { background: linear-gradient(135deg, #5287c6, #a7bec8); }
.theme-dot.theme-amaranth { background: linear-gradient(135deg, #6e3c56, #d8c3cb); }

.lang-picker {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgb(var(--surface-rgb) / 0.72);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: rgb(var(--surface-rgb) / 0.96);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 30;
}

.lang-menu.open {
  display: flex;
}

.lang-menu button {
  padding: 9px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.88rem;
}

.lang-menu button:hover,
.lang-menu button:focus-visible {
  background: rgb(var(--accent-rgb) / 0.14);
}

.lang-menu button.active {
  color: var(--accent-deep);
  font-weight: 700;
}

/* Color theme presets — swap CSS custom properties via [data-theme] on <html> */
:root[data-theme="rose"] {
  --bg: #f4e9e8;
  --surface-strong: #f7eeee;
  --surface: rgb(247 238 238 / 0.84);
  --bg-top: #fbf5f5;
  --header-bg: rgb(247 238 238 / 0.9);
  --hero-panel: #f7eeee;
  --ink: #3a2c27;
  --muted: #725d61;
  --line: rgb(110 60 86 / 0.18);
  --accent: #b78387;
  --accent-deep: #6e3c56;
  --forest: #6e3c56;
  --accent-rgb: 183 131 135;
  --dark-rgb: 110 60 86;
  --surface-rgb: 247 238 238;
  --ambient-rgb: 216 195 203;
}

:root[data-theme="verde"] {
  --bg: #f2ede3;
  --surface-strong: #dccdb8;
  --surface: rgb(242 237 227 / 0.84);
  --bg-top: #f8f5ee;
  --header-bg: rgb(242 237 227 / 0.9);
  --hero-panel: #f2ede3;
  --ink: #3e4a3a;
  --muted: #606a5c;
  --line: rgb(62 74 58 / 0.18);
  --accent: #c56e54;
  --accent-deep: #8b5e3c;
  --forest: #3e4a3a;
  --accent-rgb: 197 110 84;
  --dark-rgb: 62 74 58;
  --surface-rgb: 242 237 227;
  --ambient-rgb: 142 160 129;
}

:root[data-theme="onyx"] {
  --bg: #e7e3e9;
  --surface-strong: #c7c1cc;
  --surface: rgb(231 227 233 / 0.84);
  --bg-top: #f4f2f5;
  --header-bg: rgb(231 227 233 / 0.9);
  --hero-panel: #e7e3e9;
  --ink: #1f2226;
  --muted: #5d5864;
  --line: rgb(49 68 90 / 0.2);
  --accent: #5a3a56;
  --accent-deep: #31445a;
  --forest: #31445a;
  --accent-rgb: 90 58 86;
  --dark-rgb: 49 68 90;
  --surface-rgb: 231 227 233;
  --ambient-rgb: 167 190 200;
}

:root[data-theme="coffee"] {
  --bg: #e9dfd1;
  --surface: rgb(229 216 197 / 0.86);
  --surface-strong: #e5d8c5;
  --bg-top: #f7f1e9;
  --header-bg: rgb(229 216 197 / 0.92);
  --hero-panel: #e5d8c5;
  --ink: #453434;
  --muted: #725f57;
  --line: rgb(69 52 52 / 0.2);
  --accent: #8b5e3c;
  --accent-deep: #453434;
  --forest: #453434;
  --accent-rgb: 139 94 60;
  --dark-rgb: 69 52 52;
  --surface-rgb: 229 216 197;
  --ambient-rgb: 179 173 136;
}

:root[data-theme="rhodonite"] {
  --bg: #ecebe6;
  --surface: rgb(212 212 204 / 0.88);
  --surface-strong: #d4d4cc;
  --bg-top: #f7f6f2;
  --header-bg: rgb(236 235 230 / 0.92);
  --hero-panel: #ecebe6;
  --ink: #302c52;
  --muted: #625f75;
  --line: rgb(48 44 82 / 0.2);
  --accent: #5a3a56;
  --accent-deep: #302c52;
  --forest: #302c52;
  --accent-rgb: 90 58 86;
  --dark-rgb: 48 44 82;
  --surface-rgb: 236 235 230;
  --ambient-rgb: 179 173 136;
}

:root[data-theme="marina"] {
  --bg: #e8eff4;
  --surface: rgb(232 239 244 / 0.86);
  --surface-strong: #dbe7ee;
  --bg-top: #f5f8fa;
  --header-bg: rgb(232 239 244 / 0.92);
  --hero-panel: #e8eff4;
  --ink: #1f2226;
  --muted: #526575;
  --line: rgb(49 68 90 / 0.2);
  --accent: #5287c6;
  --accent-deep: #31445a;
  --forest: #31445a;
  --accent-rgb: 82 135 198;
  --dark-rgb: 49 68 90;
  --surface-rgb: 232 239 244;
  --ambient-rgb: 167 190 200;
}

:root[data-theme="amaranth"] {
  --bg: #f0e5e9;
  --surface: rgb(240 229 233 / 0.86);
  --surface-strong: #e6d4db;
  --bg-top: #faf5f7;
  --header-bg: rgb(240 229 233 / 0.92);
  --hero-panel: #f0e5e9;
  --ink: #3a2c27;
  --muted: #725c67;
  --line: rgb(110 60 86 / 0.2);
  --accent: #6e3c56;
  --accent-deep: #5a3a56;
  --forest: #5a3a56;
  --accent-rgb: 110 60 86;
  --dark-rgb: 90 58 86;
  --surface-rgb: 240 229 233;
  --ambient-rgb: 216 195 203;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--forest), rgb(var(--dark-rgb)));
  box-shadow: 0 18px 32px rgba(17, 23, 20, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgb(var(--surface-rgb) / 0.72);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

main {
  display: grid;
  gap: 28px;
}

section {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.3), transparent 38%);
}

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

.hero {
  display: flex;
  align-items: flex-end;
  min-height: min(780px, calc(100vh - 150px));
  padding: 36px;
  isolation: isolate;
  background: rgb(var(--dark-rgb));
}

.hero::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(25, 21, 18, 0.2), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 55%);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: var(--hero-panel);
  box-shadow: 0 24px 70px rgba(22, 17, 13, 0.24);
}

.hero-copy h1,
.section-heading h2,
.panel h2,
.assistant-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  max-width: 10ch;
}

.hero-text,
.assistant-copy p,
.contact-card p,
.panel li,
.step-card p,
.service-card p,
.team-card span,
.review-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  margin: 20px 0 28px;
  font-size: 1.05rem;
}

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

.hero-actions-stack {
  margin-top: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-metrics li,
.hero-card,
.panel,
.step-card,
.service-card,
.team-card,
.assistant-widget,
.review-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgb(var(--surface-rgb) / 0.78);
}

.hero-metrics li {
  padding: 18px;
  border-radius: 22px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

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

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  background: linear-gradient(0deg, rgba(20, 16, 13, 0.12), transparent 48%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  animation: hero-camera-drift 12s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-glow-one {
  width: 310px;
  height: 520px;
  left: -90px;
  top: 12px;
  transform: rotate(-18deg);
  animation: glass-float 9s ease-in-out infinite alternate;
}

.hero-glow-two {
  width: 190px;
  height: 420px;
  left: 94px;
  bottom: -170px;
  transform: rotate(32deg);
  animation: glass-float 11s ease-in-out -3s infinite alternate-reverse;
}

.hero-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(36, 27, 18, 0.11);
}

.hero-card-main {
  left: 22px;
  bottom: 22px;
  width: min(56%, 330px);
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 240, 228, 0.8)),
    linear-gradient(135deg, rgba(116, 58, 69, 0.14), transparent 50%);
  backdrop-filter: blur(18px);
}

.hero-card-accent {
  right: 22px;
  top: 22px;
  width: min(52%, 310px);
  padding: 20px;
  background: linear-gradient(135deg, rgba(58, 44, 39, 0.96), rgba(41, 42, 40, 0.92));
  color: #f5ede4;
}

@keyframes hero-camera-drift {
  0% {
    transform: scale(1.045) translate3d(-0.35%, 0.2%, 0);
  }
  100% {
    transform: scale(1.085) translate3d(0.6%, -0.35%, 0);
  }
}

@keyframes glass-float {
  0% {
    translate: 0 0;
    scale: 0.98;
    opacity: 0.42;
  }
  100% {
    translate: 18px -16px;
    scale: 1.04;
    opacity: 0.7;
  }
}

.mini-label,
.eyebrow {
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-card-accent .mini-label {
  color: rgba(255, 247, 239, 0.8);
}

.slot-list,
.slot-options {
  display: grid;
  gap: 12px;
}

.slot {
  width: 100%;
  padding: 18px 16px;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #fffdf8;
  cursor: pointer;
}

.slot.active,
.slot:hover {
  border-color: rgba(116, 58, 69, 0.4);
  background: #f3eadf;
}

.visual-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
}

.note-chip {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(116, 58, 69, 0.18);
  font-size: 0.85rem;
}

.chat-line {
  padding: 14px 16px;
  border-radius: 16px;
  margin: 0 0 10px;
}

.chat-line.user {
  background: rgba(255, 255, 255, 0.11);
}

.chat-line.bot {
  background: rgba(116, 58, 69, 0.16);
}

.panel {
  padding: 34px;
  border-radius: 28px;
}

.problem-panel {
  background: linear-gradient(180deg, rgb(var(--surface-rgb) / 0.96), rgb(var(--surface-rgb) / 0.78));
}

.solution-panel {
  color: var(--on-dark);
  background: linear-gradient(140deg, rgb(var(--dark-rgb) / 0.98), var(--forest));
}

.solution-panel .eyebrow,
.solution-panel h2,
.solution-panel li {
  color: inherit;
}

.solution-panel .feature-list li::before {
  background: rgb(255 255 255 / 0.24);
}

.feature-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: rgb(var(--accent-rgb) / 0.42);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 0;
}

.section-heading h2,
.panel h2,
.assistant-copy h2,
.contact-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.steps-grid,
.services-grid,
.team-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.service-card,
.team-card,
.review-card {
  padding: 24px;
  border-radius: 24px;
}

.step-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-deep);
  background: rgb(var(--accent-rgb) / 0.14);
}

.step-card h3,
.service-card h3,
.team-card h3 {
  margin: 0 0 10px;
}

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

.service-card {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgb(var(--surface-rgb) / 0.94), rgb(var(--surface-rgb) / 0.74)),
    radial-gradient(circle at top right, rgb(var(--accent-rgb) / 0.2), transparent 34%);
}

.team {
  align-items: start;
}

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

.portrait {
  height: 220px;
  border-radius: 20px;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.portrait-one {
  background:
    linear-gradient(180deg, rgba(27, 22, 18, 0.08), rgba(27, 22, 18, 0.24)),
    linear-gradient(135deg, #c8b19b, #8b6d57);
}

.portrait-two {
  background:
    linear-gradient(180deg, rgba(27, 22, 18, 0.08), rgba(27, 22, 18, 0.24)),
    linear-gradient(135deg, #d6d5cf, #9ca895);
}

.portrait-three {
  background:
    linear-gradient(180deg, rgba(27, 22, 18, 0.08), rgba(27, 22, 18, 0.24)),
    linear-gradient(135deg, #d4c0bf, #915f63);
}

.team-card p {
  margin: 0 0 8px;
  color: var(--accent-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  display: flex;
  align-items: end;
  min-height: 240px;
  padding: 22px;
  border-radius: 26px;
  color: #fff8f0;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -120px 120px rgba(18, 15, 12, 0.28);
}

.gallery-large {
  grid-row: span 2;
  min-height: 500px;
  background:
    linear-gradient(180deg, rgba(17, 15, 12, 0.02), rgba(17, 15, 12, 0.58)),
    linear-gradient(135deg, #b89c82, #7c5f48);
}

.gallery-small.one {
  background:
    linear-gradient(180deg, rgba(17, 15, 12, 0.02), rgba(17, 15, 12, 0.58)),
    linear-gradient(135deg, #d1c0ad, #8b7a6a);
}

.gallery-small.two {
  background:
    linear-gradient(180deg, rgba(17, 15, 12, 0.02), rgba(17, 15, 12, 0.58)),
    linear-gradient(135deg, #cfb5bf, #705160);
}

.gallery-wide {
  grid-column: span 2;
  background:
    linear-gradient(180deg, rgba(17, 15, 12, 0.02), rgba(17, 15, 12, 0.58)),
    linear-gradient(135deg, #9fa69f, #4f6257);
}

.assistant {
  align-items: center;
}

.assistant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.assistant-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgb(var(--accent-rgb) / 0.14);
  color: var(--accent-deep);
  font-size: 0.88rem;
}

.assistant-widget,
.contact-card {
  padding: 28px;
  border-radius: 28px;
}

.assistant-widget {
  background: linear-gradient(180deg, rgb(var(--surface-rgb) / 0.96), rgb(var(--surface-rgb) / 0.84));
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  counter-reset: booking-step;
}

.booking-progress li {
  counter-increment: booking-step;
  padding: 10px 8px;
  border-bottom: 2px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.booking-progress li::before {
  content: counter(booking-step) ". ";
  font-weight: 700;
}

.booking-progress li.active {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.booking-error-summary {
  padding: 16px 18px;
  margin-bottom: 20px;
  border: 1px solid rgb(var(--accent-rgb) / 0.5);
  border-radius: 18px;
  background: rgb(var(--accent-rgb) / 0.12);
}

.booking-error-summary:focus {
  outline: 3px solid rgb(var(--accent-rgb) / 0.25);
  outline-offset: 3px;
}

.booking-error-summary ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.booking-error-summary a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-fieldset {
  min-width: 0;
  padding: 0;
  margin: 0 0 26px;
  border: 0;
}

.booking-fieldset legend {
  padding: 0;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.booking-fields {
  display: grid;
  gap: 16px;
}

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

.booking-field-wide {
  grid-column: 1 / -1;
}

.widget-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
}

.widget-topline p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.assistant-widget .booking-field > label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.94rem;
}

.assistant-widget select,
.assistant-widget input:not([type="checkbox"]) {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.assistant-widget select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236d655f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.assistant-widget input[type="date"] {
  padding-right: 16px;
}

.assistant-widget input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.6;
  cursor: pointer;
}

.assistant-widget select:focus-visible,
.assistant-widget input:focus-visible,
.slot-option:focus-visible {
  outline: 3px solid rgb(var(--accent-rgb) / 0.24);
  outline-offset: 2px;
  border-color: var(--accent);
}

.assistant-widget [aria-invalid="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 0.12);
}

.field-error {
  margin: 7px 2px 0;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 650;
}

.assistant-response {
  min-height: 110px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  border: 1px solid rgb(var(--accent-rgb) / 0.2);
  background: rgb(var(--accent-rgb) / 0.09);
  color: var(--ink);
}

.slot-options {
  margin-bottom: 18px;
}

.booking-search {
  width: 100%;
  margin-bottom: 20px;
}

.booking-slot-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 12px;
  font-weight: 700;
}

.booking-slot-heading small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.slot-option {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgb(var(--surface-rgb) / 0.88);
  color: var(--ink);
  cursor: pointer;
}

.slot-option.selected {
  border-color: rgb(var(--accent-rgb) / 0.45);
  background: rgb(var(--accent-rgb) / 0.12);
}

.widget-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 0;
  margin: 0;
  cursor: pointer;
}

.check-row input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--accent-deep);
}

.consent-row {
  padding-top: 16px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.booking-status {
  padding: 15px 17px;
  margin-top: 16px;
  border-radius: 16px;
  background: rgb(var(--accent-rgb) / 0.1);
}

.booking-status.success {
  border: 1px solid rgb(var(--ambient-rgb) / 0.55);
}

.booking-status.error {
  border: 1px solid rgb(var(--accent-rgb) / 0.6);
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.calendar-actions[hidden] {
  display: none;
}

.calendar-actions .button {
  flex: 1 1 210px;
  min-height: 48px;
  text-align: center;
}

.booking-privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.review-card {
  margin: 0;
}

.review-card footer {
  margin-top: 18px;
  color: var(--accent-deep);
}

.contact-card-accent {
  color: var(--on-dark);
  background: linear-gradient(140deg, rgb(var(--dark-rgb) / 0.98), var(--forest));
}

.contact-card-accent .eyebrow,
.contact-card-accent h2,
.contact-card-accent p {
  color: inherit;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .section-grid,
  .steps-grid,
  .services-grid,
  .team-grid,
  .reviews-grid,
  .gallery-grid,
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    width: min(660px, 72%);
  }

  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 16px;
  }

  .site-header,
  .section-grid,
  .steps-grid,
  .services-grid,
  .team-grid,
  .reviews-grid,
  .gallery-grid,
  .hero-metrics,
  .widget-actions {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .header-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  section {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero {
    min-height: 720px;
    padding: 14px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-copy {
    width: 100%;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .hero-actions,
  .widget-actions {
    flex-direction: column;
  }

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

  .booking-field-wide {
    grid-column: auto;
  }

  .booking-slot-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero-glow {
    animation: none;
  }
}
