/*
 * Alfa Saddlery — Luxury Redesign
 * Palette grounded in the material: tannery ink, saddle-leather cognac, brass hardware.
 * Display: Fraunces (serif). Body/UI: Inter (sans).
 */

:root {
    /* Core palette */
    --canvas: #ffffff;
    --canvas-soft: #f7f5f2;
    --ink: #14110d;
    --ink-soft: #322c24;
    --body: #5a5449;
    --muted: #948c7d;
    --hairline: #ece7de;
    --hairline-strong: #ddd5c6;

    /* Signature leather / brass accents */
    --cognac: #6b3d21;
    --cognac-deep: #4f2c17;
    --brass: #a9895c;
    --brass-soft: #cdb896;

    --success: #3f6b4a;
    --error: #a13b2e;

    /* Spacing (8px base) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;
    --section-space: 140px;

    /* Shape */
    --radius: 12px;
    --radius-sm: 6px;
    --radius-btn: 6px;
    --container: 1320px;

    --shadow-soft: 0 4px 20px rgb(20 17 13 / 6%);
    --shadow-lifted: 0 24px 60px rgb(20 17 13 / 16%);

    --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    background: var(--canvas);
    color: var(--body);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; background: none; border: 0; }

.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 8px; left: 8px; transform: translateY(-160%); padding: 12px 16px; border-radius: var(--radius-sm); background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: "Fraunces", Georgia, serif; font-weight: 500; }
h1 { max-width: 760px; margin: 0 auto var(--space-4); font-size: clamp(40px, 5.2vw, 64px); line-height: 1.08; letter-spacing: -0.3px; }
h2 { margin-bottom: var(--space-3); font-size: clamp(32px, 3.4vw, 46px); line-height: 1.1; letter-spacing: -0.3px; }
h3 { margin-bottom: var(--space-1); font-size: 20px; line-height: 1.35; font-weight: 500; }

.eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-3);
    color: var(--cognac);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
/* Signature: a saddle-stitch pair — two short parallel ticks — before every eyebrow label */
.eyebrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brass);
    box-shadow: 0 4px 0 0 var(--brass);
}
.eyebrow--light { color: #f3e9db; }
.eyebrow--light::before { background: var(--brass-soft); box-shadow: 0 4px 0 0 var(--brass-soft); }

/* ---------- Buttons ---------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1;
    transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}
.button--primary { background: var(--ink); color: #fff; }
.button--primary:hover { background: var(--cognac); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.button--secondary { background: transparent; border-color: var(--hairline-strong); color: var(--ink); }
.button--secondary:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.button--block { width: 100%; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 6px; color: var(--cognac); font-size: 14px; font-weight: 600; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100000;
    background: transparent;
    transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--hairline);
    box-shadow: var(--shadow-soft);
}
.nav-toggle.active span{
    background:#ffffff !important;
}
.nav-container {
    width: min(calc(100% - 64px), var(--container));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    transition: height .4s var(--ease);
}
.site-header.is-scrolled .nav-container { height: 80px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo { height: 40px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
.site-header.is-scrolled .site-logo { filter: none; }
.brand-name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: .2px;
    color: #fff;
    line-height: 1;
    transition: color .4s var(--ease);
}
.site-header.is-scrolled .brand-name { color: var(--ink); }
.brand-mark { display: grid; width: 30px; height: 30px; place-items: center; border-radius: var(--radius-sm); background: var(--ink); color: #fff; font-family: "Fraunces", serif; font-size: 15px; }

.primary-navigation { display: flex; align-items: center; gap: 40px; }
.primary-navigation > a:not(.button) {
    position: relative;
    padding: 4px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    transition: color .4s var(--ease);
}
.primary-navigation > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width .3s var(--ease);
}
.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a:not(.button)[aria-current="page"]::after { width: 100%; }
.site-header.is-scrolled .primary-navigation > a:not(.button) { color: var(--ink-soft); }
.nav-contact { padding: 12px 26px; min-height: 44px; }
.site-header:not(.is-scrolled) .nav-contact { background: transparent; border: 1px solid rgba(255,255,255,.6); color: #fff; }
.site-header:not(.is-scrolled) .nav-contact:hover { background: #fff; color: var(--ink); border-color: #fff; }

.nav-toggle{
    display:none;
    width:44px;
    height:44px;
    position:relative;
    padding:0;
}

.nav-toggle span{
    position:absolute;
    left:10px;
    width:24px;
    height:2px;
    background:#fff;
    transition:.3s ease;
}

.nav-toggle span:nth-child(1){
    top:14px;
}

.nav-toggle span:nth-child(2){
    top:21px;
}

.nav-toggle span:nth-child(3){
    top:28px;
}

.site-header.is-scrolled .nav-toggle span{
    background:#14110d;
}

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

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

.nav-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    top:21px;
}
/* ---------- Hero ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    text-align: center;
}
.hero__media-layer { position: absolute; inset: 0; z-index: 0; }
.hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgb(10 8 6 / 55%) 0%, rgb(10 8 6 / 35%) 45%, rgb(10 8 6 / 70%) 100%);
}
.hero__content { position: relative; z-index: 1; padding-top: 96px; }
.hero h1 { color: #fff; }
.hero__lead { max-width: 560px; margin: 0 auto var(--space-4); color: rgba(255,255,255,.86); font-size: 17px; }
.hero__scroll {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateX(-50%);
}
.hero__scroll-line { position: relative; width: 1px; height: 40px; overflow: hidden; background: rgba(255,255,255,.3); }
.hero__scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brass-soft);
    animation: scrollDrip 2.2s var(--ease) infinite;
}
@keyframes scrollDrip {
    0% { top: -100%; }
    60% { top: 100%; }
    100% { top: 100%; }
}


/* ---------- Sections ---------- */
.section { padding: var(--section-space) 0; }
.section--soft { background: var(--canvas-soft); }
.split-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(56px, 8vw, 128px); }
.split-layout--reverse { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section-copy { max-width: 540px; }
.section-copy > p:not(.eyebrow) { margin-bottom: var(--space-3); }
.image-panel { position: relative; overflow: hidden; margin: 0; border-radius: var(--radius); background: var(--surface-strong, #f0ede6); }
.image-panel img { min-height: 520px; object-fit: cover; transition: transform .8s var(--ease); }
.image-panel:hover img { transform: scale(1.04); }
.section-heading { max-width: 640px; margin-bottom: var(--space-8); }
.section-heading > p:not(.eyebrow) { margin-bottom: 0; font-size: 17px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.product-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--canvas);
    box-shadow: var(--shadow-soft);
    transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lifted); transform: translateY(-6px); }
.product-card__image { display: block; overflow: hidden; background: var(--canvas-soft); }
.product-card__image img { aspect-ratio: 1.15; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-card__image img { transform: scale(1.07); }
.product-card__content { padding: var(--space-3) var(--space-3) var(--space-4); }
.product-card__content h3 { font-size: 22px; }
.product-card__content p { min-height: 68px; margin-bottom: var(--space-3); font-size: 14.5px; }

/* ---------- Craftsmanship timeline ---------- */
.process-list { display: grid; gap: 0; padding: 0; margin: var(--space-6) 0 0; list-style: none; }
.process-list li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: var(--space-3); padding-bottom: var(--space-6); }
.process-list li:last-child { padding-bottom: 0; }
.process-list li::before {
    content: "";
    position: absolute;
    top: 44px;
    bottom: 4px;
    left: 27px;
    width: 1px;
    background: var(--hairline-strong);
}
.export-countries { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 16px; margin: var(--space-4) 0 0; padding: 0; list-style: none; }
.export-countries li { position: relative; padding-left: 16px; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.export-countries li::before { content: ""; position: absolute; top: 8px; left: 0; width: 6px; height: 6px; background: var(--brass); }

.export-card { padding: var(--space-4); border: 1px solid var(--hairline-strong); border-radius: var(--radius); background: var(--canvas); box-shadow: var(--shadow-soft); }
.export-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: var(--space-3); border: 1px solid var(--hairline-strong); border-radius: 50%; color: var(--cognac); }
.export-card h3 { font-size: 20px; margin-bottom: var(--space-3); }
.export-checklist { display: grid; gap: 12px; margin: 0 0 var(--space-3); padding: 0; list-style: none; }
.export-checklist li { position: relative; padding-left: 26px; color: var(--body); font-size: 14.5px; }
.export-checklist li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--cognac); font-weight: 600; }

@media (max-width: 767px) {
    .export-countries { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.export-countries { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: var(--space-4) 0 0; padding: 0; list-style: none; }
.export-countries li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--hairline-strong);
    border-radius: var(--radius-sm);
    background: var(--canvas);
    color: var(--ink-soft);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: border-color .3s var(--ease), background-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.export-countries li:hover { border-color: var(--cognac); background: var(--canvas-soft); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.export-countries__mark { flex: none; width: 7px; height: 7px; background: var(--brass); }

/* ---------- Why-us feature cards ---------- */
#why-us{
    background-color: #F99B04;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.feature-card { padding: var(--space-4); border-radius: var(--radius); background: var(--canvas); box-shadow: var(--shadow-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lifted); }
.feature-card__number { display: block; margin-bottom: var(--space-4); color: var(--brass); font-family: "Fraunces", serif; font-size: 28px; }
.feature-card p { margin-bottom: 0; font-size: 14.5px; }

/* ---------- Gallery / masonry / lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 200px; gap: var(--space-2); }
.gallery-item {
    position: relative;
    grid-row: span 2;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--canvas-soft);
    cursor: zoom-in;
}
.gallery-item--large { grid-row: span 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgb(20 17 13 / 55%) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10 8 6 / 92%);
    animation: lightboxIn .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lightboxIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure { max-width: min(90vw, 1100px); max-height: 84vh; margin: 0; }
.lightbox__figure img { max-height: 78vh; width: auto; margin: 0 auto; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox__figure figcaption { margin-top: var(--space-2); color: rgba(255,255,255,.75); font-size: 13px; text-align: center; letter-spacing: .4px; }
.lightbox__close { position: absolute; top: 24px; right: 32px; color: #fff; font-size: 32px; line-height: 1; }
.lightbox__nav { position: absolute; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); color: #fff; transform: translateY(-50%); transition: background-color .3s var(--ease); }
.lightbox__nav:hover { background: rgba(255,255,255,.12); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---------- Contact ---------- */
.contact { position: relative; background: var(--ink); }
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgb(107 61 33 / 35%), transparent 55%);
}
.contact .container { position: relative; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(56px, 8vw, 128px); align-items: start; }
.contact-copy { max-width: 400px; }
.contact-copy h2, .contact-copy p { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.72); }
.contact-copy .eyebrow { color: var(--brass-soft); }
.contact-copy .eyebrow::after { background-image: repeating-linear-gradient(90deg, var(--brass-soft) 0, var(--brass-soft) 6px, transparent 6px, transparent 12px); }

.contact-form {
    padding: var(--space-6);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lifted);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3) var(--space-2); margin-bottom: var(--space-3); }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.form-field label span { color: var(--brass-soft); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.04);
    color: #fff;
    font-size: 15px;
}
.form-field input, .form-field select {
    color: #ffffff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.2);
}

.form-field select option {
    color: #14110d;
    background: #ffffff;
}
.form-field textarea { min-height: 120px; padding: 12px 16px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.4); }
.form-field select {
    color: #fff;
    background: rgba(255,255,255,.04);
}

.form-field select option {
    color: #000;
    background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--brass-soft); outline: 0; background: rgba(255,255,255,.08); }
.form-field input[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: #e08b7d; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-bottom: var(--space-3); }
.form-status p { margin: 0; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px; }
.form-status--success { background: rgb(63 107 74 / 20%); color: #a9d3b3; }
.form-status--error { background: rgb(161 59 46 / 20%); color: #eba79c; }
.contact-form .button--primary { background: var(--brass); color: var(--ink); }
.contact-form .button--primary:hover { background: var(--brass-soft); }

/* ---------- Footer ---------- */
.site-footer { padding: var(--space-6) 0 var(--space-3); border-top: 1px solid var(--hairline); background: var(--canvas); }
.footer-main, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.footer-main { padding-bottom: var(--space-6); }
.footer-main .brand-name { color: var(--ink); }
.footer-main .site-logo { display: none; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: var(--space-3); font-size: 14px; font-weight: 500; color: var(--body); }
.footer-main nav a:hover, .footer-bottom a:hover { color: var(--cognac); }
.footer-bottom { padding-top: var(--space-3); border-top: 1px solid var(--hairline); color: var(--muted); font-size: 13px; }
.footer-bottom p { margin: 0; }

/* ---------- Reveal animations ---------- */
[data-animate] { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-left"] { transform: translateX(28px); }
[data-animate="fade-right"] { transform: translateX(-28px); }
[data-animate].is-visible { opacity: 1; transform: translate(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .product-grid, .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
    :root { --section-space: 100px; }
    h1 { font-size: 48px; }
    .split-layout, .split-layout--reverse { gap: var(--space-6); }
    .product-grid, .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
    .gallery-item--large { grid-column: 1 / -1; grid-row: span 2; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-copy { max-width: none; margin-bottom: var(--space-6); }
}

@media (max-width: 767px) {
    :root { --section-space: 72px; }
    .container { width: min(100% - 40px, var(--container)); }
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }

   /* Mobile Navigation */

@media (max-width:767px){

.nav-toggle{

display:block;
position:relative;
z-index:100001;

width:48px;
height:48px;

padding:0;

background:none;
border:none;

}

.nav-toggle span{

position:absolute;

left:12px;

width:24px;
height:2px;

background:#fff;

transition:.35s;

}

.site-header.is-scrolled .nav-toggle span{

background:#14110d;

}

.nav-toggle span:nth-child(1){

top:15px;

}

.nav-toggle span:nth-child(2){

top:23px;

}

.nav-toggle span:nth-child(3){

top:31px;

}

.nav-toggle.active span:nth-child(1){

top:23px;

transform:rotate(45deg);

}

.nav-toggle.active span:nth-child(2){

opacity:0;

}

.nav-toggle.active span:nth-child(3){

top:23px;

transform:rotate(-45deg);

}

.primary-navigation{

position:fixed;

top:0;
left:0;

width:100vw;
height:100vh;

background:#14110d;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:38px;

z-index:100000;

opacity:0;

visibility:hidden;

pointer-events:none;

transition:.35s;

}

.primary-navigation.is-open{

opacity:1;

visibility:visible;

pointer-events:auto;

}

.primary-navigation a{

font-size:28px;

color:#fff;

text-decoration:none;

}

.nav-contact{

margin-top:20px;

}
.primary-navigation.is-open a{
    color:#ffffff !important;
}

.primary-navigation.is-open .button{
    background:#c8a46a !important;
    color:#14110d !important;
    border:1px solid #c8a46a;
}

}
    .hero__content { padding-top: 0; }
    .split-layout, .split-layout--reverse, .contact-layout { grid-template-columns: 1fr; gap: var(--space-4); }
    .split-layout--reverse .image-panel { order: 2; }
    .image-panel img { min-height: 380px; }
    .section-heading { margin-bottom: var(--space-4); }
    .product-grid, .benefit-grid, .form-grid { grid-template-columns: 1fr; }
    .product-card__content p { min-height: 0; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .gallery-item, .gallery-item--large { grid-column: auto; grid-row: span 1; }
    .contact-form { padding: var(--space-4); }
    .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-main { gap: var(--space-3); padding-bottom: var(--space-4); }
    .lightbox__nav { width: 40px; height: 40px; }
    .lightbox__close { top: 16px; right: 16px; }
}
.contact-details{
    margin-top:55px;
    display:flex;
    flex-direction:column;
    gap:30px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.contact-icon{
    width:50px;
    min-width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(199,164,106,.35);
    border-radius:50%;

    background:rgba(199,164,106,.08);

    color:var(--accent);
    font-size:20px;

    flex-shrink:0;
}

.contact-text{
    flex:1;
}
.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.contact-text h4{
    margin:0 0 8px;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--accent);
}

.contact-text p{
    margin:0;
    color:rgba(255,255,255,.78);
    line-height:1.8;
}

.contact-text a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-text a:hover{
    color:var(--accent);
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    [data-animate] { opacity: 1; transform: none; }
    .hero__scroll-line::after { animation: none; }
}
.form-field select option,
.form-field select optgroup {
    color: #14110d !important;
    background: #ffffff !important;
}