:root {
    --pine: #2f615b;
    --sage: #dfeee7;
    --sea: #6fa9ad;
    --mist: #f5fbfb;
    --cream: #fffdf8;
    --ink: #1d3032;
    --muted: #5e6f70;
    --line: #d8e7e4;
    --rose: #b73542;
    --gold: #c79d55;
    --white: #ffffff;
    --shadow: 0 18px 44px rgba(31, 67, 67, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: "Lato", Arial, sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at 20% 0%, rgba(223, 238, 231, 0.9), transparent 34rem),
        linear-gradient(180deg, var(--mist), var(--cream));
}

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.08;
    letter-spacing: 0;
}

.wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--pine);
    color: var(--white);
    font-size: 0.92rem;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(216, 231, 228, 0.85);
    backdrop-filter: blur(14px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--pine);
    font-family: "Lato", Arial, sans-serif;
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 23px;
    list-style: none;
    color: var(--muted);
    font-weight: 700;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover,
.home .nav-home,
.experience .nav-experience,
.services .nav-services,
.about .nav-about,
.book .nav-book {
    color: var(--pine);
}

.nav-links .button,
.nav-links .button:hover,
.book .nav-book {
    color: var(--white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid var(--pine);
    border-radius: 6px;
    background: var(--pine);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(47, 97, 91, 0.18);
}

.button.light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--pine);
    border-color: rgba(255, 255, 255, 0.92);
}

.button.outline {
    background: transparent;
    color: var(--pine);
    box-shadow: none;
}

.hero {
    min-height: 610px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(20, 42, 44, 0.78), rgba(20, 42, 44, 0.42), rgba(20, 42, 44, 0.08)),
        url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=85") center/cover;
    color: var(--white);
}

.hero.compact {
    min-height: 420px;
}

.hero.experience-hero {
    background:
        linear-gradient(90deg, rgba(20, 42, 44, 0.76), rgba(20, 42, 44, 0.36), rgba(20, 42, 44, 0.08)),
        url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero.services-hero {
    background:
        linear-gradient(90deg, rgba(20, 42, 44, 0.76), rgba(20, 42, 44, 0.38), rgba(20, 42, 44, 0.08)),
        url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero.about-hero {
    background:
        linear-gradient(90deg, rgba(20, 42, 44, 0.76), rgba(20, 42, 44, 0.38), rgba(20, 42, 44, 0.08)),
        url("https://images.unsplash.com/photo-1596178065887-1198b6148b2b?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero.book-hero {
    background:
        linear-gradient(90deg, rgba(20, 42, 44, 0.76), rgba(20, 42, 44, 0.40), rgba(20, 42, 44, 0.08)),
        url("https://images.unsplash.com/photo-1522336572468-97b06e8ef143?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-content {
    width: min(720px, 100%);
    padding: 86px 0 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #e7f5f1;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.8rem);
    margin-bottom: 18px;
}

.hero p {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

section {
    padding: 74px 0;
}

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-title h2 {
    color: var(--pine);
    font-size: clamp(2.2rem, 4.6vw, 3.45rem);
}

.section-title p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.08rem;
}

.rule {
    width: 100px;
    height: 2px;
    margin: 20px 0 0;
    background: var(--rose);
}

.section-title.center .rule {
    margin-right: auto;
    margin-left: auto;
}

.cards-3,
.review-grid,
.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card,
.review-card,
.visit-card,
.booking-panel,
.widget-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card,
.review-card,
.visit-card {
    padding: 28px;
}

.card {
    border-top: 4px solid var(--sea);
}

.card h3,
.review-card h3,
.visit-card h3 {
    margin-bottom: 10px;
    color: var(--pine);
    font-size: 1.35rem;
}

.card p,
.review-card p,
.visit-card p {
    color: var(--muted);
}

.feature-band {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.experience-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.experience-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.experience-copy {
    padding: clamp(30px, 5vw, 58px);
}

.experience-copy h2 {
    color: var(--pine);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.steps {
    display: grid;
    gap: 10px;
    margin: 22px 0 24px;
    color: var(--ink);
    font-weight: 700;
}

.steps span {
    color: var(--muted);
    font-weight: 400;
}

.focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.focus-list span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--sage);
    color: var(--pine);
    font-weight: 900;
}

.reviews {
    background: var(--mist);
}

.stars {
    margin-bottom: 12px;
    color: #d6a536;
    font-size: 1.2rem;
    letter-spacing: 0;
}

.review-card p:first-of-type {
    font-style: italic;
}

.review-name {
    display: block;
    margin-top: 18px;
    color: var(--ink);
    font-weight: 900;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 286px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(31, 67, 67, 0.08);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--pine);
    font-size: 1.45rem;
}

.service-card p {
    color: var(--muted);
}

.best-for {
    margin-top: 14px;
    color: var(--ink);
    font-weight: 900;
}

.price-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
}

.price-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--sage);
    color: var(--pine);
    font-size: 0.88rem;
    font-weight: 900;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    margin-top: 34px;
}

.benefit {
    min-width: 0;
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    color: var(--rose);
}

.benefit-icon svg {
    width: 72px;
    height: 72px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit p {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.text-panel {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.text-panel h2,
.text-panel h3 {
    margin-bottom: 14px;
    color: var(--pine);
}

.clean-list {
    display: grid;
    gap: 15px;
    margin-top: 18px;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.clean-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sea);
    font-weight: 900;
}

.visit-card.hours-card {
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)),
        url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=900&q=80") center/cover;
}

.hours-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 16px 0 18px;
    color: var(--ink);
    font-size: 1.24rem;
    font-weight: 700;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 18px 0 20px;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 46px;
    border-radius: 4px;
    background: var(--white);
    border: 1px solid #e4e8e8;
    box-shadow: 0 4px 10px rgba(31, 67, 67, 0.08);
    font-weight: 900;
}

.pay-visa {
    color: #253b86;
    font-size: 1.65rem;
    font-style: italic;
}

.pay-mastercard {
    position: relative;
}

.pay-mastercard::before,
.pay-mastercard::after {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    top: 5px;
}

.pay-mastercard::before {
    left: 23px;
    background: #eb001b;
}

.pay-mastercard::after {
    right: 23px;
    background: #f79e1b;
    mix-blend-mode: multiply;
}

.pay-cash {
    width: 76px;
    background: #2f6630;
    border: 3px solid #1f4f20;
    color: var(--white);
    font-size: 1.55rem;
}

.license-line {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 26px;
    align-items: start;
}

.booking-panel,
.widget-card {
    padding: 28px;
}

.booking-panel h2,
.widget-card h2 {
    margin-bottom: 14px;
    color: var(--pine);
}

.booking-panel ul {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    list-style: none;
}

.booking-panel li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.booking-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sea);
    font-weight: 900;
}

.hours-mini {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.square-widget {
    min-height: 640px;
    overflow: hidden;
}

.square-widget iframe {
    width: 100%;
    min-height: 640px;
    border: none;
}

.map-link {
    color: var(--pine);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer {
    padding: 34px 0;
    background: var(--pine);
    color: var(--white);
    text-align: center;
}

.footer p {
    opacity: 0.92;
}

@media (max-width: 920px) {
    .topbar .wrap,
    .nav-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .cards-3,
    .review-grid,
    .visit-grid,
    .service-grid,
    .benefit-grid,
    .split,
    .booking-layout,
    .experience-card {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        gap: 22px;
    }

    .experience-card img {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .wrap {
        width: min(100% - 28px, 1120px);
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 70px 0 42px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 56px 0;
    }

    .nav-links {
        font-size: 0.94rem;
    }

    .button {
        width: 100%;
    }

    .hours-line {
        flex-direction: column;
        gap: 4px;
    }
}
