/* ============================================================
   Unikoll — Coffee & Tea Brochure
   Design: Deep espresso dark + warm cream + Unikoll teal
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400;1,600&display=swap');
@import url('https://fonts.cdnfonts.com/css/utendo');

:root {
    /* Brand */
    --teal: #00d2d3;
    --teal-dark: #01a3a4;

    /* Coffee palette */
    --espresso: #1a0f08;
    --roast: #2c1810;
    --mahogany: #4a2518;
    --caramel: #d4813a;
    --cream: #f5e6c8;
    --cream-light: #fffdf8;
    --ivory: #faf6ef;

    /* Tea palette */
    --jade: #2d6a4f;
    --jade-light: #d8f3dc;
    --matcha: #52b788;

    /* Neutrals */
    --white: #ffffff;
    --border: #e8dfd4;
    --text: #1c1008;
    --muted: #7a6555;

    --font: 'Utendo', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;
    --r-full: 999px;
    --sh-sm: 0 4px 6px rgba(0, 0, 0, 0.06);
    --sh-md: 0 12px 28px rgba(0, 0, 0, 0.1);
    --sh-lg: 0 28px 48px rgba(0, 0, 0, 0.16);
    --sh-cream: 0 0 28px rgba(212, 129, 58, 0.25);
    --sh-jade: 0 0 28px rgba(82, 183, 136, 0.2);
    --ease: 0.3s ease;
    --smooth: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    font-family: var(--font);
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn-cream {
    background: var(--cream);
    color: var(--espresso);
}

.btn-cream:hover {
    background: var(--caramel);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--sh-cream);
}

.btn-outline-cream {
    background: transparent;
    border: 2px solid rgba(245, 230, 200, 0.5);
    color: var(--cream);
}

.btn-outline-cream:hover {
    background: rgba(245, 230, 200, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--teal);
    color: #1a0f08;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-cream-solid {
    background: var(--cream);
    color: var(--espresso);
}

.btn-cream-solid:hover {
    background: var(--caramel);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost-cta {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn-ghost-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.nav-cta {
    padding: 9px 20px;
    font-size: 0.85rem;
}

/* EYEBROW + TITLES */
.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--caramel);
    margin-bottom: 10px;
}

.coffee-eyebrow {
    color: var(--caramel);
}

.tea-eyebrow {
    color: var(--jade);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--caramel);
    border-radius: var(--r-full);
}

.coffee-title {
    color: var(--espresso);
}

.coffee-title::after {
    background: var(--caramel);
}

.tea-title {
    color: var(--jade);
}

.tea-title::after {
    background: var(--jade);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    margin: 24px auto 0;
    line-height: 1.7;
}

.coffee-sub {
    color: var(--muted);
}

.tea-sub {
    color: #4a6754;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 246, 239, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--ease);
}

.navbar.scrolled {
    box-shadow: var(--sh-md);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    font-size: 0.94rem;
}

.nav-links a:hover {
    color: var(--caramel);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 15, 8, 0.95) 0%, rgba(44, 24, 16, 0.8) 50%, rgba(26, 15, 8, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 90px;
    max-width: 700px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 129, 58, 0.18);
    border: 1px solid rgba(212, 129, 58, 0.35);
    color: var(--cream);
    padding: 7px 18px;
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-pill i {
    color: var(--caramel);
    font-size: 1.1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.text-cream {
    color: var(--caramel);
    font-style: italic;
}

.hero-desc {
    font-size: 1.12rem;
    opacity: 0.82;
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Floating ambient cards */
.hero-ambient {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ah-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--ease);
}

.ah-card i {
    font-size: 1.4rem;
    color: var(--caramel);
}

.ah-card:hover {
    background: rgba(212, 129, 58, 0.15);
    border-color: rgba(212, 129, 58, 0.3);
    transform: translateX(-4px);
}

/* BREW STRIP */
.brew-strip {
    background: var(--espresso);
    padding: 18px 0;
}

.brew-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.bs-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 500;
}

.bs-item i {
    color: var(--caramel);
    font-size: 1.2rem;
}

.bs-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(212, 129, 58, 0.4);
}

/* COFFEE SECTION */
.coffee-section {
    background: var(--ivory);
}

/* Brew feature alternating layout */
.brew-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh-md);
    margin-bottom: 32px;
    border: 1px solid var(--border);
    transition: box-shadow var(--ease);
}

.brew-feature:hover {
    box-shadow: var(--sh-lg);
}

.brew-reverse {
    direction: rtl;
}

.brew-reverse>* {
    direction: ltr;
}

.brew-feature-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brew-tag {
    display: inline-block;
    background: rgba(212, 129, 58, 0.12);
    color: var(--caramel);
    border: 1px solid rgba(212, 129, 58, 0.3);
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.brew-feature-content h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 16px;
    line-height: 1.1;
}

.brew-feature-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.brew-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bspec {
    background: var(--ivory);
    border-radius: 0;
    padding: 12px 16px;
}

.bspec-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--caramel);
    font-weight: 700;
    margin-bottom: 3px;
}

.bspec span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.brew-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.brew-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--smooth);
}

.brew-feature:hover .brew-feature-image img {
    transform: scale(1.05);
}

.brew-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1;
}

/* Mini cards */
.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
    overflow: hidden;
}

.mini-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--caramel);
    transition: width 0.4s ease;
}

.mini-card:hover::after {
    width: 100%;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
}

.mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 0;
    background: rgba(212, 129, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-icon i {
    font-size: 1.6rem;
    color: var(--caramel);
}

.mini-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--espresso);
    font-family: var(--font-display);
}

.mini-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    flex-grow: 1;
}

.mini-tag {
    display: inline-block;
    background: var(--ivory);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--caramel);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TEA SECTION */
.tea-section {
    background: linear-gradient(160deg, #0a1f12 0%, #1a3628 50%, #0f2818 100%);
}

.tea-title {
    color: #fff;
}

.tea-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.tea-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.tea-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-jade);
    border-color: rgba(82, 183, 136, 0.35);
}

.featured-tea {
    background: rgba(255, 255, 255, 0.09);
}

.tea-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.featured-tea .tea-card-image {
    height: 280px;
}

.tea-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--smooth);
}

.tea-card:hover .tea-card-image img {
    transform: scale(1.07);
}

.tea-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--caramel);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.green-badge {
    background: var(--jade);
}

.tea-card-body {
    padding: 24px;
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tea-origin {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--matcha);
    font-weight: 600;
}

.tea-origin i {
    font-size: 0.9rem;
}

.tea-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.tea-card-body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    flex-grow: 1;
}

.tea-flavour-bar {
    display: block;
}

.tfb-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--matcha);
    margin-bottom: 5px;
    font-weight: 700;
}

.tfb-track {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--r-full);
    overflow: hidden;
}

.tfb-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--matcha), var(--caramel));
    border-radius: var(--r-full);
}

.tea-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.tea-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ESTATES */
.estates-section {
    background: var(--ivory);
}

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

.estate-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
    overflow: hidden;
}

.estate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--caramel), var(--jade));
}

.estate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
}

.estate-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.estate-icon i {
    font-size: 1.7rem;
    color: var(--caramel);
}

.estate-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--espresso);
    margin-bottom: 10px;
}

.estate-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.estate-crop {
    display: inline-block;
    background: var(--ivory);
    border: 1px solid var(--border);
    color: var(--caramel);
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WHY US */
.why-section {
    background: var(--espresso);
}

.why-section .section-title {
    color: #fff;
}

.why-section .section-title::after {
    background: var(--caramel);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 32px 24px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 129, 58, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-card i {
    font-size: 2rem;
    color: var(--caramel);
    display: block;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

/* ─────────────── Contact Section ─────────────── */
.contact-section {
    padding: 100px 0;
    background: var(--roast);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--caramel);
}

.info-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: var(--r-md);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream-light);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caramel);
    box-shadow: 0 0 0 4px rgba(212, 129, 58, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FOOTER */
.footer {
    background: var(--espresso);
    color: rgba(245, 230, 200, 0.6);
    padding-top: 60px;
}

.footer-inner {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

.footer-contact a:hover {
    color: var(--caramel);
}

.footer-contact i {
    color: var(--caramel);
    font-size: 1.1rem;
}

.footer-col h5 {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
}

.footer-col ul li a:hover {
    color: var(--caramel);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 200, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.86rem;
}

/* RESPONSIVE */
@media (max-width:1100px) {
    .estates-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-ambient {
        display: none;
    }

    .tea-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-tea {
        grid-column: span 2;
    }
}

@media (max-width:900px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .brew-feature {
        grid-template-columns: 1fr;
    }

    .brew-feature-image {
        min-height: 280px;
    }

    .brew-reverse {
        direction: ltr;
    }

    .mini-cards {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--ivory);
        padding: 20px 5%;
        box-shadow: var(--sh-md);
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width:700px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .tea-grid {
        grid-template-columns: 1fr;
    }

    .featured-tea {
        grid-column: span 1;
    }

    .brew-specs {
        grid-template-columns: 1fr;
    }

    .estates-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .brew-feature-content {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .bs-dot {
        display: none;
    }
}

/* ====================  PRINT STYLES FOR PDF  ==================== */
@media print {

    /* 1. Reset Base & Remove Animations */
    .fade-in,
    .fade-up,
    .visible {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    * {
        animation: none !important;
        transition: none !important;
    }

    @page {
        size: A4 portrait;
        margin: 15mm;
    }

    /* 2. Color & Typography Scaling */
    html,
    body {
        background-color: #fff !important;
        color: #111 !important;
        font-size: 14pt !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    h2.section-title {
        font-size: 24pt !important;
        margin-bottom: 20px !important;
    }

    h3 {
        font-size: 18pt !important;
    }

    p {
        font-size: 12pt !important;
        line-height: 1.6 !important;
    }

    /* 3. Hide Web-Only Elements */
    .navbar,
    footer,
    .contact-section,
    .btn {
        display: none !important;
    }

    /* 4. Magazine Pagination */
    .hero-section {
        min-height: 250mm !important;
        /* Force near full A4 page for cover */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 0 20mm !important;
        page-break-after: always !important;
        /* Start content on next page */
    }

    .section {
        padding: 10mm 0 !important;
        page-break-before: always !important;
        /* Each section on a new page */
        page-break-inside: avoid !important;
    }

    /* 5. A4 Optimized Grids (Forced 2-Column for Readability) */
    .tea-grid,
    .why-grid,
    .estates-grid,
    .mini-cards {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15mm !important;
        page-break-inside: auto !important;
    }

    .tea-card,
    .why-card,
    .estate-card,
    .mini-card {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        margin-bottom: 5mm !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .brew-feature {
        display: flex !important;
        flex-direction: column !important;
        /* Stack vertically for A4 */
        gap: 10mm !important;
        page-break-inside: avoid !important;
    }

    .brew-feature-image img {
        max-height: 100mm !important;
        object-fit: contain !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid !important;
    }

    ul,
    ol,
    p {
        page-break-inside: avoid !important;
    }
}