:root {
    --ivory: #fffaf2;
    --blush: #ffd9d8;
    --blush-soft: #fff0ee;
    --sage: #8fae88;
    --sage-deep: #506d4f;
    --raspberry: #c83c5a;
    --raspberry-dark: #9f2942;
    --walnut: #3a2a24;
    --cocoa: #6b5048;
    --mint: #e7f2df;
    --white: #ffffff;
    --shadow: 0 28px 80px rgba(90, 55, 49, 0.18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--walnut);
    background: var(--ivory);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px clamp(20px, 4vw, 56px);
    color: var(--walnut);
    transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
    padding-block: 13px;
    background: rgba(255, 250, 242, 0.92);
    box-shadow: 0 14px 40px rgba(58, 42, 36, 0.1);
    backdrop-filter: blur(18px);
}

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

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    background: var(--raspberry);
    border: 2px solid rgba(255, 255, 255, 0.64);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(200, 60, 90, 0.24);
    font-family: "Bricolage Grotesque", "Inter", sans-serif;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-weight: 900;
}

.brand small {
    color: var(--cocoa);
    font-size: 0.78rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.94rem;
    font-weight: 800;
}

.main-nav a {
    opacity: 0.78;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    opacity: 1;
}

.nav-cta {
    padding: 12px 18px;
    color: var(--white);
    background: var(--raspberry);
    border-radius: var(--radius);
    opacity: 1;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
    gap: clamp(34px, 5vw, 86px);
    min-height: 94vh;
    padding: 132px clamp(20px, 6vw, 88px) 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 217, 216, 0.95), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(143, 174, 136, 0.38), transparent 28%),
        linear-gradient(135deg, var(--ivory) 0%, #fff4ea 45%, var(--blush-soft) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    background: var(--white);
    clip-path: polygon(0 42%, 100% 12%, 100% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    align-self: center;
    max-width: 760px;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Bricolage Grotesque", "Inter", sans-serif;
    font-weight: 800;
    line-height: 0.95;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: 6.8rem;
}

h2 {
    margin-bottom: 18px;
    font-size: 4.25rem;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.hero-copy {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--cocoa);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--raspberry);
    box-shadow: 0 18px 34px rgba(200, 60, 90, 0.25);
}

.button-primary:hover {
    background: var(--raspberry-dark);
}

.button-secondary {
    color: var(--walnut);
    border-color: rgba(58, 42, 36, 0.18);
    background: rgba(255, 255, 255, 0.66);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
    margin: 0;
    border-top: 1px solid rgba(58, 42, 36, 0.14);
}

.hero-stats div {
    padding: 18px 18px 0 0;
}

.hero-stats dt {
    color: var(--sage-deep);
    font-weight: 900;
}

.hero-stats dd {
    margin: 4px 0 0;
    color: var(--cocoa);
    font-size: 0.9rem;
}

.hero-gallery {
    position: relative;
    z-index: 1;
    align-self: center;
    min-height: 620px;
}

.hero-photo {
    position: absolute;
    border: 9px solid var(--white);
    border-radius: 26px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-photo-main {
    top: 8px;
    right: 0;
    width: min(510px, 88%);
    height: 540px;
}

.hero-photo-detail {
    left: 0;
    bottom: 0;
    width: min(310px, 54%);
    height: 270px;
}

.hero-note {
    position: absolute;
    right: 28px;
    bottom: 30px;
    max-width: 270px;
    padding: 18px;
    color: var(--walnut);
    background: var(--mint);
    border: 1px solid rgba(80, 109, 79, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(58, 42, 36, 0.14);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note strong {
    margin-bottom: 4px;
    font-family: "Bricolage Grotesque", "Inter", sans-serif;
    font-size: 1.22rem;
}

.hero-note span {
    color: var(--sage-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

.section {
    padding: clamp(70px, 9vw, 120px) 0;
}

.section-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.intro {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.88fr);
    gap: clamp(32px, 6vw, 90px);
    align-items: start;
}

.intro-copy {
    display: grid;
    gap: 18px;
    padding-top: 10px;
}

.intro-copy p,
.section-heading p {
    color: var(--cocoa);
    font-size: 1.06rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading.compact {
    max-width: 620px;
}

.services {
    background: linear-gradient(180deg, var(--white), var(--blush-soft));
}

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

.service-card,
.review-grid figure,
.booking-panel,
.story-card {
    border: 1px solid rgba(58, 42, 36, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 36px rgba(90, 55, 49, 0.08);
}

.service-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -54px;
    width: 136px;
    height: 136px;
    background: var(--blush);
    border-radius: 50%;
    opacity: 0.58;
}

.service-card:nth-child(even)::after {
    background: var(--mint);
}

.service-card p,
.steps p,
.review-grid blockquote,
.booking-panel p,
.site-footer p,
.story-card p {
    color: var(--cocoa);
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 34px;
    place-items: center;
    color: var(--white);
    background: var(--sage-deep);
    border-radius: 50%;
    font-size: 0.88rem;
    font-weight: 900;
}

.image-story {
    padding-top: 36px;
    background: var(--blush-soft);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.72fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
}

.story-image-wrap {
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.story-card {
    padding: clamp(28px, 5vw, 52px);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--sage-deep);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--raspberry);
    border-radius: 50%;
}

.process {
    background: var(--mint);
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
    gap: clamp(32px, 6vw, 96px);
}

.process-heading img {
    width: 100%;
    height: 330px;
    margin-top: 30px;
    border: 9px solid var(--white);
    border-radius: 24px;
    box-shadow: 0 18px 54px rgba(80, 109, 79, 0.18);
    object-fit: cover;
}

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

.steps li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(80, 109, 79, 0.16);
    border-radius: var(--radius);
}

.steps span {
    color: var(--raspberry);
    font-weight: 900;
}

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

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

.review-grid figure {
    margin: 0;
    padding: 28px;
}

.review-grid blockquote {
    min-height: 120px;
    margin: 0 0 24px;
    font-size: 1.02rem;
}

.review-grid figcaption {
    color: var(--raspberry-dark);
    font-weight: 900;
}

.booking {
    background:
        linear-gradient(135deg, rgba(200, 60, 90, 0.94), rgba(80, 109, 79, 0.92)),
        var(--raspberry);
}

.booking-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding: clamp(28px, 5vw, 62px);
}

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

.booking-form label {
    display: grid;
    gap: 7px;
    color: var(--cocoa);
    font-size: 0.88rem;
    font-weight: 900;
}

.booking-form input,
.booking-form select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    color: var(--walnut);
    background: var(--ivory);
    border: 1px solid rgba(58, 42, 36, 0.16);
    border-radius: var(--radius);
}

.site-footer {
    padding: 34px 0;
    color: var(--white);
    background: var(--walnut);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer a,
.site-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    text-align: right;
}

@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-gallery {
        min-height: 560px;
    }

    .hero-photo-main {
        right: 0;
        width: 76%;
        height: 500px;
    }

    .hero-photo-detail {
        width: 42%;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
        position: relative;
        z-index: 22;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 21;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 24px;
        color: var(--walnut);
        background: var(--ivory);
        font-size: 1.3rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta {
        color: var(--white);
    }

    .intro-grid,
    .process-grid,
    .booking-panel,
    .story-grid {
        grid-template-columns: 1fr;
    }

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

    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding-inline: 18px;
    }

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

    h1 {
        font-size: 3.25rem;
    }

    h2 {
        font-size: 2.45rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions,
    .footer-grid {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats,
    .service-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        padding-top: 14px;
    }

    .hero-gallery {
        min-height: 430px;
    }

    .hero-photo {
        border-width: 6px;
        border-radius: 20px;
    }

    .hero-photo-main {
        width: 92%;
        height: 360px;
    }

    .hero-photo-detail {
        width: 48%;
        height: 170px;
    }

    .hero-note {
        right: 8px;
        bottom: 4px;
        max-width: 230px;
        padding: 14px;
    }

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

    .story-image-wrap img {
        height: 360px;
    }

    .process-heading img {
        height: 260px;
    }

    .site-footer a,
    .site-footer span {
        text-align: left;
    }
}
