:root {
  --sand: #fdf9f4;
  --shell: #fff4ec;
  --rose: #f3dede;
  --deep: #543c3e;
  --muted: #7a5f63;
  --accent: #d39aa8;
  --white: #ffffff;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, var(--shell), var(--sand));
  color: var(--deep);
  font-family: var(--font, 'Poppins', sans-serif);
  min-height: 100vh;
}

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

.hidden {
  display: none !important;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(110, 87, 84, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--deep);
}

.nav-link--active {
  background: var(--rose);
  color: var(--deep);
}

main {
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 6vw, 4.5rem) 4rem;
}

.services-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 222, 221, 0.9));
  box-shadow: 0 30px 80px rgba(108, 74, 75, 0.12);
  margin-bottom: 2.5rem;
}

.services-hero__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-family: 'Playfair Display', serif;
}

.services-hero__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.services-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.services-hero__highlight {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(84, 60, 62, 0.1);
}

.highlight-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 0.45rem;
}

.services-hero__highlight h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-family: 'Playfair Display', serif;
}

.services-hero__highlight p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.highlight-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 34, 43, 0.25);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2fr) minmax(260px, 0.85fr);
  gap: 1.5rem;
}

.services-menu {
  position: sticky;
  top: 96px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 45px rgba(79, 63, 71, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-height: calc(100vh - 40px);
  overflow: hidden;
}

.services-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.services-cart {
  width: 100%;
}

.mobile-cart-cta {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background: rgba(84, 60, 62, 0.92);
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -10px 25px rgba(79, 63, 71, 0.25);
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.mobile-cart-cta__summary {
  font-weight: 600;
  font-size: 0.95rem;
}

.mobile-cart-cta__btn {
  background: #fff;
  color: var(--deep);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 50;
}

.cart-drawer--open {
  display: flex;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.cart-drawer__panel {
  position: relative;
  width: min(520px, calc(100% - 1.5rem));
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 222, 221, 0.9));
  border-radius: 32px 32px 24px 24px;
  box-shadow: 0 -20px 60px rgba(84, 60, 62, 0.3);
  border: 1px solid rgba(211, 154, 168, 0.35);
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(20px);
  animation: cartDrawerIn 0.25s ease forwards;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.cart-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cart-drawer__total span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.cart-drawer__total strong {
  font-size: 1.2rem;
  color: var(--deep);
}

.cart-items--drawer {
  max-height: 100%;
}

@keyframes cartDrawerIn {
  to {
    transform: translateY(0);
  }
}

.services-menu__placeholder,
.services-content__placeholder {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-group__title {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-card {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 0.4rem 0.5rem;
  box-shadow: inset 0 0 0 1px rgba(84, 60, 62, 0.08);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
  transform: translateX(2px);
  box-shadow: inset 0 0 0 1px rgba(84, 60, 62, 0.3);
}

.menu-card--active {
  box-shadow: inset 0 0 0 2px var(--deep), 0 8px 20px rgba(84, 60, 62, 0.12);
  background: #fff;
}

.menu-card__media {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(243, 222, 221, 0.4);
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.menu-card__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--deep);
}

.menu-card__meta {
  margin: 0;
  font-size: 0.65rem;
  color: var(--muted);
}

.services-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: clamp(1rem, 3vw, 1.75rem);
  box-shadow: 0 25px 50px rgba(79, 63, 71, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-section + .services-section {
  border-top: 1px solid rgba(84, 60, 62, 0.2);
  padding-top: 1.5rem;
}

.services-section__header h2 {
  margin: 0.25rem 0;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-family: 'Playfair Display', serif;
}

.services-section__header p {
  margin: 0;
  color: var(--muted);
}

.service-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(253, 249, 244, 0.8);
  border: 1px solid rgba(84, 60, 62, 0.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.service-item__info {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-item__info h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.service-item__info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-item__meta {
  display: flex;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.1rem;
  align-items: center;
}

.service-item__price {
  font-weight: 600;
  color: var(--deep);
}

.service-item__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-item__media {
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.service-item__thumb {
  width: 100%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(79, 63, 71, 0.12);
}

.service-item__image {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.add-btn,
.qty-btn,
.cart-checkout-btn {
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  font: inherit;
}

.add-btn {
  padding: 0.5rem 1.25rem;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 10px 20px rgba(84, 60, 62, 0.25);
}

.add-btn:hover {
  transform: translateY(-1px);
}

.add-btn--outline {
  width: 100%;
  background: #fff;
  color: var(--deep);
  border: 1px solid rgba(84, 60, 62, 0.25);
  box-shadow: none;
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(84, 60, 62, 0.15);
}

.qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--deep);
  border: none;
  font-size: 1.2rem;
  line-height: 1;
}

.qty-display {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.services-cart {
  width: 100%;
}

.services-cart__shell {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 25px 45px rgba(79, 63, 71, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 96px;
}

.services-cart__shell h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
}

.services-cart__empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--deep);
}

.cart-item-name {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-item-qty {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-total {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 24px rgba(84, 60, 62, 0.25);
}

.cart-checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .services-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: clamp(1rem, 4vw, 3rem);
    left: clamp(1rem, 4vw, 3rem);
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(79, 63, 71, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav.nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .services-menu {
    position: static;
    max-height: none;
    padding: 0.5rem 0;
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .services-menu__inner {
    flex-direction: row;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
  }

  .menu-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .menu-group__title {
    display: none;
  }

  .menu-grid {
    flex-direction: row;
  }

  .menu-card {
    min-width: 160px;
  }

  .services-cart {
    display: none;
  }

  .services-cart__shell {
    position: static;
  }

  .mobile-cart-cta {
    display: none;
  }

  .mobile-cart-cta.mobile-cart-cta--visible {
    display: flex;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: row;
    gap: 0.75rem;
  }

  .service-item {
    flex-direction: column;
  }

  .service-item__media {
    width: 100%;
  }
}
