:root {
  --black: #070504;
  --ink: #15100b;
  --charcoal: #11100d;
  --brown: #2b1b0e;
  --cream: #f8efe0;
  --paper: #f7efe3;
  --muted: #b9aa94;
  --gold: #c99a3f;
  --gold-2: #f0cf82;
  --gold-3: #8f6428;
  --blue: #051521;
  --blue-2: #0b2b3d;
  --line: rgba(201, 154, 63, .28);
  --glass: rgba(255, 255, 255, .075);
  --shadow: 0 32px 90px rgba(0, 0, 0, .46);
  --radius: 32px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.skip-link { position: fixed; top: -50px; left: 16px; z-index: 99999; background: var(--gold-2); color: var(--ink); padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-content: center; justify-items: center; gap: 12px;
  background: radial-gradient(circle at 50% 38%, #251708, #050302 66%);
  transition: opacity .55s ease, visibility .55s ease;
}
.loader img { width: 118px; height: 118px; object-fit: contain; animation: pulse 1.3s ease-in-out infinite alternate; filter: drop-shadow(0 18px 35px rgba(0,0,0,.35)); }
.loader span { color: var(--gold-2); letter-spacing: 8px; font-size: 13px; font-weight: 800; }
.loader.hide { opacity: 0; visibility: hidden; }
@keyframes pulse { to { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(240, 207, 130, .3)); } }

.header {
  position: fixed; inset: 0 0 auto 0; height: 82px; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 6vw, 86px);
  transition: background .25s ease, border .25s ease, backdrop-filter .25s ease;
}
.header.scrolled { background: rgba(7, 5, 4, .82); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(201, 154, 63, .18); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 0; filter: drop-shadow(0 10px 22px rgba(0,0,0,.28)); }
.brand strong { display: block; font: 700 24px Georgia, serif; letter-spacing: 4px; }
.brand small { display: block; color: var(--gold-2); letter-spacing: 2px; font-size: 10px; text-transform: uppercase; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 24px; color: rgba(248, 239, 224, .86); font-size: 14px; }
.nav a { transition: color .2s ease, transform .2s ease; }
.nav a:hover { color: var(--gold-2); transform: translateY(-1px); }
.nav-cta { border: 1px solid var(--gold); border-radius: 999px; padding: 12px 18px; font-weight: 800; color: var(--gold-2) !important; }
.menu-button { display: none; background: transparent; border: 0; width: 42px; height: 42px; }
.menu-button span { display: block; height: 2px; margin: 7px 0; background: var(--cream); border-radius: 2px; }

.hero { position: relative; min-height: 100vh; overflow: hidden; padding: 122px clamp(18px, 6vw, 86px) 38px; display: flex; flex-direction: column; justify-content: center; }
.hero-media, .hero-vignette { position: absolute; inset: 0; }
.hero-media { background-size: cover; background-position: center; opacity: .86; filter: saturate(.9) contrast(1.04); transform: scale(1.02); }
.hero-media-left { background-position: center 38%; clip-path: polygon(0 0, 57% 0, 41% 100%, 0 100%); background-image: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.78)), url("assets/photos/buffet-logo.jpg"); }
.hero-media-right { background-position: center 52%; clip-path: polygon(56% 0, 100% 0, 100% 100%, 40% 100%); background-image: linear-gradient(to bottom, rgba(0,0,0,.06), rgba(0,0,0,.83)), url("assets/photos/tabak-premium.jpg"); }
.hero-vignette { background: radial-gradient(circle at center, rgba(7,5,4,.08), rgba(7,5,4,.63) 52%, rgba(7,5,4,.98) 100%); }
.hero-inner { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 0 auto; text-align: center; }
.kicker { color: var(--gold-2); text-transform: uppercase; letter-spacing: 4px; font-size: 12px; font-weight: 900; margin-bottom: 16px; }
.kicker.dark { color: #9b681f; }
.hero-logo { width: clamp(110px, 12vw, 160px); height: clamp(110px, 12vw, 160px); object-fit: contain; margin: 0 auto 16px; filter: drop-shadow(0 22px 48px rgba(0,0,0,.45)); }
.hero h1 { font: 500 clamp(74px, 12vw, 158px)/.78 Georgia, "Times New Roman", serif; letter-spacing: clamp(3px, .8vw, 12px); }
.subtitle { color: var(--gold-2); font: 700 clamp(21px, 3vw, 43px)/1 Georgia, serif; letter-spacing: clamp(2px, .45vw, 7px); text-transform: uppercase; margin-top: 16px; }
.hero-copy { max-width: 760px; margin: 26px auto 42px; color: rgba(248,239,224,.92); font-size: clamp(18px, 2.05vw, 25px); line-height: 1.48; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.choice-card { position: relative; min-height: 320px; overflow: hidden; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; text-align: left; padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .3s ease, border-color .3s ease; }
.choice-card:hover { transform: translateY(-8px); border-color: var(--gold-2); }
.choice-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .65s ease; }
.choice-card:hover::before { transform: scale(1.08); }
.choice-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,5,4,.92), rgba(7,5,4,.48), rgba(7,5,4,.16)); }
.choice-turk::before { background-position: center; background-image: url("assets/photos/hanli-turk-logo-bg.jpg"); }
.choice-fish::before { background-position: center; background-image: url("assets/photos/hanli-balik-sign.jpg"); }
.choice-label { color: var(--gold-2); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; }
.choice-card strong { font: 600 clamp(35px, 4.5vw, 55px)/.92 Georgia, serif; margin: 14px 0; }
.choice-card p { max-width: 415px; color: rgba(248,239,224,.84); line-height: 1.58; }
.choice-card em { margin: 24px auto 0; min-width: 132px; text-align: center; width: fit-content; font-style: normal; color: var(--ink); background: linear-gradient(135deg, var(--gold-2), var(--gold)); font-weight: 900; border-radius: 999px; padding: 14px 24px; }
.trust-strip { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 34px auto 0; padding-top: 26px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: center; }
.trust-strip span { color: rgba(248,239,224,.88); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); padding: 13px 12px; border-radius: 16px; font-weight: 750; }

.container { width: min(100% - 36px, var(--max)); margin-inline: auto; }
.section-pad { padding: clamp(72px, 9vw, 118px) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 78px) 0; }
.intro { background: var(--paper); color: var(--ink); }
.intro-grid { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); gap: 18px; align-items: stretch; }
.intro-card, .stat-card { border-radius: 28px; background: white; box-shadow: 0 18px 50px rgba(43, 27, 14, .08); border: 1px solid rgba(201,154,63,.2); }
.intro-card { padding: clamp(28px, 5vw, 48px); }
.intro-card h2, .section-head h2, .office h2, .platform-card h2, .gallery h2, .contact-card h2 { font: 600 clamp(36px, 5vw, 68px)/.99 Georgia, serif; letter-spacing: -1px; margin-bottom: 20px; }
.intro-card p, .section-head p, .office p, .platform-card p, .contact-card p { color: inherit; opacity: .74; font-size: 18px; line-height: 1.65; }
.stat-card { padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 210px; position: relative; overflow: hidden; }
.stat-card::after { content: ""; position: absolute; inset: 18px; border-radius: 22px; border: 1px solid rgba(201,154,63,.12); opacity: .7; pointer-events: none; }
.stat-icon { position: absolute; top: 26px; right: 26px; width: 74px; height: 74px; border-radius: 22px; display: grid; place-items: center; font-size: 38px; background: linear-gradient(135deg, rgba(201,154,63,.16), rgba(201,154,63,.04)); box-shadow: inset 0 0 0 1px rgba(201,154,63,.18); }
.stat-card strong { position: relative; z-index: 1; color: var(--gold-3); font: 700 clamp(34px, 3vw, 46px)/1 Georgia, serif; }
.stat-card span { position: relative; z-index: 1; color: rgba(21,16,11,.68); font-weight: 800; margin-top: 8px; }

.brand-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.turk-section { background: var(--paper); color: var(--ink); }
.fish-section { background: radial-gradient(circle at 90% 20%, var(--blue-2), var(--blue) 55%, #02080d); color: var(--cream); }
.brand-photo { min-height: 640px; background-size: cover; background-position: center; }
.turk-section .brand-photo { background-position: center 45%; background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.18)), url("assets/photos/buffet-logo.jpg"); }
.fish-photo { background-position: center; background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.25)), url("assets/photos/salon-2.jpg"); }
.brand-content { align-self: center; padding: clamp(42px, 8vw, 105px); }
.brand-content h2 { font: 600 clamp(40px, 5.2vw, 78px)/.96 Georgia, serif; letter-spacing: -1px; margin-bottom: 26px; }
.brand-content p { opacity: .78; font-size: 19px; line-height: 1.66; max-width: 660px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.pill-row span { padding: 13px 17px; border-radius: 15px; border: 1px solid rgba(143, 100, 40, .22); background: rgba(255,255,255,.5); font-weight: 850; font-size: 14px; }
.pill-row.blue span { color: var(--cream); border-color: rgba(240,207,130,.24); background: rgba(255,255,255,.07); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 999px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--ink); }
.btn-light { border-color: rgba(21,16,11,.18); color: var(--ink); background: rgba(255,255,255,.5); }
.btn-dark { border-color: rgba(240,207,130,.25); color: var(--cream); background: rgba(255,255,255,.07); }

.office { background: linear-gradient(135deg, #0d0a08, #1b1008); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.office-list { display: grid; gap: 14px; }
.office-list div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.055); }
.office-list strong { color: var(--gold-2); font: 700 35px/1 Georgia, serif; }
.office-list span { color: rgba(248,239,224,.82); font-weight: 800; }

.menus { background: var(--black); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.menu-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.tab { cursor: pointer; border: 1px solid var(--line); background: rgba(255,255,255,.055); color: var(--cream); padding: 13px 18px; border-radius: 999px; font-weight: 850; }
.tab.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.menu-card { position: relative; overflow: hidden; border-radius: 27px; padding: 26px; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); border: 1px solid rgba(201,154,63,.2); min-height: 210px; }
.menu-card::after { content: ""; position: absolute; right: -46px; top: -46px; width: 150px; height: 150px; border-radius: 50%; border: 1px solid rgba(240,207,130,.18); }
.menu-card small { color: var(--gold-2); letter-spacing: 2px; text-transform: uppercase; font-weight: 900; }
.menu-card h3 { font: 600 28px/1.05 Georgia, serif; margin: 16px 0 10px; }
.menu-card p { color: rgba(248,239,224,.72); line-height: 1.55; }
.menu-card ul { position: relative; z-index: 1; list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.menu-card li { color: rgba(248,239,224,.82); line-height: 1.35; padding-left: 18px; position: relative; font-weight: 750; }
.menu-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); }
.menu-category-card { min-height: 100%; }
.menu-category-card h3 { color: var(--gold-2); }
.menu-card .price { display: none; }

.platforms { background: var(--paper); color: var(--ink); }
.platform-card { border-radius: 34px; background: white; border: 1px solid rgba(201,154,63,.24); padding: clamp(28px, 5vw, 50px); display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: center; box-shadow: 0 20px 60px rgba(43,27,14,.08); }
.platform-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.platform-links a { text-align: center; border: 1px solid rgba(143,100,40,.2); border-radius: 18px; padding: 20px; font-weight: 950; background: #fbf7ef; }

.gallery { background: var(--paper); color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; grid-auto-rows: 280px; gap: 18px; }
.gallery-grid figure { position: relative; overflow: hidden; border-radius: 28px; background: #ddd; border: 1px solid rgba(201,154,63,.2); }
.gallery-grid .wide { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(7,5,4,.72); color: var(--cream); padding: 9px 12px; border-radius: 999px; font-size: 13px; font-weight: 800; backdrop-filter: blur(10px); }

.contact { background: radial-gradient(circle at 15% 10%, #2e1c0b, #080504 60%); }
.contact-card { border: 1px solid var(--line); border-radius: 36px; padding: clamp(30px, 6vw, 56px); background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); display: grid; grid-template-columns: 1fr 1fr; gap: 34px; box-shadow: var(--shadow); }
.contact-details { display: grid; gap: 16px; }
.contact-details p { opacity: 1; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 14px; }
.contact-details strong { display: block; color: var(--gold-2); margin-bottom: 5px; opacity: 1; }
.footer { background: #030201; border-top: 1px solid rgba(201,154,63,.16); padding: 32px 0; color: rgba(248,239,224,.64); }
.footer-inner { width: min(100% - 36px, var(--max)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 18px; font-size: 14px; }
.floating-whatsapp {
  position: fixed; z-index: 850; right: 20px; bottom: 20px;
  width: 62px; height: 62px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #07170c; background: linear-gradient(135deg, #37d36b, #22a447);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.36), 0 0 0 8px rgba(34,164,71,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 52px rgba(0,0,0,.42), 0 0 0 10px rgba(34,164,71,.14); }
.floating-whatsapp svg { width: 34px; height: 34px; fill: #fff; display: block; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .nav { position: fixed; top: 82px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: rgba(7,5,4,.96); border: 1px solid var(--line); border-radius: 22px; backdrop-filter: blur(18px); }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .menu-button { display: block; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 820px) {
  .header { height: 74px; }
  .brand small { display: none; }
  .brand strong { font-size: 21px; }
  .brand img { width: 46px; height: 46px; }
  .hero { padding-top: 104px; }
  .hero-media-left { background-position: center 38%; clip-path: polygon(0 0, 100% 0, 100% 50%, 0 63%); }
  .hero-media-right { background-position: center 52%; clip-path: polygon(0 49%, 100% 37%, 100% 100%, 0 100%); }
  .choice-grid, .trust-strip, .brand-section, .two-col, .platform-card, .contact-card { grid-template-columns: 1fr; }
  .choice-card { min-height: 285px; }
  .trust-strip { gap: 10px; }
  .brand-section { min-height: auto; }
  .brand-photo { min-height: 360px; order: -1; }
  .brand-content { padding: 56px 24px; }
  .intro-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 140px; }
  .office-list div { grid-template-columns: 84px 1fr; }
  .menu-grid, .platform-links, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 260px; }
  .gallery-grid .wide { grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .loader { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Geniş kara kalem hissi veren çalışma saati figürleri */
.stat-icon { display: none; }
.stat-illustration {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(82%, 190px);
  height: 118px;
  opacity: .18;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(43,27,14,.10));
}
.stat-card { justify-content: flex-end; }
.stat-card strong, .stat-card span { text-align: center; }
.ill-breakfast { background-image: url("data:image/svg+xml,%3Csvg width='260' height='150' viewBox='0 0 260 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%2315100B' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M52 96c18 24 122 24 140 0'/%3E%3Cpath d='M36 96h172'/%3E%3Cpath d='M72 96c-8-28 10-46 36-43 14-22 56-8 54 24 23 2 34 9 36 19'/%3E%3Cpath d='M112 42c6-12 6-22 0-34' opacity='.75'/%3E%3Cpath d='M143 44c8-13 8-25 0-38' opacity='.75'/%3E%3Cpath d='M181 83c18-5 32-2 43 10'/%3E%3Cpath d='M47 118c34 18 133 20 178 0' opacity='.55'/%3E%3C/g%3E%3C/svg%3E"); }
.ill-stew { background-image: url("data:image/svg+xml,%3Csvg width='260' height='150' viewBox='0 0 260 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%2315100B' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M58 64h144l-12 62H70L58 64z'/%3E%3Cpath d='M74 64c8-24 32-38 56-38s48 14 56 38'/%3E%3Cpath d='M106 28h48'/%3E%3Cpath d='M36 76h22M202 76h22'/%3E%3Cpath d='M90 88c14-8 28 8 42 0s28 8 44 0' opacity='.72'/%3E%3Cpath d='M105 13c-4 10-3 18 4 27M138 8c7 13 6 24-3 36M169 15c5 9 3 17-6 28' opacity='.55'/%3E%3Cpath d='M46 132h168' opacity='.5'/%3E%3C/g%3E%3C/svg%3E"); }
.ill-fish { background-image: url("data:image/svg+xml,%3Csvg width='260' height='150' viewBox='0 0 260 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%2315100B' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M36 82c35-38 98-42 150-6 18-18 32-25 48-24-8 18-8 34 0 52-18-2-31-10-48-24-52 34-115 30-150 2z'/%3E%3Cpath d='M92 63c11 18 11 36 0 54'/%3E%3Cpath d='M126 53c9 14 9 44-2 62' opacity='.65'/%3E%3Ccircle cx='65' cy='78' r='4' fill='%2315100B'/%3E%3Cpath d='M137 80h32'/%3E%3Cpath d='M38 124c34 15 127 18 181 0' opacity='.5'/%3E%3Cpath d='M116 42c14-14 35-18 55-12' opacity='.55'/%3E%3C/g%3E%3C/svg%3E"); }
.ill-close { background-image: url("data:image/svg+xml,%3Csvg width='260' height='150' viewBox='0 0 260 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%2315100B' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M63 119h135'/%3E%3Cpath d='M82 119V56c0-16 13-29 29-29h39c16 0 29 13 29 29v63'/%3E%3Cpath d='M108 119V73c0-11 9-20 20-20h5c11 0 20 9 20 20v46'/%3E%3Cpath d='M84 42h93' opacity='.55'/%3E%3Cpath d='M202 30c-15 3-28-9-27-25-16 10-24 28-18 47 7 23 30 36 51 31' opacity='.66'/%3E%3Cpath d='M50 132c36 10 125 12 169 0' opacity='.45'/%3E%3C/g%3E%3C/svg%3E"); }
@media (max-width: 700px) {
  .stat-illustration { width: 170px; height: 104px; top: 18px; }
}
