:root {
  --black: #050505;
  --ink: #0d0a06;
  --panel: #15100b;
  --wheat: #e4aa43;
  --wheat-soft: #ffbc66;
  --wheat-light: #ffe0a0;
  --cream: #fff3d4;
  --muted: #c8ad77;
  --glass: rgba(5, 5, 5, 0.74);
  --line-dark: rgba(5, 5, 5, 0.14);
  --line-light: rgba(255, 188, 102, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 8% 0%, rgba(228, 170, 67, 0.18), transparent 28%),
    var(--black);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 152px 1fr auto;
  align-items: start;
  pointer-events: none;
}

.logo-block,
.status-pill,
.top-actions {
  pointer-events: auto;
}

.logo-block {
  display: grid;
  width: 152px;
  height: 102px;
  place-items: center;
  background: linear-gradient(145deg, #090806, #020202);
  border-radius: 0 0 52px 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.logo-block img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 224, 160, 0.22),
    0 16px 32px rgba(0, 0, 0, 0.32);
}

.status-pill {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 34px;
  color: var(--cream);
  background: var(--glass);
  border-radius: 0 0 34px 34px;
  border: 1px solid rgba(255, 224, 160, 0.13);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.status-pill span {
  width: 13px;
  height: 13px;
  background: #14e337;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(20, 227, 55, 0.8);
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 72px 0 0;
  color: var(--cream);
}

.desktop-nav,
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px;
  background: var(--glass);
  border: 1px solid rgba(255, 224, 160, 0.13);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.desktop-nav a,
.lang-switcher button {
  min-height: 40px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: var(--cream);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.desktop-nav a:hover,
.lang-switcher button.active {
  color: var(--black);
  background: linear-gradient(145deg, var(--wheat-light), var(--wheat-soft));
  box-shadow: 0 8px 22px rgba(255, 188, 102, 0.24);
}

.premium-hero {
  position: relative;
  min-height: 100vh;
  margin: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 86px 108px minmax(360px, 0.78fr) minmax(500px, 1fr);
  grid-template-rows: minmax(650px, calc(100vh - 20px));
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 236, 190, 0.38), transparent 24%),
    radial-gradient(circle at 96% 84%, rgba(5, 5, 5, 0.18), transparent 30%),
    linear-gradient(135deg, #f0a94d 0%, var(--wheat-soft) 48%, #e0a044 100%);
  border: 1px solid rgba(255, 224, 160, 0.16);
  border-radius: 0 0 118px 118px;
  box-shadow: inset 0 -1px 0 rgba(255, 243, 212, 0.22);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08), transparent 22%, transparent 74%, rgba(255, 243, 212, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 74px);
  mix-blend-mode: soft-light;
}

.side-rail {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  writing-mode: vertical-rl;
  color: #b8a27a;
  background: var(--black);
  font-size: 19px;
}

.side-rail b {
  color: #ff4b14;
}

.year-strip {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  color: rgba(255, 243, 212, 0.48);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38));
}

.year-strip span {
  writing-mode: vertical-rl;
  font-size: clamp(74px, 7vw, 142px);
  font-weight: 950;
  line-height: 0.78;
}

.year-strip strong {
  position: absolute;
  bottom: 24px;
  writing-mode: vertical-rl;
  font-size: 42px;
  opacity: 0.36;
}

.hero-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% center;
  filter: contrast(1.08) saturate(1.08);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 48%, rgba(255, 188, 102, 0.3));
  pointer-events: none;
}

#bakery-scene {
  position: absolute;
  inset: auto 2vw 8vh auto;
  width: min(30vw, 470px);
  height: min(30vw, 470px);
  opacity: 0.46;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 5vw 86px 4.2vw;
}

.mini-copy {
  max-width: 520px;
  margin: 0 0 52px auto;
  font-size: clamp(19px, 1.5vw, 27px);
  font-weight: 780;
  line-height: 1.35;
  padding: 18px 20px;
  color: rgba(5, 5, 5, 0.82);
  background: rgba(255, 243, 212, 0.22);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(78px, 9.2vw, 164px);
  line-height: 0.82;
  letter-spacing: 0;
  text-align: right;
  text-wrap: balance;
  text-shadow: 0 16px 34px rgba(122, 67, 7, 0.18);
}

.guarantee {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  color: var(--cream);
  font-weight: 950;
}

.guarantee em {
  font-size: clamp(38px, 4vw, 70px);
  font-style: italic;
}

.guarantee span {
  padding: 14px 18px;
  color: var(--black);
  background: var(--cream);
  border-radius: 999px;
}

.order-card {
  position: absolute;
  z-index: 8;
  left: 53.5%;
  bottom: 9.2%;
  width: min(365px, 32vw);
  padding: 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 67, 18, 0.35), transparent 45%),
    linear-gradient(135deg, #0b0301, #071120);
  border: 1px solid rgba(255, 224, 160, 0.36);
  outline: 7px solid rgba(255, 212, 151, 0.42);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.order-card p,
.order-card strong,
.order-card small {
  display: block;
}

.order-card p {
  margin: 0 0 4px;
  color: #ffdfb0;
  font-weight: 800;
}

.order-card strong {
  max-width: 260px;
  font-size: 23px;
  line-height: 1.12;
}

.order-card a {
  display: inline-flex;
  margin: 24px 0 18px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--wheat-light);
  border-radius: 8px;
  font-weight: 950;
}

.order-card small {
  color: rgba(255, 243, 212, 0.72);
}

.intro-section,
.menu-section,
.services-modern,
.gallery-band,
.contact {
  padding: clamp(72px, 8vw, 128px) clamp(20px, 5vw, 86px);
}

.menu-section {
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.intro-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 120px);
  color: var(--cream);
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 170, 67, 0.12), transparent 30%),
    var(--black);
}

.intro-watermark {
  position: absolute;
  right: 4vw;
  bottom: -38px;
  color: rgba(255, 188, 102, 0.055);
  font-size: clamp(96px, 16vw, 260px);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.section-label {
  margin: 0 0 15px;
  color: var(--wheat-soft);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-section > p,
.section-head p,
.contact-card p:not(.section-label),
.service-list p {
  margin: 0;
  color: #d2bc8d;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.menu-section {
  color: var(--black);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 243, 212, 0.32), transparent 28%),
    linear-gradient(180deg, #f4b35d 0%, #ffbc66 56%, #e4aa43 100%);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(18px, 4vw, 64px);
  align-items: end;
  margin-bottom: 22px;
}

.menu-section .section-label,
.contact .section-label {
  color: #5b3504;
}

.section-head p {
  color: rgba(5, 5, 5, 0.72);
}

.menu-section .section-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 60px);
}

.menu-section .section-head p {
  max-width: 520px;
  font-size: clamp(16px, 1.15vw, 19px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.menu-card {
  position: relative;
  grid-column: span 4;
  min-height: 248px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--black);
  border: 1px solid rgba(5, 5, 5, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.menu-card.feature {
  grid-column: span 4;
  min-height: 248px;
}

.menu-card.feature + .menu-card {
  grid-column: span 4;
}

.menu-card.feature + .menu-card + .menu-card {
  grid-column: span 4;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.menu-card:hover img {
  transform: scale(1.045);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 16%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(circle at 50% 10%, rgba(255, 188, 102, 0.2), transparent 26%);
}

.menu-card div {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--cream);
  padding: 14px;
  border: 1px solid rgba(255, 224, 160, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 224, 160, 0.08), rgba(255, 224, 160, 0.02)),
    rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(12px);
}

.menu-card span,
.service-list span {
  color: var(--wheat-soft);
  font-weight: 950;
}

.menu-card span {
  display: inline-flex;
  min-width: 38px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--wheat-light);
  border-radius: 999px;
}

.menu-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(21px, 1.75vw, 31px);
  line-height: 1;
}

.menu-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 243, 212, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.services-modern {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 6vw, 88px);
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 16%, rgba(228, 170, 67, 0.16), transparent 24%),
    linear-gradient(135deg, #070604, #11100c 58%, #070604);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  position: relative;
  min-height: 235px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 188, 102, 0.08), rgba(255, 188, 102, 0.02)),
    #11100c;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-list article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255, 188, 102, 0.08);
}

.service-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 224, 160, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 188, 102, 0.14), rgba(255, 188, 102, 0.04)),
    #15120d;
}

.service-list strong {
  display: block;
  margin: 34px 0 12px;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1;
}

.service-list p {
  max-width: 430px;
  font-size: 16px;
}

.gallery-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(380px, 1fr);
  gap: 24px;
  align-items: stretch;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08), transparent),
    #ffbc66;
}

.gallery-band .section-label {
  color: #5b3504;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 14px;
  min-height: 360px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(5, 5, 5, 0.14);
}

.gallery-strip img:nth-child(1) {
  min-height: 430px;
}

.gallery-strip img:nth-child(2),
.gallery-strip img:nth-child(3) {
  margin-top: 44px;
  min-height: 320px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 390px);
  gap: 24px;
  align-items: stretch;
  color: var(--black);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 243, 212, 0.42), transparent 22%),
    linear-gradient(135deg, rgba(255, 188, 102, 0.96), rgba(228, 170, 67, 0.9)),
    var(--wheat-soft);
}

.contact-card,
.footer-logo-card {
  border-radius: 22px;
  background: rgba(255, 243, 212, 0.32);
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 28px 80px rgba(75, 42, 6, 0.16);
  backdrop-filter: blur(10px);
}

.contact-card {
  padding: clamp(26px, 4vw, 48px);
}

.contact-card p:not(.section-label) {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(5, 5, 5, 0.72);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.contact-actions a {
  padding: 15px 20px;
  color: var(--cream);
  background: var(--black);
  border-radius: 999px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-actions a:hover {
  transform: translateY(-3px);
  color: var(--black);
  background: var(--cream);
}

.footer-logo-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.footer-logo-card img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  margin-bottom: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(5, 5, 5, 0.12);
}

.footer-logo-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.footer-logo-card span {
  display: block;
  margin-top: 8px;
  color: rgba(5, 5, 5, 0.68);
  font-weight: 850;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 86px);
  color: #bda978;
  background: var(--black);
  border-top: 1px solid rgba(255, 188, 102, 0.12);
}

@media (max-width: 1180px) {
  .premium-hero {
    grid-template-columns: 70px 90px minmax(260px, 0.85fr) minmax(360px, 1fr);
  }

  .order-card {
    left: 49%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card,
  .menu-card.feature,
  .menu-card.feature + .menu-card,
  .menu-card.feature + .menu-card + .menu-card {
    grid-column: auto;
    min-height: 260px;
  }

  .menu-card.feature {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 96px 1fr;
  }

  .logo-block {
    width: 96px;
    height: 76px;
  }

  .logo-block img {
    width: 62px;
    height: 62px;
  }

  .top-actions {
    margin: 12px 14px 0 0;
  }

  .desktop-nav {
    display: none;
  }

  .status-pill {
    display: none;
  }

  .premium-hero {
    min-height: auto;
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto auto;
    border-radius: 0 0 48px 48px;
  }

  .side-rail {
    grid-row: 1 / 4;
    font-size: 16px;
  }

  .year-strip {
    display: none;
  }

  .hero-image {
    min-height: 430px;
  }

  .hero-copy {
    padding: 42px 20px 170px;
  }

  .mini-copy {
    margin: 0 0 28px;
  }

  h1 {
    text-align: left;
  }

  .guarantee {
    justify-content: flex-start;
  }

  .order-card {
    left: 72px;
    right: 18px;
    bottom: 28px;
    width: auto;
  }

  .intro-section,
  .section-head,
  .services-modern,
  .gallery-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip img:nth-child(2),
  .gallery-strip img:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .premium-hero {
    margin: 0;
    grid-template-columns: 1fr;
    border-radius: 0 0 34px 34px;
  }

  .side-rail {
    display: none;
  }

  .lang-switcher {
    padding: 6px;
  }

  .lang-switcher button {
    min-height: 35px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-copy {
    padding: 34px 16px 220px;
  }

  h1 {
    font-size: clamp(64px, 18vw, 96px);
  }

  .order-card {
    left: 16px;
    right: 16px;
  }

  .intro-section,
  .menu-section,
  .services-modern,
  .gallery-band,
  .contact {
    padding: 64px 16px;
  }

  .menu-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .service-list,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .menu-card,
  .menu-card.feature,
  .menu-card.feature + .menu-card,
  .menu-card.feature + .menu-card + .menu-card {
    grid-column: auto;
    min-height: 240px;
  }

  .footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
  font-size: 12px;
