:root {
  --cream: #fbf8f2;
  --cream-2: #f6efe2;
  --cream-3: #efe2ca;
  --white: #ffffff;
  --ink: #20201f;
  --ink-soft: #3b3935;
  --muted: #706d67;
  --gold: #c38b2f;
  --gold-deep: #9a6717;
  --gold-light: #e8c77f;
  --gold-pale: #fff4dd;
  --line: rgba(43, 38, 29, 0.11);
  --line-gold: rgba(195, 139, 47, 0.28);
  --shadow-sm: 0 10px 30px rgba(43, 35, 22, 0.07);
  --shadow: 0 22px 55px rgba(43, 35, 22, 0.10);
  --shadow-lg: 0 35px 85px rgba(43, 35, 22, 0.15);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1240px;
  --font-display: "Avenir Next", Futura, "Century Gothic", "Trebuchet MS", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.is-transitioning { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  margin-bottom: .55em;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
}
h1 em, h2 em { color: var(--gold); font-style: normal; }
h2 { font-size: clamp(2rem, 3.2vw, 3.5rem); }
h3 { font-size: 1.08rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.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; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10000; padding: 10px 15px; border-radius: 8px; background: #111; color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-family: var(--font-display); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow-light { color: #f0c66f; }
.section-heading { margin-bottom: 32px; }
.section-heading h2 { margin: 10px 0 0; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.section-lead { max-width: 560px; margin: 0; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-family: var(--font-display); font-size: .88rem; font-weight: 850; }
.text-link:hover .icon, .card-link:hover .icon { transform: translateX(3px); }
.text-link .icon, .card-link .icon { transition: transform .2s ease; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { width: 68px; height: 68px; display: grid; place-items: center; flex: 0 0 auto; }
.brand img { width: 58px; height: 64px; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); }
.site-nav a { position: relative; padding: 27px 0 24px; color: var(--ink-soft); font-family: var(--font-display); font-size: .79rem; font-weight: 820; }
.site-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 17px; height: 2px; border-radius: 2px; background: var(--gold); transition: .25s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--gold-deep); }
.site-nav a:hover::after, .site-nav a.is-active::after { left: 0; right: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 17px; border-radius: 11px; background: linear-gradient(135deg, #e0b456, #b97c20); color: #fff; font-family: var(--font-display); font-size: .76rem; font-weight: 900; box-shadow: 0 12px 25px rgba(177,119,24,.21); }
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 15px 30px rgba(177,119,24,.28); }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; }

/* Buttons */
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font-family: var(--font-display); font-size: .82rem; font-weight: 900; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, #d3a044, #aa711b); box-shadow: 0 13px 27px rgba(164,106,18,.23); }
.button-secondary { color: var(--ink); border-color: var(--line-gold); background: rgba(255,255,255,.85); }
.button-dark { color: #fff; background: #24231f; }
.button-glass { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(25,23,20,.28); backdrop-filter: blur(10px); }
.button-small { min-height: 38px; padding-inline: 13px; border-radius: 9px; font-size: .72rem; }
.round-link { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--gold); }

/* Page transition only on navigation */
.page-transition { position: fixed; inset: 0; z-index: 9999; display: grid; visibility: hidden; place-content: center; gap: 14px; opacity: 0; background: rgba(251,248,242,.98); pointer-events: none; transition: opacity .18s ease, visibility 0s linear .18s; }
body.is-transitioning .page-transition { visibility: visible; opacity: 1; transition: opacity .18s ease; }
.transition-label { color: var(--gold-deep); font-family: var(--font-display); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.burger-motion { position: relative; width: 94px; height: 88px; margin-inline: auto; }
.burger-motion span { position: absolute; left: 7px; width: 80px; border: 2px solid rgba(31,31,30,.13); box-shadow: 0 4px 10px rgba(68,44,10,.08); }
.burger-bun { background: linear-gradient(180deg,#efc678,#c99035); }
.burger-bun-top { top: 6px; height: 24px; border-radius: 44px 44px 10px 10px; }
.burger-lettuce { top: 34px; height: 9px; border-radius: 50%; background: #89a947; }
.burger-cheese { top: 45px; height: 8px; border-radius: 3px; background: #f2c44f; transform: skew(-12deg); }
.burger-patty { top: 55px; height: 15px; border-radius: 8px; background: #704128; }
.burger-bun-bottom { top: 73px; height: 15px; border-radius: 6px 6px 20px 20px; }
body.is-transitioning .burger-bun-top { animation: bun-top .48s ease both; }
body.is-transitioning .burger-lettuce { animation: layer-in .4s .03s ease both; }
body.is-transitioning .burger-cheese { animation: layer-in .4s .07s ease both; }
body.is-transitioning .burger-patty { animation: layer-in .4s .1s ease both; }
body.is-transitioning .burger-bun-bottom { animation: bun-bottom .45s .12s ease both; }
@keyframes bun-top { from { transform: translateY(-28px) rotate(-7deg); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bun-bottom { from { transform: translateY(25px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes layer-in { from { transform: translateX(-30px) scaleX(.7); opacity: 0; } to { transform: translateX(0) scaleX(1); opacity: 1; } }

/* Home hero full photo slider */
.hero-slider { position: relative; min-height: 640px; overflow: hidden; background: #171612; }
.hero-slides, .hero-slide { min-height: 640px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .72s ease, visibility 0s linear .72s; }
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; transition: opacity .72s ease; }
.hero-slide-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,9,.90) 0%, rgba(12,11,9,.70) 35%, rgba(12,11,9,.12) 70%, rgba(12,11,9,.04) 100%); }
.hero-slide-content { position: relative; z-index: 2; min-height: 640px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 90px 120px; }
.hero-slide-content h1, .hero-slide-content .hero-slide-title { max-width: 690px; margin: 18px 0 21px; color: #fff; font-size: clamp(3.5rem, 6.2vw, 6.3rem); line-height: .94; letter-spacing: -.06em; text-shadow: 0 12px 45px rgba(0,0,0,.24); }
.hero-slide-content p { max-width: 550px; margin-bottom: 30px; color: rgba(255,255,255,.82); font-size: 1.07rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slider-controls { position: absolute; z-index: 5; right: 0; bottom: 25px; left: 0; display: flex; align-items: center; justify-content: space-between; }
.hero-dots { display: flex; gap: 9px; }
.hero-dot { width: 32px; height: 4px; padding: 0; border: 0; border-radius: 4px; background: rgba(255,255,255,.35); }
.hero-dot.is-active { width: 58px; background: var(--gold-light); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; color: #fff; background: rgba(20,18,15,.35); backdrop-filter: blur(10px); }
.trust-wrap { position: relative; z-index: 8; margin-top: -38px; }
.trust-strip { min-height: 76px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; border: 1px solid rgba(195,139,47,.18); border-radius: 16px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.trust-strip > div { min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 10px 20px; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip .icon { width: 25px; height: 25px; color: var(--gold); }
.trust-strip span { display: flex; flex-direction: column; color: var(--muted); font-size: .72rem; line-height: 1.3; }
.trust-strip strong { color: var(--ink); font-family: var(--font-display); font-size: 1.03rem; }

/* Home menu and story */
.home-menu { padding-top: 92px; }
.home-category-row { display: flex; gap: 9px; margin-bottom: 22px; overflow-x: auto; padding-bottom: 4px; }
.chip { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.75); font-family: var(--font-display); font-size: .72rem; font-weight: 800; white-space: nowrap; }
.chip:hover, .chip.is-active { color: #fff; border-color: var(--gold); background: var(--gold); }
.home-menu-layout { display: grid; grid-template-columns: 1.45fr .9fr; gap: 24px; align-items: stretch; }
.featured-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.food-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.food-card-image { display: block; height: 210px; overflow: hidden; background: var(--cream-2); }
.food-card-image img, .food-card-media { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.food-card:hover .food-card-image > img { transform: scale(1.035); }
.food-card-copy { min-height: 160px; display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 18px; }
.food-card-copy > div > span, .product-card-copy > span, .video-card > div > span, .branch-card-copy > span { color: var(--gold-deep); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.food-card-copy h3 { margin: 5px 0 7px; font-size: 1.13rem; }
.food-card-copy p { margin: 0; display: -webkit-box; overflow: hidden; font-size: .78rem; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.story-card { display: grid; grid-template-rows: 1fr 265px; overflow: hidden; border: 1px solid var(--line-gold); border-radius: 23px; background: linear-gradient(145deg,#fffaf0,#f5e8d1); box-shadow: var(--shadow-sm); }
.story-card-copy { padding: 31px; }
.story-card-copy h2 { margin: 10px 0 16px; font-size: clamp(2rem,3vw,3.1rem); }
.story-card-copy > p { font-size: .9rem; }
.quality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 23px 0; }
.quality-grid div { display: grid; gap: 7px; color: var(--ink-soft); font-size: .7rem; font-weight: 700; }
.quality-grid .icon { width: 24px; height: 24px; color: var(--gold); }
.story-card-image { overflow: hidden; }
.story-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* Priority */
.home-priority { padding-top: 22px; }
.home-priority-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
.priority-card { min-height: 360px; display: grid; grid-template-columns: 1fr .82fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.priority-card-copy { padding: 34px; }
.priority-card h2 { margin: 10px 0 14px; font-size: clamp(2rem,3vw,3rem); }
.priority-card p { font-size: .88rem; }
.priority-card-media { overflow: hidden; }
.priority-card-media img { width: 100%; height: 100%; object-fit: cover; }
.franchise-priority { background: linear-gradient(145deg,#fffaf0,#f0dfc0); }
.franchise-media img { object-position: center; }
.mini-stat-row { display: flex; gap: 11px; margin: 21px 0; }
.mini-stat-row span { min-width: 105px; display: flex; flex-direction: column; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.7); color: var(--muted); font-size: .68rem; }
.mini-stat-row strong { color: var(--ink); font-size: 1.2rem; }
.benefit-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 23px; }
.benefit-chips span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border: 1px solid var(--line-gold); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.6); font-size: .66rem; font-weight: 800; }
.benefit-chips .icon { color: var(--gold-deep); }

/* Media preview */
.media-preview { padding-top: 40px; }
.media-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.media-preview-card { position: relative; min-height: 265px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; border-radius: 18px; color: #fff; box-shadow: var(--shadow-sm); }
.media-preview-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(11,10,8,.86)); }
.media-preview-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.media-preview-card:hover img { transform: scale(1.04); }
.media-preview-card span, .media-preview-card strong { position: relative; z-index: 2; margin-inline: 20px; }
.media-preview-card span { margin-bottom: 3px; color: #eac675; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.media-preview-card strong { margin-bottom: 20px; font-family: var(--font-display); font-size: 1.18rem; }
.instagram-strip { display: grid; grid-template-columns: .65fr 1.35fr; gap: 22px; align-items: center; margin-top: 22px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.instagram-strip > div:first-child { display: flex; flex-direction: column; }
.instagram-strip a { color: var(--gold-deep); }
.instagram-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; }
.instagram-thumbs img { width: 100%; aspect-ratio: 1.5; object-fit: cover; border-radius: 9px; }

/* Placeholder media */
.media-placeholder, .branch-logo-media { width: 100%; height: 100%; min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; background: radial-gradient(circle at 50% 32%,#fff 0,#f9edda 46%,#ead5b0 100%); }
.media-placeholder img, .branch-logo-media img { width: 72px; height: 78px; object-fit: contain; opacity: .9; }
.media-placeholder span { color: var(--muted); font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.media-placeholder strong { color: var(--gold-deep); font-family: var(--font-display); font-size: .83rem; }
.branch-logo-media span { color: var(--gold-deep); font-family: var(--font-display); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

/* Shared subpage hero */
.subpage-hero { position: relative; overflow: hidden; padding: 72px 0; background: radial-gradient(circle at 80% 20%,rgba(216,172,87,.24),transparent 27%),linear-gradient(145deg,#fffdf9,#f5e8d3); }
.subpage-hero-grid { min-height: 390px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.subpage-hero h1 { max-width: 650px; margin: 15px 0 20px; font-size: clamp(3.2rem,5.5vw,5.8rem); line-height: .95; }
.subpage-hero p { max-width: 600px; font-size: 1rem; }
.subpage-hero-media { height: 390px; display: grid; place-items: center; }
.subpage-hero-media img { max-height: 100%; object-fit: contain; }
.menu-collage img, .media-collage img { filter: drop-shadow(0 24px 40px rgba(33,26,17,.18)); }

/* Menu */
.menu-toolbar { position: sticky; top: 88px; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(15px); }
.category-tabs { display: flex; gap: 7px; overflow-x: auto; }
.category-tabs a { min-height: 36px; display: inline-flex; align-items: center; padding: 0 13px; border-radius: 999px; color: var(--ink-soft); font-family: var(--font-display); font-size: .69rem; font-weight: 800; white-space: nowrap; }
.category-tabs a:hover, .category-tabs a.is-active { color: #fff; background: var(--gold); }
.search-field { min-width: 250px; min-height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-field .icon { color: var(--gold-deep); }
.menu-list { display: grid; gap: 70px; margin-top: 58px; }
.menu-category { scroll-margin-top: 155px; }
.menu-category-heading { min-height: 185px; display: grid; grid-template-columns: 1fr 220px; align-items: center; overflow: hidden; margin-bottom: 23px; padding-left: 30px; border: 1px solid var(--line); border-radius: 19px; background: linear-gradient(135deg,#fff,#f6ead5); }
.menu-category-heading h2 { margin: 6px 0; }
.menu-category-heading p { margin: 0; }
.category-heading-image { height: 185px; overflow: hidden; }
.category-heading-image img { width: 100%; height: 100%; object-fit: cover; }
.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.product-card-image { height: 190px; display: block; overflow: hidden; background: var(--cream-2); }
.product-card-image > img, .product-card-media { width: 100%; height: 100%; object-fit: cover; }
.product-card-copy { padding: 18px; }
.product-card-copy h3 { margin: 5px 0 8px; }
.product-card-copy p { min-height: 66px; display: -webkit-box; overflow: hidden; font-size: .77rem; line-height: 1.45; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.empty-state { padding: 50px; border: 1px dashed var(--line-gold); border-radius: 18px; text-align: center; background: #fff; }
.empty-state .icon { width: 35px; height: 35px; color: var(--gold); }

/* Product detail */
.product-detail-hero { padding: 78px 0 95px; background: radial-gradient(circle at 25% 40%,rgba(215,170,79,.2),transparent 32%),linear-gradient(145deg,#fffdf9,#f5e8d3); }
.product-detail-grid { min-height: 570px; display: grid; grid-template-columns: 1fr .85fr; gap: 65px; align-items: center; }
.product-detail-media { height: 550px; overflow: hidden; border: 1px solid var(--line-gold); border-radius: 27px; background: #fff; box-shadow: var(--shadow); }
.product-detail-media > img, .product-detail-image { width: 100%; height: 100%; object-fit: cover; }
.product-detail-copy h1 { margin: 13px 0 19px; font-size: clamp(3.2rem,5vw,5.3rem); }
.product-detail-copy > p { font-size: 1.05rem; }
.back-link { display: inline-flex; margin-bottom: 25px; color: var(--muted); font-size: .78rem; font-weight: 750; }
.product-info-note { display: flex; gap: 12px; margin: 25px 0; padding: 15px; border: 1px solid var(--line-gold); border-radius: 12px; background: rgba(255,255,255,.7); color: var(--muted); font-size: .77rem; }
.product-info-note .icon { color: var(--gold-deep); }

/* Branches */
.branches-hero { padding: 58px 0 0; background: radial-gradient(circle at 70% 0,rgba(224,181,97,.19),transparent 35%),linear-gradient(180deg,#fffdf9,#f6ecdc); }
.branches-hero-grid { min-height: 245px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: center; }
.branches-hero h1 { margin: 8px 0 12px; font-size: clamp(3.4rem,5vw,5.4rem); }
.branches-hero-copy p { max-width: 520px; }
.branches-search-panel { display: grid; gap: 13px; }
.search-field-large { min-height: 52px; }
.city-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.branch-stats { position: relative; top: 37px; }
.branch-network-section { padding-top: 95px; }
.branch-network-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; }
.turkey-map-card { position: relative; min-height: 490px; overflow: hidden; padding: 28px; border: 1px solid var(--line-gold); border-radius: 22px; color: var(--gold); background: linear-gradient(145deg,#f8f1e4,#e8f0ef); box-shadow: var(--shadow-sm); }
.turkey-map { width: 100%; height: 340px; }
.map-pin-group text { fill: var(--ink-soft); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.map-card-copy { position: absolute; right: 25px; bottom: 25px; left: 25px; padding: 20px; border-radius: 15px; background: rgba(255,255,255,.91); backdrop-filter: blur(10px); }
.map-card-copy h2 { margin: 6px 0 7px; font-size: 2rem; }
.map-card-copy p { margin: 0; font-size: .78rem; }
.featured-branches { display: grid; gap: 13px; }
.compact-heading { margin-bottom: 2px; }
.compact-heading h2 { font-size: 2rem; }
.featured-branch-card { display: grid; grid-template-columns: 145px 1fr; gap: 16px; min-height: 138px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); }
.featured-branch-media { min-height: 138px; overflow: hidden; }
.featured-branch-media > img, .featured-branch-media > div { width: 100%; height: 100%; object-fit: cover; }
.featured-branch-card > div:last-child { padding: 15px 15px 13px 0; }
.featured-branch-card h3 { margin: 3px 0 4px; }
.featured-branch-card p { margin: 0 0 8px; font-size: .72rem; }
.featured-branch-card > div > span { color: var(--gold-deep); font-size: .65rem; font-weight: 800; }
.branch-actions { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.branch-actions > a:not(.button) { color: var(--gold-deep); font-size: .7rem; font-weight: 800; }
.select-field { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .75rem; }
.select-field select { min-height: 40px; padding: 0 35px 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.branch-card-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.branch-card { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.branch-card-media { height: 170px; overflow: hidden; background: var(--cream-2); }
.branch-card-media > img, .branch-card-media > div { width: 100%; height: 100%; object-fit: cover; }
.branch-card-copy { padding: 18px; }
.branch-card-copy h3 { margin: 5px 0 11px; }
.branch-address { min-height: 58px; display: flex; gap: 8px; margin-bottom: 11px; font-size: .72rem; line-height: 1.45; }
.branch-address .icon { color: var(--gold-deep); }
.branch-phone { min-height: 25px; display: flex; align-items: center; gap: 7px; margin-bottom: 14px; color: var(--ink-soft); font-size: .74rem; font-weight: 700; }
.branch-phone .icon { color: var(--gold); }
.branch-phone.is-muted { color: var(--muted); font-weight: 500; }
.branch-benefit-panel { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 20px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.branch-benefit-panel h2 { margin: 7px 0 0; font-size: 2rem; }
.branch-benefit-item { display: flex; gap: 12px; color: var(--muted); font-size: .73rem; }
.branch-benefit-item .icon { width: 29px; height: 29px; color: var(--gold); }
.branch-benefit-item span { display: flex; flex-direction: column; }
.branch-benefit-item strong { color: var(--ink); font-size: .84rem; }
.branch-franchise-cta { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 31px 38px; border-radius: 18px; background: linear-gradient(110deg,#fff8e9,#eed8ad); }
.branch-franchise-cta h2 { margin: 7px 0 4px; font-size: 2.2rem; }
.branch-franchise-cta p { margin: 0; }

/* Franchise */
.franchise-hero { padding: 62px 0 0; overflow: hidden; background: radial-gradient(circle at 70% 30%,rgba(224,181,97,.22),transparent 27%),linear-gradient(145deg,#fffdf9,#f4e7d1); }
.franchise-hero-grid { min-height: 480px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.franchise-hero-copy h1 { max-width: 700px; margin: 14px 0 20px; font-size: clamp(3.3rem,5.6vw,5.8rem); line-height: .94; }
.franchise-hero-copy p { max-width: 570px; }
.franchise-hero-visual { position: relative; height: 460px; }
.franchise-burger { position: absolute; right: 15%; bottom: 15px; z-index: 3; width: 68%; height: 310px; overflow: hidden; border-radius: 50% 50% 18px 18px; box-shadow: var(--shadow-lg); }
.franchise-burger img { width: 100%; height: 100%; object-fit: cover; }
.franchise-flag { position: absolute; top: 12px; right: -5px; z-index: 2; width: 44%; height: 225px; overflow: hidden; border-radius: 17px; transform: rotate(3deg); box-shadow: var(--shadow); }
.franchise-flag img { width: 100%; height: 100%; object-fit: cover; }
.growth-bars { position: absolute; right: 0; bottom: 33px; z-index: 1; display: flex; align-items: end; gap: 8px; height: 190px; }
.growth-bars i { width: 22px; border-radius: 5px 5px 0 0; background: linear-gradient(#d9ad55,#a66e18); opacity: .7; }
.growth-bars i:nth-child(1){height:35px}.growth-bars i:nth-child(2){height:64px}.growth-bars i:nth-child(3){height:94px}.growth-bars i:nth-child(4){height:133px}.growth-bars i:nth-child(5){height:177px}
.franchise-stats { position: relative; top: 37px; }
.why-franchise-section { padding-top: 112px; }
.feature-card-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.feature-card { min-height: 220px; padding: 25px 21px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.feature-card > .icon { width: 34px; height: 34px; margin-bottom: 23px; color: var(--gold); }
.feature-card h3 { font-size: .96rem; }
.feature-card p { font-size: .75rem; }
.process-timeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.process-timeline article { position: relative; min-height: 205px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.process-timeline article::after { content:"→"; position:absolute; right:-13px; top:46%; z-index:2; color:var(--gold); }
.process-timeline article:last-child::after { display:none; }
.process-timeline article > span { color: var(--gold); font-family: var(--font-display); font-size: .7rem; font-weight: 900; }
.process-timeline .icon { width: 33px; height: 33px; display: block; margin: 16px 0; color: var(--gold-deep); }
.process-timeline h3 { margin-bottom: 6px; }
.process-timeline p { font-size: .72rem; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.support-visual { position: relative; height: 480px; }
.support-visual > img { width: 80%; height: 100%; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.support-flag-card { position: absolute; right: 0; bottom: 28px; width: 48%; height: 200px; overflow: hidden; border: 8px solid #fff; border-radius: 17px; box-shadow: var(--shadow); }
.support-flag-card img { width:100%;height:100%;object-fit:cover; }
.support-copy h2 { margin: 10px 0 16px; }
.support-list { display: grid; gap: 13px; margin-top: 23px; }
.support-list > div { display: flex; gap: 11px; color: var(--muted); font-size: .78rem; }
.support-list .icon { color: var(--gold); }
.support-list span { display: flex; flex-direction: column; }
.support-list strong { color: var(--ink); }
.franchise-form-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: start; }
.form-card, .faq-panel { padding: 34px; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: var(--shadow-sm); }
.form-heading { margin-bottom: 24px; }
.form-heading h2, .faq-panel h2 { margin: 7px 0 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 6px; color: var(--ink-soft); font-size: .72rem; font-weight: 750; }
.form-grid label.full { grid-column: 1/-1; }
.form-grid input, .form-grid textarea, .form-grid select, .contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: #fbfaf7; color: var(--ink); }
.form-grid input { height: 45px; padding: 0 12px; }
.form-grid textarea { padding: 11px 12px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(195,139,47,.12); }
.consent-field { grid-template-columns: auto 1fr !important; align-items: start; }
.consent-field input { width: 17px; height: 17px; }
.premium-form > .button { margin-top: 20px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.alert { margin-bottom: 18px; padding: 12px 14px; border-radius: 10px; font-size: .78rem; }
.alert.success { color:#225b35;background:#e9f7ed;border:1px solid #a6d5b3; }
.alert.error { color:#812d2d;background:#fff0f0;border:1px solid #e4b2b2; }
.faq-list { display: grid; gap: 8px; margin: 22px 0; }
.faq-list details { border: 1px solid var(--line); border-radius: 11px; background: #fbfaf7; }
.faq-list summary { display: flex; justify-content: space-between; gap: 12px; padding: 14px; cursor: pointer; font-size: .78rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list details p { margin: 0; padding: 0 14px 14px; font-size: .74rem; }
.final-franchise-panel { display: grid; grid-template-columns: 200px 1fr auto; gap: 28px; align-items: center; overflow: hidden; border-radius: 20px; color: #fff; background: #25231f; }
.final-franchise-panel > div:first-child { height: 180px; }
.final-franchise-panel img { width:100%;height:100%;object-fit:cover; }
.final-franchise-panel h2 { margin: 7px 0; color:#fff; font-size:2.2rem; }
.final-franchise-panel p { margin:0;color:rgba(255,255,255,.68); }
.final-franchise-panel > .button { margin-right:28px; }

/* Media */
.media-masonry { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 210px; gap: 13px; }
.media-photo-card { overflow: hidden; border-radius: 15px; background: var(--cream-2); }
.media-photo-card.is-wide { grid-column: span 2; }
.media-photo-card img { width:100%;height:100%;object-fit:cover;transition:transform .4s ease; }
.media-photo-card:hover img { transform:scale(1.04); }
.media-video-section { background:#f5ecdd; }
.video-card-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:17px; }
.video-card { overflow:hidden;border:1px solid var(--line);border-radius:17px;background:#fff;box-shadow:var(--shadow-sm); }
.video-card-media { position:relative;height:175px;overflow:hidden; }
.video-card-media img { width:100%;height:100%;object-fit:cover; }
.play-button { position:absolute;inset:0;margin:auto;width:54px;height:54px;display:grid;place-items:center;border-radius:50%;color:#fff;background:rgba(195,139,47,.91);box-shadow:0 12px 25px rgba(0,0,0,.25); }
.play-button .icon { width:30px;height:30px; }
.video-card > div:last-child { padding:17px; }
.video-card h3 { margin:5px 0 7px;font-size:.98rem; }
.video-card p { margin:0;font-size:.72rem; }
.media-press-panel { display:grid;grid-template-columns:210px 1fr auto;gap:25px;align-items:center;overflow:hidden;border:1px solid var(--line-gold);border-radius:20px;background:linear-gradient(135deg,#fff8e9,#ead6ad); }
.media-press-panel > div:first-child { height:180px; }
.media-press-panel img { width:100%;height:100%;object-fit:cover; }
.media-press-panel h2 { margin:7px 0; }
.media-press-panel p { margin:0; }
.media-press-panel .hero-actions { padding-right:25px; }

/* Generic pages and forms */
.page-hero, .inner-hero { padding: 70px 0; background:linear-gradient(145deg,#fffdf9,#f3e5cf); }
.page-hero-grid, .inner-hero-grid { min-height:320px;display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center; }
.page-hero h1, .inner-hero h1 { font-size:clamp(3rem,5vw,5.4rem); }
.content-panel, .contact-card, .press-card, .announcement-card { border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm); }
.contact-layout { display:grid;grid-template-columns:.8fr 1.2fr;gap:25px; }
.contact-card, .contact-form { padding:30px; }
.contact-form { border:1px solid var(--line);border-radius:18px;background:#fff; }
.contact-form label { display:grid;gap:6px;margin-bottom:13px;font-size:.75rem;font-weight:750; }
.contact-form input { height:45px;padding:0 12px; }
.contact-form textarea { padding:11px 12px; }

/* Order / footer */
.order-section { padding: 65px 0; background: #f4ead9; }
.order-panel { min-height: 260px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; overflow: hidden; border-radius: 22px; background: linear-gradient(120deg,#24221e,#393229); box-shadow: var(--shadow); }
.order-copy { padding: 37px; }
.order-copy .eyebrow { color:#e9c170; }
.order-copy h2 { margin:8px 0;color:#fff; }
.order-copy p { max-width:620px;color:rgba(255,255,255,.67); }
.order-badges { display:flex;gap:9px;flex-wrap:wrap;margin-top:19px; }
.order-badge { width:145px;height:42px;overflow:hidden;border-radius:8px;background:#fff; }
.order-badge img { width:100%;height:100%;object-fit:cover; }
.order-badge.is-disabled { opacity:.55; }
.order-visual { height:260px; }
.order-visual img { width:100%;height:100%;object-fit:cover; }
.site-footer { padding: 55px 0 0; border-top:1px solid var(--line); background:#fff; }
.footer-main { display:grid;grid-template-columns:1.35fr .7fr .7fr 1.15fr;gap:40px;padding-bottom:42px; }
.footer-logo { width:80px;height:86px;object-fit:contain;margin-bottom:14px; }
.footer-brand p { max-width:330px;font-size:.78rem; }
.footer-social { display:flex;gap:8px; }
.footer-social a { width:32px;height:32px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;font-size:.7rem;font-weight:800; }
.footer-column { display:flex;flex-direction:column;gap:8px; }
.footer-column h3 { margin-bottom:8px;color:var(--gold-deep);font-size:.79rem;letter-spacing:.06em;text-transform:uppercase; }
.footer-column a, .footer-column p, .footer-column small { color:var(--muted);font-size:.73rem; }
.footer-column a:hover { color:var(--gold-deep); }
.footer-contact a { display:flex;align-items:center;gap:7px; }
.footer-bottom { min-height:58px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid var(--line);color:var(--muted);font-size:.68rem; }
.footer-bottom a { color:var(--gold-deep);font-weight:800; }
.media-dialog { max-width:min(95vw,1100px);padding:44px 15px 15px;border:0;border-radius:15px;background:#111; }
.media-dialog::backdrop { background:rgba(0,0,0,.82); }
.media-dialog img { max-height:82vh; }
.media-dialog button { position:absolute;top:7px;right:10px;border:0;color:#fff;background:transparent;font-size:1.8rem; }

/* Responsive */
@media (max-width: 1120px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .72rem; }
  .header-cta { display: none; }
  .product-grid, .branch-card-grid, .video-card-grid { grid-template-columns: repeat(3,1fr); }
  .feature-card-grid { grid-template-columns: repeat(3,1fr); }
  .feature-card-grid .feature-card:nth-child(n+4) { grid-column: span 1; }
  .process-timeline { grid-template-columns: repeat(3,1fr); }
  .process-timeline article:nth-child(n+4) { grid-column: span 1; }
  .process-timeline article::after { display:none; }
  .home-menu-layout { grid-template-columns:1fr; }
  .story-card { grid-template-columns:1.1fr .9fr;grid-template-rows:auto; }
  .story-card-image { min-height:360px; }
  .home-priority-grid { grid-template-columns:1fr; }
  .priority-card { min-height:330px; }
}

@media (max-width: 880px) {
  .container { width:min(calc(100% - 28px),var(--container)); }
  .section { padding:64px 0; }
  .menu-toggle { display:grid; }
  .site-nav { position:fixed;top:76px;right:14px;left:14px;display:grid;gap:0;padding:12px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(-10px);transition:.2s ease; }
  body.menu-open .site-nav { opacity:1;visibility:visible;transform:translateY(0); }
  .site-nav a { padding:12px 10px;border-bottom:1px solid var(--line); }
  .site-nav a:last-child { border-bottom:0; }
  .site-nav a::after { display:none; }
  .hero-slider, .hero-slides, .hero-slide, .hero-slide-content { min-height:590px; }
  .hero-slide-content { padding-block:70px 110px; }
  .hero-slide-overlay { background:linear-gradient(90deg,rgba(10,9,8,.9),rgba(10,9,8,.6) 65%,rgba(10,9,8,.25)); }
  .trust-strip { grid-template-columns:repeat(2,1fr); }
  .trust-strip > div:nth-child(2) { border-right:0; }
  .trust-strip > div:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .home-menu-layout, .subpage-hero-grid, .product-detail-grid, .branches-hero-grid, .branch-network-grid, .franchise-hero-grid, .support-grid, .franchise-form-layout, .contact-layout { grid-template-columns:1fr; }
  .subpage-hero-grid { min-height:unset;gap:30px; }
  .subpage-hero-media { height:300px; }
  .branches-search-panel { margin-bottom:28px; }
  .branch-stats, .franchise-stats { top:25px; }
  .featured-grid { grid-template-columns:repeat(2,1fr); }
  .media-preview-grid { grid-template-columns:1fr 1fr; }
  .media-preview-card:last-child { grid-column:1/-1; }
  .instagram-strip { grid-template-columns:1fr; }
  .product-grid, .branch-card-grid, .video-card-grid { grid-template-columns:repeat(2,1fr); }
  .branch-benefit-panel { grid-template-columns:1fr 1fr; }
  .branch-benefit-panel > div:first-child { grid-column:1/-1; }
  .feature-card-grid { grid-template-columns:repeat(2,1fr); }
  .process-timeline { grid-template-columns:repeat(2,1fr); }
  .franchise-hero-visual { height:390px; }
  .final-franchise-panel, .media-press-panel { grid-template-columns:170px 1fr; padding-right:20px; }
  .final-franchise-panel > .button, .media-press-panel .hero-actions { grid-column:2; margin:0 0 20px; padding:0; }
  .media-masonry { grid-template-columns:repeat(3,1fr); }
  .footer-main { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-contact { grid-column:1/-1; }
}

@media (max-width: 600px) {
  body { font-size:15px; }
  .header-inner { min-height:68px; }
  .brand { width:57px;height:62px; }
  .brand img { width:50px;height:56px; }
  .site-nav { top:68px; }
  .hero-slider, .hero-slides, .hero-slide, .hero-slide-content { min-height:620px; }
  .hero-slide-image { object-position:62% center; }
  .hero-slide-overlay { background:linear-gradient(90deg,rgba(8,7,6,.94),rgba(8,7,6,.72) 75%,rgba(8,7,6,.5)); }
  .hero-slide-content { justify-content:end;padding-bottom:105px; }
  .hero-slide-content h1, .hero-slide-content .hero-slide-title { font-size:clamp(2.9rem,15vw,4.5rem); }
  .hero-slider-controls { bottom:22px; }
  .hero-arrows { display:none; }
  .trust-wrap { margin-top:-24px; }
  .trust-strip { border-radius:14px; }
  .trust-strip > div { justify-content:flex-start;padding:10px 15px; }
  .section-heading-row { align-items:flex-start;flex-direction:column; }
  .featured-grid, .product-grid, .branch-card-grid, .video-card-grid, .feature-card-grid, .process-timeline { grid-template-columns:1fr; }
  .food-card-image { height:225px; }
  .story-card { grid-template-columns:1fr; }
  .story-card-image { min-height:260px; }
  .quality-grid { grid-template-columns:1fr; }
  .priority-card { grid-template-columns:1fr; }
  .priority-card-media { min-height:240px; }
  .media-preview-grid { grid-template-columns:1fr; }
  .media-preview-card:last-child { grid-column:auto; }
  .instagram-thumbs { grid-template-columns:repeat(3,1fr); }
  .instagram-thumbs img:nth-child(n+4) { display:none; }
  .subpage-hero { padding:50px 0; }
  .subpage-hero h1, .branches-hero h1, .franchise-hero-copy h1 { font-size:clamp(2.8rem,14vw,4.4rem); }
  .menu-toolbar { top:78px;align-items:stretch;flex-direction:column; }
  .search-field { min-width:0; }
  .menu-category-heading { grid-template-columns:1fr;padding:24px; }
  .category-heading-image { display:none; }
  .product-card-image { height:240px; }
  .product-detail-media { height:400px; }
  .product-detail-grid { min-height:unset;gap:32px; }
  .product-detail-copy h1 { font-size:3rem; }
  .branches-hero-grid { gap:15px; }
  .branch-network-grid { gap:18px; }
  .turkey-map-card { min-height:420px;padding:15px; }
  .turkey-map { height:280px; }
  .featured-branch-card { grid-template-columns:110px 1fr; }
  .branch-benefit-panel { grid-template-columns:1fr; }
  .branch-benefit-panel > div:first-child { grid-column:auto; }
  .branch-franchise-cta { align-items:flex-start;flex-direction:column;padding:25px; }
  .franchise-hero-visual { height:320px; }
  .franchise-burger { right:8%;width:82%;height:240px; }
  .franchise-flag { width:45%;height:150px; }
  .growth-bars { display:none; }
  .support-visual { height:390px; }
  .form-grid { grid-template-columns:1fr; }
  .form-grid label.full { grid-column:auto; }
  .final-franchise-panel, .media-press-panel { grid-template-columns:1fr;padding:0 0 25px; }
  .final-franchise-panel > div:first-child, .media-press-panel > div:first-child { height:180px; }
  .final-franchise-panel > div:nth-child(2), .media-press-panel > div:nth-child(2), .final-franchise-panel > .button, .media-press-panel .hero-actions { grid-column:auto;margin:0 22px; }
  .media-masonry { grid-template-columns:1fr 1fr;grid-auto-rows:170px; }
  .media-photo-card.is-wide { grid-column:span 2; }
  .order-panel { grid-template-columns:1fr; }
  .order-visual { height:180px; }
  .footer-main { grid-template-columns:1fr 1fr;gap:28px; }
  .footer-brand, .footer-contact { grid-column:1/-1; }
  .footer-bottom { align-items:flex-start;flex-direction:column;justify-content:center;padding:16px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}


/* Refined shared inner pages */
.inner-hero { position: relative; overflow: hidden; }
.inner-hero::before { content:""; position:absolute; width:420px; height:420px; left:-170px; bottom:-250px; border:80px solid rgba(195,139,47,.055); border-radius:50%; }
.inner-hero-copy { position:relative;z-index:2; }
.inner-hero-copy h1 { max-width:760px;margin:12px 0 18px; }
.inner-hero-copy p { max-width:630px;margin:0;font-size:1.03rem; }
.inner-hero-visual { position:relative;height:350px;overflow:hidden;border-radius:24px;box-shadow:var(--shadow); }
.inner-hero-visual img { width:100%;height:100%;object-fit:cover; }
.inner-hero-visual::after { content:"";position:absolute;inset:0;border:1px solid rgba(255,255,255,.45);border-radius:inherit;pointer-events:none; }
.inner-hero-accent { position:absolute;right:-13px;bottom:-13px;width:110px;height:110px;border-right:2px solid var(--gold);border-bottom:2px solid var(--gold);border-radius:0 0 28px 0; }
.section-soft { background:#f5ecdd; }
.about-story-grid { display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center; }
.about-story-copy h2 { margin:10px 0 20px; }
.about-story-copy p { font-size:.92rem; }
.about-image-stack { position:relative;min-height:510px; }
.about-image-stack img { position:absolute;object-fit:cover;border:9px solid #fff;border-radius:20px;box-shadow:var(--shadow); }
.about-image-stack img:first-child { inset:0 18% 80px 0;width:82%;height:430px; }
.about-image-stack img:last-child { right:0;bottom:0;width:48%;height:260px; }
.mission-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.mission-card { position:relative;min-height:300px;padding:30px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-sm); }
.mission-card > span { position:absolute;right:22px;top:17px;color:rgba(154,103,23,.18);font-family:var(--font-display);font-size:2.7rem;font-weight:900; }
.mission-card > .icon { width:42px;height:42px;margin:25px 0;color:var(--gold); }
.mission-card h2 { font-size:1.65rem; }
.mission-card p { font-size:.82rem; }
.mission-card-dark { color:#fff;background:#282620; }
.mission-card-dark p { color:rgba(255,255,255,.68); }
.milestone-row { display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.milestone-row article { padding:26px;border-top:2px solid var(--gold);border-radius:0 0 17px 17px;background:#fff;box-shadow:var(--shadow-sm); }
.milestone-row strong { color:var(--gold);font-family:var(--font-display);font-size:2.2rem; }
.milestone-row h3 { margin:8px 0; }
.milestone-row p { margin:0;font-size:.78rem; }
.awards-panel { display:grid;grid-template-columns:.8fr 1.2fr;gap:40px;padding:42px;border:1px solid var(--line-gold);border-radius:22px;background:linear-gradient(135deg,#fff,#f3e0bd); }
.award-list { display:grid;gap:10px; }
.award-list article { display:flex;align-items:center;gap:12px;padding:13px 16px;border:1px solid rgba(195,139,47,.22);border-radius:12px;background:rgba(255,255,255,.76); }
.award-list .icon { color:var(--gold); }
.cta-banner { display:flex;align-items:center;justify-content:space-between;gap:35px;padding:36px 40px;border-radius:22px;background:linear-gradient(115deg,#fff5df,#e5c27d);box-shadow:var(--shadow-sm); }
.cta-banner h2 { margin:8px 0;font-size:2.2rem; }
.cta-banner p { margin:0; }
.contact-info-panel { padding:34px;border-radius:21px;color:#fff;background:linear-gradient(145deg,#24221e,#3b342a);box-shadow:var(--shadow); }
.contact-info-panel .eyebrow { color:#e6bb64; }
.contact-info-panel h2 { margin:10px 0 25px;color:#fff;font-size:2.25rem; }
.contact-info-list { display:grid;gap:10px; }
.contact-info-list > * { display:flex;align-items:flex-start;gap:12px;padding:14px;border:1px solid rgba(255,255,255,.11);border-radius:12px;background:rgba(255,255,255,.055); }
.contact-info-list .icon { margin-top:3px;color:#e8c476; }
.contact-info-list span { display:grid; }
.contact-info-list small { color:rgba(255,255,255,.5);font-size:.65rem;text-transform:uppercase;letter-spacing:.09em; }
.contact-info-list strong { color:#fff;font-size:.82rem; }
.contact-hours { margin:22px 0;padding:17px;border-left:2px solid var(--gold);background:rgba(255,255,255,.045); }
.contact-hours h3 { color:#fff;font-size:.88rem; }
.contact-hours p { margin:3px 0;color:rgba(255,255,255,.63);font-size:.74rem; }
.contact-info-panel .button-secondary { color:#fff;border-color:rgba(255,255,255,.25);background:transparent; }
.subnav { display:flex;gap:8px;margin-bottom:28px; }
.subnav a { padding:10px 15px;border:1px solid var(--line);border-radius:10px;background:#fff;font-family:var(--font-display);font-size:.76rem;font-weight:850; }
.subnav a.is-active { color:#fff;border-color:var(--gold);background:var(--gold); }
.news-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.news-grid-wide { grid-template-columns:repeat(2,1fr); }
.news-card { overflow:hidden;border:1px solid var(--line);border-radius:19px;background:#fff;box-shadow:var(--shadow-sm); }
.news-card-image { height:230px;overflow:hidden;background:var(--cream-2); }
.news-card-image img { width:100%;height:100%;object-fit:cover;transition:transform .4s ease; }
.news-card:hover .news-card-image img { transform:scale(1.035); }
.news-card-copy { padding:22px; }
.news-card-copy time { color:var(--gold-deep);font-size:.67rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em; }
.news-card-copy h2 { margin:8px 0;font-size:1.35rem; }
.news-card-copy p { font-size:.78rem; }
.empty-state { padding:30px;border:1px dashed var(--line-gold);border-radius:15px;text-align:center;background:#fff9ed; }

@media (max-width: 880px) {
  .inner-hero-grid,.about-story-grid,.awards-panel { grid-template-columns:1fr; }
  .about-image-stack { min-height:450px; }
  .mission-grid,.milestone-row,.news-grid,.news-grid-wide { grid-template-columns:1fr 1fr; }
  .cta-banner { align-items:flex-start;flex-direction:column; }
}
@media (max-width: 600px) {
  .inner-hero-visual { height:270px; }
  .mission-grid,.milestone-row,.news-grid,.news-grid-wide { grid-template-columns:1fr; }
  .about-image-stack { min-height:360px; }
  .about-image-stack img:first-child { height:300px; }
  .about-image-stack img:last-child { height:190px; }
  .awards-panel,.contact-info-panel,.form-card { padding:25px; }
}
