:root {
    --ink: #121714;
    --ink-2: #1d261f;
    --paper: #fffdf8;
    --paper-2: #f3f0e8;
    --green: #167344;
    --green-deep: #0d4f31;
    --orange: #f47a1f;
    --orange-soft: #ffb05d;
    --orange-text: #a94300;
    --line: #dcd8cd;
    --muted: #606860;
    --white: #fff;
    --radius: 14px;
    --shadow: 0 18px 45px rgba(25, 37, 28, .11);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
    font-family: "Fraunces", Georgia, serif;
    letter-spacing: -.025em;
    line-height: 1.08;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); margin-bottom: 20px; }
h3 { line-height: 1.25; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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;
}
.skip-link {
    position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px;
    background: var(--white); color: var(--ink); transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header {
    position: relative;
    z-index: 100;
    background: #090b0a;
    color: var(--white);
}
.nav-shell {
    width: min(calc(100% - 40px), 1240px);
    min-height: 96px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 32px;
}
.brand {
    width: 165px;
    padding: 5px 12px;
    background: var(--white);
    border-radius: 10px;
}
.brand img { width: 100%; height: 70px; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.25vw, 34px); }
.site-nav > a, .nav-dropdown > button {
    position: relative;
    padding: 35px 0;
    color: #eee;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.site-nav > a::after, .nav-dropdown > button::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 25px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.site-nav > a:hover::after, .site-nav > a.is-active::after,
.nav-dropdown > button:hover::after, .nav-dropdown.open > button::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% - 13px);
    left: -24px;
    width: 210px;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 600; }
.dropdown-menu a:hover { background: #f2eadf; color: var(--green-deep); }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.nav-call {
    padding: 11px 16px;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}
.nav-call:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--ink); box-shadow: 0 10px 22px rgba(244,122,31,.25); }
.button-primary:hover { background: var(--orange-soft); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--green-deep); box-shadow: 0 10px 24px rgba(13,79,49,.24); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.55); }
.button-outline-light:hover { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--green-deep); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.light-link { color: var(--white); }
.section-kicker, .hero-kicker, .masthead-kicker {
    margin-bottom: 12px;
    color: var(--orange-text);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.hero-kicker, .masthead-kicker { color: var(--orange-soft); }

.home-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    clip-path: inset(0 5% 0 0);
    transition:
        opacity .65s cubic-bezier(.16,1,.3,1),
        transform 1.1s cubic-bezier(.16,1,.3,1),
        clip-path .8s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .8s;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    clip-path: inset(0);
    transition-delay: 0s;
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(5,9,7,.92) 0%, rgba(5,9,7,.66) 48%, rgba(5,9,7,.32) 100%),
                linear-gradient(0deg, rgba(4,8,6,.42), transparent 55%);
}
.hero-content { position: relative; z-index: 2; padding-block: 100px 130px; }
.hero-content h1 { max-width: 780px; margin-bottom: 25px; }
.hero-content h1 em { color: var(--orange-soft); font-style: normal; }
.hero-content > p:not(.hero-kicker) { max-width: 640px; color: #e9eee9; font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.hero-scroll {
    position: absolute; z-index: 3; right: max(28px, calc((100vw - var(--container)) / 2)); bottom: 30px;
    display: flex; gap: 12px; color: #e5eae6; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
}
.hero-scroll span:last-child { color: var(--orange); }
.hero-slider-controls {
    position: absolute;
    z-index: 4;
    left: max(28px, calc((100vw - var(--container)) / 2));
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(8,12,9,.72);
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    cursor: pointer;
}
.hero-arrow:hover { color: var(--ink); background: var(--orange-soft); border-color: var(--orange-soft); }
.hero-dots { display: flex; gap: 7px; }
.hero-dots button {
    width: 21px;
    height: 5px;
    padding: 0;
    background: rgba(255,255,255,.4);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}
.hero-dots button.is-active { width: 38px; background: var(--orange-soft); }

.home-products, .catalogue-section, .gallery-page, .certificate-page, .contact-page, .about-page { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 26px; }
.category-card { min-width: 0; }
.category-visual {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ebe8e0;
}
.category-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.16,1,.3,1); }
.category-card:hover img { transform: scale(1.045); }
.category-index {
    position: absolute; left: 14px; bottom: 14px;
    min-width: 42px; padding: 5px 8px;
    background: rgba(10,14,11,.88); color: var(--white);
    border-radius: 999px; text-align: center; font-size: .75rem; font-weight: 700;
}
.category-content { padding: 22px 6px 0; }
.category-content h3 { margin-bottom: 8px; font: 700 1.55rem/1.2 "Fraunces", Georgia, serif; }
.category-content p { min-height: 78px; color: var(--muted); }

.about-band { padding: 95px 0; background: var(--ink-2); color: var(--white); }
.about-band .section-kicker { color: var(--orange-soft); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-story > p:not(.section-kicker) { color: #d5ddd6; }
.about-story .button { margin-top: 14px; }
.proof-list { border-top: 1px solid rgba(255,255,255,.17); }
.proof-list article {
    display: grid; grid-template-columns: 55px 1fr; gap: 20px;
    padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.17);
}
.proof-list h3 { margin-bottom: 5px; color: var(--orange-soft); font-size: 1.08rem; }
.proof-list p { margin-bottom: 0; color: #ced7cf; }
.proof-number { color: var(--orange); font: 700 1.2rem "Fraunces", Georgia, serif; }

.documents-preview { padding: 100px 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.document-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.document-feature {
    position: relative; min-height: 430px; overflow: hidden;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.document-feature img { width: 100%; height: 430px; object-fit: cover; object-position: top; }
.document-label {
    position: absolute; left: 22px; right: 22px; bottom: 22px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 20px; background: var(--ink); color: var(--white); border-radius: 10px;
}
.document-label small { color: var(--orange-soft); }
.document-copy h2 { font-size: clamp(2rem, 3vw, 3rem); }
.fact-list { margin: 28px 0; }
.fact-list div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--muted); }
.fact-list dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }

.buyer-cta { padding: 45px 0; background: var(--orange); }
.buyer-cta-inner { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 45px; align-items: center; }
.buyer-cta .section-kicker { color: #632706; }
.buyer-cta h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); }
.buyer-cta p { margin: 0; }
.buyer-cta .button-primary { background: var(--ink); color: var(--white); box-shadow: none; }

.testimonials-section { padding: 100px 0; background: var(--paper-2); }
.testimonial-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 48px;
}
.testimonial-heading h2 { margin-bottom: 0; }
.testimonial-disclaimer {
    margin: 0;
    padding: 15px 18px;
    color: #3f4b42;
    background: #e4e0d5;
    border-radius: 10px;
    font-size: .86rem;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-grid article {
    min-height: 290px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    background: var(--ink-2);
    border-radius: var(--radius);
}
.testimonial-grid article:nth-child(2) { background: var(--green-deep); }
.quote-mark {
    height: 54px;
    color: var(--orange-soft);
    font: 700 4.4rem/1 "Fraunces", Georgia, serif;
}
.testimonial-grid blockquote {
    margin: 14px 0 32px;
    color: #f1f3f1;
    font: 600 1.17rem/1.55 "Fraunces", Georgia, serif;
}
.testimonial-grid footer { margin-top: auto; display: grid; gap: 3px; }
.testimonial-grid footer span { color: #c4cec6; font-size: .82rem; }

.page-masthead {
    position: relative;
    min-height: 250px;
    display: grid;
    place-items: center;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(rgba(7,11,8,.9), rgba(7,11,8,.9)),
        url("images/spices.jpg") center 52% / cover;
}
.page-masthead .container { padding: 52px 0; }
.page-masthead h1 { margin-bottom: 14px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: #d7ded8; }
.breadcrumb a { color: var(--orange-soft); }

.catalogue-section .category-copy { max-width: 920px; margin-bottom: 50px; }
.category-copy > p:last-child { max-width: 76ch; color: var(--muted); }
.product-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-tile {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1.3 / 1; overflow: hidden; background: #f2f1ed; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.product-tile:hover .product-image img { transform: scale(1.04); }
.product-caption { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 20px; }
.product-caption h3 { margin: 0; font-size: 1.07rem; }
.product-caption a { color: var(--green-deep); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.availability-note {
    margin-top: 70px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 36px;
    align-items: center;
    color: var(--white);
    background: var(--green-deep);
    border-radius: var(--radius);
}
.availability-note h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.availability-note p { margin: 0; color: #d9e7de; }
.availability-note .section-kicker { color: var(--orange-soft); }

.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: start; }
.section-copy > p:not(.section-kicker) { color: var(--muted); }
.section-copy .button { margin-top: 12px; }
.why-panel { padding: 38px; background: var(--paper-2); border-radius: var(--radius); }
.why-panel h2 { font-size: clamp(2rem, 3vw, 3rem); }
.why-items article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.why-items span { color: var(--orange); font-weight: 700; }
.why-items h3 { margin-bottom: 4px; }
.why-items p { margin: 0; color: var(--muted); }
.identity-strip { padding: 40px 0; color: var(--white); background: var(--green-deep); }
.identity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.identity-grid div { min-width: 0; }
.identity-grid span { display: block; color: #b8d6c4; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.identity-grid strong { display: block; margin-top: 5px; overflow-wrap: anywhere; }

.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 20px; }
.masonry-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: #e9e7df; }
.masonry-grid .gallery-tall { grid-row: span 2; }
.masonry-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.masonry-grid figure:hover img { transform: scale(1.04); }
.masonry-grid figcaption {
    position: absolute; left: 14px; bottom: 14px;
    padding: 7px 11px; color: var(--white); background: rgba(9,12,10,.86);
    border-radius: 8px; font-size: .82rem; font-weight: 600;
}

.certificate-grid { display: grid; gap: 26px; }
.certificate-card {
    display: grid; grid-template-columns: 300px 1fr; gap: 38px; align-items: center;
    padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
}
.certificate-card > a:first-child { height: 230px; overflow: hidden; background: #eee; border-radius: 10px; }
.certificate-card > a:first-child img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.certificate-card h3 { margin-bottom: 10px; font: 700 1.75rem "Fraunces", Georgia, serif; }
.certificate-card p:not(.section-kicker) { color: var(--muted); }
.document-monogram {
    height: 190px; display: grid; place-items: center;
    color: var(--white); background: var(--green-deep); border-radius: 10px;
    font: 700 3.5rem "Fraunces", Georgia, serif; letter-spacing: -.03em;
}

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 65px; }
.contact-cards article { padding: 32px 25px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(20,31,23,.07); }
.contact-symbol {
    width: 62px; height: 62px; margin: 0 auto 16px;
    display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 50%; font-size: 1.55rem;
}
.contact-cards h2 { margin-bottom: 8px; font-size: 1.55rem; }
.contact-cards p { margin: 0; color: var(--muted); overflow-wrap: anywhere; }
.contact-cards a { color: var(--green-deep); font-weight: 700; }
.direct-contact {
    display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden;
    border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow);
}
.direct-contact-copy { padding: 55px; }
.direct-contact-copy > p:not(.section-kicker) { color: #d4dcd5; max-width: 65ch; }
.direct-contact .section-kicker { color: var(--orange-soft); }
.contact-checklist { padding: 55px; background: var(--green-deep); }
.contact-checklist h3 { font: 700 1.7rem "Fraunces", Georgia, serif; }
.contact-checklist ol { list-style: none; padding: 0; margin: 25px 0 0; }
.contact-checklist li { display: grid; grid-template-columns: 45px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-checklist li span { color: var(--orange-soft); font-weight: 700; }

.site-footer { padding: 72px 0 24px; color: var(--white); background: #080b09; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr .7fr; gap: 70px; }
.site-footer h2 { margin-bottom: 24px; color: var(--orange-soft); font-size: 1.65rem; }
.contact-list, .footer-links { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin-bottom: 12px; color: #d4dad5; }
.contact-list li span:last-child { overflow-wrap: anywhere; }
.footer-brand img { width: 190px; height: 92px; object-fit: contain; padding: 6px 10px; background: var(--white); border-radius: 10px; }
.footer-brand p { max-width: 40ch; margin-top: 18px; color: #cbd3cc; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: #dce1dd; }
.footer-links a::before { content: "›"; margin-right: 8px; color: var(--orange); }
.footer-bottom {
    margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15);
    display: flex; justify-content: space-between; gap: 20px; color: #aeb8b0; font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--orange-soft); }
.floating-call {
    position: fixed; z-index: 80; right: 22px; bottom: 22px;
    width: 55px; height: 55px; display: none; place-items: center;
    color: var(--white); background: var(--orange); border-radius: 50%; box-shadow: 0 13px 28px rgba(50,25,5,.28);
}

@media (max-width: 1080px) {
    .nav-shell { grid-template-columns: 160px 1fr; }
    .nav-call { display: none; }
    .site-nav { justify-content: flex-end; gap: 18px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout, .document-row, .about-page-grid { gap: 50px; }
    .buyer-cta-inner { grid-template-columns: 1fr 1fr; }
    .buyer-cta-inner .button { justify-self: start; }
}

@media (max-width: 820px) {
    .nav-shell { min-height: 82px; grid-template-columns: 1fr auto; }
    .brand { width: 145px; }
    .brand img { height: 56px; }
    .menu-toggle {
        width: 45px; height: 45px; padding: 10px;
        display: grid; align-content: center; gap: 5px;
        background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 9px;
    }
    .menu-toggle span:not(.sr-only) { height: 2px; background: var(--white); transition: transform .2s, opacity .2s; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .site-nav {
        position: fixed; inset: 82px 0 0;
        display: block; padding: 22px 25px 80px; overflow-y: auto;
        background: #090b0a;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.16,1,.3,1), visibility 0s linear .3s;
    }
    .site-nav.open {
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition-delay: 0s;
    }
    .site-nav > a, .nav-dropdown > button { width: 100%; padding: 16px 4px; display: block; text-align: left; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.13); }
    .site-nav > a::after, .nav-dropdown > button::after { display: none; }
    .dropdown-menu {
        position: static; width: 100%; padding: 6px 0 8px 18px;
        color: var(--white); background: transparent; box-shadow: none; border-radius: 0;
        display: none; opacity: 1; visibility: visible; transform: none;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 10px 6px; color: #d5ddd6; }
    .dropdown-menu a:hover { color: var(--orange-soft); background: transparent; }
    .home-hero { min-height: 610px; }
    .hero-content { padding-block: 90px 120px; }
    .home-products, .catalogue-section, .gallery-page, .certificate-page, .contact-page, .about-page { padding: 75px 0; }
    .about-layout, .document-row, .about-page-grid, .direct-contact { grid-template-columns: 1fr; }
    .split-heading { grid-template-columns: 1fr; gap: 15px; }
    .document-row { gap: 40px; }
    .product-gallery { grid-template-columns: repeat(2, 1fr); }
    .availability-note { grid-template-columns: 1fr; }
    .identity-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .certificate-card { grid-template-columns: 240px 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .testimonial-heading { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > section:last-child { grid-column: 1 / -1; }
    .floating-call { display: grid; }
}

@media (max-width: 560px) {
    .container, .nav-shell { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .home-hero { min-height: 650px; }
    .hero-shade { background: linear-gradient(rgba(4,9,6,.78), rgba(4,9,6,.9)); }
    .hero-content { padding-block: 78px 130px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .hero-scroll { right: 18px; left: 18px; justify-content: space-between; }
    .hero-slider-controls { left: 14px; bottom: 64px; }
    .category-grid, .product-gallery { grid-template-columns: 1fr; }
    .category-content p { min-height: 0; }
    .about-band, .documents-preview, .testimonials-section { padding: 72px 0; }
    .about-layout { gap: 55px; }
    .document-feature, .document-feature img { min-height: 330px; height: 330px; }
    .document-label { left: 12px; right: 12px; bottom: 12px; }
    .fact-list div { grid-template-columns: 90px 1fr; }
    .buyer-cta-inner { grid-template-columns: 1fr; gap: 22px; }
    .page-masthead { min-height: 220px; }
    .product-caption { align-items: flex-start; flex-direction: column; }
    .availability-note { padding: 27px 22px; }
    .why-panel, .direct-contact-copy, .contact-checklist { padding: 30px 24px; }
    .identity-grid { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .masonry-grid .gallery-tall { grid-row: span 1; }
    .certificate-card { grid-template-columns: 1fr; padding: 20px; gap: 24px; }
    .certificate-card > a:first-child, .document-monogram { height: 200px; }
    .footer-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-grid > section:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
