:root {
  --bg-top: #fff7fa;
  --bg-bottom: #f5dfe7;
  --text: #2c2420;
  --muted: #2c2420;
  --line: rgba(132, 88, 101, 0.16);
  --primary: #d26f8a;
  --primary-hover: #ffa9a1;
  --secondary-border: #2c2420;
  --secondary-hover: #ffa9a1;
  --shadow: 0 18px 48px rgba(120, 72, 88, 0.14);
  --shadow-strong: 0 20px 40px rgba(210, 111, 138, 0.26);
  --max-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 198, 214, 0.82), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 232, 239, 0.9), transparent 26%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(132, 88, 101, 0.12);
  box-shadow: 0 10px 24px rgba(44, 36, 32, 0.06);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(44, 36, 32, 0.09);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  min-height: 96px;
  margin: 0 auto;
  padding: 16px 40px;
}

.burger-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff7fa;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.burger-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-button:hover,
.burger-button:focus-visible {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.header-nav {
  flex: 1 1 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-list a::after {
  content: none;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a[aria-current="page"] {
  color: var(--primary-hover);
}

.brand {
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 18vw, 240px);
  transform: translateX(-50%);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.header-actions {
  position: absolute;
  top: 50%;
  right: 40px;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--secondary-border);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--secondary-hover);
  border-color: var(--primary-hover);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(173, 102, 126, 0.16);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-hover);
  color: var(--text);
  box-shadow: 0 18px 30px rgba(191, 95, 121, 0.3);
}

.btn:focus-visible,
.burger-button:focus-visible,
.drawer-close:focus-visible,
.mobile-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(210, 111, 138, 0.18);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  border: 0;
  padding: 0;
  background: rgba(73, 34, 47, 0.34);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100dvh;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.32s ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-panel {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 28px 24px 32px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fff9fb 0%, #f7e7ee 100%);
  box-shadow: none;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.drawer-logo {
  display: block;
  width: min(210px, 60vw);
  height: auto;
}

.drawer-close {
  min-width: 82px;
  min-height: 42px;
  border: 1px solid var(--secondary-border);
  border-radius: 999px;
  background: rgba(255, 248, 250, 0.82);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(226, 185, 201, 0.58);
  border-radius: 18px;
  background: rgba(255, 248, 250, 0.74);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: #fffdfd;
  border-color: var(--primary-hover);
  color: var(--primary);
}

.drawer-copy {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.drawer-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.btn-block {
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

.section-kicker {
  margin: 0 0 14px;
  color: #9a6d68;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(132, 88, 101, 0.12);
}

.footer-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-surface {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0 24px;
}

.footer-brand {
  display: inline-flex;
  width: min(190px, 100%);
}

.footer-logo {
  display: block;
  width: 100%;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 12px;
  padding: 10px 16px;
  border: 1px solid rgba(132, 88, 101, 0.12);
  border-radius: 999px;
  background: #fff7fa;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-summary {
  max-width: 430px;
  margin: 0;
  color: rgba(44, 36, 32, 0.8);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-label {
  margin: 0 0 14px;
  color: #9a6d68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  display: inline-flex;
  width: fit-content;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--primary);
}

.footer-connect {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(132, 88, 101, 0.14);
  border-radius: 16px;
  background: #fff7fa;
  color: var(--text);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(210, 111, 138, 0.24);
  background: #ffffff;
  color: var(--primary);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-facebook svg {
  fill: currentColor;
  stroke: none;
}

.footer-social-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.footer-connect .btn {
  min-width: 148px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(132, 88, 101, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(44, 36, 32, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .header-inner {
      min-height: 90px;
      padding: 14px 32px;
  }

  .brand {
      width: 210px;
  }

  .header-actions {
      right: 32px;
  }

  .brand-logo {
      width: 100%;
  }

  .btn {
      min-height: 46px;
      padding: 0 18px;
      font-size: 0.9rem;
  }

  .footer-inner {
      padding: 0 32px;
  }
}

@media (max-width: 991px) {
  .header-inner {
      min-height: 78px;
      padding: 12px 20px;
      gap: 16px;
  }

  .burger-button {
      display: inline-flex;
  }

  .header-nav,
  .header-actions {
      display: none;
  }

  .brand {
      width: min(190px, calc(100% - 120px));
  }

  .footer-inner {
      padding: 0 20px;
  }

  .footer-surface {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px 24px;
  }

  .footer-branding {
      grid-column: 1 / -1;
  }

  .footer-connect {
      grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .header-inner {
      min-height: 72px;
      padding: 12px 16px;
  }

  .burger-button {
      width: 46px;
      height: 46px;
      border-radius: 16px;
  }

  .brand {
      width: min(170px, calc(100% - 96px));
  }

  .footer-inner {
      padding: 0 16px;
  }

  .footer-surface {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 24px 0 18px;
  }

  .footer-brand {
      width: min(170px, 100%);
  }

  .footer-location {
      margin: 12px 0 10px;
      padding: 9px 14px;
      font-size: 0.78rem;
  }

  .footer-summary {
      font-size: 0.93rem;
      line-height: 1.7;
  }

  .footer-nav {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 14px;
  }

  .footer-nav a {
      width: 100%;
  }

  .footer-social {
      width: 46px;
      height: 46px;
      border-radius: 14px;
  }

  .footer-connect .btn {
      width: 100%;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 8px;
      padding: 18px 0 22px;
  }

  .footer-bottom p {
      font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .header-inner {
      padding: 10px 14px;
  }

  .brand {
      width: min(150px, calc(100% - 88px));
  }

  .drawer-panel {
      padding: 24px 18px 20px;
  }

  .drawer-logo {
      width: min(180px, 62vw);
  }

  .footer-inner {
      padding: 0 14px;
  }
}
