/* ============================================================
   PRESTIJ — Naxçıvan Pivəsi
   Modern editorial frontend · hazırlanma: 2026
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --bg:        #f5efe3;
    --bg-2:      #ede4d1;
    --panel:     #fffdf6;
    --ink:       #191512;
    --ink-2:     #4f463c;
    --muted:     #8b7d6b;
    --line:      rgba(25, 21, 18, .12);

    --amber:     #c9821e;
    --amber-2:   #e3a53a;
    --amber-dp:  #9a5f13;

    --dark:      #141110;
    --dark-2:    #1e1815;
    --teal-bg:   #0e2b24;
    --teal:      #2fa08f;

    --font-d:    'Montserrat', 'Segoe UI', sans-serif;
    --font-b:    'Inter', 'Segoe UI', sans-serif;
    --font-s:    'Playfair Display', Georgia, serif;

    --r-lg:      28px;
    --r-md:      20px;
    --shadow-1:  0 18px 50px -18px rgba(25, 21, 18, .25);
    --ease:      cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
::selection { background: var(--amber); color: #fff; }

body.no-scroll { overflow: hidden; }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }

/* ---------- Grain overlay ---------- */
.grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 3px;
    z-index: 250;
    background: linear-gradient(90deg, var(--amber-dp), var(--amber-2));
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-d);
    font-size: 12px; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--amber-dp);
}
.eyebrow::before {
    content: ""; width: 34px; height: 2px;
    background: var(--amber); border-radius: 2px;
}
.eyebrow-light { color: var(--amber-2); }
.eyebrow-teal { color: var(--teal); }
.eyebrow-teal::before { background: var(--teal); }

h1, h2, h3 { font-family: var(--font-d); line-height: 1.08; }

h1 em, h2 em, .heritage-title em, .cta-inner em {
    font-family: var(--font-s);
    font-style: italic; font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--amber-dp);
    background: linear-gradient(115deg, var(--amber-dp) 20%, var(--amber-2) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: .08em;
}
.heritage-title em, .daridag-head h2 em {
    background: linear-gradient(115deg, var(--amber-2) 10%, #f4c877 90%);
    -webkit-background-clip: text;
    background-clip: text;
}
.daridag-head h2 em {
    background: linear-gradient(115deg, var(--teal) 10%, #6fd3c2 90%);
    -webkit-background-clip: text;
    background-clip: text;
}
.cta-inner em {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: #3d2705;
}

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0 110px; }

.section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head h2 {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800; text-transform: uppercase; letter-spacing: -.01em;
    margin-top: 14px;
}
.section-head-right { display: flex; align-items: center; gap: 22px; }

/* ---------- Buttons & links ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-d); font-weight: 700; font-size: 14px;
    letter-spacing: .04em;
    padding: 15px 30px; border-radius: 999px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
    will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-sm { padding: 11px 22px; font-size: 13px; }

.btn-solid {
    background: linear-gradient(120deg, var(--amber-dp), var(--amber) 45%, var(--amber-2) 75%, var(--amber));
    background-size: 220% 100%;
    background-position: 0% 0%;
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(201, 130, 30, .55);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .5s var(--ease);
}
.btn-solid:hover {
    transform: translateY(-3px);
    background-position: 95% 0%;
    box-shadow: 0 18px 34px -10px rgba(201, 130, 30, .65);
}

.btn-ghost {
    border: 1.5px solid var(--line);
    color: var(--ink);
    background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .5); }

.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); background: #fff; }

.link-more {
    font-family: var(--font-d); font-weight: 700; font-size: 14px;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--amber-dp);
    position: relative; padding-bottom: 4px;
    white-space: nowrap;
}
.link-more::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 2px; background: var(--amber);
    transform: scaleX(.35); transform-origin: left;
    transition: transform .35s var(--ease);
}
.link-more:hover::after { transform: scaleX(1); }
.link-more-light { color: var(--teal); }
.link-more-light::after { background: var(--teal); }

/* ---------- Nav ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 120;
    padding: 20px 0;
    transition: padding .4s var(--ease);
}
.nav-inner {
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    padding: 8px 10px 8px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background .4s, border-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.scrolled { padding: 10px 0; }
.nav.scrolled .nav-inner {
    background: rgba(245, 239, 227, .78);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-color: var(--line);
    box-shadow: 0 14px 40px -18px rgba(25, 21, 18, .25);
}
.nav.scrolled .nav-logo img { height: 58px; }

.nav-logo img {
    height: 72px; width: auto;
    filter: brightness(0);
    opacity: .92;
    transition: filter .3s, opacity .3s, transform .3s var(--ease);
}
.nav-logo:hover img { transform: scale(1.04); }
body.menu-open .nav-logo img { filter: none; opacity: 1; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
    font-family: var(--font-d); font-size: 13.5px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    color: var(--ink-2);
    position: relative; padding: 6px 0;
    transition: color .3s;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 2px; border-radius: 2px;
    background: var(--amber);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }

/* ---------- Dil seçicisi ---------- */
.lang-switch {
    display: flex; align-items: center; gap: 2px;
    padding: 4px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 246, .5);
}
.lang-switch a {
    font-family: var(--font-d); font-size: 11.5px; font-weight: 800;
    letter-spacing: .06em;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    transition: color .3s, background .3s;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active {
    background: var(--ink);
    color: var(--bg);
}
.lang-switch-mobile {
    margin-top: 34px;
    align-self: flex-start;
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .05);
}
.lang-switch-mobile a { color: rgba(245, 239, 227, .6); padding: 8px 14px; font-size: 13px; }
.lang-switch-mobile a:hover { color: #fff; }
.lang-switch-mobile a.is-active { background: var(--amber-2); color: #241a0c; }

.nav-burger {
    display: none;
    width: 46px; height: 46px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    position: relative;
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    transition: border-color .3s;
    z-index: 160;
}
.nav-burger span {
    display: block; width: 18px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .35s var(--ease), background .3s;
}
body.menu-open .nav-burger { border-color: rgba(255, 255, 255, .3); }
body.menu-open .nav-burger span { background: #fff; }
body.menu-open .nav-burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 140;
    background: radial-gradient(120% 120% at 80% 0%, #241c15 0%, var(--dark) 55%);
    display: flex; flex-direction: column; justify-content: center;
    padding: 100px 8vw 60px;
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity .45s var(--ease), visibility .45s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-menu-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu-links a {
    font-family: var(--font-d);
    font-size: clamp(30px, 8vw, 52px);
    font-weight: 800; text-transform: uppercase;
    color: var(--bg);
    padding: 10px 0;
    display: flex; align-items: baseline; gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transform: translateY(24px); opacity: 0;
    transition: transform .5s var(--ease), opacity .5s, color .3s;
}
.mobile-menu-links a span {
    font-size: 13px; font-weight: 700; color: var(--amber-2);
    letter-spacing: .1em;
}
.mobile-menu-links a:hover { color: var(--amber-2); }
body.menu-open .mobile-menu-links a { transform: none; opacity: 1; }
body.menu-open .mobile-menu-links a:nth-child(1) { transition-delay: .08s; }
body.menu-open .mobile-menu-links a:nth-child(2) { transition-delay: .16s; }
body.menu-open .mobile-menu-links a:nth-child(3) { transition-delay: .24s; }
body.menu-open .mobile-menu-links a:nth-child(4) { transition-delay: .32s; }

.mobile-menu-note {
    margin-top: 40px;
    color: rgba(255, 255, 255, .4);
    font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- Age gate ---------- */
.age-gate {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    background: rgba(15, 12, 10, .82);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}
.age-gate[hidden] { display: none !important; }
.age-gate.show { opacity: 1; pointer-events: auto; }
.age-gate.hide { opacity: 0; pointer-events: none; }

.age-card {
    width: min(520px, 100%);
    background: linear-gradient(160deg, #241d16, #161210);
    border: 1px solid rgba(227, 165, 58, .25);
    border-radius: var(--r-lg);
    padding: 48px 44px;
    text-align: center;
    color: var(--bg);
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
    transform: translateY(14px);
    transition: transform .45s var(--ease);
}
.age-gate.show .age-card { transform: none; }

.age-logo { height: 74px; width: auto; margin: 0 auto 22px; }
.age-eyebrow {
    font-family: var(--font-d); font-size: 11.5px; font-weight: 700;
    letter-spacing: .3em; text-transform: uppercase;
    color: var(--amber-2); margin-bottom: 10px;
}
.age-card h2 {
    font-size: clamp(22px, 4vw, 30px); font-weight: 800;
    text-transform: uppercase; margin-bottom: 14px;
}
.age-text { color: rgba(245, 239, 227, .72); font-size: 15px; margin-bottom: 28px; }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-actions .btn-ghost { border-color: rgba(255, 255, 255, .25); color: var(--bg); }
.age-actions .btn-ghost:hover { border-color: var(--bg); }

/* ---------- Hero ---------- */
.hero {
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 150px 0 40px;
    position: relative;
    background:
        radial-gradient(55% 45% at 82% 18%, rgba(227, 165, 58, .18) 0%, transparent 70%),
        radial-gradient(40% 35% at 8% 85%, rgba(201, 130, 30, .12) 0%, transparent 70%),
        radial-gradient(30% 30% at 30% 20%, rgba(30, 91, 60, .07) 0%, transparent 70%),
        var(--bg);
    overflow: hidden;
}
.hero::before {
    content: "PRESTIJ";
    position: absolute;
    top: 72px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-d);
    font-size: clamp(110px, 20vw, 300px);
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(25, 21, 18, .06);
    pointer-events: none;
    user-select: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
}

.hero-title {
    font-size: clamp(42px, 6.6vw, 84px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin: 22px 0 24px;
}
.hero-lead {
    font-size: clamp(16px, 1.6vw, 18.5px);
    color: var(--ink-2);
    max-width: 52ch;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: clamp(28px, 4vw, 56px);
    margin-top: 54px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.hero-stats strong {
    display: block;
    font-family: var(--font-d);
    font-size: clamp(26px, 3vw, 38px); font-weight: 800;
    letter-spacing: -.01em;
}
.hero-stats span {
    font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted);
}

/* Hero stage */
.hero-stage { display: flex; justify-content: center; }
.hero-arch {
    --pc: #14532d; --pc2: #2b8a50;
    position: relative;
    width: min(460px, 100%);
    aspect-ratio: 4 / 5.1;
    border-radius: 500px 500px 34px 34px;
    background:
        radial-gradient(80% 55% at 50% 30%, rgba(255, 255, 255, .22) 0%, transparent 60%),
        linear-gradient(168deg, var(--pc) 8%, var(--pc2) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .14),
        0 50px 90px -40px rgba(20, 83, 45, .55);
}

.hero-ring {
    position: absolute;
    width: 118%; left: -9%; top: 6%;
    animation: spin 26s linear infinite;
    opacity: .9;
}
.hero-ring text {
    font-family: var(--font-d); font-size: 13.5px; font-weight: 700;
    letter-spacing: .34em;
    fill: var(--amber-dp);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-bottle {
    position: absolute;
    left: 50%; bottom: 6%;
    height: 96%;
    width: auto;
    transform: translateX(-50%);
    filter: drop-shadow(0 46px 44px rgba(10, 20, 12, .45));
    animation: bottle-float 7s ease-in-out infinite;
    will-change: transform;
    z-index: 2;
}
@keyframes bottle-float {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-14px) rotate(-1.2deg); }
}

.hero-chip {
    position: absolute; z-index: 3;
    display: flex; flex-direction: column; align-items: center;
    padding: 13px 20px;
    border-radius: 18px;
    background: rgba(255, 253, 246, .82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 18px 36px -16px rgba(25, 21, 18, .35);
    animation: chip-float 6s ease-in-out infinite;
}
.hero-chip strong { font-family: var(--font-d); font-size: 17px; font-weight: 800; }
.hero-chip span { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.chip-1 { top: 16%; left: -9%; }
.chip-2 { bottom: 20%; right: -10%; animation-delay: 1.6s; }
.chip-3 { bottom: -4%; left: 2%; animation-delay: 3s; }
@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute; left: 50%; bottom: 26px;
    transform: translateX(-50%);
    width: 28px; height: 46px;
    border: 2px solid var(--line);
    border-radius: 999px;
    display: flex; justify-content: center;
}
.hero-scroll span {
    width: 4px; height: 9px;
    background: var(--amber);
    border-radius: 4px;
    margin-top: 8px;
    animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60% { transform: translateY(16px); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--dark);
    padding: 20px 0;
    overflow: hidden;
    transform: rotate(-1.1deg) scale(1.02);
    margin: -14px 0 10px;
    box-shadow: var(--shadow-1);
}
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-family: var(--font-d);
    font-size: 15px; font-weight: 700;
    letter-spacing: .26em; text-transform: uppercase;
    color: var(--bg);
    padding-right: 24px;
    white-space: nowrap;
}
.marquee-track i { color: var(--amber-2); font-style: normal; margin: 0 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Carousel ---------- */
.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(250px, 24vw, 296px);
    gap: 26px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 26px;
    scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel .p-card { scroll-snap-align: start; }

.car-nav { display: flex; gap: 10px; }
.car-btn {
    width: 50px; height: 50px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.car-btn:hover {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ---------- Product card ---------- */
.p-card {
    --pc: #7f2b21; --pc2: #c05a3a;
    display: flex; flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 10px 10px 16px;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
    height: 100%;
}
.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -24px rgba(25, 21, 18, .35);
    border-color: transparent;
}

.p-card-panel {
    position: relative;
    aspect-ratio: 4 / 4.4;
    border-radius: 19px;
    overflow: hidden;
    background:
        radial-gradient(90% 60% at 50% 20%, rgba(255, 255, 255, .2) 0%, transparent 60%),
        linear-gradient(168deg, var(--pc) 5%, var(--pc2) 100%);
}
.p-card-halo {
    position: absolute; left: 50%; top: 54%;
    width: 78%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, .32) 0%, transparent 62%);
    filter: blur(6px);
    transition: opacity .4s;
    opacity: .75;
}
.p-card:hover .p-card-halo { opacity: 1; }

.p-card-img {
    position: absolute;
    left: 50%; bottom: -4%;
    height: 96%; width: auto;
    transform: translateX(-50%);
    filter: drop-shadow(0 26px 26px rgba(10, 10, 10, .35));
    transition: transform .55s var(--ease);
}
.p-card:hover .p-card-img {
    transform: translateX(-50%) translateY(-8px) rotate(-2.4deg) scale(1.045);
}

.p-card-cat {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    font-family: var(--font-d); font-size: 10.5px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: #fff;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(20, 15, 10, .32);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
}
.p-card-abv {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    font-family: var(--font-d); font-size: 11.5px; font-weight: 800;
    color: var(--ink);
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 253, 246, .88);
}

.p-card-info {
    display: flex; flex-direction: column; gap: 14px;
    padding: 16px 8px 2px;
    flex: 1;
}
.p-card-info h3 {
    font-size: 17.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .01em;
}
.p-card-info > div > p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }

.p-card-foot {
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}
.p-card-meta { font-size: 12.5px; color: var(--ink-2); }
.p-card-arrow {
    width: 38px; height: 38px; flex: 0 0 38px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--line);
    color: var(--ink);
    transition: background .35s, color .35s, border-color .35s, transform .35s;
}
.p-card:hover .p-card-arrow {
    background: linear-gradient(135deg, var(--amber), var(--amber-2));
    border-color: transparent;
    color: #fff;
    transform: rotate(-45deg);
}

/* ---------- Heritage (dark) ---------- */
.heritage {
    background:
        radial-gradient(60% 50% at 15% 10%, rgba(227, 165, 58, .1) 0%, transparent 60%),
        radial-gradient(50% 40% at 90% 90%, rgba(201, 130, 30, .08) 0%, transparent 60%),
        var(--dark);
    color: var(--bg);
    border-radius: 44px;
    margin: 30px 16px;
    overflow: hidden;
}
.heritage::before, .daridag::before {
    content: "";
    position: absolute;
    width: 380px; aspect-ratio: 1;
    border-radius: 50%;
    top: -140px; right: -100px;
    background: radial-gradient(circle, rgba(227, 165, 58, .22) 0%, transparent 65%);
    pointer-events: none;
}
.daridag::before {
    background: radial-gradient(circle, rgba(47, 160, 143, .25) 0%, transparent 65%);
    top: auto; right: auto;
    bottom: -140px; left: -100px;
}
.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
}
.heritage-title {
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800; text-transform: uppercase;
    margin: 20px 0 24px;
}
.heritage-title em { color: var(--amber-2); }
.heritage-copy p { color: rgba(245, 239, 227, .72); margin-bottom: 34px; max-width: 50ch; }

.heritage-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.h-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--r-md);
    padding: 26px 24px;
    transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.h-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(227, 165, 58, .35);
}
.h-card-num {
    font-family: var(--font-d); font-size: 13px; font-weight: 800;
    color: var(--amber-2); letter-spacing: .14em;
}
.h-card h3 { font-size: 17px; font-weight: 700; margin: 12px 0 8px; }
.h-card p { font-size: 13.8px; color: rgba(245, 239, 227, .6); }

/* ---------- Process ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
.step {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); }
.step-num {
    position: absolute; top: 6px; right: 16px;
    font-family: var(--font-d);
    font-size: 84px; font-weight: 900; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201, 130, 30, .28);
}
.step-icon {
    width: 64px; height: 64px;
    border-radius: 22px 22px 8px 8px;
    background: linear-gradient(150deg, rgba(227, 165, 58, .18), rgba(201, 130, 30, .08));
    border: 1px solid rgba(201, 130, 30, .3);
    color: var(--amber-dp);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.step-icon svg { width: 32px; height: 32px; }
.step h3 { font-size: 17px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: 13.8px; color: var(--ink-2); }

/* ---------- Darıdağ ---------- */
.daridag {
    background:
        radial-gradient(55% 45% at 85% 8%, rgba(47, 160, 143, .16) 0%, transparent 65%),
        radial-gradient(45% 40% at 5% 95%, rgba(47, 160, 143, .1) 0%, transparent 60%),
        var(--teal-bg);
    color: #eef6f0;
    border-radius: 44px;
    margin: 0 16px 30px;
    overflow: hidden;
}
.daridag-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    margin-bottom: 46px;
}
.daridag-head h2 {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 800; text-transform: uppercase;
    margin: 14px 0 16px;
}
.daridag-head h2 em { color: var(--teal); }
.daridag-lead { color: rgba(238, 246, 240, .66); max-width: 56ch; }

.daridag-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.d-card {
    --pc: #155e52; --pc2: #2fa08f;
    border-radius: var(--r-md);
    padding: 22px 18px 20px;
    text-align: center;
    background: linear-gradient(172deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(255, 255, 255, .09);
    transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.d-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--pc2) 60%, transparent);
    background: linear-gradient(172deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .03) 100%);
}
.d-card img {
    height: 168px; width: auto;
    margin: 0 auto 16px;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .45));
    transition: transform .45s var(--ease);
}
.d-card:hover img { transform: translateY(-6px) rotate(-2deg) scale(1.04); }
.d-card h3 { font-size: 14.5px; font-weight: 800; text-transform: uppercase; }
.d-card p { font-size: 12.5px; color: rgba(238, 246, 240, .55); margin-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 40px 0 110px; }
.cta-inner {
    background:
        radial-gradient(70% 120% at 50% -20%, rgba(255, 255, 255, .3) 0%, transparent 55%),
        linear-gradient(140deg, var(--amber-2) 0%, var(--amber) 55%, var(--amber-dp) 100%);
    border-radius: 40px;
    padding: clamp(50px, 7vw, 90px) 40px;
    text-align: center;
    color: #241a0c;
    box-shadow: 0 40px 80px -32px rgba(154, 95, 19, .55);
}
.cta-inner h2 {
    font-size: clamp(32px, 4.8vw, 56px);
    font-weight: 900; text-transform: uppercase;
    margin-bottom: 14px;
}
.cta-inner em { color: #3d2705; }
.cta-inner p { max-width: 52ch; margin: 0 auto 32px; color: rgba(36, 26, 12, .78); font-size: 16.5px; }

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: var(--bg);
    padding: 90px 0 34px;
    border-radius: 44px 44px 0 0;
    overflow: hidden;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(30px, 4vw, 60px);
    padding-bottom: 70px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: rgba(245, 239, 227, .6); font-size: 14px; max-width: 34ch; }
.footer-badges { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.badge-18 {
    width: 46px; height: 46px;
    border-radius: 999px;
    border: 2px solid var(--amber-2);
    color: var(--amber-2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-d); font-weight: 800; font-size: 14px;
}
.badge-note {
    font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(245, 239, 227, .55);
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
    font-family: var(--font-d); font-size: 12.5px; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: 10px;
}
.footer-col a, .footer-hours {
    color: rgba(245, 239, 227, .72);
    font-size: 14.5px;
    width: fit-content;
    transition: color .3s, transform .3s;
}
.footer-col a:hover { color: var(--amber-2); transform: translateX(4px); }

.footer-word {
    font-family: var(--font-d);
    font-size: clamp(70px, 16.5vw, 250px);
    font-weight: 900;
    line-height: .85;
    text-align: center;
    letter-spacing: .02em;
    color: transparent;
    background: linear-gradient(180deg, rgba(227, 165, 58, .28) 0%, rgba(227, 165, 58, .04) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color: rgba(245, 239, 227, .45);
}
.footer-warning { font-size: 12px; }
.footer-dev {
    display: inline-flex; align-items: baseline; gap: 7px;
    font-size: 12.5px;
    color: rgba(245, 239, 227, .45);
    transition: color .35s var(--ease);
}
.footer-dev b {
    font-family: var(--font-d);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .14em;
    color: rgba(245, 239, 227, .78);
    transition: color .35s var(--ease);
}
.footer-dev-dot { color: var(--amber-2); }
.footer-dev:hover { color: rgba(245, 239, 227, .7); }
.footer-dev:hover b { color: var(--amber-2); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
    padding: 180px 0 30px;
    background:
        radial-gradient(50% 60% at 90% 0%, rgba(227, 165, 58, .14) 0%, transparent 65%),
        var(--bg);
}
.page-hero h1 {
    font-size: clamp(40px, 6.4vw, 76px);
    font-weight: 900; text-transform: uppercase; letter-spacing: -.015em;
    margin: 18px 0 18px;
}
.page-hero-lead { color: var(--ink-2); font-size: clamp(16px, 1.6vw, 18px); max-width: 58ch; }

/* ---------- Filters & products grid ---------- */
.filters {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-bottom: 44px;
}
.filter-btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-d); font-size: 13.5px; font-weight: 700;
    letter-spacing: .04em;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    color: var(--ink-2);
    transition: all .3s var(--ease);
}
.filter-btn span {
    font-size: 11px;
    background: rgba(25, 21, 18, .08);
    border-radius: 999px;
    padding: 2px 8px;
    transition: background .3s, color .3s;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.filter-btn.is-active {
    background: var(--ink); border-color: var(--ink); color: var(--bg);
}
.filter-btn.is-active span { background: rgba(255, 255, 255, .16); color: var(--amber-2); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.products-cell { transition: opacity .4s, transform .4s; }
.products-empty {
    text-align: center; color: var(--muted);
    padding: 60px 0; font-size: 15px;
}

/* ---------- Product detail ---------- */
.detail { padding: 150px 0 110px; }

.crumbs {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--muted);
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.crumbs a { transition: color .3s; }
.crumbs a:hover { color: var(--amber-dp); }
.crumbs strong { color: var(--ink); font-weight: 600; }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: start;
}

.detail-stage { position: sticky; top: 110px; }
.detail-arch {
    position: relative;
    aspect-ratio: 4 / 4.9;
    border-radius: 400px 400px 32px 32px;
    background:
        radial-gradient(85% 55% at 50% 25%, rgba(255, 255, 255, .22) 0%, transparent 62%),
        linear-gradient(168deg, var(--pc) 6%, var(--pc2) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .14),
        0 50px 90px -42px color-mix(in srgb, var(--pc) 70%, black);
}
.detail-arch img {
    position: absolute;
    left: 50%; bottom: 5%;
    height: 92%; width: auto;
    transform: translateX(-50%);
    filter: drop-shadow(0 44px 42px rgba(10, 10, 10, .42));
    transition: transform .2s ease-out;
    will-change: transform;
}
.detail-cat {
    position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-d); font-size: 11px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(20, 15, 10, .3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    white-space: nowrap;
}
.detail-float {
    position: absolute; right: -14px; bottom: 18%;
    z-index: 3;
    display: flex; flex-direction: column; align-items: center;
    padding: 14px 22px;
    border-radius: 18px;
    background: rgba(255, 253, 246, .88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 20px 40px -16px rgba(25, 21, 18, .4);
    animation: chip-float 6s ease-in-out infinite;
}
.detail-float strong { font-family: var(--font-d); font-size: 19px; font-weight: 800; color: var(--ink); }
.detail-float span { font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }

.detail-info h1 {
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 900; text-transform: uppercase; letter-spacing: -.015em;
    margin: 16px 0 20px;
}
.detail-desc { color: var(--ink-2); font-size: 16.5px; max-width: 58ch; margin-bottom: 36px; }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.spec {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px 18px;
    transition: transform .3s var(--ease), border-color .3s;
}
.spec:hover { transform: translateY(-3px); border-color: rgba(201, 130, 30, .4); }
.spec span {
    display: block;
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 4px;
}
.spec strong { font-family: var(--font-d); font-size: 16px; font-weight: 700; }
.spec-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

.detail-ingredients { margin-top: 36px; }
.detail-ingredients h3 {
    font-size: 13px; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--amber-dp);
    margin-bottom: 14px;
}
.detail-ingredients ul { display: flex; flex-wrap: wrap; gap: 9px; }
.detail-ingredients li {
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--pc) 7%, var(--panel));
    border: 1px solid color-mix(in srgb, var(--pc) 22%, transparent);
    transition: transform .3s var(--ease);
}
.detail-ingredients li:hover { transform: translateY(-2px); }

.detail-origin {
    display: flex; align-items: center; gap: 10px;
    margin-top: 34px;
    font-size: 14px; color: var(--ink-2);
}
.detail-origin svg { color: var(--amber-dp); flex: 0 0 auto; }

.related { margin-top: 110px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: clamp(36px, 5vw, 76px);
    align-items: start;
}
.story-block { margin-bottom: 54px; }
.story-block h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800; text-transform: uppercase;
    margin-bottom: 18px;
}
.story-block p { color: var(--ink-2); margin-bottom: 16px; max-width: 62ch; }

.about-side { position: sticky; top: 110px; }
.timeline {
    background: var(--dark);
    color: var(--bg);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    margin-bottom: 20px;
}
.timeline h3 {
    font-size: 13px; font-weight: 800;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--amber-2);
    margin-bottom: 24px;
}
.tl-item {
    position: relative;
    padding: 0 0 26px 26px;
    border-left: 2px solid rgba(227, 165, 58, .25);
}
.tl-item:last-child { padding-bottom: 4px; border-left-color: transparent; }
.tl-item::before {
    content: "";
    position: absolute; left: -7px; top: 4px;
    width: 12px; height: 12px;
    border-radius: 999px;
    background: var(--amber-2);
    box-shadow: 0 0 0 5px rgba(227, 165, 58, .18);
}
.tl-year {
    font-family: var(--font-d); font-size: 17px; font-weight: 800;
    color: var(--amber-2);
    display: block; margin-bottom: 5px;
}
.tl-item p { font-size: 13.8px; color: rgba(245, 239, 227, .68); }

.fact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.fact {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px;
    text-align: center;
    transition: transform .35s var(--ease), border-color .3s;
}
.fact:hover { transform: translateY(-4px); border-color: rgba(201, 130, 30, .4); }
.fact strong {
    display: block;
    font-family: var(--font-d); font-size: 24px; font-weight: 800;
    margin-bottom: 4px;
}
.fact span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Haqqımızda: foto ---------- */
.story-photo {
    margin: 0 0 54px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    border: 1px solid var(--line);
}
.story-photo img {
    width: 100%;
    display: block;
    transition: transform .8s var(--ease);
}
.story-photo:hover img { transform: scale(1.03); }
.story-photo[data-lightbox] { cursor: zoom-in; }

/* ---------- Qalereya ---------- */
.gal-grid {
    columns: 3;
    column-gap: 22px;
    margin-bottom: 40px;
}
.gal-item {
    display: block;
    width: 100%;
    margin-bottom: 22px;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    break-inside: avoid;
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 0;
    box-shadow: 0 10px 30px -18px rgba(25, 21, 18, .3);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 50px -22px rgba(25, 21, 18, .4);
}
.gal-item img {
    width: 100%;
    display: block;
    transition: transform .7s var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-zoom {
    position: absolute;
    right: 12px; bottom: 12px;
    width: 42px; height: 42px;
    border-radius: 999px;
    background: rgba(255, 253, 246, .9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s, transform .35s var(--ease);
}
.gal-item:hover .gal-zoom { opacity: 1; transform: none; }

/* Sertifikatlar (ana səhifə) — vahid ölçü, mərkəzlənmiş */
.certs-band { padding: 30px 0 36px; }
.certs-lead {
    color: var(--muted);
    font-size: 14.5px;
    max-width: 36ch;
}
.certs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: center;
    gap: 24px;
}
.cert-item {
    padding: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px -18px rgba(25, 21, 18, .25);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    cursor: zoom-in;
}
.cert-item img {
    width: 100%;
    aspect-ratio: 900 / 1273;
    object-fit: cover;
    display: block;
}
.cert-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -22px rgba(25, 21, 18, .38);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(15, 12, 10, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center;
    padding: 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}
.lightbox[hidden] { display: none; }
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9);
}
.lb-close, .lb-nav {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 999px;
    background: rgba(255, 253, 246, .1);
    border: 1px solid rgba(255, 253, 246, .25);
    color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s, transform .3s;
    z-index: 2;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 253, 246, .22); transform: scale(1.06); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.3fr;
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: 60px;
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.c-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.c-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.c-card-icon {
    width: 54px; height: 54px;
    border-radius: 18px 18px 6px 6px;
    background: linear-gradient(150deg, rgba(227, 165, 58, .2), rgba(201, 130, 30, .08));
    border: 1px solid rgba(201, 130, 30, .32);
    color: var(--amber-dp);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.c-card-icon svg { width: 26px; height: 26px; }
.c-card h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; }
.c-card p { font-size: 14.5px; color: var(--ink-2); }
.c-card a { color: var(--amber-dp); font-weight: 600; }
.c-card a:hover { text-decoration: underline; }

.contact-form-wrap {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 46px);
}
.contact-form-wrap h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800; text-transform: uppercase;
    margin-bottom: 10px;
}
.form-note { color: var(--muted); font-size: 14px; margin-bottom: 30px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
    font-family: var(--font-d); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-2);
}
.form-field label small { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.form-field input,
.form-field select,
.form-field textarea {
    font: inherit;
    color: var(--ink);
    background: var(--bg);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 14px 18px;
    transition: border-color .3s, box-shadow .3s;
    width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(201, 130, 30, .14);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }

.contact-form .btn { align-self: flex-start; }

.map-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    height: 430px;
    box-shadow: var(--shadow-1);
}
.map-wrap iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(1) sepia(.14) contrast(1.04);
    transition: filter .5s;
}
.map-wrap:hover iframe { filter: none; }

/* ---------- Reveal animations ---------- */
body.js-on .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
body.js-on .reveal.in { opacity: 1; transform: none; }
body.js-on .reveal.d-1 { transition-delay: .1s; }
body.js-on .reveal.d-2 { transition-delay: .2s; }
body.js-on .reveal.d-3 { transition-delay: .3s; }
body.js-on .reveal.d-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001s !important;
    }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .chip-1 { left: -4%; }
    .chip-2 { right: -4%; }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta, .nav-right > .lang-switch { display: none; }
    .nav-burger { display: flex; }

    .gal-grid { columns: 2; }
    .certs-grid { grid-template-columns: repeat(3, 1fr); }
    .lightbox { padding: 30px; }

    .hero { padding-top: 130px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stage { order: -1; }
    .hero-arch { width: min(360px, 88%); }
    .hero-title br { display: none; }
    .hero-scroll { display: none; }

    .heritage-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .daridag-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }

    .detail { padding-top: 130px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-stage { position: static; max-width: 430px; margin-inline: auto; width: 100%; }
    .detail-float { right: 4px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-side { position: static; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards { flex-direction: row; flex-wrap: wrap; }
    .contact-cards .c-card { flex: 1 1 220px; }

    .footer-top { grid-template-columns: 1fr 1fr; }
    .page-hero { padding-top: 150px; }
}

@media (max-width: 640px) {
    .container { width: min(1200px, 100% - 36px); }
    .section { padding: 80px 0; }

    .nav-logo img, .nav.scrolled .nav-logo img { height: 54px; }

    .hero-stats { gap: 22px; flex-wrap: wrap; }
    .hero-chip { padding: 10px 14px; }
    .chip-1 { left: 0; top: 12%; }
    .chip-2 { right: 0; }
    .chip-3 { left: 6%; bottom: -2%; }

    .heritage, .daridag { border-radius: 32px; margin-inline: 10px; }
    .heritage-cards { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .daridag-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .spec-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .footer { border-radius: 28px 28px 0 0; }
    .map-wrap { height: 320px; }

    .age-card { padding: 38px 26px; }

    .gal-grid { columns: 1; }
    .certs-row { grid-template-columns: repeat(2, minmax(0, 165px)); }
    .lightbox { padding: 16px; }
    .lb-close { top: 12px; right: 12px; width: 44px; height: 44px; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
}

@media (max-width: 420px) {
    .daridag-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: 1fr; }
    .carousel { grid-auto-columns: 82%; }
}
