:root {
    --bg: #fffaf5;
    --bg-soft: #f8eee2;
    --text: #2e1f16;
    --muted: #71574a;
    --card: rgba(255, 255, 255, 0.8);
    --line: rgba(122, 95, 81, 0.2);
    --primary: #b66a4d;
    --primary-dark: #8a4c34;
    --accent: #d8ad6f;
    --shadow: 0 20px 45px rgba(69, 34, 21, 0.12);
    --radius: 20px;
    --container: min(1120px, 92vw);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 5%, #ffe6d7 0, transparent 35%),
        radial-gradient(circle at 90% 12%, #f8ddb4 0, transparent 28%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.page-glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

.page-glow-one {
    width: 280px;
    height: 280px;
    top: 20%;
    left: -90px;
    background: #ffc0a7;
}

.page-glow-two {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: 8%;
    background: #f6d39d;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section-pad {
    padding: 5.5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(243, 225, 210, 0.5), rgba(255, 250, 245, 0.8));
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.1;
    margin: 0;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(255, 250, 245, 0.78);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    gap: 1.4rem;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--primary);
    transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background: var(--text);
    transition: transform 0.2s ease;
}

.hero-grid {
    display: grid;
    gap: 2.3rem;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-copy {
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 12px 25px rgba(140, 74, 54, 0.28);
}

.btn-outline {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.75);
}

.hero-meta {
    margin-top: 1.8rem;
    display: grid;
    gap: 0.8rem;
}

.hero-meta div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
}

.hero-visual img {
    border-radius: calc(var(--radius) + 8px);
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.2rem 0;
}

.trust-grid article {
    padding: 1rem;
}

.trust-grid h3 {
    font-size: 1.55rem;
    margin-bottom: 0.3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.about-images img {
    border-radius: 18px;
    object-fit: cover;
    height: 100%;
    min-height: 320px;
    box-shadow: var(--shadow);
}

.section-head {
    margin-bottom: 1.8rem;
    text-align: center;
}

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

.service-card {
    padding: 1.1rem;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(128, 85, 60, 0.08);
    min-height: 132px;
}

.service-card i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.service-card h3 {
    font-size: 1.35rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1) {
    grid-column: span 4;
    min-height: 260px;
}

.gallery-grid img:nth-child(2) {
    grid-column: span 4;
    min-height: 260px;
}

.gallery-grid img:nth-child(3) {
    grid-column: span 4;
    min-height: 260px;
}

.gallery-grid img:nth-child(4) {
    grid-column: span 12;
    min-height: 300px;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: center;
}

.visit-content ul {
    padding: 0;
    margin: 1rem 0 1.3rem;
    list-style: none;
}

.visit-content li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--line);
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    min-height: 380px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.footer-wrap a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: #fff;
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero {
        padding-top: 3.8rem;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 245, 0.98);
        border-bottom: 1px solid var(--line);
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .main-nav a {
        padding: 0.9rem 1rem;
    }

    .main-nav.open {
        max-height: 260px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-images img {
        min-height: 220px;
    }

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

    .gallery-grid img,
    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4) {
        grid-column: span 12;
        min-height: 220px;
    }

    .section-pad {
        padding: 4.5rem 0;
    }
}
