:root {
  --bg: #f7f7f4;
  --bg-soft: #ecefe8;
  --card: #ffffff;
  --card-soft: #f9faf7;
  --ink: #1d2429;
  --ink-soft: #5b6670;
  --line: rgba(34, 46, 55, 0.14);
  --line-strong: rgba(34, 46, 55, 0.24);
  --mint: #6a8f7f;
  --mint-deep: #446c5f;
  --sun: #e6aa62;
  --sun-soft: #f4cf9d;
  --max-width: 1120px;
  --shadow: 0 18px 38px rgba(24, 39, 48, 0.09);
  --shadow-soft: 0 8px 20px rgba(24, 39, 48, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 5%, rgba(230, 170, 98, 0.24), transparent 34%),
    radial-gradient(circle at 100% 2%, rgba(106, 143, 127, 0.2), transparent 35%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
}

.shape-a {
  width: 320px;
  height: 320px;
  left: -110px;
  top: -80px;
  background: rgba(230, 170, 98, 0.75);
  animation: floatA 16s ease-in-out infinite;
}

.shape-b {
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -120px;
  background: rgba(106, 143, 127, 0.6);
  animation: floatB 15s ease-in-out infinite;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: var(--max-width);
  margin: 16px auto 0;
  padding: 12px 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.topbar.compact {
  margin-top: 8px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, var(--mint-deep), #2f4f44);
}

.logo-text {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.topnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.topnav a {
  text-decoration: none;
  color: #49555f;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 10px;
  transition: color 180ms ease, background-color 180ms ease;
}

.topnav a:hover,
.topnav a.is-active {
  color: #203238;
  background: rgba(106, 143, 127, 0.16);
}

.top-cta {
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 9px 13px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.top-cta:hover {
  transform: translateY(-1px);
  background: rgba(230, 170, 98, 0.16);
}

main {
  max-width: var(--max-width);
  margin: 24px auto 64px;
  padding: 0 16px;
  display: grid;
  gap: 20px;
}

.hero {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 243, 0.95));
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 16px;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #5b6f77;
}

.hero-copy h1 {
  margin: 12px 0 0;
  max-width: 680px;
  font-family: "Prata", "Times New Roman", serif;
  font-size: clamp(2rem, 6.4vw, 3.3rem);
  line-height: 1.06;
}

.hero-copy p {
  margin: 14px 0 0;
  max-width: 680px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-feature {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(106, 143, 127, 0.1), rgba(230, 170, 98, 0.09));
  padding: 16px;
}

.hero-feature h2 {
  margin: 0;
  font-family: "Prata", "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-feature ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #405058;
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--mint), var(--mint-deep));
  box-shadow: 0 8px 18px rgba(40, 76, 66, 0.2);
}

.btn-secondary {
  color: #2e3c43;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-card {
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.quick-card h2 {
  margin: 0;
  font-family: "Prata", "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.quick-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.content {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.content h3 {
  margin: 8px 0 0;
  font-family: "Prata", "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  line-height: 1.08;
}

.content p {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 22px;
}

.service-columns {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card-soft);
  padding: 14px;
}

.service-card h4 {
  margin: 4px 0 10px;
  font-size: 1.08rem;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-list li {
  border-radius: 12px;
  border: 1px solid rgba(34, 46, 55, 0.1);
  background: #fff;
  padding: 10px;
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  font-size: 0.95rem;
}

.service-list span {
  margin-top: 4px;
  font-size: 0.88rem;
  color: #66737d;
}

.price-table {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 13px;
  background: #ffffff;
}

.price-row:nth-child(2n) {
  background: #f7faf7;
}

.price-row strong {
  color: #23343a;
}

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

.local-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card-soft);
  padding: 14px;
}

.local-card h4 {
  margin: 0;
  font-size: 1.02rem;
}

.local-card p {
  margin-top: 8px;
  font-size: 0.91rem;
}

.quick-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  border-radius: 11px;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font-family: inherit;
  background: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(106, 143, 127, 0.3);
  border-color: rgba(68, 108, 95, 0.45);
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto 34px;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #26353d, #1e2a31);
  color: rgba(243, 248, 244, 0.96);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.footer h5 {
  margin: 0;
  font-family: "Prata", "Times New Roman", serif;
  font-size: 1.35rem;
}

.footer p {
  margin: 4px 0 0;
  color: rgba(219, 229, 224, 0.88);
  font-size: 0.92rem;
}

.contact-items a {
  text-decoration: none;
}

.contact-items a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(16px, 18px) scale(1.06);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -14px) scale(1.05);
  }
}

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .hero-layout,
  .split,
  .service-columns,
  .local-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  main {
    margin-top: 16px;
  }

  .hero,
  .content {
    padding: 22px 18px;
    border-radius: 18px;
  }

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

  .topnav a,
  .top-cta {
    font-size: 0.84rem;
  }
}
