/* ============================================================
   ÖZDEMİR TARIM — brand-new front-end design system
   Industrial-agriculture identity: brand red + charcoal + wheat.
   Written from scratch (does not depend on the old theme CSS).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --red: #d81f2b;
    --red-dark: #ad1420;
    --red-soft: #fdecec;
    --ink: #141210;
    --ink-2: #1e1b18;
    --ink-3: #2b2724;
    --charcoal: #211d1a;
    --paper: #ffffff;
    --sand: #f6f2ea;
    --sand-2: #efe9dd;
    --wheat: #c8992e;
    --wheat-soft: #f5edd8;
    --muted: #6d655d;
    --muted-2: #8b837a;
    --line: #e7e0d6;
    --line-2: rgba(255, 255, 255, .12);

    --shadow-xs: 0 2px 8px rgba(20, 18, 16, .06);
    --shadow-sm: 0 8px 24px rgba(20, 18, 16, .08);
    --shadow-md: 0 18px 44px rgba(20, 18, 16, .12);
    --shadow-lg: 0 30px 70px rgba(20, 18, 16, .18);
    --shadow-red: 0 14px 30px rgba(216, 31, 43, .30);

    --r-sm: 10px;
    --r: 16px;
    --r-lg: 22px;
    --r-pill: 999px;

    --container: 1240px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --display: "Space Grotesk", var(--font);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -.015em; color: var(--ink); }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
img[loading] { background: var(--sand); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container-wide { max-width: 1420px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: #efeae3; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-weight: 700; font-size: 13px;
    letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.bg-ink .eyebrow { color: var(--wheat); }
.bg-ink .eyebrow::before { background: var(--wheat); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 46px); margin: 16px 0 0; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }
.bg-ink .section-head p { color: #b8afa4; }

.lead { font-size: 18px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font); font-weight: 600; font-size: 15px;
    padding: 15px 26px; border-radius: var(--r-pill);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    will-change: transform; white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.bg-ink .btn-outline { color: #fff; }
.bg-ink .btn-outline:hover { background: #fff; color: var(--ink); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--red); }
.link-arrow i { transition: transform .3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* round icon button */
.icon-btn {
    width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--red-soft); color: var(--red); flex: none;
    transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.icon-btn:hover { background: var(--red); color: #fff; transform: rotate(-45deg); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar { background: var(--ink); color: #cabfb3; font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; flex-wrap: wrap; }
.topbar a { color: #cabfb3; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info li { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info i { color: var(--red); }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
    width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .07); transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.topbar-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }

.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; gap: 26px; min-height: 78px; }
.brand { flex: none; }
.brand img { height: 90px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav .nav-item { position: relative; }
.main-nav .nav-item > a {
    display: inline-flex; align-items: center; gap: 6px; padding: 12px 16px;
    font-weight: 600; font-size: 15px; color: var(--ink); border-radius: 10px;
}
.main-nav .nav-item > a:hover { color: var(--red); }
.main-nav .nav-item > a .caret { font-size: 10px; opacity: .6; transition: transform .25s var(--ease); }
.main-nav .nav-item:hover > a .caret { transform: rotate(180deg); }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 236px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.main-nav .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 10px; font-weight: 500; font-size: 14.5px; color: var(--ink-3); }
.dropdown a:hover { background: var(--sand); color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.lang-switch {
    width: 42px; height: 42px; border-radius: 50%; overflow: hidden; border: 2px solid var(--red);
    display: inline-flex; align-items: center; justify-content: center; transition: transform .25s var(--ease);
}
.lang-switch:hover { transform: scale(1.08); }
.lang-switch img { width: 100%; height: 100%; object-fit: cover; }
.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: #fff; font-size: 20px; align-items: center; justify-content: center; flex: none; transition: background-color .25s var(--ease); }
.nav-toggle:hover { background: var(--red); }

/* mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-drawer .overlay { position: absolute; inset: 0; background: rgba(20, 18, 16, .5); opacity: 0; transition: opacity .3s var(--ease); }
.mobile-drawer .panel {
    position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw); background: #fff;
    transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column;
    padding: 22px; overflow-y: auto;
}
.mobile-drawer.open { visibility: visible; }
.mobile-drawer.open .overlay { opacity: 1; }
.mobile-drawer.open .panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-head img { height: 44px; }
.drawer-close { font-size: 24px; color: var(--ink); width: 42px; height: 42px; }
.mobile-nav a { display: block; padding: 14px 6px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line); }
.mobile-nav .sub a { padding-left: 20px; font-weight: 500; font-size: 14.5px; color: var(--muted); }
.mobile-nav .group > span { display: block; padding: 14px 6px 6px; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.drawer-foot { margin-top: auto; padding-top: 22px; color: var(--muted); font-size: 14px; }
.drawer-foot a { color: var(--ink); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero-slider { position: relative; height: clamp(520px, 82vh, 820px); }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity 1s var(--ease), visibility 1s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide .bg { position: absolute; inset: 0; }
.hero-slide .bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 7s ease; }
.hero-slide.active .bg img { transform: scale(1); }
.hero-slide .bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(16, 13, 11, .82) 0%, rgba(16, 13, 11, .5) 42%, rgba(16, 13, 11, .12) 72%),
                linear-gradient(0deg, rgba(16, 13, 11, .6) 0%, rgba(16, 13, 11, 0) 45%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-content .inner { max-width: 660px; color: #fff; }
.hero-content .eyebrow { color: var(--wheat); }
.hero-content .eyebrow::before { background: var(--wheat); }
.hero-content h1 { color: #fff; font-size: clamp(34px, 6vw, 68px); margin: 18px 0; text-shadow: 0 6px 30px rgba(0, 0, 0, .3); }
.hero-content p { font-size: clamp(16px, 2vw, 19px); color: #e6ddd3; max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrows { position: absolute; bottom: 30px; right: 6%; z-index: 3; display: flex; gap: 10px; }
.hero-arrows button {
    width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .35); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; transition: background-color .25s var(--ease), border-color .25s var(--ease);
    backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: var(--red); border-color: var(--red); }
.hero-dots { position: absolute; bottom: 34px; left: 6%; z-index: 3; display: flex; gap: 9px; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .4); transition: all .3s var(--ease); }
.hero-dots button.active { width: 30px; border-radius: 6px; background: var(--red); }

/* hero stat strip */
.hero-stats { position: relative; z-index: 4; margin-top: -58px; }
.hero-stats .wrap {
    background: var(--ink); color: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.hero-stats .stat { padding: 30px 26px; border-right: 1px solid rgba(255, 255, 255, .08); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .num { font-family: var(--display); font-size: 40px; font-weight: 700; color: #fff; display: flex; align-items: baseline; gap: 2px; }
.hero-stats .num .suf { color: var(--red); }
.hero-stats .lbl { color: #b6ada2; font-size: 14.5px; margin-top: 4px; }

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    display: flex; flex-direction: column; height: 100%;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .thumb { aspect-ratio: 16 / 11; overflow: hidden; }
.feature-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-card:hover .thumb img { transform: scale(1.07); }
.feature-card .body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.feature-card .body h3 { font-size: 21px; }
.feature-card .body p { color: var(--muted); font-size: 15px; }
.feature-card .body .link-arrow { margin-top: auto; padding-top: 6px; }

.value-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 28px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    height: 100%;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .ic { width: 60px; height: 60px; border-radius: 16px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; }
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 15px; }
.bg-ink .value-card { background: var(--ink-2); border-color: rgba(255, 255, 255, .08); }
.bg-ink .value-card p { color: #b3a99e; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-card .thumb { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform .8s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.05); }
.product-card .chip {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--red); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill);
}
.product-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card .body h3 { font-size: 20px; }
.product-card .body h3 a:hover { color: var(--red); }
.product-card .body p { color: var(--muted); font-size: 14.5px; }
.product-card .foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; }
.product-card .foot .more { font-weight: 600; font-size: 14px; color: var(--ink); }
.product-card:hover .foot .more { color: var(--red); }

/* ============================================================
   ABOUT / MEDIA SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.reverse .media { order: 2; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.tall { aspect-ratio: 4 / 4.4; }
.media-badge {
    position: absolute; right: 18px; bottom: 18px; background: var(--red); color: #fff; border-radius: var(--r);
    padding: 18px 22px; box-shadow: var(--shadow-red); max-width: 220px;
}
.media-badge .b-num { font-family: var(--display); font-size: 30px; font-weight: 700; }
.media-badge .b-lbl { font-size: 13px; opacity: .92; }

.check-list { display: grid; gap: 14px; margin: 26px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-3); }
.check-list li i { color: var(--red); margin-top: 4px; }
.bg-ink .check-list li { color: #d8cfc4; }

/* mission / vision */
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px; height: 100%; }
.mv-card .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--wheat-soft); color: var(--wheat); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.mv-card h3 { font-size: 22px; margin-bottom: 10px; }
.mv-card p { color: var(--muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff; padding: clamp(38px, 6vw, 66px); text-align: center;
}
.cta::before { content: "\f4d8"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -20px; bottom: -30px; font-size: 220px; opacity: .08; }
.cta h2 { color: #fff; font-size: clamp(26px, 4vw, 42px); }
.cta p { max-width: 620px; margin: 16px auto 28px; color: #ffe4e5; }
.cta .btn-light { color: var(--red); }

/* ============================================================
   PAGE HERO (inner banner)
   ============================================================ */
.page-hero { position: relative; padding: clamp(70px, 12vw, 130px) 0 clamp(50px, 8vw, 78px); color: #fff; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 13, 11, .55), rgba(16, 13, 11, .78)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--wheat); }
.page-hero .eyebrow::before { background: var(--wheat); }
.page-hero h1 { color: #fff; font-size: clamp(30px, 5.5vw, 56px); margin: 16px 0 18px; }
.crumb { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14.5px; color: #d9cfc4; }
.crumb a:hover { color: #fff; }
.crumb i { font-size: 10px; color: var(--wheat); }
.crumb .cur { color: #fff; }

/* ============================================================
   BLOG
   ============================================================ */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .date { position: absolute; left: 16px; bottom: 16px; background: var(--red); color: #fff; border-radius: var(--r-sm); padding: 8px 14px; text-align: center; line-height: 1.1; }
.post-card .date .d { font-family: var(--display); font-size: 20px; font-weight: 700; display: block; }
.post-card .date .m { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.post-card .body { padding: 24px; }
.post-card .body h3 { font-size: 21px; margin-bottom: 10px; }
.post-card .body h3 a:hover { color: var(--red); }
.post-card .body p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }

.post-list { display: grid; gap: 30px; }
.article-body { font-size: 17px; color: var(--ink-3); }
.article-body p { margin-bottom: 18px; }
.article-body img { border-radius: var(--r); margin: 20px 0; }
.article-body h2, .article-body h3 { margin: 26px 0 12px; }
.article-hero { border-radius: var(--r-lg); overflow: hidden; margin: 22px 0 26px; }
.article-meta { display: flex; gap: 18px; color: var(--muted); font-size: 14.5px; margin: 8px 0 4px; }
.article-meta i { color: var(--red); margin-right: 6px; }

.sidebar-card { background: var(--sand); border-radius: var(--r); padding: 26px; }
.sidebar-card h4 { font-size: 18px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.mini-post { display: flex; gap: 14px; padding: 12px 0; }
.mini-post + .mini-post { border-top: 1px solid var(--line); }
.mini-post .thumb { width: 78px; height: 66px; border-radius: 10px; overflow: hidden; flex: none; }
.mini-post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-post .date { font-size: 12.5px; color: var(--muted); }
.mini-post .t { font-weight: 600; font-size: 14.5px; display: block; margin-top: 2px; }
.mini-post .t:hover { color: var(--red); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.detail-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.detail-hero { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 11; background: var(--sand); }
.detail-hero img { width: 100%; height: 100%; object-fit: contain; padding: 28px; transition: transform .6s var(--ease); }
.detail-hero:hover img { transform: scale(1.03); }
.detail-hero .zoom { position: absolute; right: 16px; bottom: 16px; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; }
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.detail-thumbs a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: #fff; border: 1px solid var(--line); }
.detail-thumbs img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .5s var(--ease); }
.detail-thumbs a:hover img { transform: scale(1.08); }
.detail-body { margin-top: 34px; }
.detail-side { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-cta { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 30px; text-align: center; }
.side-cta .ic { width: 62px; height: 62px; border-radius: 16px; background: rgba(216, 31, 43, .16); color: var(--red); display: grid; place-items: center; font-size: 24px; margin: 0 auto 16px; }
.side-cta h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.side-cta .btn-outline { color: #fff; border-color: rgba(255, 255, 255, .3); }
.side-cta .btn-outline:hover { background: #fff; color: var(--ink); }
.side-cats { background: var(--sand); border-radius: var(--r); padding: 26px; }
.side-cats h4 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.side-cats ul { display: grid; gap: 10px; }
.side-cats a { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.side-cats a i { color: var(--red); font-size: 12px; }
.side-cats a:hover { color: var(--red); }

/* ============================================================
   GALLERY
   ============================================================ */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media-grid .cell { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-xs); cursor: pointer; }
.media-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.media-grid .cell:hover img { transform: scale(1.08); }
.media-grid .cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16, 13, 11, .4), transparent 55%); opacity: 0; transition: opacity .3s var(--ease); }
.media-grid .cell:hover::after { opacity: 1; }
.media-grid .cell .play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.media-grid .cell .play i { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-size: 20px; box-shadow: var(--shadow-red); transition: transform .3s var(--ease); }
.media-grid .cell:hover .play i { transform: scale(1.1); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.info-list { display: grid; gap: 16px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.info-item .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 19px; flex: none; }
.info-item .t { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.info-item .v { font-weight: 600; color: var(--ink); word-break: break-word; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--sand);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-soft); }
.map-embed { line-height: 0; }
.map-embed iframe { width: 100%; height: 460px; border: 0; filter: grayscale(.15); }

/* bank accounts */
.bank-card { display: flex; align-items: center; gap: 18px; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; }
.bank-card h5 { font-size: 18px; }
.bank-card p { color: var(--muted); font-size: 14.5px; }
.bank-card .iban { font-family: var(--display); font-weight: 600; letter-spacing: .04em; margin-top: 4px; }
.bank-card img { max-width: 92px; height: auto; }

/* prose (contract / generic) */
.prose { max-width: 860px; margin-inline: auto; font-size: 17px; color: var(--ink-3); }
.prose p { margin-bottom: 16px; text-align: justify; }
.prose h1, .prose h2, .prose h3 { margin: 24px 0 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #b6ada2; padding-top: clamp(50px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-brand img { height: 54px; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; font-size: 15px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .07); display: grid; place-items: center; transition: background-color .25s var(--ease), transform .25s var(--ease); }
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 15px; display: inline-flex; align-items: center; gap: 9px; }
.footer-col a i { font-size: 11px; color: var(--red); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; }
.footer-contact i { color: var(--red); margin-top: 4px; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 14px; color: #8b837a; }
.footer-bottom a { color: var(--wheat); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 120; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: grid; place-items: center; font-size: 30px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, .45); animation: wa 2.4s infinite; transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes wa { 0% { box-shadow: 0 12px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 12px 28px rgba(37, 211, 102, .35), 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   CREATIVE ACCENTS
   ============================================================ */
/* centered heading underline */
.section-head.center h2::after {
    content: ""; display: block; width: 64px; height: 3px; margin: 18px auto 0;
    border-radius: 3px; background: linear-gradient(90deg, var(--red), var(--wheat));
}

/* card top accent line grows on hover */
.feature-card, .product-card { position: relative; }
.feature-card::after, .product-card::after {
    content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0;
    background: linear-gradient(90deg, var(--red), var(--wheat)); z-index: 3;
    transition: width .45s var(--ease);
}
.feature-card:hover::after, .product-card:hover::after { width: 100%; }

/* numbered feature cards */
.feature-card .thumb { position: relative; }
.fc-num {
    position: absolute; top: 12px; right: 16px; z-index: 2;
    font-family: var(--display); font-weight: 700; font-size: 30px; color: #fff; opacity: .92;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

/* dark sections get a subtle dotted texture */
.bg-ink {
    background-color: var(--ink);
    background-image: radial-gradient(rgba(255, 255, 255, .045) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

/* decorative offset frame behind media */
.media-accent { position: relative; }
.media-accent::before {
    content: ""; position: absolute; inset: 0; transform: translate(20px, 20px);
    border: 2px solid var(--red); border-radius: var(--r-lg); z-index: 0; pointer-events: none;
}
.media-accent .media-frame { position: relative; z-index: 1; }

/* hero scroll cue */
.hero-scroll {
    position: absolute; left: 50%; bottom: 92px; transform: translateX(-50%); z-index: 3;
    display: grid; place-items: center; color: #fff; opacity: .85;
}
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255, 255, 255, .6); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after {
    content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; background: #fff;
    border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 992px) {
    .topbar { display: none; }
    .main-nav, .lang-desktop { display: none; }
    .header-actions { margin-left: auto; }
    .nav-toggle { display: inline-flex; }
    .site-header .container { min-height: 68px; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-side { position: static; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .wrap { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .stat:nth-child(2) { border-right: none; }
    .hero-stats .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .hero-scroll { display: none; }
    .media-accent::before { transform: translate(12px, 12px); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .hero-arrows { display: none; }
    .hero-slider { height: 78vh; }
    .bank-card { flex-direction: column; align-items: flex-start; }
    .cta { padding: 34px 22px; }
}
@media (max-width: 420px) {
    .media-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: clamp(28px, 8.5vw, 40px); }
}
