:root {
    --cream: #fbf7f1;
    --blush: #f3dedc;
    --sage: #aeb7a0;
    --sage-dark: #738064;
    --ink: #382f2a;
    --muted: #756c66;
    --line: #e9ddd2;
    --white: #ffffff;
    --gold: #b99b6b;
    --teal: #6b9faa;
    --pale-blue: #eef6f7;
    --shadow: 0 18px 40px rgba(56,47,42,.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
    font-weight: 300;
}

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

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

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 6vw;
    min-height: 92px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
}

.site-logo {
    width: 82px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.main-nav a {
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.main-nav a:hover {
    border-color: var(--gold);
}

.cart-link {
    color: var(--sage-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    padding: 8px 12px;
}

main {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.08;
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(42px, 5vw, 58px);
}

h2 {
    font-size: clamp(34px, 4vw, 52px);
}

h3 {
    font-size: 30px;
}

p {
    margin: 0 0 18px;
    color: var(--muted);
}

.home-slider {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: var(--pale-blue);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 320px;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 320px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.65);
    padding: 0;
}

.slider-dots button.active {
    background: #fff;
}

.welcome-section {
    background: var(--pale-blue);
    text-align: center;
    padding: 48px 20px 58px;
}

.welcome-inner {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-small {
    color: var(--teal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.welcome-section h1 {
    color: var(--teal);
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
}

.welcome-section h1 em {
    font-style: italic;
}

.welcome-section p {
    color: #47727c;
    font-size: 16px;
    line-height: 1.7;
}

.btn,
.btn-soft {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.btn {
    border: 1px solid var(--ink);
    padding: 13px 30px;
    background: transparent;
}

.btn:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-soft {
    background: var(--teal);
    color: #fff;
    border-radius: 24px;
    padding: 10px 46px;
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
}

.btn-soft:hover {
    background: #5f909a;
    color: #fff;
}

.home-feature-grid {
    background: var(--pale-blue);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
    padding: 0 14vw 70px;
}

.home-feature-card {
    background: #fff;
    padding: 10px;
    text-align: center;
}

.home-feature-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--blush);
}

.home-feature-card h2 {
    color: var(--teal);
    font-size: 28px;
    margin: 18px 0 8px;
}

.section {
    padding: 88px 7vw;
}

.narrow {
    max-width: 850px;
    margin: 0 auto;
}

.centered {
    text-align: center;
}

.mt-lg {
    margin-top: 38px;
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.eyebrow {
    color: var(--sage-dark);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 500;
}

.text-link {
    border-bottom: 1px solid var(--gold);
    color: var(--ink);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--cream);
    box-shadow: var(--shadow);
}

.feature-card img {
    height: 330px;
    width: 100%;
    object-fit: cover;
    background: var(--blush);
}

.feature-copy {
    padding: 28px;
    text-align: center;
}

.feature-copy h2 {
    font-size: 31px;
}

.service-strip {
    background: var(--cream);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    text-align: center;
}

.service-strip article {
    padding: 34px;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 28px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: var(--blush);
    margin-bottom: 18px;
}

.product-card h3 {
    font-size: 25px;
    margin-bottom: 6px;
}

.product-card p {
    color: var(--sage-dark);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.split-section.soft-bg {
    background: var(--cream);
}

.split-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    background: var(--blush);
}

.split-copy {
    padding: 7vw;
}

.testimonials blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    line-height: 1.35;
    max-width: 850px;
    margin: 20px auto;
    color: var(--ink);
}

.testimonials blockquote:not(:first-child) {
    display: none;
}

.page-hero {
    padding: 110px 7vw;
    text-align: center;
    background: var(--cream);
}

.page-hero p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.small-hero {
    padding: 80px 7vw;
}

.card-grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.simple-card {
    background: var(--cream);
    padding: 24px;
    text-align: center;
}

.simple-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    background: var(--blush);
    margin-bottom: 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

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

.request-form label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.request-form input,
.request-form textarea,
.request-form select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    font: inherit;
    background: var(--white);
    color: var(--ink);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: start;
}

.gallery > img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    background: var(--blush);
}

.thumb-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.thumb-row img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    background: var(--cream);
}

.price {
    font-size: 22px;
    color: var(--sage-dark);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 64px 7vw 30px;
    background: var(--ink);
    color: var(--white);
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,.72);
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.14);
    padding-top: 24px;
    margin-top: 20px;
    font-size: 12px;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 22px 7vw;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.is-open {
        display: flex;
    }

    .intro-grid,
    .product-grid,
    .card-grid.three,
    .service-strip,
    .split-section,
    .contact-layout,
    .product-detail,
    .site-footer,
    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-feature-grid {
        padding: 30px 24px 60px;
        gap: 28px;
    }

    .feature-card img,
    .product-card img,
    .split-image img,
    .gallery > img {
        height: auto;
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 12px 20px;
        min-height: 84px;
    }

    .site-logo {
        width: 68px;
    }

    .section {
        padding: 62px 24px;
    }

    .welcome-section {
        padding: 38px 20px 48px;
    }

    .welcome-section h1 {
        font-size: 36px;
    }

    .home-slider,
    .slider-track,
    .slide,
    .slide img {
        height: 320px;
    }
}
.slide img {
    object-fit: cover;
    object-position: center 45%;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;

	
	.home-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    max-width:1400px;
    margin:80px auto;
    padding:0 40px;
}

.home-feature-card{
    background:#fff;
    padding:14px;
    text-align:center;
}

.home-feature-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.home-feature-card h2{
    margin-top:24px;
    font-family:'Cormorant Garamond', serif;
    font-size:44px;
    font-weight:400;
    color:#7ca6b4;
}

.home-feature-card a{
    text-decoration:none;
}
	.article-hero {
    background: var(--pale-blue);
    text-align: center;
    padding: 70px 20px 50px;
}

.article-hero-inner {
    max-width: 920px;
    margin: 0 auto;
}

.article-hero h1 {
    color: var(--teal);
    font-size: 52px;
}

.article-hero p {
    color: #47727c;
    font-size: 16px;
}

.article-content-section {
    background: var(--pale-blue);
    padding: 20px 7vw 90px;
}

.article-content-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.article-image {
    background: #fff;
    padding: 12px;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-body {
    background: #fff;
    padding: 42px;
    color: #47727c;
    font-size: 16px;
    line-height: 1.8;
}

.article-body p {
    color: #47727c;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .article-content-wrap {
        grid-template-columns: 1fr;
    }

    .article-body {
        padding: 28px;
    }
}
	.article-header-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.article-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.article-page-wrap {
    background: var(--pale-blue);
    padding: 60px 7vw 90px;
}

.article-heading {
    max-width: 980px;
    margin: 0 auto 55px;
    text-align: center;
}

.article-heading h1 {
    color: var(--teal);
    font-size: 54px;
}

.article-heading p {
    color: #47727c;
}

.article-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
}

.article-side-image {
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow);
}

.article-side-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-body {
    background: #fff;
    padding: 44px;
    color: #47727c;
    line-height: 1.8;
    box-shadow: var(--shadow);
}

.article-body p {
    color: #47727c;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-header-image {
        height: 220px;
    }

    .article-body {
        padding: 28px;
    }
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav > a,
.main-nav > .nav-item > a {
    display: block;
    text-decoration: none;
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown > a::after {
    content: "⌄";
    margin-left: 6px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 28px;
    white-space: nowrap;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    display: block;
}
	.order-form {
    margin-top: 30px;
}

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #754d55;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.order-form textarea {
    margin-top: 8px;
    height: 120px;
    resize: vertical;
}

.order-form button {
    display: block;
    margin: 18px auto 0;
    border: 0;
    padding: 14px 32px;
    border-radius: 30px;
    background: #6ca6b3;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
}

@media (max-width: 700px) {
    .order-form-grid {
        grid-template-columns: 1fr;
    }
}
	
	.order-form select {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    padding: 10px 12px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #754d55 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
}

.order-form-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}