/* ============================================================
   Better Booking — "Premium Varm" theme
   Edit the variables below to retheme the whole site.
   ============================================================ */

:root {
  /* Palette */
  --bg:          #faf4ec;
  --cream-card:  #f3ebe0;
  --cream-hover: #f7f0e7;
  --cream-icon:  #e9dccd;
  --panel:       #fffdf9;

  --plum:        #5b3758;
  --plum-dark:   #3d2540;
  --coral:       #f26a4b;
  --green:       #2eae7d;

  --ink:         #2c1d29;   /* headings */
  --text:        #5f5159;   /* body */
  --text-soft:   #6b5d66;
  --text-muted:  #8a7a84;

  /* Type */
  --serif:  'Newsreader', Georgia, serif;
  --sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --display:'Sora', var(--sans);

  /* Layout */
  --maxw: 1280px;
  --pad: 80px;
  --radius: 20px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  position: relative; /* containing block for the full-height background layer */
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* sticky footer: main grows, footer stays at bottom */
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
main { flex: 1 0 auto; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Decorative background ---------- */
.bg-decor {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden; /* clips the parallax layer so it never adds scroll height */
}
.bg-decor__layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  will-change: transform;
}
.glow {
  position: absolute;
  border-radius: 50%;
}
.glow--plum {
  top: -180px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(91,55,88,.10), transparent 70%);
}
.glow--coral {
  top: 280px; left: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(242,106,75,.10), transparent 70%);
}
.watermark {
  position: absolute;
  opacity: .05;
}
.watermark--1 { top: 120px;  right: -260px; width: 880px; transform: rotate(-8deg); }
.watermark--2 { top: 1640px; left: -320px;  width: 820px; opacity: .045; transform: rotate(6deg); }
.watermark--3 { top: 2360px; right: -220px; width: 640px; transform: rotate(-4deg); }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--plum); }
.display--md { font-size: 42px; line-height: 1.08; }
.display--sm { font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; }
.display--light { color: #fff; }

.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--coral);
  margin-bottom: 12px;
}
.eyebrow--light { color: #f0a78f; }

.lead {
  font-size: 18px;
  line-height: 1.62;
  color: var(--text);
  max-width: 480px;
}

.section-head { max-width: 580px; margin-bottom: 44px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 32px;
  cursor: pointer;
  border: 0;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.btn--sm { font-size: 15px; padding: 11px 24px; border-radius: 30px; }
.btn--block { width: 100%; padding: 15px; }

.btn .icon {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.btn--sm .icon { width: 16px; height: 16px; }

.btn--plum {
  background: var(--plum); color: #fff;
  box-shadow: 0 12px 26px rgba(91,55,88,.26);
}
.btn--plum:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 36px -10px rgba(91,55,88,.45);
}
.btn--coral {
  background: var(--coral); color: #fff;
  box-shadow: 0 12px 26px -8px rgba(242,106,75,.4);
}
.btn--coral:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 36px -10px rgba(242,106,75,.55);
}
.btn--ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255,255,255,.18);
}

/* ---------- Nav ---------- */
.nav {
  position: relative;
  border-bottom: 1px solid rgba(91,55,88,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 26px;
}
.nav__logo img { height: 36px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
}
.nav__links a { position: relative; }
.nav__links a:hover { color: var(--plum); }

/* mobile menu bits — hidden on desktop */
.nav__links-cta { display: none; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--plum);
  transition: transform .28s var(--ease), opacity .2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__links a.is-active { color: var(--plum); }

/* bottom indicator: grows 0 -> 4px on hover, stays 4px on the current page */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -37px;             /* sits on the nav's bottom line */
  height: 0;
  background: #563454;
  transition: height .2s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { height: 3px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-block: 80px 96px;
}
.hero__copy .display { font-size: 58px; margin-bottom: 22px; }
.hero__copy .lead { margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__badges {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #7a6c74;
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot--green { background: var(--green); }
.dot--plum  { background: var(--plum); }
.dot--coral { background: var(--coral); }

/* Tilting device */
.hero__device {
  position: relative;
  perspective: 1400px;
}
/* only the iPad floats — the phone in front stays still */
.device__floater {
  position: relative;
  container-type: inline-size; /* lets the iPad bezel scale via cqw */
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
.device__frame {
  background: var(--ink);
  border-radius: 5.9cqw;
  padding: 2.76cqw;
  box-shadow: 0 40px 80px -20px rgba(44,29,41,.4);
  transform: rotateY(-7deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  will-change: transform;
}
.device__screen { background: #fffdf9; border-radius: 3.5cqw; overflow: hidden; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px -8px rgba(44,29,41,.22);
}
.float-card--occupancy {
  bottom: -22px; left: -26px;
  padding: 13px 17px;
  display: flex; align-items: center; gap: 11px;
}
.float-card__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #eafaf3;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.float-card__title { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); }
.float-card__sub { font-size: 11px; color: var(--text-muted); }
.float-card--fee {
  top: 7.1cqw; right: -4.3cqw;       /* scale + overflow track the iPad width */
  background: var(--coral); color: #fff;
  padding: 2.36cqw 2.95cqw;
  border-radius: 3.15cqw;
  box-shadow: 0 16px 32px -10px rgba(242,106,75,.5);
  transform: rotate(4deg);
}
.float-card--fee .float-card__sub { color: #fff; opacity: .9; font-size: 2.17cqw; }
.float-card__big { font-family: var(--serif); font-weight: 600; font-size: 5.9cqw; line-height: 1; }

/* Still phone in front of the iPad, showing a QR code */
.hero__phone {
  position: absolute;
  z-index: 3;
  bottom: -34px;
  left: -9%;            /* sized relative to the device so it scales with the iPad */
  width: 29.9%;         /* = 152px at the desktop device width (508px) */
  container-type: inline-size; /* lets inner cqw units scale with the phone */
  perspective: 1000px;
  /* gentle hover, offset 0.5s from the iPad so they're out of sync */
  animation: phoneFloat 6s ease-in-out 0.5s infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero__phone-body {
  position: relative;
  background: var(--ink);
  border-radius: 20cqw;
  padding: 5.3cqw;
  box-shadow: 0 30px 60px -18px rgba(44,29,41,.5);
  transform: rotateY(20deg) rotate(-9deg);
  transition: transform 0.4s ease-out;
}
.hero__phone-notch {
  position: absolute;
  top: 10.5cqw; left: 50%;
  transform: translateX(-50%);
  width: 30cqw; height: 4cqw;
  border-radius: 4cqw;
  background: rgba(255,255,255,.18);
  z-index: 1;
}
.hero__phone-screen {
  background: #faf4ec;
  border-radius: 15cqw;
  aspect-ratio: 9 / 19;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10.5cqw;
}
.hero__phone-qr { position: relative; width: 100%; line-height: 0; }
.hero__phone-qr-img { width: 100%; height: auto; display: block; }
.hero__phone-qr-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  aspect-ratio: 1 / 1;
  background: #faf4ec;
  border-radius: 5cqw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.3cqw;
}
.hero__phone-qr-logo img { width: 100%; height: auto; display: block; }

/* ---------- Features ---------- */
.features { padding-block: 40px 110px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--cream-card);
  border: 1px solid rgba(91,55,88,.1);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 22px -16px rgba(44,29,41,.25);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 50px -20px rgba(91,55,88,.42);
  border-color: rgba(242,106,75,.55);
  background: var(--cream-hover);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--cream-icon);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg {
  width: 27px; height: 27px;
  fill: none; stroke: var(--plum); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 9px;
  color: var(--ink);
}
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-soft); }

/* ---------- Quote ---------- */
.quote { padding-block: 24px 100px; text-align: center; }
.quote blockquote { margin: 0; }
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  color: var(--plum);
  margin: 0 auto;
  max-width: 780px;
}
.quote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 18px;
  font-weight: 600;
}

/* ---------- Occupancy highlight ---------- */
.occupancy {
  position: relative;
  margin-bottom: 116px;
  background: linear-gradient(135deg, var(--plum), var(--plum-dark));
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.occupancy::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 760px; height: 520px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(216,120,110,.55) 0%, rgba(216,120,110,0) 100%);
}
.occupancy__copy, .occupancy__panel { position: relative; }
.occupancy__text { font-size: 16px; line-height: 1.6; color: #e0d3de; max-width: 420px; margin-top: 18px; }
.occupancy .display--sm { margin-top: 0; }

.occupancy__panel {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(4px);
}
.occupancy__panel-title { font-size: 13px; color: #c9b8c6; margin-bottom: 16px; font-weight: 600; }
.bars { display: flex; flex-direction: column; gap: 13px; }
.bar__label { display: flex; justify-content: space-between; font-size: 13px; color: #e0d3de; margin-bottom: 6px; }
.bar__track { height: 9px; border-radius: 6px; background: rgba(255,255,255,.12); }
.bar__fill { height: 100%; border-radius: 6px; }
.occupancy__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: #c9b8c6;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 11px 13px;
}

/* ---------- Pricing ---------- */
.pricing { padding-bottom: 120px; text-align: center; }
.pricing__intro { font-size: 17px; color: var(--text-soft); margin: 12px auto 40px; max-width: 440px; }
.price-card {
  max-width: 440px;
  margin-inline: auto;
  background: var(--panel);
  border: 1.5px solid rgba(91,55,88,.14);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 30px 60px -24px rgba(91,55,88,.28);
}
.price-card__tag {
  font-size: 13px; font-weight: 600;
  color: var(--coral);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-card__amount { font-family: var(--serif); font-weight: 500; font-size: 58px; color: var(--ink); line-height: 1; }
.price-card__period { font-size: 14px; color: var(--text-muted); margin: 6px 0 24px; }
.price-card__list {
  border-top: 1.5px dashed rgba(91,55,88,.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: left;
  margin-bottom: 28px;
}
.price-card__list li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: #3d3340; }
.check { color: var(--green); font-weight: 700; }

/* ---------- Demo / contact form ---------- */
.demo { padding-bottom: 120px; scroll-margin-top: 90px; }
.demo__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.85fr; /* copy · form (center) · price */
  gap: 40px;
  align-items: center;
}
.demo__copy .display { margin-bottom: 16px; }
.demo__text { font-size: 15px; line-height: 1.6; color: var(--text-soft); max-width: 340px; }
.demo__text + .demo__text { margin-top: 16px; }

/* price / subscription column */
.demo__pricing { scroll-margin-top: 90px; }
.demo__pricing .eyebrow { margin-bottom: 10px; }
.demo__pricing-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}
.demo__pricing .price-card__list { margin-bottom: 0; }
.demo__pricing-rule,
.dashed-rule {
  border: 0;
  border-top: 1.5px dashed rgba(91,55,88,.2);
  margin: 24px 0;
}
.demo__pricing-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.demo-form {
  background: var(--panel);
  border: 1.5px solid rgba(91,55,88,.14);
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 30px 60px -24px rgba(91,55,88,.28);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.demo-field { display: flex; flex-direction: column; gap: 7px; }
.demo-field > label { font-size: 14px; font-weight: 600; color: var(--ink); }
.demo-field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-field__hint { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.demo-form input,
.demo-form select,
.demo-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #faf6f0;
  border: 1.5px solid rgba(91,55,88,.16);
  border-radius: 14px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.demo-form textarea { resize: vertical; min-height: 110px; }
.demo-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b3758' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
/* time picker: clock icon instead of the chevron */
.demo-form #demo-tid {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b3758' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 7.5V12l3 1.6'/></svg>");
  background-position: right 13px center;
}
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(91,55,88,.12);
}
.demo-form .btn { margin-top: 4px; }

/* honeypot — visually hidden, kept in the a11y/layout flow for bots */
.demo-hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.demo-form__status {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 12px;
}
.demo-form__status.is-ok    { color: #1f7a57; background: rgba(46,174,125,.12); }
.demo-form__status.is-error { color: #b23b36; background: rgba(217,83,79,.12); }

/* Popup datepicker */
.datepicker { position: relative; }
.datepicker__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%;
  font-family: var(--sans); font-size: 15px; color: var(--ink); text-align: left;
  background: #faf6f0; border: 1.5px solid rgba(91,55,88,.16);
  border-radius: 14px; padding: 13px 15px; cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.datepicker__trigger svg {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: #5b3758; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.datepicker__trigger:focus-visible { outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(91,55,88,.12); }
.datepicker__value { color: var(--text-muted); }
.datepicker__value.is-filled { color: var(--ink); }
.datepicker.is-invalid .datepicker__trigger { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.12); }

.datepicker__pop {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20;
  width: 300px; max-width: calc(100vw - 44px);
  background: #fff; border: 1.5px solid rgba(91,55,88,.14);
  border-radius: 18px; padding: 16px;
  box-shadow: 0 24px 50px -18px rgba(44,29,41,.35);
}
.datepicker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.datepicker__month { font-weight: 600; font-size: 15px; color: var(--ink); text-transform: capitalize; }
.datepicker__nav {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border: 0; background: #f3ebe0; border-radius: 9px; cursor: pointer; color: var(--plum);
  transition: background .2s ease;
}
.datepicker__nav:hover:not(:disabled) { background: #e9dccd; }
.datepicker__nav:disabled { opacity: .35; cursor: not-allowed; }
.datepicker__nav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.datepicker__weekdays, .datepicker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.datepicker__weekdays { margin-bottom: 6px; }
.datepicker__weekdays span { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-muted); padding: 4px 0; }
.dp-cell {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  border: 0; background: transparent; border-radius: 9px;
  font-family: var(--sans); font-size: 13.5px; color: var(--ink);
}
.dp-cell--empty { background: transparent; }
.dp-cell--off { color: rgba(51,37,47,.22); cursor: default; }
.dp-cell--on { cursor: pointer; font-weight: 600; transition: background .15s ease, color .15s ease; }
.dp-cell--on:hover { background: #f3ebe0; }
.dp-cell--sel, .dp-cell--sel:hover { background: var(--plum); color: #fff; }

/* ---------- Contact page ---------- */
.nav__links a.is-active { color: var(--plum); }

.contact { padding-block: 72px 110px; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact__intro .display { margin-bottom: 16px; }
.contact__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 440px;
  margin-bottom: 34px;
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method__icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cream-icon);
  display: flex; align-items: center; justify-content: center;
}
.contact-method__icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--plum); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-method__label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.contact-method__value { font-size: 17px; font-weight: 600; color: var(--ink); }
a.contact-method__value:hover { color: var(--plum); }
.contact__legal { font-size: 13px; color: var(--text-muted); }
.demo-field__opt { color: var(--text-muted); font-weight: 400; }

/* plum-outline button for light backgrounds */
.btn--ghost-plum {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid rgba(91,55,88,.3);
}
.btn--ghost-plum:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(91,55,88,.06);
}

/* --- specialist / contact person --- */
.specialist { padding-bottom: 110px; }
.specialist__eyebrow { text-align: center; margin-bottom: 6px; }
.specialist__title { text-align: center; margin: 0 auto 44px; }
.specialist__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
  /* no box — the photo and text sit directly on the page background */
}
.specialist__media {
  perspective: 900px;
  animation: float 7s ease-in-out infinite; /* gentle hover, like the hero devices */
}
.specialist__photo {
  width: 310px;
  aspect-ratio: 593 / 961;
  object-fit: cover;
  object-position: center 22%;
  /* framed by the Better Booking brandmark's organic blob shape, tilted */
  -webkit-mask: url(/assets/benjamin-blob.svg) center / contain no-repeat;
          mask: url(/assets/benjamin-blob.svg) center / contain no-repeat;
  transform: rotate(-6deg);
  transition: transform 0.4s ease-out;
  will-change: transform;
  filter: drop-shadow(0 20px 34px rgba(44,29,41,.26));
}
.specialist__body .eyebrow { margin-bottom: 16px; }
.specialist__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 4px;
}
.specialist__text { font-size: 16px; line-height: 1.6; color: var(--text-soft); margin: 0 0 22px; max-width: 540px; }
.specialist__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Pricing page ---------- */
.pricing-hero {
  position: relative;
  text-align: center;
  padding: 90px 0 78px;
  background: transparent;
  border-bottom: 1px solid rgba(91,55,88,.08);
}
.pricing-hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}
.pricing-badge {
  background: var(--coral);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 14px 30px -10px rgba(242,106,75,.55);
  white-space: nowrap;
}
.pricing-badge--1 { transform: rotate(-4deg); }
.pricing-badge--2 { transform: rotate(4deg); }
.pricing-hero__title { font-size: 56px; margin: 4px auto 0; max-width: 820px; }
.pricing-hero__lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 600px;
  margin: 20px auto 0;
}
.pricing-page { padding-block: 64px 110px; }
.pricing-page__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin: 0 auto;
  max-width: 980px;
}
.pricing-page__prose h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--ink);
  margin: 0 0 10px;
}
.pricing-page__prose p { font-size: 16px; line-height: 1.65; color: var(--text-soft); margin: 0; }
.pricing-page__prose > * + h2 { margin-top: 44px; }
.pricing-page__card { position: sticky; top: 28px; }
.pricing-page__card .price-card { max-width: none; text-align: center; margin: 0; }
.pricing-page__note { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); margin: 16px 6px 0; text-align: center; }

/* --- developers / team --- */
.team { padding-bottom: 110px; }
.team__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 27px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 40px;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 820px;
  margin-inline: auto;
}
.team-member { text-align: center; }
.team-member__media { display: flex; justify-content: center; }
.team-member__photo {
  width: 230px;
  aspect-ratio: 593 / 961;
  object-fit: cover;
  object-position: center 20%;
  /* framed by the Better Booking brandmark's organic blob shape */
  -webkit-mask: url(/assets/benjamin-blob.svg) center / contain no-repeat;
          mask: url(/assets/benjamin-blob.svg) center / contain no-repeat;
  filter: drop-shadow(0 18px 30px rgba(44,29,41,.24));
}
.team-member__photo--a { transform: rotate(-5deg); }
.team-member__photo--b { transform: rotate(5deg); }
.team-member__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  margin: 24px 0 4px;
}
.team-member__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--coral);
  margin-bottom: 14px;
}
.team-member__text { font-size: 15px; line-height: 1.6; color: var(--text-soft); max-width: 360px; margin-inline: auto; }

/* ---------- FAQ / accordion ---------- */
.faq { padding-block: 72px 110px; }
.faq__head { margin-inline: auto; text-align: center; }
.accordion { max-width: 760px; margin-inline: auto; }

.acc-item {
  border: 1px solid rgba(91,55,88,.12);
  border-radius: 16px;
  background: var(--cream-card);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.acc-item.is-open {
  border-color: rgba(242,106,75,.45);
  background: var(--cream-hover);
  box-shadow: 0 18px 40px -24px rgba(91,55,88,.4);
}

.acc-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.acc-icon {
  flex: none;
  width: 22px; height: 22px;
  fill: none; stroke: var(--plum); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease);
}
.acc-item.is-open .acc-icon { transform: rotate(180deg); }

/* grid-template-rows trick animates from collapsed to auto height */
.acc-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.acc-item.is-open .acc-a { grid-template-rows: 1fr; }
.acc-a__inner { overflow: hidden; }
.acc-a p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (prefers-reduced-motion: reduce) {
  .acc-a { transition: none; }
  .acc-icon { transition: none; }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--plum);
  padding: 88px var(--pad) 48px;
  overflow: hidden;
}
.footer__glow {
  position: absolute;
  bottom: -212px; left: -640px;
  width: 1280px; height: 425px;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(216,120,110,.55) 0%, rgba(216,120,110,0) 100%);
}
.footer .container { position: relative; padding-inline: 0; }
.footer__cta { text-align: center; max-width: 620px; margin: 0 auto 56px; scroll-margin-top: 110px; }
.footer__cta p { font-size: 17px; color: #e0d3de; margin: 16px 0 28px; }
.footer__cta .hl { color: var(--coral); }
.footer__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: #c9b8c6;
}
.footer__logo { height: 30px; width: auto; }

/* ============================================================
   Responsive
   ============================================================ */
/* Below 1300px the columns narrow but the phone still bleeds left —
   widen the gap so it keeps clear of the hero text. */
@media (max-width: 1300px) {
  .hero { gap: 96px; }
}

@media (max-width: 1000px) {
  :root { --pad: 40px; }
  .hero { grid-template-columns: 1fr; gap: 64px; padding-block: 56px 72px; }
  .hero__copy, .hero__device { min-width: 0; } /* let the column shrink to the viewport */
  .hero__copy .display { font-size: 46px; }
  /* center the combo and keep it ~82% wide so the phone's left
     overhang has room and never bleeds off the left edge.
     translateX nudges it right so the phone's left overhang doesn't
     leave a bigger gap on the right (optically centers the combo). */
  .hero__device { width: 82%; max-width: 480px; justify-self: center; transform: translateX(5%); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .occupancy { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .demo__inner { grid-template-columns: 1fr; gap: 40px; justify-items: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { width: 100%; max-width: 520px; }
  .pricing-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-page__card { position: static; max-width: 440px; width: 100%; margin-inline: auto; }
  .team__grid { grid-template-columns: 1fr; gap: 48px; max-width: 380px; }
  .specialist__card { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 26px; }
  .specialist__photo { width: min(260px, 70vw); }
  .specialist__text { margin-inline: auto; }
  .specialist__actions { justify-content: center; }
  .demo__copy { text-align: center; }
  .demo__text { margin-inline: auto; }
  .demo-form { width: 100%; max-width: 520px; }
  .demo__pricing { text-align: center; max-width: 440px; width: 100%; }
  /* --- Mobile menu --- */
  .nav__toggle { display: flex; }
  .nav__actions { display: none; }        /* CTA moves into the dropdown */

  .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 18px;
    background: var(--bg);
    border-bottom: 1px solid rgba(91,55,88,.1);
    box-shadow: 0 26px 44px -26px rgba(44,29,41,.4);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s var(--ease);
    z-index: 40;
  }
  .nav.is-open .nav__links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: 13px var(--pad); font-size: 17px; }
  .nav__links a::after { display: none; }  /* hide the horizontal underline in the vertical menu */
  .nav__links a.is-active { color: var(--plum); }
  .nav__links-cta { display: inline-flex; margin: 14px var(--pad) 2px; }
}

@media (max-width: 600px) {
  :root { --pad: 22px; }
  .hero__cta { justify-content: center; }
  .hero__badges { justify-content: center; } /* center, incl. when wrapping */
  .hero__copy .display { font-size: 36px; }
  .display--md, .display--sm { font-size: 30px; }
  .pricing-hero { padding: 58px 0 50px; }
  .pricing-hero__title { font-size: 34px; }
  .pricing-hero__lead { font-size: 17px; }
  .quote p { font-size: 23px; }
  .feature-grid { grid-template-columns: 1fr; }
  .demo-field__row { grid-template-columns: 1fr; }
  .price-card, .footer { padding-left: 22px; padding-right: 22px; }
  .price-card { padding: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn, .feature-card, .device__frame { transition: none; }
  .device__floater, .hero__phone, .specialist__media { animation: none; }
}
