:root {
  --ink: #18241c;
  --ink-soft: #344136;
  --muted: #69746b;
  --leaf: #31563b;
  --leaf-deep: #183821;
  --sage: #8fa178;
  --sage-soft: #e8eee0;
  --gold: #d6aa45;
  --gold-soft: #f4e3b1;
  --rose: #c98974;
  --linen: #fffaf1;
  --paper: #fffdf8;
  --mist: #f2f5ec;
  --line: rgba(49, 86, 59, 0.18);
  --shadow: 0 22px 60px rgba(24, 36, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8eb 0%, #f5f7ef 42%, #fffdf8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(24, 56, 33, 0.76);
  color: var(--paper);
  box-shadow: 0 14px 44px rgba(14, 29, 18, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(244, 227, 177, 0.72);
  background: var(--paper);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a,
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(255, 253, 248, 0.14);
}

.header-action {
  color: var(--leaf-deep);
  background: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px max(18px, calc((100vw - 1180px) / 2)) 26px;
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 31, 19, 0.86) 0%, rgba(13, 31, 19, 0.58) 42%, rgba(13, 31, 19, 0.14) 100%),
    linear-gradient(180deg, rgba(13, 31, 19, 0.26) 0%, rgba(13, 31, 19, 0.04) 42%, rgba(13, 31, 19, 0.72) 100%),
    url("/assets/img/site/hero-guatape.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: end;
  width: 100%;
}

.hero-copy {
  max-width: 780px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  color: var(--leaf-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  color: var(--leaf-deep);
  font-size: 22px;
  line-height: 1.12;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(19px, 2.2vw, 25px);
}

.hero-actions,
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--paper);
  background: var(--leaf-deep);
  box-shadow: 0 14px 32px rgba(24, 56, 33, 0.24);
}

.hero .btn-primary {
  color: var(--leaf-deep);
  background: var(--gold-soft);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.btn-quiet,
.btn-soft {
  color: var(--leaf-deep);
  background: rgba(255, 253, 248, 0.78);
  border-color: rgba(255, 253, 248, 0.36);
}

.btn-full {
  width: 100%;
}

.hero-note {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  color: var(--leaf-deep);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-note img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(214, 170, 69, 0.38);
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.05;
}

.hero-note span {
  color: var(--ink-soft);
}

.hero-service-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 42px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.13);
  backdrop-filter: blur(12px);
}

.hero-service-strip a {
  display: grid;
  gap: 8px;
  min-height: 134px;
  padding: 22px;
  border-right: 1px solid rgba(255, 253, 248, 0.2);
}

.hero-service-strip a:last-child {
  border-right: 0;
}

.hero-service-strip span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.hero-service-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1;
}

.hero-service-strip small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 15px;
}

.section-copy {
  max-width: 820px;
}

.section-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
}

.catalog-section,
.intro-band,
.story-section,
.local-section,
.reserve-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.catalog-section {
  padding: 82px 0 74px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 270px);
  gap: 16px;
  margin: 34px 0 28px;
}

.feature-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 260px;
  cursor: pointer;
  background: var(--leaf-deep);
  box-shadow: 0 16px 44px rgba(24, 36, 28, 0.13);
}

.feature-tile--large {
  grid-row: span 2;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-tile:hover img {
  transform: scale(1.05);
}

.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 56, 33, 0.02) 0%, rgba(24, 56, 33, 0.78) 100%);
}

.feature-tile div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--paper);
}

.feature-tile span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tile h3 {
  color: var(--paper);
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-deep);
  background: rgba(255, 253, 248, 0.82);
  cursor: pointer;
  font-weight: 900;
}

.filter-btn.is-active {
  color: var(--paper);
  border-color: var(--leaf-deep);
  background: var(--leaf-deep);
}

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

.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 215px 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(24, 36, 28, 0.08);
}

.service-card--loading,
.service-card--empty {
  grid-template-rows: none;
  padding: 24px;
  min-height: 220px;
}

.service-media {
  height: 215px;
  overflow: hidden;
  background: var(--sage-soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  padding: 22px;
}

.service-card .tag {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: var(--sage-soft);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.service-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.service-price {
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-price strong {
  color: var(--leaf-deep);
  font-size: 24px;
}

.service-price .btn {
  min-height: 42px;
  padding: 0 15px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.intro-band div {
  padding: 26px;
  background: rgba(255, 253, 248, 0.86);
}

.intro-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.intro-band strong {
  display: block;
  color: var(--leaf-deep);
  font-size: 18px;
  line-height: 1.24;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 94px 0 66px;
}

.story-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-section .section-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.local-section {
  padding: 18px 0 62px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.local-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(24, 36, 28, 0.08);
}

.local-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.local-grid strong,
.local-grid span {
  display: block;
  padding-inline: 22px;
}

.local-grid strong {
  padding-top: 22px;
  color: var(--leaf-deep);
  font-size: 20px;
  line-height: 1.15;
}

.local-grid span {
  padding-top: 12px;
  padding-bottom: 24px;
  color: var(--ink-soft);
}

.reserve-section {
  padding: 0 0 86px;
}

.reserve-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(24, 56, 33, 0.96), rgba(49, 86, 59, 0.92)),
    url("/assets/img/site/botanical-products.jpg") center / cover no-repeat;
  color: var(--paper);
  box-shadow: var(--shadow);
}

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

.reserve-card p:not(.eyebrow) {
  max-width: 690px;
  opacity: 0.84;
}

.reserve-card .btn-primary {
  color: var(--leaf-deep);
  background: var(--gold-soft);
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.booking-drawer[hidden] {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(25, 37, 27, 0.46);
}

.drawer-panel {
  position: fixed;
  z-index: 61;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  overflow: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--mist);
  color: var(--leaf-deep);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.drawer-price {
  margin: 10px 0 22px;
  color: var(--muted);
  font-weight: 900;
}

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

label,
fieldset {
  display: grid;
  gap: 7px;
  color: var(--leaf-deep);
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-choice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.payment-choice label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 800;
}

.payment-choice input {
  width: auto;
  min-height: 0;
}

.form-alert {
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff3d7;
  color: #765728;
  font-weight: 800;
}

.form-alert.is-error {
  background: #ffe6e1;
  color: #863326;
}

.form-alert.is-success {
  background: #e8f3df;
  color: #365b2d;
}

.bold-area {
  margin-top: 18px;
}

.checkout-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 16px 80px;
}

.checkout-panel {
  width: min(680px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.checkout-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 20px;
}

.status-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.status-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(216, 169, 61, 0.16);
}

.status-card.is-paid .status-dot {
  background: #4f9a5d;
  box-shadow: 0 0 0 8px rgba(79, 154, 93, 0.16);
}

.checkout-details {
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-inner,
  .story-section,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 460px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .feature-tile,
  .feature-tile--large {
    min-height: 330px;
    grid-row: auto;
  }

  .intro-band,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .reserve-card,
  .site-footer {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    padding: 112px 10px 16px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(13, 31, 19, 0.8) 0%, rgba(13, 31, 19, 0.48) 45%, rgba(13, 31, 19, 0.86) 100%),
      url("/assets/img/site/hero-guatape.jpg") center / cover no-repeat;
  }

  .hero-copy {
    padding-bottom: 14px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .hero-note {
    padding: 18px;
  }

  .hero-service-strip {
    grid-template-columns: 1fr;
  }

  .hero-service-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  }

  .hero-service-strip a:last-child {
    border-bottom: 0;
  }

  .catalog-section,
  .intro-band,
  .story-section,
  .local-section,
  .reserve-section,
  .site-footer {
    width: calc(100% - 20px);
  }

  .catalog-section {
    padding-top: 58px;
  }

  .feature-tile,
  .feature-tile--large {
    min-height: 285px;
  }

  .feature-tile div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-media {
    height: 190px;
  }

  .service-price {
    display: grid;
    align-items: start;
  }

  .story-section {
    padding-top: 64px;
  }

  .story-photo,
  .story-photo img {
    min-height: 330px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .drawer-panel {
    inset: auto 10px 10px;
    top: 10px;
    width: calc(100% - 20px);
    padding: 22px;
  }
}
