:root {
  --ink: #0d0d0f;
  --ink-soft: #16161a;
  --ink-muted: #2a2a30;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.45);
  --sky: #38bdf8;
  --sky-soft: rgba(56, 189, 248, 0.15);
  --cream: #faf8f5;
  --surface: #ffffff;
  --text: #141416;
  --muted: #5c5f66;
  --line: #e8e6e3;
  --shadow: 0 18px 48px rgba(13, 13, 15, 0.1);
  --shadow-orange: 0 16px 40px rgba(234, 88, 12, 0.28);
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* --- Hero shell: banner palette + merged header --- */
.hero-shell {
  position: relative;
  color: #fff;
  overflow: clip;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
}

.hero-shell-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, var(--orange-glow), transparent 55%),
    radial-gradient(circle at 12% 88%, var(--sky-soft), transparent 42%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 48%, #12121a 100%);
  pointer-events: none;
}

.hero-shell-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.02) 48px,
    rgba(255, 255, 255, 0.02) 49px
  );
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  flex-shrink: 0;
  background: rgba(13, 13, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  padding: 0.15rem 0;
}

.brand-top {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-btn {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a:not(.btn) {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:not(.btn):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.72rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-order {
  color: var(--ink);
  background: linear-gradient(180deg, #ffb86b 0%, var(--orange) 45%, var(--orange-deep) 100%);
  box-shadow: var(--shadow-orange);
}

.btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.38);
}

.btn-order.big {
  font-size: 0.92rem;
  padding: 0.9rem 1.45rem;
  border-radius: 0.85rem;
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.hero-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-copy {
  animation: fadeInUp 0.85s ease both;
}

.kicker {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--sky);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}

h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.hero-accent {
  display: inline-block;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.25));
}

.hero-text {
  margin: 1.15rem 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero-meta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-meta-item {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

a.hero-meta-item:hover {
  color: var(--orange);
}

.hero-meta-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.85;
}

.hero-meta-address {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Banner image: trapezoid frame like print, modern cut */
.hero-art {
  position: relative;
  animation: fadeInUp 0.95s ease 0.12s both;
}

.hero-art-frame {
  position: absolute;
  inset: -6px -4px -6px 8%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
  border-radius: 0.35rem;
  opacity: 0.95;
  z-index: 0;
}

.hero-art-inner {
  position: relative;
  z-index: 1;
  clip-path: polygon(10% 2%, 100% 2%, 100% 98%, 2% 98%, 2% 16%);
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.hero-art:hover .hero-banner-img {
  transform: scale(1.06);
}

/* --- Content sections --- */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, #f0eeeb 0%, #e8e6e2 100%);
}

.section-tag {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 0.74rem;
}

h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.card-list {
  display: grid;
  gap: 0.9rem;
}

.info-card {
  background: var(--surface);
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(13, 13, 15, 0.12);
}

.info-card h3,
.offer-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.13rem;
}

.info-card p,
.offer-card p {
  margin: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  opacity: 0.85;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-box {
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-muted) 100%);
  color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.25);
}

.contact-box .section-tag {
  color: #fdba74;
}

.contact-legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.25;
}

.contact-legal-line {
  display: block;
}

.address {
  margin: 0.8rem 0 0.4rem;
  color: rgba(248, 250, 252, 0.88);
}

.phone a {
  color: #fff;
  font-weight: 700;
}

.phone a:hover {
  color: var(--orange);
}

.contact-cta {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.contact-cta p {
  margin: 0;
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.95rem;
}

.section-map {
  padding-top: 0;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(13, 13, 15, 0.12);
}

.map-card iframe {
  width: 100%;
  height: min(62vh, 480px);
  border: 0;
  display: block;
}

.site-footer {
  padding: 1.25rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  border-top: 3px solid var(--orange);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
}

.footer-order-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.footer-order-link:hover {
  color: #fdba74;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-img,
  .hero-copy,
  .hero-art {
    animation: none;
    transition: none;
  }

  .hero-art:hover .hero-banner-img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .grid-two,
  .offer-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-body-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-art {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-copy {
    text-align: center;
  }

  .kicker {
    justify-content: center;
  }

  h1 {
    max-width: none;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-btn span {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
    border-radius: 1px;
  }

  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 15, 0.97);
    border-bottom: 3px solid var(--orange);
    padding: 0.85rem 1rem 1.1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .nav a {
    border-radius: 0.75rem;
    text-align: center;
  }

  .menu-toggle:checked ~ .nav {
    display: flex;
  }

  .hero-shell {
    min-height: auto;
  }
}
