/* ==========================================================================
   Öztürk Peynircilik — "Yapım aşamasında" sayfası (kurumsal düzen)
   Marka renkleri logodan ve tabeladan alınmıştır: kırmızı rozet, siyah
   tabela, krem yazı.
   ========================================================================== */

:root {
  --red: #E5291B;
  --red-deep: #B9170B;
  --red-tint: #FCEAE7;
  --cream: #F7E7CF;
  --cream-2: #FBF3E6;
  --paper: #F8F6F2;
  --paper-2: #EFEBE4;
  --ink: #1B1613;
  --ink-2: #584D45;
  --ink-3: #6F655C;
  --line: rgba(27, 22, 19, .12);
  --gold: #B9975B;
  --green: #2E7D4F;
  --dark: #171311;
  --dark-2: #221C19;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 18px 40px -22px rgba(27, 22, 19, .35);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }

.btn--primary,
.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover,
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn--ghost {
  color: var(--cream);
  border-color: rgba(247, 231, 207, .35);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(255, 255, 255, .06); }

.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--ink); }

.btn--sm { min-height: 40px; padding: .6rem 1rem; font-size: .86rem; }

/* --------------------------------------------------------------------------
   Üst çubuk
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--dark);
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 231, 207, .1);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: .7rem 0;
}
.topbar__brand { display: block; flex: none; }
.topbar__brand img { width: auto; height: 52px; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar__nav .icon { color: var(--gold); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 calc(clamp(3rem, 7vw, 5.5rem) + 3.5rem);
  background: var(--dark);
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 78% 50%, rgba(229, 41, 27, .22), transparent 70%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 4rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 41, 27, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(229, 41, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 41, 27, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow__dot { animation: none; }
}

.hero h1 {
  max-width: 20ch;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.2rem);
  color: var(--cream-2);
}

.hero__lead {
  max-width: 56ch;
  margin-top: 1.25rem;
  font-size: clamp(1rem, .95rem + .35vw, 1.12rem);
  color: rgba(247, 231, 207, .76);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hero__panel {
  order: -1;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(247, 231, 207, .14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}
@media (min-width: 900px) {
  .hero__panel { order: 0; }
}
.hero__logo {
  width: min(100%, 400px);
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, .45));
}

/* --------------------------------------------------------------------------
   Bilgi satırı (ikon + etiket + değer) — bilgi şeridi ve iletişim listesi
   -------------------------------------------------------------------------- */

.row {
  display: flex;
  gap: .95rem;
  align-items: flex-start;
  padding: 1.15rem 1.35rem;
}
.row__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--red-tint);
  color: var(--red);
}
.row__icon .icon { width: 1.3rem; height: 1.3rem; }
.row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  min-width: 0;
}
.row__k {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.row__v {
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.45;
  color: var(--ink);
  overflow-wrap: anywhere;
}
a.row__v { text-decoration: none; }
a.row__v:hover { color: var(--red); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .3rem;
  padding: .25rem .65rem;
  border-radius: var(--radius-sm);
  background: rgba(27, 22, 19, .06);
  color: var(--ink-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.chip::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: currentColor;
}
.chip--open { color: #236640; background: rgba(35, 102, 64, .1); }
.chip--closed { color: var(--red-deep); background: var(--red-tint); }

/* Bilgi şeridi (hero'nun altına taşan kart) */
.infobar {
  position: relative;
  z-index: 1;
  margin-top: -3.5rem;
}
.infobar__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.infobar__list > li { border-top: 1px solid var(--line); }
.infobar__list > li:first-child { border-top: 0; }
@media (min-width: 800px) {
  .infobar__list { grid-template-columns: repeat(3, 1fr); }
  .infobar__list > li { border-top: 0; border-left: 1px solid var(--line); }
  .infobar__list > li:first-child { border-left: 0; }
}

/* --------------------------------------------------------------------------
   Bölümler
   -------------------------------------------------------------------------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.section__head h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.5rem); }
.section__head p { margin-top: .75rem; color: var(--ink-2); }

.overline {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.overline::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--red);
}

/* İletişim + harita */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

.details {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.details > li { border-top: 1px solid var(--line); }
.details > li:first-child { border-top: 0; }
.details .row { padding: 1rem 1.35rem; }

.map {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.map__frame {
  position: relative;
  flex: 1;
  min-height: 360px;
}
.map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  padding: .9rem 1.1rem;
  background: #fff;
  border-top: 1px solid var(--line);
}
.map__caption {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
}
.map__caption .icon { color: var(--red); }
.map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* --------------------------------------------------------------------------
   Alt bilgi
   -------------------------------------------------------------------------- */

.footer {
  background: var(--dark);
  color: rgba(247, 231, 207, .72);
  font-size: .9rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer__logo {
  width: auto;
  height: 60px;
  margin-bottom: 1rem;
}
.footer h3 {
  margin-bottom: .9rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer ul {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer p + p { margin-top: .6rem; }
.footer a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer__bottom {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(247, 231, 207, .1);
  font-size: .84rem;
  color: rgba(247, 231, 207, .64);
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .4rem 1.5rem;
}
.footer__bottom a { color: rgba(247, 231, 207, .85); }
