:root {
  --bg: #f4f0ea;
  --cream: #fffdf8;
  --text: #3e2e26;
  --muted: #746157;
  --turquoise: #3ba8b4;
  --turquoise-dark: #287f89;
  --brown: #4a352b;
  --line: rgba(74, 53, 43, .11);
  --shadow: 0 26px 70px rgba(61, 42, 31, .12);
  --max: 1728px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(58,168,180,.14), transparent 34%),
    linear-gradient(180deg, #faf8f3 0%, var(--bg) 100%);
}

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

.site-header,
main {
  width: min(90%, var(--max));
  margin-inline: auto;
}

.site-header {
  height: 96px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 270px) 1fr minmax(360px, 405px);
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 253, 248, .88);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 4px;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.logo-image {
  width: clamp(200px, 16vw, 260px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.35vw, 28px);
  font-weight: 900;
  font-size: clamp(12px, .78vw, 14px);
  text-transform: uppercase;
  color: #231b17;
}
.main-nav a {
  position: relative;
  padding: 36px 0 31px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 3px;
  border-radius: 5px;
  background: var(--turquoise);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 0;
  position: relative;
}

.language-switcher {
  position: relative;
  z-index: 80;
}
.lang-current {
  height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(58,168,180,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--brown);
  box-shadow: 0 12px 30px rgba(61, 42, 31, .07);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}
.lang-current img,
.lang-menu img {
  width: 28px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.lang-current svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.language-switcher.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 158px;
  padding: 10px;
  border-radius: 16px;
  display: grid;
  gap: 6px;
  background: rgba(255,253,248,.98);
  border: 1px solid rgba(58,168,180,.16);
  box-shadow: 0 18px 48px rgba(61, 42, 31, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.language-switcher.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover,
.lang-menu button.active {
  background: rgba(58,168,180,.10);
}

.phone-box {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.phone-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--turquoise);
  box-shadow: inset 0 -4px 12px rgba(0,0,0,.08);
}
.phone-circle svg { width: 25px; height: 25px; fill: white; }
.phone-text { display: grid; gap: 0; line-height: 1.05; }
.phone-text strong { font-size: 15px; color: var(--brown); }
.phone-text b { font-size: 25px; color: var(--brown); letter-spacing: .01em; }
.phone-text small { font-size: 12px; color: var(--muted); margin-top: 5px; }

.menu-btn { display: none; }

main { padding-bottom: 56px; }

.hero-section {
  margin-top: 34px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #211811;
  box-shadow: var(--shadow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/bakery-counter.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,13,9,.92) 0%, rgba(31,20,13,.78) 28%, rgba(26,17,12,.22) 58%, rgba(12,8,5,.10) 100%),
    linear-gradient(0deg, rgba(0,0,0,.16), rgba(0,0,0,.06));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 55%);
  padding: 70px 0 70px 76px;
  color: white;
}
.eyebrow {
  margin: 0 0 19px;
  color: #60c9d2;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0;
  font-size: clamp(58px, 6vw, 86px);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 950;
  text-shadow: 0 3px 22px rgba(0,0,0,.24);
}
.hero-content h1 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #61c5cf;
  font-weight: 900;
  font-size: 1.18em;
}
.hero-lead {
  margin: 28px 0 0;
  width: min(100%, 580px);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,.94);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 22px; height: 22px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(180deg, #56c6cf, var(--turquoise));
  color: white;
  box-shadow: 0 18px 34px rgba(58,168,180,.28);
}
.btn.ghost {
  color: white;
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.78);
  backdrop-filter: blur(4px);
}
.btn.ghost:hover { background: rgba(255,255,255,.13); }

.new-badge {
  position: absolute;
  z-index: 3;
  top: 48px;
  right: 58px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #5fc4cf, #309aa6);
  border: 4px solid rgba(255,255,255,.78);
  font-size: 35px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}
.new-badge::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  border: 1px dashed rgba(255,255,255,.72);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 24px;
  margin-top: 42px;
  position: relative;
  z-index: 5;
}
.offer-card {
  min-height: 186px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px 1fr 170px;
  align-items: center;
  gap: 20px;
  padding: 26px 0 24px 26px;
  border-radius: 24px;
  background: rgba(255,253,248,.94);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 20px 55px rgba(61,42,31,.13);
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.72) 58%, rgba(255,255,255,.10));
  z-index: 0;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card img {
  align-self: stretch;
  justify-self: end;
  width: 185px;
  height: 145px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  filter: saturate(1.02);
}
.icon-circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #3da5b0;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.17);
}
.icon-circle svg { width: 45px; height: 45px; stroke: currentColor; fill: none; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.offer-text p {
  margin: 0 0 7px;
  color: var(--turquoise-dark);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.offer-text h2 {
  margin: 0 0 9px;
  font-size: 31px;
  line-height: 1;
  color: var(--brown);
  letter-spacing: -.03em;
}
.offer-text span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.info-bar {
  margin: 52px 24px 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: white;
  background: linear-gradient(90deg, #3e2b22, #5a4135 52%, #3e2b22);
  box-shadow: 0 18px 45px rgba(61,42,31,.14);
}
.info-bar div {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
}
.info-bar div + div { border-left: 1px solid rgba(255,255,255,.28); }
.info-bar p { margin: 0; font-size: 16px; color: rgba(255,255,255,.92); }
.bar-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}

.below {
  margin-top: 72px;
  padding: 44px 36px;
  border-radius: 28px;
  background: rgba(255,253,248,.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}
.below h2 { margin: 0; font-size: clamp(32px, 4vw, 54px); line-height: 1; max-width: 900px; letter-spacing: -.05em; }
.eyebrow.dark { color: var(--turquoise-dark); margin-bottom: 12px; font-size: 14px; }


.site-footer {
  width: min(90%, var(--max));
  margin: 64px auto 0;
  padding: 34px 24px 18px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, #3e2b22 0%, #2b1d17 100%);
  color: rgba(255,255,255,.92);
  box-shadow: 0 -2px 40px rgba(61,42,31,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.footer-brand {
  max-width: 420px;
}
.footer-logo {
  width: clamp(180px, 16vw, 250px);
  height: auto;
  margin-bottom: 14px;
  filter: brightness(1.03);
}
.footer-brand p,
.footer-column p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}
.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-column h3 {
  margin: 0;
  font-size: 17px;
  color: white;
}
.footer-column a {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.footer-column a:hover {
  color: #77d6df;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}



.reservation-page {
  padding-bottom: 70px;
}
.reservation-hero {
  margin-top: 34px;
  padding: clamp(34px, 4vw, 62px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(58,168,180,.16), transparent 32%),
    linear-gradient(135deg, rgba(255,253,248,.96), rgba(255,248,236,.88));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
}
.reservation-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.055em;
  color: var(--brown);
}
.reservation-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
}
.reservation-card {
  margin-top: 36px;
  padding: clamp(24px, 3.5vw, 46px);
  border-radius: 26px;
  background: rgba(255,253,248,.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.76);
}

.reservation-card-combined {
  background:
    radial-gradient(circle at 92% 8%, rgba(58,168,180,.14), transparent 30%),
    rgba(255,253,248,.92);
}
.reservation-intro-head {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(74,53,43,.10);
}
.reservation-intro-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.055em;
  color: var(--brown);
}
.reservation-intro-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
}
.reservation-form-title {
  margin-bottom: 26px;
}
.reservation-form-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--brown);
}

.reservation-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}
.reservation-card-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--brown);
}
.reservation-call {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #56c6cf, var(--turquoise));
  box-shadow: 0 18px 34px rgba(58,168,180,.22);
  font-weight: 950;
}
.reservation-form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  gap: 22px;
}
.form-row.two-col {
  grid-template-columns: 1fr 1fr;
}
.form-row.compact-row {
  max-width: 270px;
}
.reservation-form label,
.full-field,
.time-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--brown);
  font-size: 15px;
  font-weight: 900;
}
.field-label { display: inline-flex; align-items: center; gap: 4px; }
.reservation-form em {
  color: #d9124d;
  font-style: normal;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(74,53,43,.18);
  border-radius: 12px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.reservation-form input,
.reservation-form select {
  height: 52px;
  padding: 0 14px;
}
.reservation-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(58,168,180,.8);
  box-shadow: 0 0 0 4px rgba(58,168,180,.12);
}
.reservation-form small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.align-end { align-items: end; }
.time-selects {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
}
.time-selects select {
  flex: 0 0 96px;
  width: 96px;
}
.time-selects span {
  font-size: 24px;
  font-weight: 950;
  color: var(--brown);
}
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}
.form-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.form-success {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(58,168,180,.12);
  color: var(--turquoise-dark);
  font-weight: 850;
}
.form-success.show { display: block; }



.contact-page {
  padding-bottom: 70px;
}
.contact-card-combined {
  overflow: hidden;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.35fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}
.contact-side {
  display: grid;
  gap: 20px;
}
.contact-info-box,
.contact-mini-card,
.contact-map-wrap {
  border: 1px solid rgba(74,53,43,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 40px rgba(61,42,31,.07);
}
.contact-info-box {
  padding: 24px;
}
.contact-info-box h2,
.contact-form-title h2,
.contact-map-head h2 {
  margin: 0;
  color: var(--brown);
  letter-spacing: -.04em;
  line-height: 1;
}
.contact-info-box h2 { font-size: clamp(28px, 2.4vw, 38px); }
.contact-info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255,253,248,.92);
  border: 1px solid rgba(74,53,43,.08);
}
.contact-info-list span {
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.contact-info-list strong {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.35;
}
.contact-mini-card {
  padding: 24px;
  background: linear-gradient(145deg, rgba(58,168,180,.13), rgba(255,253,248,.86));
}
.contact-mini-card h3 {
  margin: 0;
  font-size: 24px;
  color: var(--brown);
  letter-spacing: -.03em;
}
.contact-mini-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}
.contact-main {
  min-width: 0;
}
.contact-form-title {
  margin-bottom: 22px;
}
.contact-map-wrap {
  margin-top: 34px;
  padding: 24px;
}
.contact-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-map-head h2 { font-size: clamp(28px, 2.8vw, 44px); }
.dark-ghost {
  color: var(--brown);
  background: white;
  border: 1px solid rgba(74,53,43,.12);
  box-shadow: none;
}
.dark-ghost:hover { background: rgba(58,168,180,.08); }
.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 480px;
  background: rgba(58,168,180,.10);
  border: 1px solid rgba(74,53,43,.10);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.02) contrast(.98);
}

@media (max-width: 1320px) {
  .site-footer { padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .site-header {
    grid-template-columns: auto 1fr auto;
    height: auto;
    min-height: 94px;
  }
  .header-actions { gap: 16px; }
  .lang-current { height: 44px; padding-inline: 9px 10px; }
  .main-nav {
    order: 4;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .main-nav a { padding: 12px 0 16px; }
  .main-nav a::after { bottom: 6px; }
  .hero-content { width: 64%; }
  .offer-card { grid-template-columns: 74px 1fr; padding-right: 18px; }
  .offer-card img { grid-column: 2; width: 100%; max-width: 220px; height: 105px; margin-top: 4px; }
}

@media (max-width: 920px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map-head { flex-direction: column; align-items: flex-start; }
  .contact-map { min-height: 320px; height: 420px; }
  .reservation-card { margin-top: 24px; padding: 24px 18px; }
  .reservation-intro-head { padding-bottom: 22px; margin-bottom: 22px; }
  
.reservation-card-combined {
  background:
    radial-gradient(circle at 92% 8%, rgba(58,168,180,.14), transparent 30%),
    rgba(255,253,248,.92);
}
.reservation-intro-head {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(74,53,43,.10);
}
.reservation-intro-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
  letter-spacing: -.055em;
  color: var(--brown);
}
.reservation-intro-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
}
.reservation-form-title {
  margin-bottom: 26px;
}
.reservation-form-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--brown);
}

.reservation-card-head { flex-direction: column; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .form-bottom { flex-direction: column; align-items: stretch; }
  .form-bottom .btn { width: 100%; }
  .site-footer { width: min(calc(100% - 28px), var(--max)); padding: 28px 18px 18px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-header, main { width: min(calc(100% - 28px), var(--max)); }
  .site-header { grid-template-columns: 1fr auto; padding: 16px; margin-top: 14px; }
  .logo-image { width: 190px; }
  .header-actions { grid-column: 1 / -1; justify-self: stretch; justify-content: space-between; gap: 14px; padding-top: 4px; }
  .phone-box { justify-self: end; justify-content: flex-end; }
  .lang-menu { left: 0; right: auto; }
  .menu-btn {
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 14px;
    background: white;
    box-shadow: inset 0 0 0 1px var(--line);
  }
  .menu-btn span { width: 24px; height: 2px; background: var(--brown); border-radius: 5px; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; }
  .hero-section { min-height: auto; }
  .hero-content { width: 100%; padding: 52px 28px 260px; }
  .hero-bg { background-position: 63% bottom; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,13,9,.93) 0%, rgba(20,13,9,.72) 48%, rgba(20,13,9,.18) 100%); }
  .hero-content h1 { font-size: clamp(48px, 13vw, 72px); }
  .hero-lead { font-size: 17px; }
  .new-badge { width: 86px; height: 86px; right: 22px; top: 26px; font-size: 25px; }
  .offer-cards { grid-template-columns: 1fr; padding: 0; margin-top: 22px; gap: 18px; }
  .offer-card { grid-template-columns: 76px 1fr 130px; }
  .offer-card img { grid-column: 3; width: 130px; height: 120px; margin: 0; }
  .info-bar { margin: 26px 0 0; grid-template-columns: 1fr; }
  .info-bar div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .below { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}

@media (max-width: 560px) {
  .contact-info-box, .contact-mini-card, .contact-map-wrap { padding: 18px; border-radius: 18px; }
  .contact-map { min-height: 280px; height: 340px; }
  .reservation-call { width: 100%; justify-content: center; }
  .time-selects { width: 100%; }
  .time-selects select { flex: 1 1 0; min-width: 0; width: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column { gap: 8px; }
  .phone-text small { display: none; }
  .phone-box { padding: 0; gap: 10px; }
  .phone-circle { width: 48px; height: 48px; }
  .phone-text strong { font-size: 14px; }
  .phone-text b { font-size: 22px; }
  .lang-current { width: 54px; padding: 0; justify-content: center; }
  .lang-current span, .lang-current svg { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .offer-card {
    grid-template-columns: 64px 1fr;
    min-height: 0;
    padding: 20px;
  }
  .icon-circle { width: 62px; height: 62px; }
  .icon-circle svg { width: 34px; height: 34px; }
  .offer-card img { grid-column: 1 / -1; width: 100%; max-width: none; height: 150px; border-radius: 16px; }
  .offer-text h2 { font-size: 27px; }
}
