/* ============================================================
   KORÇAY METAL ALÜMİNYUM — Refined Design System v3
   Logo'ya yakın grotesque tipografi, daha canlı renk paleti,
   siyah yerine sıcak terracotta tonları.
   ============================================================ */

:root {
  /* Palette — warm industrial, more vibrant */
  --ink: #1A1F26;            /* slightly warmer black */
  --ink-2: #2E3641;          /* secondary text */
  --ink-3: #525C68;          /* tertiary */
  --paper: #FBF7EE;          /* warm off-white */
  --paper-2: #F2EBD8;        /* cream break */
  --paper-3: #E8DEC3;        /* deeper cream */
  --steel: #6E7682;
  --line: #D6CDB6;
  --line-soft: #E5DCC4;
  --line-dark: #38424F;

  /* Brand — vibrant */
  --brand: #E0382B;          /* logo red, more saturated */
  --brand-deep: #B62216;
  --brand-soft: #FBE5E2;

  /* Warm accents */
  --accent: #D9683A;         /* terracotta */
  --accent-deep: #A14721;
  --accent-2: #EDB333;       /* amber */
  --accent-2-deep: #C68F1A;
  --accent-soft: #FFE3A0;

  /* Cool accent for variety */
  --teal: #2C8A8C;
  --teal-soft: #DCEDED;

  /* Typography — grotesque to match logo */
  --font-display: "Bricolage Grotesque", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spatial */
  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.75rem);
  --radius: 6px;

  /* Shadows */
  --shadow-sm: 0 4px 14px -8px rgba(26, 31, 38, 0.18);
  --shadow-md: 0 18px 40px -22px rgba(26, 31, 38, 0.30);
  --shadow-lg: 0 30px 60px -28px rgba(26, 31, 38, 0.40);
  --shadow-brand: 0 18px 40px -22px rgba(224, 56, 43, 0.45);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--brand); color: var(--paper); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hairline { height: 1px; background: var(--line); border: 0; }
.hairline-dark { height: 1px; background: var(--line-dark); border: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--brand);
}
.dark-bg .eyebrow { color: var(--accent-2); }
.dark-bg .eyebrow::before { background: var(--accent-2); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--accent-deep) 100%);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 60;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  gap: 1rem;
  position: relative;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a { opacity: 0.92; transition: opacity 0.2s, color 0.2s; }
.topbar a:hover { opacity: 1; color: var(--accent-soft); }
.topbar .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent-2);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(237,179,51,0.7); }
  50% { opacity: 0.6; box-shadow: 0 0 0 7px rgba(237,179,51,0); }
}

@media (max-width: 720px) {
  .topbar-left span:not(.pulse) { display: none; }
  .topbar-right { width: 100%; justify-content: space-between; gap: 0.8rem; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 8px 24px -16px rgba(26,31,38,0.18);
  background: rgba(251, 247, 238, 0.97);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
  letter-spacing: 0.005em;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent-2));
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--ink); }
.nav-menu a:hover { color: var(--brand); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 2px;
}

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.2rem;
    align-items: flex-start;
    transform: translateY(-130%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.12);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { font-size: 1.15rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(251,247,238,0.55) 0%, rgba(251,247,238,0.88) 60%, var(--paper) 100%),
    url("img/i (1).png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  filter: saturate(1.1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(224,56,43,0.14), transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(237,179,51,0.14), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  position: relative;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.06em;
  height: 0.22em;
  background: var(--accent-soft);
  z-index: -1;
  opacity: 0.7;
  transform: skew(-6deg);
}
.hero-title .indent { display: inline-block; margin-left: clamp(1rem, 4vw, 4rem); }

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.85rem;
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.hero-meta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 44ch;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent-2-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 0.55rem;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: var(--paper);
  box-shadow: 0 6px 18px -6px rgba(224,56,43,0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--accent-deep) 100%);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(224,56,43,0.55);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.btn:hover .arrow { transform: translateX(6px); }

/* ============================================================
   TICKER — now warm amber
   ============================================================ */
.ticker {
  background: linear-gradient(90deg, var(--accent-soft) 0%, var(--paper-2) 50%, var(--accent-soft) 100%);
  color: var(--brand-deep);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 500;
}
.ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.ticker-track > span::after {
  content: "✱";
  color: var(--accent-2-deep);
  font-size: 1.15rem;
  margin-left: 3rem;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: end;
}
@media (max-width: 800px) {
  .section-header { grid-template-columns: 1fr; gap: 1.2rem; }
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
.section-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
  position: relative;
}
.section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 60ch;
  justify-self: end;
}

.alt-bg { background: var(--paper-2); }
.alt-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(26,31,38,0.05) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.alt-bg > .wrap { position: relative; }

/* dark-bg now uses warm dark with brand tint instead of pure ink */
.dark-bg {
  background: linear-gradient(160deg, #261C1A 0%, #1F1A1F 100%);
  color: var(--paper);
}
.dark-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224,56,43,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(237,179,51,0.12), transparent 50%);
  pointer-events: none;
}
.dark-bg > .wrap { position: relative; }
.dark-bg .section-title { color: var(--paper); }
.dark-bg .section-intro { color: rgba(251,247,238,0.82); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 460px;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}
.product-card:hover::before { width: 100%; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,31,38,0.18) 100%);
  pointer-events: none;
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.product-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 500;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}
.product-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
  transition: color 0.25s;
  font-weight: 500;
}
.product-link:hover { color: var(--brand); }
.product-link .arrow { transition: transform 0.25s; }
.product-link:hover .arrow { transform: translateX(5px); }

/* product-card without image */
.product-card.no-image .product-body { padding: 2rem 1.75rem; }
.product-card.no-image { min-height: 320px; }

/* Product detail visual */
.product-visual {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-visual:hover img { transform: scale(1.05); }
@media (max-width: 960px) {
  .product-visual { position: static; aspect-ratio: 16/10; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }

.about-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding-left: 1.75rem;
  border-left: 3px solid var(--brand);
  position: relative;
  font-variation-settings: "opsz" 36;
}
.about-quote em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.about-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--ink); font-weight: 600; }

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.about-visual figure {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-visual figure:hover img { transform: scale(1.06); }
.about-visual figure:nth-child(1) { grid-row: span 2; }
.about-visual figure:nth-child(1) img { aspect-ratio: 4/6; }

/* ============================================================
   FEATURES (dark warm section)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 800px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

.feature {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: background 0.3s;
}
.feature:hover { background: rgba(255,255,255,0.04); }
.feature::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature:hover::after { width: 100%; }

.feature:nth-child(4n) { border-right: none; }
@media (max-width: 800px) {
  .feature:nth-child(2n) { border-right: none; }
  .feature:nth-child(4n) { border-right: 1px solid var(--line-dark); }
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.feature-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(251,247,238,0.74);
}

/* ============================================================
   CONTACT CTA — warm terracotta gradient (no more black)
   ============================================================ */
.contact-cta {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--accent-deep) 60%, #4A1F12 100%);
  color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(237,179,51,0.22), transparent 65%);
  pointer-events: none;
  animation: floatBlob 14s ease-in-out infinite;
}
.contact-cta::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251,247,238,0.12), transparent 65%);
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite reverse;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; gap: 2rem; } }

.cta-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-variation-settings: "opsz" 72;
}
.cta-heading em {
  font-style: normal;
  color: var(--accent-2);
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.cta-heading em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.05em;
  height: 0.18em;
  background: rgba(237,179,51,0.22);
  z-index: -1;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 0.98rem;
}
.cta-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(251,247,238,0.18);
}
.cta-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.cta-info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,247,238,0.65);
  min-width: 90px;
  padding-top: 0.25rem;
  font-weight: 500;
}
.cta-info-value { flex: 1; }
.cta-info-value a { color: var(--paper); transition: color 0.2s; }
.cta-info-value a:hover { color: var(--accent-2); }

/* CTA on warm bg — primary button gets light treatment */
.contact-cta .btn-primary {
  background: var(--paper);
  color: var(--brand-deep);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4);
}
.contact-cta .btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.5);
}
.contact-cta .btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}
.contact-cta .btn-ghost:hover {
  background: var(--paper);
  color: var(--brand-deep);
}

/* ============================================================
   QUICK QUOTE FORM (homepage CTA)
   ============================================================ */
.quote-form {
  background: var(--paper);
  color: var(--ink);
  padding: 1.85rem;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
}
.quote-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
}
.quote-form-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.quote-form-head .eyebrow { color: var(--brand); }
.quote-form-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 540px) { .quote-form .form-row { grid-template-columns: 1fr; } }
.quote-form .form-field { display: flex; flex-direction: column; margin-bottom: 0.8rem; }
.quote-form label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.quote-form input,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: var(--radius);
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(224,56,43,0.10);
}
.quote-form textarea { min-height: 90px; resize: vertical; }
.quote-form button {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}
.quote-form .form-hint {
  font-size: 0.78rem;
  color: var(--steel);
  margin-top: 0.7rem;
  line-height: 1.45;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--paper-2);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer a {
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: color 0.2s, padding-left 0.2s;
}
.footer a:hover { color: var(--brand); padding-left: 0.4rem; }

.footer-brand-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 36ch;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--steel);
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--steel); }
.footer-bottom a:hover { color: var(--brand); padding-left: 0; }
.social-row { display: flex; gap: 1.25rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background:
    radial-gradient(circle at 70% 50%, rgba(224,56,43,0.10), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(237,179,51,0.10), transparent 60%);
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 140px; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.breadcrumb {
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--line); }
.page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 14ch;
  position: relative;
  font-variation-settings: "opsz" 96;
}
.page-title em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.page-title em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.06em;
  height: 0.2em;
  background: var(--accent-soft);
  z-index: -1;
  opacity: 0.6;
  transform: skew(-6deg);
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 960px) { .product-detail { grid-template-columns: 1fr; } }

.product-detail h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  padding-left: 1.25rem;
}
.product-detail h2::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
}
.product-detail p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 1rem;
}
.product-detail strong { color: var(--ink); font-weight: 600; }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 540px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-2);
  transition: padding-left 0.2s, color 0.2s;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0.85rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s;
}
.feature-list li:hover {
  color: var(--ink);
  padding-left: 1.9rem;
}
.feature-list li:hover::before { transform: translateX(4px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.info-block:first-of-type { padding-top: 0; }
.info-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
  display: block;
  font-weight: 500;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.info-value a { transition: color 0.2s; }
.info-value a:hover { color: var(--brand); }

.contact-form {
  background: var(--paper);
  padding: 2.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
}
@media (max-width: 540px) { .contact-form { padding: 1.5rem; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: var(--radius);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(224,56,43,0.10);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.map-block {
  margin-top: 3rem;
  aspect-ratio: 21/9;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.map-block iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.10) contrast(0.98); }

/* ============================================================
   NEWS / HABERLER
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 800px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover { transform: translateX(6px); }
@media (max-width: 540px) {
  .news-card { grid-template-columns: 1fr; gap: 0.8rem; }
}

.news-date {
  font-family: var(--font-mono);
  border-right: 1px solid var(--line);
  padding-right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
@media (max-width: 540px) {
  .news-date { border-right: none; padding-right: 0; flex-direction: row; gap: 0.6rem; }
}
.news-date .day {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.news-date .month-year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.news-body .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--brand);
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.9rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.news-body .tag.tag-fuar { background: var(--accent); }
.news-body .tag.tag-duyuru { background: var(--teal); }
.news-body .tag.tag-proje { background: var(--accent-2); color: var(--ink); }

.news-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.7rem;
  transition: color 0.2s;
}
.news-card:hover .news-title { color: var(--brand); }
.news-excerpt {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 0.9rem;
}
.news-more {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s;
  font-weight: 500;
}
.news-more:hover { color: var(--brand); }
.news-more .arrow { transition: transform 0.25s; }
.news-more:hover .arrow { transform: translateX(5px); }

/* Featured first news item */
.news-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .news-featured { grid-template-columns: 1fr; gap: 1.5rem; }
}
.news-featured-visual {
  aspect-ratio: 16/10;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.news-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-featured:hover .news-featured-visual img { transform: scale(1.04); }
.news-featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(224,56,43,0.18));
  pointer-events: none;
}
.news-featured-body { display: flex; flex-direction: column; justify-content: center; }
.news-featured-body .news-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.news-featured-body .news-excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================================
   NEWS DETAIL (haber.html)
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-meta .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--brand);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.article-meta .tag.tag-fuar { background: var(--accent); }
.article-meta .tag.tag-duyuru { background: var(--teal); }
.article-meta .tag.tag-proje { background: var(--accent-2); color: var(--ink); }
.article-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
}

.article-hero {
  margin: 0 0 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: var(--paper-2);
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-body p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 1.4rem;
}
.article-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 600;
  float: left;
  line-height: 1;
  margin: 0.05em 0.6rem 0 0;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.article-body p:last-child { margin-bottom: 0; }

.article-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  background: var(--paper-2);
  padding: 1.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
@media (max-width: 960px) {
  .article-sidebar { position: static; }
}
.article-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.related-news {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.related-news li { margin: 0; }
.related-news a {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s, color 0.2s;
}
.related-news a:hover { padding-left: 0.4rem; }
.related-news li:last-child a { border-bottom: none; }
.related-news .rn-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 0.35rem;
}
.related-news .rn-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: block;
  transition: color 0.2s;
}
.related-news a:hover .rn-title { color: var(--brand); }

.sidebar-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.sidebar-cta p {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.article-not-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
}
.article-not-found h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.article-not-found p {
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.gallery-filter {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  transition: all 0.25s;
  cursor: pointer;
  border-radius: var(--radius);
  font-weight: 500;
}
.gallery-filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.gallery-filter.active {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--paper);
  border-color: var(--brand);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  border-radius: var(--radius);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 500px) {
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(26,31,38,0.85) 0%, rgba(26,31,38,0.2) 50%, transparent 100%);
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}
.gallery-item-overlay .ttl {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.4rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,31,38,0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-content {
  max-width: 1100px;
  width: 100%;
  max-height: 85vh;
  background: var(--ink-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
}
.lightbox-caption {
  position: absolute;
  bottom: -56px; left: 0;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  color: var(--paper);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: 0;
  transition: color 0.2s, transform 0.2s;
}
.lightbox-close:hover {
  color: var(--accent-2);
  transform: rotate(90deg);
}

/* ============================================================
   FORM STATUS MESSAGES & HONEYPOT
   ============================================================ */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  border-radius: var(--radius);
  border-left: 4px solid transparent;
  font-family: var(--font-body);
}
.form-status.ok {
  display: block;
  background: var(--teal-soft);
  color: #1F5C5E;
  border-left-color: var(--teal);
}
.form-status.err {
  display: block;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-left-color: var(--brand);
}

/* button busy state */
.btn[disabled],
.btn[aria-busy="true"] {
  opacity: 0.7;
  cursor: progress;
  pointer-events: none;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
@media (min-width: 800px) {
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: var(--paper-2); }
  ::-webkit-scrollbar-thumb {
    background: var(--accent);
    border: 2px solid var(--paper-2);
    border-radius: 6px;
  }
  ::-webkit-scrollbar-thumb:hover { background: var(--brand); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
