:root {
  --ink: #241a12;
  --muted: #766b5e;
  --paper: #fff9ef;
  --surface: #ffffff;
  --sky: #d8a84f;
  --sky-soft: #fff0cf;
  --blue: #b88222;
  --blue-deep: #4a3217;
  --aqua: #ead3a0;
  --pearl: #fff4dc;
  --champagne: #f2cf78;
  --line: rgba(74, 50, 23, 0.14);
  --shadow: 0 24px 70px rgba(99, 64, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 36%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.04rem;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3d486, #b88222);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  box-shadow: 0 10px 24px rgba(184, 130, 34, 0.24);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 28px;
  padding: clamp(72px, 12vh, 138px) clamp(18px, 4vw, 56px) 34px;
  background:
    linear-gradient(90deg, rgba(36, 26, 18, 0.9), rgba(86, 56, 20, 0.58) 48%, rgba(216, 168, 79, 0.16)),
    url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=2200&q=82") center/cover;
  color: #fff;
}

.hero-content {
  max-width: 760px;
  padding-bottom: clamp(28px, 7vh, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe6aa;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #9a6818, #d8a84f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(154, 104, 24, 0.28);
}

.secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.54);
}

.glass {
  background: rgba(255, 230, 170, 0.15);
  color: #fff;
  border-color: rgba(255, 230, 170, 0.42);
  backdrop-filter: blur(12px);
}

.compact {
  min-height: 44px;
  padding: 10px 14px;
}

.hero-panel {
  width: min(100%, 390px);
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 230, 170, 0.48);
  border-radius: 8px;
  background: rgba(255, 246, 226, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(36, 26, 18, 0.26);
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.rating {
  margin-right: 12px;
  font-size: 2rem;
  font-weight: 900;
}

.stars {
  color: var(--champagne);
  letter-spacing: 0;
}

.intro-band {
  padding: 0 clamp(18px, 4vw, 56px);
  transform: translateY(-26px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.intro-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.intro-grid article:last-child {
  border-right: 0;
}

.intro-grid span,
.hours span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.intro-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(54px, 9vw, 104px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(99, 64, 22, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 168, 79, 0.55);
  box-shadow: 0 24px 54px rgba(99, 64, 22, 0.14);
}

.service-photo {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-card h3 {
  margin: 24px 24px 0;
}

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

.service-list {
  display: grid;
  gap: 10px;
  margin: 22px 24px 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 760;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(216, 168, 79, 0.14);
  flex: 0 0 auto;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sky-soft), #ffffff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 79, 0.28);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  min-height: 560px;
  background: linear-gradient(135deg, var(--blue-deep), #7a5019);
  color: #fff;
}

.feature-image {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(74, 50, 23, 0.08), rgba(74, 50, 23, 0.22)),
    url("https://images.unsplash.com/photo-1519014816548-bf5fe059798b?auto=format&fit=crop&w=1700&q=82") center/cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 84px);
}

.feature-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.text-link {
  width: fit-content;
  margin-top: 26px;
  color: #ffe6aa;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.booking-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 168, 79, 0.25), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fff8e9 100%);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(99, 64, 22, 0.12);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 50, 74, 0.16);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(216, 168, 79, 0.18);
}

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

.form-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.booking-note {
  align-self: start;
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--blue-deep), #8a5a1c);
  color: #fff;
  box-shadow: 0 22px 60px rgba(74, 50, 23, 0.22);
}

.booking-note h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.booking-note p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 230, 170, 0.16);
  color: #fff0cf;
  font-size: 0.78rem;
  font-weight: 850;
}

.booking-mini {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-mini span {
  color: rgba(255, 255, 255, 0.74);
}

.schedule-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--pearl) 100%);
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}

.hours {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 80, 126, 0.09);
}

.hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours strong {
  text-align: right;
}

.note {
  align-self: start;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--blue-deep), #8a5a1c);
  color: #fff;
  box-shadow: 0 20px 54px rgba(74, 50, 23, 0.22);
}

.note p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 207, 120, 0.32), transparent 32%),
    linear-gradient(135deg, var(--sky-soft), #ffffff 58%, #fff4dc);
}

.contact > div:first-child {
  max-width: 740px;
}

.contact p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .feature,
  .booking-layout,
  .schedule-layout,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    padding-bottom: 12px;
  }

  .hero-panel {
    margin: 0;
  }

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

  .intro-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid article:last-child {
    border-bottom: 0;
  }

  .contact-actions {
    margin-top: 0;
  }

  .form-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .button {
    width: 100%;
  }

  .hero {
    background-position: 60% center;
  }

  h1 {
    font-size: clamp(3.4rem, 22vw, 5.2rem);
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hours strong {
    text-align: left;
  }

  footer {
    flex-direction: column;
  }

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