/* ==========================================================================
   KURBAN SEPETİ — 42L HELAL ET TAŞIMA SEPETİ
   Akyüz Plastik A.Ş. — Premium kırmızı/bordo aesthetic
   ========================================================================== */

:root {
  /* Palette — crimson/burgundy dominant for Qurban theme */
  --red-900: #4a0a16;
  --red-800: #6b1122;
  --red-700: #8b1a2e;
  --red-600: #a82138;
  --red-500: #c42847;
  --red-400: #d84a66;
  --red-50: #fdeef1;
  
  --cream: #faf6f2;
  --cream-2: #f2ebe1;
  --ink: #1a0a0f;
  --ink-60: #6a5a60;
  --ink-40: #a39aa0;
  --line: #ebe2d8;
  --line-dk: #ddd1c2;
  --white: #ffffff;
  
  --accent: #d4a027; /* warm gold accent - Qurban/heritage feel */
  --accent-dk: #a87e16;
  
  /* Type */
  --f-display: 'Fraunces', 'Georgia', serif;
  --f-body: 'Manrope', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================= TOPBAR ============================= */
.topbar {
  background: var(--ink);
  color: #d8d0d5;
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.02em;
}
.topbar-inner { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.topbar .dot { color: var(--ink-40); }
@media (max-width:720px){ .hide-mobile { display:none; } }

/* ============================= HEADER ============================= */
.header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(250, 246, 242, 0.92);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px 28px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-icon-img {
  height: 44px;
  width: 44px;
  display: block;
  object-fit: contain;
}
.logo-tagline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-700);
  border-left: 2px solid var(--line-dk);
  padding-left: 12px;
  margin-left: 4px;
}
@media (max-width: 600px) {
  .logo-img { height: 38px; }
  .logo-tagline { display: none; }
}

.nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-60);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--red-700); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red-700);
}

.btn-cta {
  background: var(--ink);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--red-700); }

.menu-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--line); }
  .nav.show { display: flex; }
  .menu-toggle { display: block; }
  .btn-cta { padding: 10px 18px; font-size: 13px; }
}

/* ============================= BUTTONS ============================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--red-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(139, 26, 46, 0.3);
}
.btn-primary:hover {
  background: var(--red-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 46, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ============================= TYPOGRAPHY ============================= */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--red-700); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(32px, 5vw, 54px); margin-bottom: 16px; }
.section-sub { color: var(--ink-60); font-size: 17px; }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-bg {
  position: absolute;
  top: -10%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--red-50) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-dk), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(48px, 8.5vw, 100px);
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--red-700); }

.hero-lead {
  font-size: 19px;
  color: var(--ink-60);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }

.hero-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.spec-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: left;
}
.spec-num {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--red-700);
  line-height: 1;
}
.spec-lbl {
  display: block;
  font-size: 12px;
  color: var(--ink-60);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

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

.hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 10, 22, 0.15);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }

.badge-circle {
  position: absolute;
  top: 30px; right: 30px;
  width: 140px; height: 140px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  border: 3px solid var(--accent);
}
.badge-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 4px;
}
.badge-text {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--red-800);
  line-height: 1.4;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(26, 10, 15, 0.75);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.caption-line { display:inline-block; width: 24px; height: 1px; background: currentColor; }

@media (max-width: 900px){
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 1; max-height: 500px; }
}

/* ============================= FEATURES STRIP ============================= */
.features-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 38px 0;
  border-top: 1px solid var(--red-700);
  border-bottom: 1px solid var(--red-700);
}
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon { font-size: 34px; line-height: 1; }
.feature-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}
.feature-desc { font-size: 13px; color: #a59ba0; }
@media (max-width: 760px){ .features-row { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ============================= SHOWCASE ============================= */
.showcase { padding: 120px 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 440px;
  gap: 20px;
}
.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.4s;
}
.showcase-card:hover { transform: translateY(-6px); }
.showcase-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.showcase-card:hover img { transform: scale(1.05); }
.showcase-card.big { grid-column: span 1; }
.showcase-label {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(250, 246, 242, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.label-num {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--red-700);
  font-weight: 600;
  font-style: italic;
}
.label-title { font-family: var(--f-display); font-size: 17px; font-weight: 600; }
.label-sub { font-size: 13px; color: var(--ink-60); margin-top: 2px; }

@media (max-width: 900px){
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 320px); }
}

/* ============================= DEEP DIVE ============================= */
.deep-dive { padding: 120px 0; background: var(--white); }
.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.deep-text h2 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 26px; }
.deep-text > p { font-size: 17px; color: var(--ink-60); margin-bottom: 30px; }
.deep-text > p strong { color: var(--ink); font-weight: 700; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.check-list li:last-child { border: 0; }
.check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--red-50);
  color: var(--red-700);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.deep-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.deep-visual img { width: 100%; height: 100%; object-fit: cover; }
.dimension-card {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--cream);
  border: 1px solid var(--line-dk);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.dim-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.dim-row:last-child { border: 0; }
.dim-row span { color: var(--ink-60); }
.dim-row strong { color: var(--ink); font-family: var(--f-display); font-weight: 600; }

@media (max-width: 900px){
  .deep-grid { grid-template-columns: 1fr; gap: 50px; }
  .dimension-card { position: static; margin-top: 20px; }
}

/* ============================= USE CASES ============================= */
.use-cases {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--red-50) 100%);
}
.uses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.use-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.use-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-700);
  box-shadow: 0 10px 30px rgba(139, 26, 46, 0.12);
}
.use-card span { font-size: 32px; display: block; margin-bottom: 14px; }
.use-card h3 { font-size: 17px; margin-bottom: 8px; }
.use-card p { font-size: 14px; color: var(--ink-60); line-height: 1.5; }
@media (max-width: 900px){ .uses-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================= CTA BAND ============================= */
.cta-band {
  background: var(--red-800);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-500) 0%, transparent 70%);
  opacity: 0.5;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-inner h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-inner h2 em { color: var(--accent); }
.cta-inner p { color: #e0cfd4; font-size: 16px; max-width: 580px; }
.cta-band .btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(212, 160, 39, 0.4);
}
.cta-band .btn-primary:hover {
  background: var(--accent-dk);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(212, 160, 39, 0.5);
}
@media (max-width: 760px){ .cta-inner { grid-template-columns: 1fr; } }

/* ============================= FOOTER ============================= */
.footer { background: var(--ink); color: #a59ba0; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.logo-footer { margin-bottom: 20px; }
.logo-footer .logo-img {
  height: 56px;
  background: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
}
.logo-footer .logo-icon-img {
  background: var(--cream);
  padding: 6px;
  border-radius: 50%;
  height: 48px;
  width: 48px;
}
.footer-about { font-size: 14px; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer p { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.footer a { color: #a59ba0; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer-links { list-style: none; }
.footer-links li { padding: 4px 0; font-size: 14px; }

.footer-bottom {
  border-top: 1px solid #3a2a30;
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }

/* ============================= PAGE HERO (INNER PAGES) ============================= */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--ink-60);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================= BREADCRUMB ============================= */
.breadcrumb {
  padding: 16px 0;
  background: var(--cream-2);
  font-size: 13px;
  color: var(--ink-60);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--red-700); }
.breadcrumb span { color: var(--ink); }

/* ============================= PRODUCT PAGE ============================= */
.product-section { padding: 60px 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: 16px;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }

.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 1;
  background: var(--cream-2);
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
}
.thumb.active, .thumb:hover { border-color: var(--red-700); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-details h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 10px 0 10px;
}
.product-tagline {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink-60);
  margin-bottom: 28px;
  font-weight: 400;
}
.product-tagline em { color: var(--red-700); }

.key-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.key-spec {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ks-icon { font-size: 26px; }
.ks-txt strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
}
.ks-txt span { font-size: 12px; color: var(--ink-60); }

.product-intro {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 24px;
  background: var(--red-50);
  border-left: 4px solid var(--red-700);
  border-radius: 8px;
}
.product-intro strong { color: var(--ink); }

.product-cta { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

.trust-badges {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-60);
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}

@media (max-width: 900px){
  .product-grid { grid-template-columns: 1fr; gap: 30px; }
  .key-specs { grid-template-columns: 1fr; }
}

/* ============================= SPEC SECTION ============================= */
.spec-section { padding: 100px 0; background: var(--white); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.spec-block {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.spec-block h3 {
  font-size: 22px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-700);
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.spec-table td:first-child { color: var(--ink-60); }
.spec-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.spec-table tr:last-child td { border: 0; }
@media (max-width: 760px){ .specs-grid { grid-template-columns: 1fr; } }

/* ============================= HIGHLIGHTS ============================= */
.highlights { padding: 100px 0; background: var(--cream); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hl-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.hl-card:hover {
  border-color: var(--red-700);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(139, 26, 46, 0.12);
}
.hl-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--red-700);
  font-weight: 500;
  margin-bottom: 12px;
}
.hl-card h3 { font-size: 22px; margin-bottom: 12px; }
.hl-card p { font-size: 15px; color: var(--ink-60); line-height: 1.6; }
@media (max-width: 900px){ .highlight-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .highlight-grid { grid-template-columns: 1fr; } }

/* ============================= CATEGORY SECTIONS ============================= */
.category-sections { padding: 80px 0 100px; }
.category { margin-bottom: 80px; }
.cat-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red-700);
}
.cat-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 72px;
  color: var(--red-700);
  font-weight: 300;
  line-height: 0.8;
}
.cat-header h2 { font-size: clamp(28px, 4vw, 42px); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-item {
  background: var(--white);
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.cat-item:hover {
  border-color: var(--red-700);
  transform: translateY(-3px);
}
.cat-item h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.cat-item p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.55;
}
@media (max-width: 900px){ .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cat-grid { grid-template-columns: 1fr; } }

/* ============================= ABOUT ============================= */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 22px; }
.about-text > p { font-size: 16px; color: var(--ink-60); margin-bottom: 18px; line-height: 1.7; }
.about-text h3 {
  font-size: 22px;
  margin: 30px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.about-visual { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px){ .about-grid { grid-template-columns: 1fr; } }

.values { padding: 100px 0; background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: var(--red-700);
  transform: translateY(-4px);
}
.value-icon { font-size: 40px; margin-bottom: 18px; }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--ink-60); line-height: 1.6; }
@media (max-width: 900px){ .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .values-grid { grid-template-columns: 1fr; } }

/* ============================= CONTACT ============================= */
.contact-section { padding: 70px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; }
.info-block {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red-50);
  color: var(--red-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.info-block h3 { font-size: 16px; margin-bottom: 6px; }
.info-block p { font-size: 14px; color: var(--ink-60); line-height: 1.6; }
.info-block a { color: var(--red-700); }
.info-block a:hover { text-decoration: underline; }

.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(74, 10, 22, 0.06);
}
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.form-intro { font-size: 14px; color: var(--ink-60); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; gap: 0; } }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
label span { color: var(--red-600); }

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red-700);
  background: var(--white);
}
textarea { resize: vertical; font-family: var(--f-body); }

.form-note {
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 14px;
  text-align: center;
}

.success-msg {
  display: none;
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.success-msg.show { display: block; }
.success-icon {
  width: 70px; height: 70px;
  background: var(--red-50);
  color: var(--red-700);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.success-msg h3 { font-size: 26px; margin-bottom: 10px; }
.success-msg p { color: var(--ink-60); }

@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }

/* ============================= MAP ============================= */
.map-section { padding: 40px 0 100px; }
.map-section h2.center { font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 30px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }

/* ============================= SELECTION ============================= */
::selection { background: var(--red-700); color: var(--white); }
