/* =========================================================
   KARTEL62 ISTANA KOI
   JAPANESE ZEN PREMIUM
   MAIN STYLESHEET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #18221d;
    --forest-light: #27352d;
    --forest-dark: #111814;

    --cream: #f4f0e7;
    --paper: #fbfaf7;
    --white: #ffffff;

    --gold: #b78a50;
    --gold-light: #d0ad78;

    --text: #1d2621;
    --muted: #727971;
    --line: #dedbd2;

    --container: 1160px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    background: var(--paper);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.12);

    color: var(--white);
}

.nav-wrapper {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-symbol {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid
        rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    font-family: Georgia, serif;
    font-size: 20px;
}

.brand-text strong,
.brand-text small {
    display: block;
    line-height: 1;
}

.brand-text strong {
    font-size: 15px;
    letter-spacing: 2px;
}

.brand-text small {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 8px;
    letter-spacing: 3px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 27px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
}

.main-navigation a {
    position: relative;
    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--white);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.nav-button {
    padding: 10px 16px;

    border: 1px solid
        rgba(255, 255, 255, 0.3);

    border-radius: 30px;

    font-size: 11px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.nav-button span {
    margin-left: 7px;
    color: var(--gold-light);
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.55);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;

    min-height: 770px;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(183, 138, 80, 0.18),
            transparent 27%
        ),
        linear-gradient(
            115deg,
            var(--forest-dark),
            var(--forest-light) 60%,
            var(--forest)
        );
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            ellipse at 70% 80%,
            rgba(255, 255, 255, 0.04),
            transparent 45%
        );
}

.hero-water-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.4;

    background:
        repeating-radial-gradient(
            ellipse at 72% 72%,
            transparent 0 55px,
            rgba(255, 255, 255, 0.035) 57px 58px
        );
}

.hero-grid {
    position: relative;
    z-index: 2;

    min-height: 770px;

    display: grid;
    grid-template-columns: 48% 52%;

    align-items: center;

    padding-top: 70px;
}

.hero-content {
    padding-bottom: 20px;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero-content h1 {
    max-width: 650px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        48px,
        6vw,
        76px
    );

    font-weight: 500;

    line-height: 1.04;
}

.hero-content h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-description {
    max-width: 535px;

    margin: 26px 0 32px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 14px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 46px;

    padding: 12px 20px;

    border-radius: 2px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--gold);
}

.button-primary:hover {
    background: #a77b46;
}

.button-outline {
    color: var(--white);

    border: 1px solid
        rgba(255, 255, 255, 0.28);
}

.button-outline:hover {
    border-color:
        rgba(255, 255, 255, 0.6);

    background:
        rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 30px;

    margin-top: 58px;
}

.hero-stat {
    padding-left: 14px;

    border-left: 1px solid
        rgba(255, 255, 255, 0.2);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 17px;
    font-weight: 500;
}

.hero-stat span {
    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================================================
   HERO KOI VISUAL
   ========================================================= */

.hero-visual {
    position: relative;

    height: 580px;

    display: grid;
    place-items: center;
}

.sun-glow {
    position: absolute;

    width: 245px;
    height: 245px;

    top: 70px;
    right: 100px;

    border-radius: 50%;

    background:
        rgba(183, 138, 80, 0.13);

    box-shadow:
        0 0 110px
        rgba(183, 138, 80, 0.14);
}

.water-ripple {
    position: absolute;

    width: 360px;
    height: 160px;

    border: 1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    transform: rotate(-10deg);
}

.ripple-two {
    width: 500px;
    height: 220px;
}

.ripple-three {
    width: 650px;
    height: 290px;
}

.hero-koi {
    position: relative;
    z-index: 3;

    width: 650px;

    filter:
        drop-shadow(
            0 28px 20px
            rgba(0, 0, 0, 0.25)
        );

    transform:
        rotate(-5deg);
}

.hero-label {
    position: absolute;
    z-index: 5;

    right: 10px;
    bottom: 55px;

    padding-left: 13px;

    border-left: 1px solid var(--gold);
}

.hero-label span,
.hero-label small {
    display: block;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 8px;

    letter-spacing: 2px;
}

.hero-label strong {
    display: block;

    margin: 3px 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 20px;
    font-weight: 500;
}


/* =========================================================
   MARQUEE
   ========================================================= */

.collection-marquee {
    overflow: hidden;

    background: var(--gold);

    color: var(--white);

    white-space: nowrap;
}

.marquee-track {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 12px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 13px;

    letter-spacing: 3px;
}

.marquee-track i {
    font-style: normal;
    font-size: 8px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;

    grid-template-columns:
        1fr 370px;

    gap: 60px;

    align-items: end;

    margin-bottom: 50px;
}

.section-heading h2,
.zen-content h2,
.contact-cta h2 {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(40px, 5vw, 58px);

    font-weight: 500;

    line-height: 1.06;
}

.section-heading h2 em,
.zen-content h2 em,
.contact-cta h2 em {
    color: var(--gold);
}

.section-heading > p {
    max-width: 370px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        1.25fr 1fr 1fr;

    gap: 18px;
}

.product-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid
        #e6e2da;
}

.product-image {
    position: relative;

    height: 350px;

    display: grid;
    place-items: center;

    overflow: hidden;
}

.product-image::before,
.product-image::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(255, 255, 255, 0.12);
}

.product-image::before {
    width: 300px;
    height: 140px;
}

.product-image::after {
    width: 440px;
    height: 200px;
}

.product-image-kohaku {
    background:
        radial-gradient(
            circle at 68% 35%,
            #b98b52 0 12%,
            transparent 13%
        ),
        linear-gradient(
            145deg,
            #789388,
            #294137
        );
}

.product-image-sanke {
    background:
        radial-gradient(
            circle at 68% 35%,
            #eee4d2 0 15%,
            transparent 16%
        ),
        linear-gradient(
            145deg,
            #718e83,
            #253b31
        );
}

.product-image-showa {
    background:
        radial-gradient(
            circle at 68% 30%,
            #161b18 0 16%,
            transparent 17%
        ),
        linear-gradient(
            145deg,
            #879d93,
            #30463b
        );
}

.image-label {
    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 4;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 8px;

    letter-spacing: 2px;
}

.decorative-koi {
    position: relative;
    z-index: 3;

    width: 230px;
    height: 80px;

    border-radius:
        70% 50% 50% 70%;

    background:
        linear-gradient(
            90deg,
            #eee5d6,
            #fffaf0
        );

    transform:
        rotate(-17deg);

    box-shadow:
        60px 25px 0 -22px
        #c45b44,

        -45px 2px 0 -20px
        #c45b44;

    filter:
        drop-shadow(
            0 17px 10px
            rgba(0, 0, 0, 0.25)
        );
}

.decorative-koi::before {
    content: "";

    position: absolute;

    right: -30px;
    top: 18px;

    border-left:
        45px solid #eee5d6;

    border-top:
        22px solid transparent;

    border-bottom:
        22px solid transparent;
}

.decorative-koi::after {
    content: "";

    position: absolute;

    right: 25px;
    top: 21px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--forest);
}

.product-content {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 19px 20px;
}

.product-tag {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.product-content h3 {
    margin: 4px 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 22px;
    font-weight: 500;
}

.product-content p {
    max-width: 220px;

    color: var(--muted);

    font-size: 11px;
}

.product-status {
    white-space: nowrap;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 13px;
}

.section-button {
    margin-top: 30px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
}

.text-link span {
    transition:
        transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   ZEN SECTION
   ========================================================= */

.zen-section {
    padding: 115px 0;

    background: var(--cream);
}

.zen-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.zen-content > p:not(.eyebrow) {
    max-width: 520px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 14px;
}

.zen-content blockquote {
    max-width: 500px;

    margin:
        30px 0;

    padding:
        14px 20px;

    border-left:
        2px solid var(--gold);

    color:
        #566057;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 18px;

    font-style: italic;
}

.zen-visual {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: var(--forest);

    color: var(--white);
}

.zen-circle {
    position: absolute;

    top: 42%;
    left: 50%;

    border:
        1px solid
        rgba(183, 138, 80, 0.35);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}

.zen-circle-large {
    width: 350px;
    height: 350px;
}

.zen-circle-small {
    width: 220px;
    height: 220px;

    border-color:
        rgba(255, 255, 255, 0.1);
}

.enso {
    position: absolute;

    top: 42%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    color:
        rgba(183, 138, 80, 0.58);

    font-family:
        Georgia,
        serif;

    font-size: 120px;
}

.zen-caption {
    position: absolute;

    left: 42px;
    bottom: 38px;
}

.zen-caption small {
    display: block;

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 3px;
}

.zen-caption strong {
    display: block;

    margin-top: 8px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 40px;
    font-weight: 500;

    line-height: 1.05;
}


/* =========================================================
   CARE
   ========================================================= */

.care-section {
    background: var(--paper);
}

.section-heading.compact {
    margin-bottom: 42px;
}

.care-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--line);
}

.care-item {
    padding:
        35px 25px 25px 0;

    border-right:
        1px solid var(--line);
}

.care-item:not(:first-child) {
    padding-left: 25px;
}

.care-item:last-child {
    border-right: 0;
}

.care-item > span {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;
}

.care-item h3 {
    margin: 18px 0 8px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 500;
}

.care-item p {
    max-width: 300px;

    color: var(--muted);

    font-size: 13px;
}

.care-item a {
    display: inline-block;

    margin-top: 15px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   CTA
   ========================================================= */

.contact-cta {
    padding: 90px 0;

    background: var(--forest);

    color: var(--white);
}

.contact-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta > .container > div:first-child > p:last-child {
    max-width: 550px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 14px;
}

.cta-buttons {
    min-width: 220px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding-top: 70px;

    background: var(--forest-dark);

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        .7fr
        .8fr
        1fr;

    gap: 45px;

    padding-bottom: 55px;
}

.footer-brand .brand {
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 11px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 17px;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 2px;
}

.footer-column a,
.footer-column p {
    margin-bottom: 9px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 10px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact {
    margin-top: 8px;

    color: var(--gold-light) !important;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.3);

    font-size: 9px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .main-navigation {
        gap: 16px;
    }

    .hero-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .hero-koi {
        width: 560px;
    }

    .product-image {
        height: 300px;
    }

}


@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .hero-section {
        min-height: 1000px;
    }

    .hero-grid {
        min-height: 1000px;

        grid-template-columns: 1fr;

        padding-top: 130px;
    }

    .hero-visual {
        height: 430px;

        margin-top: -20px;
    }

    .hero-koi {
        width: 570px;
    }

    .section-heading,
    .zen-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .product-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .product-card-large {
        grid-column:
            span 2;
    }

    .zen-visual {
        min-height: 360px;
    }

    .contact-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 600px) {

    .container {
        width:
            min(
                var(--container),
                calc(100% - 28px)
            );
    }

    .nav-wrapper {
        min-height: 72px;
    }

    .nav-button {
        display: none;
    }

    .hero-section {
        min-height: 920px;
    }

    .hero-grid {
        min-height: 920px;

        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 47px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-stats {
        gap: 14px;

        margin-top: 38px;
    }

    .hero-stat strong {
        font-size: 14px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .hero-visual {
        height: 330px;
    }

    .hero-koi {
        width: 470px;
    }

    .sun-glow {
        right: 0;
    }

    .hero-label {
        right: 0;
        bottom: 20px;
    }

    .marquee-track {
        justify-content: flex-start;

        overflow: hidden;

        font-size: 11px;
    }

    .section,
    .zen-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .zen-content h2,
    .contact-cta h2 {
        font-size: 42px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card-large {
        grid-column: auto;
    }

    .product-image {
        height: 300px;
    }

    .care-grid {
        grid-template-columns: 1fr;
    }

    .care-item,
    .care-item:not(:first-child) {
        padding: 25px 0;

        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .care-item:last-child {
        border-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

/* =========================================================
   PART 2
   PAGE HERO
   ========================================================= */

.page-hero {
    min-height: 500px;

    display: flex;
    align-items: center;

    padding-top: 90px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(183, 138, 80, 0.18),
            transparent 25%
        ),
        linear-gradient(
            115deg,
            var(--forest-dark),
            var(--forest-light)
        );
}

.page-hero h1 {
    max-width: 750px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(45px, 6vw, 70px);

    font-weight: 500;

    line-height: 1.05;
}

.page-hero h1 em {
    color: var(--gold-light);
}

.page-hero > .container > p:last-child {
    max-width: 600px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 14px;
}


/* =========================================================
   FULL PRODUCT GRID
   ========================================================= */

.product-grid-full {
    grid-template-columns:
        repeat(3, 1fr);
}

.product-grid-full .product-card {
    min-width: 0;
}


/* =========================================================
   COMPACT SECTION
   ========================================================= */

.section-heading.compact {
    margin-bottom: 35px;
}


/* =========================================================
   MOBILE PART 2
   ========================================================= */

@media (max-width: 900px) {

    .page-hero {
        min-height: 450px;
    }

    .product-grid-full {
        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 420px;

        padding-top: 80px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .product-grid-full {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   PART 3
   CARE / CONTACT
   ========================================================= */


/* =========================================================
   CARE GRID
   ========================================================= */

.care-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background:
        rgba(24, 34, 29, 0.14);

    border:
        1px solid rgba(24, 34, 29, 0.14);
}


.care-item {

    min-height: 280px;

    padding: 38px 30px;

    background:
        var(--cream);

    transition:
        transform .3s ease,
        background .3s ease;
}


.care-item:hover {

    background:
        #fff;

    transform:
        translateY(-5px);
}


.care-item > span {

    display: block;

    margin-bottom: 55px;

    color:
        var(--gold);

    font-family:
        Georgia,
        serif;

    font-size: 13px;

    letter-spacing: .12em;
}


.care-item h3 {

    margin-bottom: 14px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    font-weight: 500;

    color:
        var(--forest-dark);
}


.care-item p {

    color:
        rgba(24, 34, 29, .64);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CARE LIST
   ========================================================= */

.care-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid rgba(24, 34, 29, .16);
}


.care-list-item {

    display: flex;

    gap: 25px;

    padding: 30px;

    border-bottom:
        1px solid rgba(24, 34, 29, .16);

    transition:
        background .25s ease;
}


.care-list-item:nth-child(odd) {

    border-right:
        1px solid rgba(24, 34, 29, .16);
}


.care-list-item:hover {

    background:
        rgba(183, 138, 80, .06);
}


.care-list-item > span {

    color:
        var(--gold);

    font-family:
        Georgia,
        serif;

    font-size: 14px;

    min-width: 30px;
}


.care-list-item h3 {

    margin-bottom: 8px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 500;
}


.care-list-item p {

    color:
        rgba(24, 34, 29, .62);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.contact-card {

    padding: 40px 32px;

    min-height: 300px;

    background:
        #fff;

    border:
        1px solid rgba(24, 34, 29, .1);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.contact-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 50px
        rgba(24, 34, 29, .08);
}


.contact-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin-bottom: 30px;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    color:
        var(--gold);

    font-size: 18px;
}


.contact-card h2 {

    margin:
        8px 0 14px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 27px;

    font-weight: 500;
}


.contact-card > a {

    display: inline-block;

    margin-bottom: 18px;

    color:
        var(--forest-dark);

    font-size: 14px;

    text-decoration:
        underline;

    text-decoration-color:
        var(--gold);

    text-underline-offset:
        5px;
}


.contact-card > p:last-child {

    color:
        rgba(24, 34, 29, .6);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT FORM LAYOUT
   ========================================================= */

.contact-form-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


.contact-form {

    display: grid;

    gap: 20px;

    padding: 40px;

    background:
        #fff;

    border:
        1px solid rgba(24, 34, 29, .1);
}


.form-group {

    display: grid;

    gap: 8px;
}


.form-group label {

    color:
        var(--forest-dark);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform:
        uppercase;
}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding:
        14px 15px;

    border:
        1px solid rgba(24, 34, 29, .18);

    border-radius:
        0;

    outline:
        none;

    background:
        #fafaf7;

    color:
        var(--forest-dark);

    font-family:
        inherit;

    font-size:
        14px;

    transition:
        border-color .25s ease,
        background .25s ease;
}


.form-group textarea {

    resize:
        vertical;

    min-height:
        150px;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--gold);

    background:
        #fff;
}


.contact-form .button {

    width:
        max-content;

    border:
        0;

    cursor:
        pointer;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {

    max-width:
        900px;

    border-top:
        1px solid rgba(24, 34, 29, .15);
}


.faq-list details {

    border-bottom:
        1px solid rgba(24, 34, 29, .15);
}


.faq-list summary {

    position:
        relative;

    padding:
        24px 45px 24px 0;

    cursor:
        pointer;

    list-style:
        none;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        20px;

    color:
        var(--forest-dark);
}


.faq-list summary::-webkit-details-marker {

    display:
        none;
}


.faq-list summary::after {

    content:
        "+";

    position:
        absolute;

    right:
        5px;

    top:
        22px;

    color:
        var(--gold);

    font-family:
        Arial,
        sans-serif;

    font-size:
        20px;
}


.faq-list details[open] summary::after {

    content:
        "−";
}


.faq-list details p {

    max-width:
        760px;

    padding:
        0 0 25px;

    color:
        rgba(24, 34, 29, .65);

    font-size:
        14px;

    line-height:
        1.8;
}


.faq-list details a {

    color:
        var(--forest-dark);

    text-decoration:
        underline;

    text-decoration-color:
        var(--gold);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .care-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .contact-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .contact-form-layout {

        grid-template-columns:
            1fr;

        gap: 45px;
    }

}


@media (max-width: 650px) {

    .care-grid {

        grid-template-columns:
            1fr;
    }


    .contact-grid {

        grid-template-columns:
            1fr;
    }


    .care-list {

        grid-template-columns:
            1fr;
    }


    .care-list-item:nth-child(odd) {

        border-right:
            0;
    }


    .contact-form {

        padding:
            25px 20px;
    }


    .contact-card {

        padding:
            30px 24px;

        min-height:
            auto;
    }

}