:root {
  --bone: #F7F3EE;
  --sand: #D7C1A7;
  --coffee: #533C2C;
  --graphite: #2B2623;
  --clay: #A56150;
  --clay-active: #8F4F42;
  --white: #FFFFFF;
  --warm-white: #FBF8F4;
  --line-soft: #E7DDD2;
  --line-strong: #D8C8BA;
  --error-border: #A56150;
  --error-text: #7A3026;
  --error-bg: #FFF4F1;
  --shadow-soft: 0 14px 34px rgba(43, 38, 35, 0.07);
  --radius-lg: 24px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bone);
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bone);
  color: var(--graphite);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(165, 97, 80, 0.36);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.hero {
  background: var(--bone);
  color: var(--coffee);
}

.hero__container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 64px 32px 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.hero__copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 16px;
  color: var(--coffee);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero__subtitle {
  max-width: 520px;
  margin-bottom: 20px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
}

.hero__media {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.chip-row,
.select-chips,
.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.info-chip,
.benefit-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--coffee);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.benefit-chips {
  margin-bottom: 26px;
}

.benefit-chips span {
  min-height: 32px;
  background: var(--bone);
  font-size: 12px;
}

.hero__actions,
.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-card__actions {
  margin-top: 0;
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  width: auto;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.button--primary-action,
.button--secondary-action,
.button--ghost-action {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.button--primary-action {
  border: 1px solid var(--clay);
  background: var(--clay);
  color: var(--white);
}

.button--primary-action:hover {
  transform: translateY(-1px);
  border-color: var(--clay-active);
  background: var(--clay-active);
}

.button--secondary-action,
.button--ghost-action {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--coffee);
}

.button--secondary-action:hover,
.button--ghost-action:hover {
  transform: translateY(-1px);
  border-color: rgba(83, 60, 44, 0.38);
}

.button--ghost-action {
  background: transparent;
}

.location-section {
  padding: 0 20px 36px;
  background: var(--bone);
  scroll-margin-top: 24px;
}

.location-card {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.location-card h2 {
  margin-bottom: 8px;
  color: var(--coffee);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.location-card__address {
  margin: 0;
  color: rgba(43, 38, 35, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.copy-feedback {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: -12px 0 0;
  color: rgba(43, 38, 35, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.booking-section {
  padding: 34px 20px 44px;
  background: var(--bone);
  scroll-margin-top: 24px;
}

.booking-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.booking-card h2,
.before-container h2 {
  color: var(--coffee);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.booking-card h2 {
  margin-bottom: 12px;
}

.booking-card__intro {
  margin-bottom: 18px;
  color: rgba(43, 38, 35, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.step-indicator {
  width: fit-content;
  margin: 0 0 22px;
  padding: 7px 13px;
  border: 1px solid rgba(165, 97, 80, 0.22);
  border-radius: 999px;
  background: #FFF4F1;
  color: var(--clay-active);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.appointment-form,
.wizard-step {
  display: grid;
  gap: 18px;
}

.wizard-step[hidden] {
  display: none;
}

.step-label {
  margin: 0 0 -6px;
  color: var(--clay);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.wizard-step h3 {
  margin: 0;
  color: var(--coffee);
  font-size: 22px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form-field {
  margin: 0;
  padding: 0;
  border: 0;
  scroll-margin-top: 120px;
}

label,
legend {
  display: block;
  margin-bottom: 9px;
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: var(--warm-white);
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.4;
}

input {
  min-height: 50px;
  padding: 0 16px;
}

textarea {
  min-height: 86px;
  padding: 14px 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(43, 38, 35, 0.54);
}

.field-hint,
.date-helper,
.schedule-note,
.submit-note {
  margin: 8px 0 0;
  color: rgba(43, 38, 35, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.date-helper:empty,
.field-error:empty,
.form-notice:empty {
  display: none;
}

.field-error,
.form-notice {
  margin: 8px 0 0;
  color: var(--error-text);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border: 2px solid var(--error-border);
  background: var(--error-bg);
  box-shadow: 0 0 0 4px rgba(165, 97, 80, 0.14);
}

.chip-field.is-invalid .select-chips {
  padding: 12px;
  border: 2px solid var(--error-border);
  border-radius: 18px;
  background: var(--error-bg);
  box-shadow: 0 0 0 4px rgba(165, 97, 80, 0.14);
}

.select-chips {
  align-items: center;
}

.select-chip {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(83, 60, 44, 0.16);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--coffee);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.select-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(83, 60, 44, 0.32);
}

.select-chip.is-selected,
.select-chip[aria-pressed="true"] {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.select-chip.is-disabled,
.select-chip:disabled {
  background: #EDE6DE;
  color: rgba(43, 38, 35, 0.44);
  border-color: rgba(83, 60, 44, 0.10);
  cursor: not-allowed;
  opacity: 0.8;
  transform: none;
}

.select-chip.is-disabled:hover,
.select-chip:disabled:hover {
  transform: none;
}

.select-chip .chip-status {
  display: none;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.15;
  font-weight: 700;
}

.select-chip.is-unavailable .chip-status {
  display: block;
}

.select-chips--hours .select-chip {
  display: inline-flex;
  min-width: 108px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.date-chips .select-chip {
  min-width: 94px;
}

.wizard-next,
#submitButton,
#confirmDateButton {
  width: 100%;
}

.request-summary {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: var(--warm-white);
}

.request-summary h4 {
  margin: 0 0 12px;
  color: var(--coffee);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.request-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.request-summary div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
}

.request-summary dt,
.request-summary dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.request-summary dt {
  color: var(--coffee);
  font-weight: 700;
}

.request-summary dd {
  color: rgba(43, 38, 35, 0.78);
}

.before-section {
  padding: 26px 20px 72px;
  background: var(--bone);
}

.before-container {
  width: min(100%, 760px);
  margin: 0 auto;
}

.before-container h2 {
  margin-bottom: 18px;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--coffee);
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.faq-question strong {
  color: var(--clay);
  font-size: 20px;
  line-height: 1;
}

.faq-answer {
  padding: 0 18px 16px;
}

.faq-answer p {
  margin: 0;
  color: rgba(43, 38, 35, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  padding: 30px 20px;
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.78);
}

.footer-container {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-container p {
  margin: 0;
}

.footer-brand {
  color: var(--white);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

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

.footer-links a:hover {
  text-decoration: underline;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(43, 38, 35, 0.44);
}

.sheet-backdrop[hidden],
.date-sheet[hidden] {
  display: none;
}

.date-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  width: min(100%, 680px);
  max-height: min(86vh, 720px);
  margin: 0 auto;
  padding: 10px 20px calc(20px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: var(--white);
  box-shadow: 0 -18px 60px rgba(43, 38, 35, 0.22);
  overflow: auto;
}

.date-sheet__handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(83, 60, 44, 0.22);
}

.date-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.date-sheet__header h2 {
  margin: 0;
  color: var(--coffee);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.date-sheet__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: var(--bone);
  color: var(--coffee);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.date-sheet__month {
  margin: 0 0 14px;
  color: rgba(43, 38, 35, 0.68);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.date-sheet__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.date-option {
  min-height: 62px;
  padding: 9px 8px;
  border: 1px solid rgba(83, 60, 44, 0.14);
  border-radius: 16px;
  background: var(--bone);
  color: var(--coffee);
  cursor: pointer;
  text-align: center;
}

.date-option span,
.date-option small {
  display: block;
}

.date-option span {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.date-option strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.2;
}

.date-option small {
  margin-top: 1px;
  color: rgba(43, 38, 35, 0.58);
  font-size: 10px;
}

.date-option.is-selected {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.date-option.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.date-option:disabled {
  background: #EDE6DE;
  color: rgba(43, 38, 35, 0.36);
  cursor: not-allowed;
}

body.sheet-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 28px 34px;
  }

  .hero__media img {
    height: 360px;
  }

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

  .location-card__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .hero__container {
    padding: 38px 20px 26px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.05;
  }

  .hero__subtitle {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .hero__actions,
  .location-card__actions {
    display: grid;
    gap: 10px;
  }

  .button--primary-action,
  .button--secondary-action,
  .button--ghost-action {
    width: 100%;
    min-height: 50px;
  }

  .hero__media img {
    height: 190px;
  }

  .location-section {
    padding: 0 14px 30px;
  }

  .location-card {
    padding: 20px;
    border-radius: 22px;
  }

  .booking-section {
    padding: 24px 10px 32px;
  }

  .booking-card {
    width: 100%;
    padding: 22px;
    border-radius: 22px;
  }

  .booking-card h2,
  .before-container h2 {
    font-size: clamp(26px, 8vw, 30px);
    line-height: 1.16;
  }

  .select-chips {
    gap: 8px;
  }

  .select-chip {
    min-height: 44px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .date-chips,
  .select-chips--hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-chips .select-chip,
  .select-chips--hours .select-chip {
    width: 100%;
    min-width: 0;
  }

  .request-summary div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .before-section {
    padding: 22px 14px 58px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
