:root {
  --ivory: #faf8f4;
  --paper: #fffdf9;
  --ink: #181716;
  --muted: #6f6a64;
  --line: #e8e0d4;
  --gold: #b9975b;
  --gold-dark: #8d6b32;
  --sage: #76856e;
  --blush: #b96d62;
  --shadow: 0 20px 60px rgba(24, 23, 22, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(250, 248, 244, 0.86);
  border-bottom: 1px solid rgba(232, 224, 212, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 94vh);
  overflow: hidden;
  padding: 130px clamp(20px, 7vw, 96px) 84px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 23, 22, 0.78), rgba(24, 23, 22, 0.36) 48%, rgba(24, 23, 22, 0.1)),
    linear-gradient(0deg, rgba(24, 23, 22, 0.35), rgba(24, 23, 22, 0));
}

.hero-content {
  align-self: end;
  width: min(620px, 100%);
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.96;
}

h1 {
  max-width: 11ch;
  font-size: clamp(58px, 9vw, 112px);
}

h2 {
  font-size: clamp(38px, 6vw, 72px);
}

h3 {
  font-size: 30px;
}

.hero-copy {
  width: min(540px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 253, 249, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.hero .button-primary {
  color: var(--ink);
  background: var(--paper);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 253, 249, 0.6);
  background: rgba(255, 253, 249, 0.08);
}

.button-outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button.full {
  width: 100%;
}

.quick-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--paper);
  background: var(--ink);
  scrollbar-width: none;
}

.quick-strip span {
  flex: 0 0 auto;
  color: rgba(255, 253, 249, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.booking-panel,
.booking-aside,
.cart-panel,
.contact-details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-panel {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
}

.booking-aside {
  padding: 28px;
  position: sticky;
  top: 96px;
}

.field-group {
  display: grid;
  gap: 8px;
}

label,
legend,
.legend-row span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(185, 151, 91, 0.32);
  outline-offset: 2px;
}

.hidden-field {
  display: none;
}

.choice-group {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group.no-gap {
  gap: 8px;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 8px;
}

.segmented.compact {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.segment-button,
.slot-button,
.filter-button {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.segment-button.active,
.slot-button.active,
.filter-button.active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.slot-button:disabled {
  color: #a39b91;
  background: #f2eee7;
  cursor: not-allowed;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legend-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.legend-row small {
  color: var(--sage);
  font-weight: 800;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
  min-height: 96px;
}

.booking-summary {
  min-height: 58px;
  padding: 14px 16px;
  color: var(--muted);
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.availability-today {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.availability-today span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-today strong {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.trust-list,
.service-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.trust-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.trust-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-item,
.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-item {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
}

.service-item span,
.product-meta {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-item h3 {
  margin-top: 16px;
}

.service-item p {
  color: var(--muted);
}

.service-item strong {
  margin-top: auto;
  font-size: 20px;
}

.shop-section {
  background: #f2eee7;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--sage);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  min-height: 100%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8e0d4;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.product-card h3 {
  font-size: 25px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.add-button {
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-panel {
  position: fixed;
  z-index: 40;
  top: 84px;
  right: clamp(12px, 3vw, 36px);
  width: min(420px, calc(100vw - 24px));
  max-height: calc(100vh - 108px);
  overflow: auto;
  padding: 20px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.checkout-steps span {
  display: grid;
  place-items: center;
  height: 32px;
  color: var(--muted);
  background: #f5f0e8;
  border-radius: 999px;
  font-weight: 900;
}

.checkout-steps span.active {
  color: var(--paper);
  background: var(--ink);
}

.cart-items {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  background: #f8f4ee;
  border-radius: 8px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-step {
  display: none;
  gap: 14px;
}

.checkout-step.active {
  display: grid;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  background: #f8f4ee;
  border-radius: 8px;
}

.radio-row input {
  width: auto;
  min-height: auto;
}

.payment-note,
.cart-feedback {
  margin: 0;
  color: var(--muted);
}

.cart-total {
  margin: 0 0 6px;
  font-size: 18px;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--ink);
}

.about-copy {
  display: grid;
  align-content: center;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 64px);
  color: var(--paper);
}

.about-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  color: rgba(255, 253, 249, 0.78);
  font-size: 18px;
}

.about-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 20px;
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
}

.contact-details p {
  margin: 0;
  color: var(--muted);
}

.contact-layout iframe {
  width: 100%;
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: grayscale(30%);
}

.site-footer {
  display: grid;
  gap: 6px;
  padding: 30px clamp(20px, 5vw, 64px) 88px;
  color: rgba(255, 253, 249, 0.72);
  background: var(--ink);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  z-index: 50;
  left: 50%;
  right: auto;
  bottom: 12px;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  width: min(366px, calc(100vw - 24px));
  transform: translateX(-50%);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 48px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.mobile-cta a:last-child {
  background: var(--sage);
}

@media (max-width: 1080px) {
  .service-list,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout,
  .about-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-aside {
    position: static;
  }

  .about-band img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 22px;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 20px 76px;
  }

  .hero-copy {
    max-width: 21rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(24, 23, 22, 0.78), rgba(24, 23, 22, 0.25)),
      linear-gradient(90deg, rgba(24, 23, 22, 0.45), rgba(24, 23, 22, 0.1));
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  h2 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .booking-grid,
  .service-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    display: none;
  }

  .booking-section {
    padding-top: 96px;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-button {
    justify-content: center;
  }

  .cart-panel {
    top: 70px;
  }

  .mobile-cta {
    display: grid;
  }
}
