.institutional-page {
  padding: 0 0 80px;
  background:
    radial-gradient(circle at 92% 8%, rgba(215, 177, 139, .18), transparent 28rem),
    var(--cream);
}
.institutional-hero {
  padding: clamp(52px, 8vw, 105px) 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, .72);
}
.institutional-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.institutional-hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  color: var(--brown);
}
.institutional-hero p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.institutional-content {
  padding-top: clamp(42px, 7vw, 80px);
}
.story-grid,
.contact-grid,
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.story-copy,
.info-card,
.store-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 38px rgba(67, 35, 21, .07);
}
.story-copy h2,
.info-card h2,
.store-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}
.story-copy p + p { margin-top: 16px; }
.story-copy p,
.info-card p,
.store-card p { color: var(--muted); }
.values {
  display: grid;
  gap: 14px;
}
.value-item {
  padding: 22px 24px;
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
  background: #fffaf3;
}
.value-item strong { display: block; margin-bottom: 5px; font-family: "Playfair Display", serif; font-size: 1.2rem; }
.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card { min-height: 230px; }
.info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  font-size: 1.15rem;
}
.info-card a,
.store-actions a { color: var(--rose); font-weight: 700; }
.info-card a:hover,
.store-actions a:hover { text-decoration: underline; }
.store-grid { grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); }
.branch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.branch-grid + .delivery-zones { margin-top: 24px; }
.branch-grid .store-card {
  overflow: hidden;
  padding: 0;
}
.store-card-body {
  padding: clamp(28px, 4vw, 48px);
}
.store-meta { display: grid; gap: 18px; margin-top: 28px; }
.store-meta div { padding-top: 16px; border-top: 1px solid var(--line); }
.store-meta strong { display: block; margin-bottom: 4px; }
.store-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.store-actions .primary-link {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brown);
  color: white;
  text-decoration: none;
}
.store-map {
  overflow: hidden;
  width: 100%;
  height: clamp(240px, 24vw, 320px);
  margin: 0;
  border-top: 1px solid var(--line);
  background: #eee7df;
}
.store-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.delivery-zones {
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(67, 35, 21, .07);
}
.delivery-zones-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.delivery-zones-head h2 { margin: 8px 0 0; font-size: clamp(32px, 4vw, 54px); line-height: 1.05; }
.delivery-zones-head p { margin: 0; color: var(--muted); line-height: 1.65; }
.delivery-accordion { display: grid; gap: 10px; }
.delivery-district {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
}
.delivery-district summary {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 12px 18px;
  color: var(--brown);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.delivery-district summary::-webkit-details-marker { display: none; }
.delivery-district[open] summary { background: #f7efe6; border-bottom: 1px solid var(--line); }
.delivery-toggle {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3e8dc;
}
.delivery-toggle::before,
.delivery-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--brown);
  transform: translate(-50%, -50%);
  transition: opacity .18s ease;
}
.delivery-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.delivery-district[open] .delivery-toggle::after { opacity: 0; }
.delivery-neighborhoods { display: grid; gap: 8px; padding: 10px; }
.delivery-neighborhood {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid #eadfd6;
  border-radius: 13px;
  background: #fff;
}
.delivery-neighborhood-name { color: var(--brown); font-weight: 650; }
.delivery-minimum { color: var(--muted); font-size: 14px; text-align: right; }
.delivery-minimum strong { color: var(--brown); font-weight: 700; }
.delivery-zones-empty { margin: 0; padding: 18px; color: var(--muted); text-align: center; }

/* Hakkımızda */
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: stretch;
  padding-top: clamp(28px, 4vw, 48px);
}
.about-story-copy { height: 100%; }
.about-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.8; }
.about-quality {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 18px;
  background: var(--brown);
  box-shadow: 0 16px 38px rgba(67, 35, 21, .14);
  color: #fffaf3;
}
.about-quality .institutional-eyebrow { color: #e8b88e; }
.about-quality h2 {
  max-width: 430px;
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}
.about-quality p { position: relative; z-index: 1; color: inherit; line-height: 1.8; opacity: .86; }
.about-quality strong { color: #fff; }
.about-quality-mark {
  position: absolute;
  right: -12px;
  bottom: -52px;
  color: rgba(255, 255, 255, .055);
  font-family: "Playfair Display", serif;
  font-size: 13rem;
  font-weight: 700;
  line-height: 1;
}
.about-motivation { padding-top: clamp(34px, 5vw, 58px); }
.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  column-gap: 40px;
  align-items: end;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.about-section-heading .institutional-eyebrow { grid-column: 1 / -1; }
.about-section-heading h2 { grid-column: 1 / -1; font-size: clamp(1.85rem, 3.2vw, 2.9rem); }
.about-section-heading p { color: var(--muted); line-height: 1.7; }
.about-feedback-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.about-feedback-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  min-height: 138px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
}
.about-feedback-number { color: var(--rose); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.about-feedback-card p { color: var(--muted); line-height: 1.75; }
.about-feedback-card em { color: var(--brown); font-family: "Playfair Display", serif; font-size: 1.08em; font-weight: 600; }
.about-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 40px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  background: #fffaf3;
  box-shadow: inset 0 0 0 1px var(--line);
}
.about-closing-copy p { max-width: 850px; color: var(--brown); font-family: "Libre Baskerville", Georgia, serif !important; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.55; }
.about-signature { padding-left: 34px; border-left: 1px solid var(--line); }
.about-signature span { display: block; margin-bottom: 10px; color: var(--muted); }
.about-signature strong { color: var(--brown); font-family: "Libre Baskerville", Georgia, serif !important; font-size: clamp(1.45rem, 2.8vw, 2.15rem); }
@media (max-width: 850px) {
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid, .store-grid, .branch-grid { grid-template-columns: 1fr; }
  .delivery-zones-head { grid-template-columns: 1fr; gap: 12px; align-items: start; }
  .about-story, .about-section-heading, .about-closing { grid-template-columns: 1fr; }
  .about-section-heading { align-items: start; }
  .about-signature { padding-top: 24px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
}
@media (max-width: 560px) {
  .delivery-zones { padding: 18px 12px; border-radius: 20px; }
  .delivery-zones-head { padding: 0 4px; margin-bottom: 18px; }
  .delivery-district summary { min-height: 56px; padding: 10px 13px; }
  .delivery-neighborhood { align-items: flex-start; flex-direction: column; gap: 5px; }
  .delivery-minimum { text-align: left; }
}
@media (max-width: 560px) {
  .institutional-page { padding-bottom: 50px; }
  .institutional-hero { padding: 42px 0; }
  .about-story { padding-top: 22px; }
  .story-copy, .info-card, .store-card { padding: 25px 22px; border-radius: 13px; }
  .about-quality, .about-closing { padding: 25px 22px; border-radius: 13px; }
  .about-feedback-grid { grid-template-columns: 1fr; }
  .about-feedback-card { min-height: auto; padding: 22px; }
  .store-card-body { padding: 25px 22px; }
  .store-map { height: 235px; }
}
