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

:root {
    --primary-green: #095bb5;
    --dark-green: #071f42;
    --text-color: #52627a;
    --border-color: #e4e7e2;
    --cream: #f8f6ee;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark-green);
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* ==========================
   Header
========================== */

.site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    height: 82px;
    display: flex;
    align-items: center;
    background: transparent;
}

.navbar {
    width: min(1215px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #70451f;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-green), #073e7a);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(9, 91, 181, 0.24);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
}

.brand-name {
    color: #0a2550;
    font-size: 24px;
    letter-spacing: 0.8px;
}

/* Navigation */

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #596b85;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu .nav-contact-btn {
    padding: 11px 22px;
    color: #ffffff;
    background: var(--primary-green);
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(9, 91, 181, .22);
}

.nav-menu .nav-contact-btn:hover {
    color: #ffffff;
    background: #064789;
}

.chevron {
    width: 8px;
    height: 8px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #0a2550;
    background: #ffffff;
    border: 1px solid #d9e3ef;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 34, 23, .08);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header Actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 21px;
    color: #61728a;
}

.action-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon {
    width: 19px;
    height: 19px;
    transition: color 0.25s ease;
}

.action-link:hover {
    color: var(--primary-green);
}

.get-started-btn {
    padding: 11px 25px;
    color: #ffffff;
    background: var(--primary-green);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(9, 91, 181, 0.27);
    transition: background 0.3s ease, transform 0.3s ease;
}

.get-started-btn:hover {
    background: #064789;
    transform: translateY(-2px);
}



/* ==========================
   Footer
========================== */

.site-footer {
    padding: 62px 0 28px;
    color: #9fb2ca;
    background: #0f192a;
}

.site-footer__inner {
    width: min(100% - 48px, 1440px);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 0.75fr);
    gap: 64px;
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.footer-logo__mark {
    color: #ff8a32;
    font-size: 29px;
    letter-spacing: 0;
}

.footer-brand p {
    max-width: 285px;
    font-size: 12px;
    line-height: 1.55;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 19px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #a7b5c8;
    background: #192538;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    background: #f36b11;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 14px;
    height: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-links h3,
.footer-newsletter h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 15px;
}

.footer-links a {
    color: #a9c2df;
    font-size: 12px;
    transition: color .2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #ff8a32;
}

.footer-newsletter {
    padding: 38px 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 50px;
    align-items: center;
    border-top: 1px solid #223047;
    border-bottom: 1px solid #223047;
}

.footer-newsletter h3 {
    margin-bottom: 7px;
}

.footer-newsletter p,
.footer-bottom {
    font-size: 11px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input {
    min-width: 0;
    height: 36px;
    padding: 0 13px;
    color: #ffffff;
    background: #1d2a3d;
    border: 1px solid #34445b;
    border-radius: 8px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #f36b11;
    box-shadow: 0 0 0 3px rgba(243, 107, 17, .14);
}

.newsletter-form button {
    height: 36px;
    padding: 0 22px;
    color: #ffffff;
    background: #f36b11;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #c94d00;
}

.footer-bottom {
    padding-top: 27px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: #60738f;
    border-top: 1px solid #223047;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.footer-legal a {
    color: inherit;
    transition: color .2s ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================
   Contact information + form
========================== */

.contact-main {
    padding: 68px 0 80px;
    background: #f8f6ee;
}

.contact-main-grid {
    width: calc(100% - 80px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: 26px;
    align-items: stretch;
}

.contact-main-heading {
    width: min(calc(100% - 80px), 760px);
    margin: 0 auto 44px;
    text-align: center;
}

.contact-main-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #095bb5;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-main-heading h1 {
    color: #0a2550;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.03em;
}

.contact-main-heading p {
    max-width: 620px;
    margin: 14px auto 0;
    color: #5d708a;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.contact-info-panel {
    position: relative;
    min-height: 100%;
    padding: clamp(28px, 3.5vw, 44px);
    color: #0a2550;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #d9e3ef;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(28, 48, 37, .1);
    overflow: hidden;
}

.contact-info-panel::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(9, 91, 181, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgba(9, 91, 181, .025),
        0 0 0 58px rgba(9, 91, 181, .018);
    pointer-events: none;
}

.contact-info-panel h1,
.contact-info-panel h2,
.contact-form-panel h2 {
    color: #095bb5;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    letter-spacing: -.03em;
}

.contact-info-panel h2 {
    position: relative;
    z-index: 1;
    color: #0a2550;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 600;
}

.contact-info-panel h1 {
    font-size: clamp(42px, 4.5vw, 60px);
    line-height: 1;
}

.contact-info-panel > p,
.contact-form-panel > p {
    margin-top: 15px;
    color: #5d708a;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.65;
}

.contact-info-panel > p {
    position: relative;
    z-index: 1;
    color: #5d708a;
}

.contact-info-list {
    position: relative;
    z-index: 1;
    margin-top: 32px;
    display: grid;
    gap: 12px;
}

.contact-info-list a,
.contact-info-row {
    min-height: 58px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #34483e;
    background: #f7faf8;
    border: 1px solid #dfe8f2;
    border-radius: 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    transition: background .22s ease, transform .22s ease;
}

.contact-info-list a:hover {
    color: #095bb5;
    background: #eef5fc;
    transform: translateX(3px);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #f36b11;
    background: linear-gradient(145deg, #fff, #fff3ea);
    border: 1px solid #d9e3ef;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(1, 20, 14, .18);
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form-panel h2 {
    color: #0a2550;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.08;
}

.contact-form-panel {
    position: relative;
    padding: clamp(26px, 3.5vw, 44px);
    background: rgba(255, 255, 255, .82);
    border: 1px solid #d9e3ef;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(28, 48, 37, .1);
    overflow: hidden;
}

.contact-form-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #095bb5, #ff9a4a);
}

.contact-form-panel__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #095bb5;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-form-panel > p {
    max-width: 680px;
    margin-top: 12px;
}

.contact-page-form {
    margin-top: 24px;
    display: grid;
    gap: 9px;
}

.contact-page-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-page-form__field {
    display: grid;
    gap: 9px;
}

.contact-page-form label {
    margin-top: 9px;
    color: #172b21;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    color: #34483e;
    background: transparent;
    border: 1px solid #d8dfdc;
    border-radius: 12px;
    outline: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(31, 48, 39, .06);
}

.contact-page-form input {
    height: 48px;
    padding: 0 14px;
}

.contact-page-form textarea {
    min-height: 138px;
    padding: 14px;
    resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    border-color: #095bb5;
    box-shadow: 0 0 0 3px rgba(9, 91, 181, .1);
}

.contact-page-form button {
    width: fit-content;
    min-width: 132px;
    height: 43px;
    margin-top: 12px;
    padding: 0 20px;
    color: #fff;
    background: #095bb5;
    border: 0;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.contact-page-form button:hover {
    background: #064789;
}

/* Contact content: coordinated heading, panels, details, and form reveal. */
.contact-main.contact-animation-ready {
    overflow: hidden;
}

.contact-main.contact-animation-ready .contact-main-heading {
    opacity: 0;
    transform: translateY(54px);
    transition: opacity 1s ease, transform 1.3s cubic-bezier(.16, 1, .3, 1);
}

.contact-main.contact-animation-ready.is-visible .contact-main-heading {
    opacity: 1;
    transform: translateY(0);
}

.contact-main.contact-animation-ready .contact-info-panel,
.contact-main.contact-animation-ready .contact-form-panel {
    opacity: 0;
    transition: opacity 1.15s ease, transform 1.65s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
    will-change: opacity, transform;
}

.contact-main.contact-animation-ready .contact-info-panel { transform: translate3d(-160px, 0, 0); }
.contact-main.contact-animation-ready .contact-form-panel { transform: translate3d(160px, 0, 0); transition-delay: .16s; }

.contact-main.contact-animation-ready.is-visible .contact-info-panel,
.contact-main.contact-animation-ready.is-visible .contact-form-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.contact-main.contact-animation-ready .contact-info-list > *,
.contact-main.contact-animation-ready .contact-page-form > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .95s cubic-bezier(.22, 1, .36, 1), background .22s ease;
}

.contact-main.contact-animation-ready.is-visible .contact-info-list > *,
.contact-main.contact-animation-ready.is-visible .contact-page-form > * {
    opacity: 1;
    transform: translateY(0);
}

.contact-main.contact-animation-ready.is-visible .contact-info-list > *:nth-child(1) { transition-delay: .40s; }
.contact-main.contact-animation-ready.is-visible .contact-info-list > *:nth-child(2) { transition-delay: .54s; }
.contact-main.contact-animation-ready.is-visible .contact-info-list > *:nth-child(3) { transition-delay: .68s; }
.contact-main.contact-animation-ready.is-visible .contact-page-form > *:nth-child(1) { transition-delay: .48s; }
.contact-main.contact-animation-ready.is-visible .contact-page-form > *:nth-child(2) { transition-delay: .60s; }
.contact-main.contact-animation-ready.is-visible .contact-page-form > *:nth-child(3) { transition-delay: .72s; }
.contact-main.contact-animation-ready.is-visible .contact-page-form > *:nth-child(4) { transition-delay: .84s; }
.contact-main.contact-animation-ready.is-visible .contact-page-form > *:nth-child(5) { transition-delay: .96s; }

.contact-main.contact-animation-ready .contact-info-icon {
    transform: scale(.55) rotate(-14deg);
    transition: transform .85s cubic-bezier(.34, 1.56, .64, 1);
}

.contact-main.contact-animation-ready.is-visible .contact-info-icon {
    transform: scale(1) rotate(0);
    transition-delay: .72s;
}

.contact-main.contact-animation-ready.is-visible .contact-info-list a:hover {
    transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
    .contact-main.contact-animation-ready .contact-main-heading,
    .contact-main.contact-animation-ready .contact-info-panel,
    .contact-main.contact-animation-ready .contact-form-panel,
    .contact-main.contact-animation-ready .contact-info-list > *,
    .contact-main.contact-animation-ready .contact-page-form > *,
    .contact-main.contact-animation-ready .contact-info-icon {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

@media screen and (max-width: 860px) {
    .contact-main {
        padding: 52px 0 60px;
    }

    .contact-main-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-main-heading {
        width: calc(100% - 28px);
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 420px) {
    .contact-main-grid {
        width: calc(100% - 20px);
    }

    .contact-page-form button {
        width: 100%;
    }

    .contact-form-panel {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .contact-page-form__row {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}
/* Keep the complete product visible instead of cropping the tall bottle to the
   hero's wide aspect ratio. The source artwork already contains the open space
   needed behind the copy, so it can be anchored to the right at full height. */
.contact-page-hero .page-hero__image {
    right: 0;
    left: auto;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}
