/* =========================================================
   MADE MUTFAK — Kurumsal Web Sitesi
   Tasarım sistemi & bileşenler
   ========================================================= */

:root {
  --pink: #e5007d;
  --pink-dark: #c00069;
  --gold: #f6b31c;
  --gold-dark: #d99700;
  --ink: #16161a;
  --ink-2: #1f1f24;
  --gray-900: #23232a;
  --gray-700: #4a4a52;
  --gray-500: #6f6f78;
  --gray-300: #c9c9d1;
  --gray-100: #f2f2f4;
  --paper: #fafafa;
  --white: #ffffff;

  --font-head: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(20, 20, 30, .08);
  --shadow-md: 0 18px 50px rgba(20, 20, 30, .14);
  --shadow-lg: 0 30px 80px rgba(20, 20, 30, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); display: inline-block; }

.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
.section-head p { margin-top: 18px; color: var(--gray-500); font-size: 1.08rem; }

.lead { font-size: 1.12rem; color: var(--gray-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border-radius: 50px; cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 12px 26px rgba(229, 0, 125, .28); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(229, 0, 125, .36); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 26px rgba(246, 179, 28, .3); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.6px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border: 1.6px solid rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled { background: rgba(255, 255, 255, .96); box-shadow: 0 6px 30px rgba(0, 0, 0, .07); height: 72px; backdrop-filter: saturate(160%) blur(8px); }

.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand img { height: 56px; width: auto; transition: filter .4s, height .3s var(--ease); }
.site-header.scrolled .brand img { height: 48px; }
.site-header:not(.scrolled):not(.solid) .nav-link { color: #fff; }
.site-header:not(.scrolled):not(.solid) .brand img { filter: brightness(0) invert(1); }
.site-header:not(.scrolled):not(.solid) .top-phone { color: #fff; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  padding: 10px 16px; color: var(--gray-900); transition: color .25s; border-radius: 8px;
}
.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--pink); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.top-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.top-phone svg { width: 18px; height: 18px; color: var(--pink); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; position: relative; z-index: 120; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px auto; transition: .3s var(--ease); }
.site-header:not(.scrolled):not(.solid) .nav-toggle { color: #fff; }
.site-header.scrolled .nav-toggle, .site-header.solid .nav-toggle { color: var(--ink); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Header solid variant (inner pages) */
.site-header.solid { background: #fff; box-shadow: 0 4px 24px rgba(0, 0, 0, .06); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(15, 15, 20, .82) 0%, rgba(15, 15, 20, .55) 45%, rgba(15, 15, 20, .15) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero-content { max-width: 720px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); color: #fff; font-weight: 700; }
.hero h1 .accent { color: var(--gold); }
.hero p { margin-top: 22px; font-size: 1.22rem; max-width: 560px; color: rgba(255, 255, 255, .9); }
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats { margin-top: 60px; display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.hero-stats .stat span { font-size: .9rem; color: rgba(255, 255, 255, .75); letter-spacing: .04em; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bob 2.2s infinite; }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + 90px) 0 90px; 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::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,20,.72), rgba(15,15,20,.78)); z-index: 1; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 620px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.split-media .badge {
  position: absolute; bottom: -28px; left: -28px; background: var(--pink); color: #fff;
  padding: 22px 26px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); text-align: center;
}
.split-media .badge strong { font-family: var(--font-head); font-size: 2.2rem; display: block; line-height: 1; }
.split-media .badge span { font-size: .82rem; opacity: .9; }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 22px; }
.split-body p { color: var(--gray-500); margin-bottom: 16px; }
.check-list { list-style: none; margin: 26px 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--gray-700); font-weight: 500; }
.check-list svg { width: 22px; height: 22px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }

/* ---------- Services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-media .tag { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.92); color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 40px; }
.card-body { padding: 28px 26px 30px; }
.card-body h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card-body p { color: var(--gray-500); font-size: .98rem; margin-bottom: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--pink); font-size: .92rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card-link svg { transform: translateX(5px); }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature { text-align: center; padding: 34px 22px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.feature:hover { transform: translateY(-6px); }
.feature .ico { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(229,0,125,.12), rgba(246,179,28,.14)); color: var(--pink); }
.feature .ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: .92rem; color: var(--gray-500); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 90px 0; color: #fff; text-align: center; overflow: hidden; }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(229,0,125,.92), rgba(20,20,26,.86)); z-index: 1; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 760px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn { font-family: var(--font-head); font-weight: 500; font-size: .92rem; padding: 10px 22px; border-radius: 40px; border: 1.5px solid var(--gray-300); background: #fff; color: var(--gray-700); cursor: pointer; transition: .25s; }
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; }

.gallery-grid { columns: 3; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; transition: transform .7s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,20,26,.75)); opacity: 0; transition: opacity .35s; }
.gallery-item .cap { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; opacity: 0; transform: translateY(10px); transition: .35s; }
.gallery-item .cap strong { font-family: var(--font-head); font-weight: 600; display: block; }
.gallery-item .cap span { font-size: .82rem; color: var(--gold); }
.gallery-item .zoom { position: absolute; top: 16px; right: 16px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink); opacity: 0; transform: scale(.8); transition: .35s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after, .gallery-item:hover .cap, .gallery-item:hover .zoom { opacity: 1; transform: none; }
.gallery-item.hide { display: none; }

/* ---------- Gallery view toggle + list view ---------- */
.gallery-toolbar { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.gallery-toolbar .gallery-filters { margin-bottom: 0; justify-content: flex-start; }
.view-toggle { display: inline-flex; gap: 6px; background: var(--gray-100); padding: 5px; border-radius: 40px; }
.view-btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 500; font-size: .88rem; padding: 8px 16px; border: 0; border-radius: 40px; background: transparent; color: var(--gray-700); cursor: pointer; transition: .25s; }
.view-btn svg { width: 16px; height: 16px; }
.view-btn.active { background: #fff; color: var(--pink); box-shadow: var(--shadow-sm); }

.ref-list { display: grid; gap: 16px; }
.ref-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ref-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ref-row .ref-thumb { width: 150px; height: 110px; overflow: hidden; }
.ref-row .ref-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ref-row:hover .ref-thumb img { transform: scale(1.08); }
.ref-row .ref-info h3 { font-size: 1.16rem; margin-bottom: 5px; }
.ref-row .ref-info .ref-cat { font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); }
.ref-row .ref-info p { color: var(--gray-500); font-size: .94rem; margin-top: 6px; }
.ref-row .ref-go { padding-right: 26px; color: var(--gray-300); }
.ref-row .ref-go svg { width: 26px; height: 26px; transition: transform .3s, color .3s; }
.ref-row:hover .ref-go svg { color: var(--pink); transform: translateX(4px); }
.ref-row.hide { display: none; }

/* ---------- News cards ---------- */
.news-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.news-media { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.news-date { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--gray-500); margin-bottom: 10px; }
.news-date svg { width: 15px; height: 15px; color: var(--pink); }
.news-body h3 { font-size: 1.12rem; line-height: 1.35; margin-bottom: 10px; }
.news-body p { color: var(--gray-500); font-size: .94rem; flex: 1; }

/* ---------- Press (Basında Biz) ---------- */
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.press-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; background: #fff; }
.press-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.press-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,20,26,.55)); opacity: 0; transition: opacity .35s; }
.press-item .zoom { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--ink); opacity: 0; transform: scale(.8); transition: .35s; }
.press-item:hover img { transform: scale(1.05); }
.press-item:hover::after, .press-item:hover .zoom { opacity: 1; transform: none; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(12,12,16,.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: .25s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--pink); border-color: var(--pink); }
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ---------- Partners ---------- */
.partners-band { padding: 70px 0; background: var(--gray-100); }
.partners-band .lbl { text-align: center; font-family: var(--font-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .8rem; color: var(--gray-500); margin-bottom: 32px; }
.partner-logos { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.partner-logos img { max-height: 58px; width: auto; opacity: .85; filter: grayscale(100%); transition: .4s; }
.partner-logos img:hover { opacity: 1; filter: grayscale(0); }
.partner-names { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; }
.partner-names span { font-family: var(--font-head); font-weight: 600; color: var(--gray-500); font-size: 1.05rem; transition: color .3s; }
.partner-names span:hover { color: var(--pink); }

/* ---------- Showrooms ---------- */
.showroom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.showroom { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.showroom-media { aspect-ratio: 16/10; overflow: hidden; }
.showroom-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.showroom:hover .showroom-media img { transform: scale(1.05); }
.showroom-body { padding: 30px 30px 34px; }
.showroom-body .tag { color: var(--pink); font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.showroom-body h3 { font-size: 1.5rem; margin: 6px 0 18px; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; color: var(--gray-700); margin-bottom: 12px; font-size: .98rem; }
.contact-line svg { width: 20px; height: 20px; color: var(--pink); flex-shrink: 0; margin-top: 3px; }
.showroom-map { margin-top: 20px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--gray-300); }
.showroom-map iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.form-card { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 8px; color: var(--gray-700); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: #fff; transition: border .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(229,0,125,.1); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--gray-500); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .95rem; display: none; }
.form-status.ok { display: block; background: #e9f9ef; color: #1c7a43; }
.form-status.err { display: block; background: #fdecec; color: #c0392b; }

.contact-aside .info-block { margin-bottom: 30px; }
.contact-aside h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); display: inline-block; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.team-card { text-align: center; padding: 32px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease); }
.team-card:hover { transform: translateY(-6px); }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--pink), var(--gold)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; }
.team-card h4 { font-size: 1.08rem; }
.team-card .role { color: var(--pink); font-size: .86rem; font-weight: 500; margin: 4px 0 10px; }
.team-card a { font-size: .84rem; color: var(--gray-500); }
.team-card a:hover { color: var(--pink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 76px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 56px; }
.footer-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: .95rem; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .3s; }
.footer-social a:hover { background: var(--pink); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.site-footer h5 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { font-size: .94rem; transition: color .25s, padding .25s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .86rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 840px; margin: 0 auto; }
.legal-content .updated { color: var(--gray-500); font-size: .9rem; margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-300); }
.legal-content h2 { font-size: 1.4rem; margin: 36px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--gray-700); margin-bottom: 16px; }
.legal-content ul { margin: 0 0 20px 22px; color: var(--gray-700); display: grid; gap: 10px; }
.legal-content a { color: var(--pink); }
.legal-content a:hover { text-decoration: underline; }

.footer-legal a { color: rgba(255,255,255,.72); }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Video hero (full-width background video) ---------- */
.video-hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); color: #fff; }
.video-hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; cursor: pointer; }
.video-hero-bg iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0; pointer-events: none; }
.video-hero-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .3s; }
.video-hero-bg:hover::after { background: rgba(0,0,0,.12); }
.video-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,20,28,.72) 0%, rgba(20,20,28,.55) 42%, rgba(20,20,28,.78) 100%), radial-gradient(120% 90% at 15% 20%, rgba(229,0,125,.28) 0%, rgba(229,0,125,0) 55%); }
.video-hero .wrap { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.video-hero-content { max-width: 720px; }
.video-hero-content .eyebrow { color: var(--gold); }
.video-hero-content h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: #fff; line-height: 1.12; }
.video-hero-content .accent { color: var(--gold); }
.video-hero-content p { margin: 20px 0 32px; color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 560px; }
@media (max-width: 768px) { .video-hero { min-height: 0; } .video-hero .wrap { padding-top: 70px; padding-bottom: 70px; } }

/* Play button on video hero */
.vh-play { display: inline-flex; align-items: center; gap: 14px; margin-top: 26px; background: none; border: 0; padding: 0; cursor: pointer; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.vh-play .pbtn { width: 60px; height: 60px; border-radius: 50%; background: var(--pink); display: grid; place-items: center; box-shadow: 0 10px 34px rgba(229,0,125,.5); transition: transform .3s var(--ease), background .3s; }
.vh-play:hover .pbtn { transform: scale(1.08); background: var(--pink-dark); }
.vh-play .pbtn svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }

/* Video modal */
.video-modal { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal .vm-inner { position: relative; width: 100%; max-width: 980px; aspect-ratio: 16 / 9; }
.video-modal iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.video-modal .vm-close { position: absolute; top: -48px; right: 0; background: none; border: 0; color: #fff; cursor: pointer; }
.video-modal .vm-close svg { width: 30px; height: 30px; }

/* News / article detail */
.article-body { max-width: 820px; margin: 0 auto; }
.article-meta { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-500); font-size: .92rem; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-300); }
.article-meta svg { width: 16px; height: 16px; color: var(--pink); }
.article-body p { color: var(--gray-700); margin-bottom: 18px; font-size: 1.06rem; }
.article-body figure { margin: 30px 0; }
.article-body figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article-body figcaption { margin-top: 10px; text-align: center; color: var(--gray-500); font-size: .9rem; }
.article-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0; align-items: start; }
.article-figs.stacked { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
.article-figs figure { margin: 0; }
.article-figs img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); cursor: zoom-in; }
.news-card .news-media a { display: block; height: 100%; }
.news-card .news-body h3 a { color: inherit; transition: color .3s; }
.news-card .news-body h3 a:hover { color: var(--pink); }
@media (max-width: 640px) { .article-figs { grid-template-columns: 1fr; } }
.article-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 34px; color: var(--pink); font-family: var(--font-head); font-weight: 600; }
.article-back svg { width: 18px; height: 18px; }
.article-back:hover { color: var(--pink-dark); }

/* ---------- Virtual 360 tour ---------- */
.virtual-tour { position: relative; padding: 90px 0; background: var(--gray-100); }
.virtual-tour .section-head { margin-bottom: 40px; }
.tour-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.tour-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--gray-500); }
.tour-badge svg { width: 18px; height: 18px; color: var(--pink); }
.btn-tour { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; padding: 10px 18px; border: 1.5px solid var(--pink); color: var(--pink); border-radius: 40px; font-family: var(--font-head); font-weight: 600; font-size: .86rem; transition: all .3s var(--ease); }
.btn-tour svg { width: 18px; height: 18px; }
.btn-tour:hover { background: var(--pink); color: #fff; }
@media (max-width: 640px) { .tour-frame { aspect-ratio: 3 / 4; } }

/* ---------- Reference table (list view) ---------- */
.ref-list-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.ref-list-head h2 { font-size: 1.7rem; margin-bottom: 10px; }
.ref-list-head p { color: var(--gray-500); }
.ref-table-wrap { overflow-x: auto; border: 1px solid var(--gray-300); border-radius: var(--radius); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.ref-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .95rem; }
.ref-table thead th { background: var(--ink); color: #fff; text-align: left; padding: 15px 18px; font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.ref-table thead th.num { text-align: center; }
.ref-table tbody td { padding: 14px 18px; border-top: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
.ref-table tbody td.name { font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.ref-table tbody td.num { text-align: center; white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--pink); }
.ref-table tbody td.num.muted { color: var(--gray-300); font-weight: 400; }
.ref-table tbody tr:nth-child(even) { background: #fbfbfc; }
.ref-table tbody tr:hover { background: #fdf1f8; }

@media (max-width: 640px) {
  .ref-table-wrap { border: 0; box-shadow: none; overflow: visible; }
  .ref-table { min-width: 0; border-collapse: separate; border-spacing: 0; }
  .ref-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .ref-table tbody tr { display: block; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 14px; padding: 6px 4px; background: #fff; }
  .ref-table tbody tr:nth-child(even) { background: #fff; }
  .ref-table tbody td { display: flex; justify-content: space-between; align-items: center; gap: 16px; border: 0; padding: 9px 14px; text-align: right; }
  .ref-table tbody td.name { font-size: 1.02rem; border-bottom: 1px solid var(--gray-100); padding-bottom: 12px; }
  .ref-table tbody td::before { content: attr(data-label); font-family: var(--font-head); font-weight: 600; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-500); text-align: left; }
  .ref-table tbody td.name::before { display: none; }
}

/* ---------- 404 error page ---------- */
.error-page { padding: calc(var(--header-h) + 80px) 0 100px; min-height: 70vh; display: flex; align-items: center; background: var(--paper); }
.error-box { max-width: 640px; margin: 0 auto; text-align: center; }
.error-code { display: block; font-family: var(--font-head); font-size: clamp(5rem, 16vw, 8rem); font-weight: 700; line-height: 1; color: var(--pink); letter-spacing: -.04em; margin-bottom: 16px; }
.error-code::after { content: ""; display: block; width: 60px; height: 4px; background: var(--gold); margin: 18px auto 0; border-radius: 2px; }
.error-box h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
.error-box p { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 32px; }
.error-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Cookie consent bar ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(22, 22, 26, .97);
  color: rgba(255,255,255,.92);
  box-shadow: 0 -8px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-bar p { margin: 0; font-size: .88rem; line-height: 1.55; color: rgba(255,255,255,.88); max-width: 780px; }
.cookie-bar a { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar a:hover { color: #fff; }
.cookie-bar-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  border: 0; border-radius: 40px; padding: 10px 20px;
  font-family: var(--font-head); font-weight: 600; font-size: .84rem; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.cookie-accept { background: var(--pink); color: #fff; }
.cookie-accept:hover { background: var(--pink-dark); }
.cookie-reject { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); }
.cookie-reject:hover { border-color: #fff; color: #fff; }
body.cookie-bar-visible .float-actions { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 640px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-bar-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  body.cookie-bar-visible .float-actions { bottom: calc(130px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-actions a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .3s; }
.float-actions a:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-phone { background: var(--pink); }
.float-actions svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Utilities ---------- */
.bg-paper { background: var(--paper); }
.bg-gray { background: var(--gray-100); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .showroom-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery-grid { columns: 2; }
  .press-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 74px 0; }
  .main-nav {
    position: fixed; inset: 0; background: var(--ink); flex-direction: column;
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 110;
  }
  body.nav-open .main-nav { transform: none; }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav .nav-link { color: #fff !important; font-size: 1.3rem; padding: 12px 20px; }
  .nav-toggle { display: block; }
  .header-cta .top-phone { display: none; }
  .hero-stats { gap: 30px; }
  .hero-stats .stat strong { font-size: 1.9rem; }
  .split-media .badge { left: 16px; bottom: -20px; padding: 16px 20px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .cards, .features, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-row { grid-template-columns: 110px 1fr; }
  .ref-row .ref-thumb { width: 110px; height: 90px; }
  .ref-row .ref-go { display: none; }
  .gallery-toolbar { justify-content: center; }
}

@media (max-width: 768px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
