/* Design tokens */
:root {
  color-scheme: light;
  /* Bright beige / taupe palette */
  --bg: #f4efe6;
  --bg2: #e7ddcf;
  --panel: rgba(255, 255, 255, 0.72);
  --panel2: rgba(255, 255, 255, 0.9);
  --text: #201a14;
  --muted: rgba(32, 26, 20, 1);
  --border: rgba(32, 26, 20, 0.14);
  --shadow: 0 14px 44px rgba(32, 26, 20, 0.18);
  --accent: #b46a44;
  --accent2: #6b7a57;
  --radius: 16px;
  --radius2: 22px;
  --sideNavWidth: 260px;
  --headerHeight: 84px;
  --max: 1120px;
  --bgFade: 0;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}
body.navOpen {
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(32, 26, 20, 0.9);
  border: 1px solid var(--border);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 999;
}
.skip-link:focus { transform: translateY(0); }

.appShell { min-height: 100vh; }
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32, 26, 20, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 110;
}
.appShell.navOpen .backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Side nav */
.sideNav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(88vw, 320px);
  max-width: var(--sideNavWidth);
  transform: translateX(-102%);
  transition: transform 220ms ease;
  height: 100vh;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  z-index: 130;
}
.appShell.navOpen .sideNav {
  transform: translateX(0);
}
.sideNav__inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 14px;
}
.sideNav__top { display: flex; justify-content: flex-start; }
.sideNav__toggle { display: none; }
.sideNav__listWrap {
  overflow: auto;
  padding-right: 6px;
}
.sideNav__link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
}
.sideNav__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(32, 26, 20, 0.12);
  color: var(--text);
}
.sideNav__link.isActive {
  background: linear-gradient(135deg, rgba(180, 106, 68, 0.18), rgba(107, 122, 87, 0.16));
  border-color: rgba(180, 106, 68, 0.22);
  color: var(--text);
}

.langSwitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
}
.langSwitch__btn {
  appearance: none;
  border: 1px solid rgba(32, 26, 20, 0.12);
  background: transparent;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.2px;
}
.langSwitch__btn[aria-pressed="true"] {
  color: var(--text);
  border-color: rgba(180, 106, 68, 0.28);
  background: linear-gradient(135deg, rgba(180, 106, 68, 0.18), rgba(107, 122, 87, 0.14));
}

.contentColumn {
  min-width: 0;
  position: relative;
  z-index: 10;
}

/* Header */
.topHeader {
  position: sticky;
  top: 0;
  z-index: 120;
  height: var(--headerHeight);
  background: #f4efe6;
  backdrop-filter: none;
  isolation: isolate;
}
.topHeader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #f4efe6;
  pointer-events: none;
}
.topHeader__inner {
  height: 100%;
  width: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}
.topHeader__left { display: flex; align-items: center; }
.topHeader__menuBtn { display: inline-flex; }
.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(32, 26, 20, 0.18));
}
.topHeader__actions { display: flex; justify-content: flex-end; }
.topHeader__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(180, 106, 68, 0.26);
  background: linear-gradient(135deg, rgba(180, 106, 68, 0.14), rgba(107, 122, 87, 0.12));
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
}
.topHeader__cta:hover { text-decoration: none; filter: brightness(1.06); }

/* Hero */
.mainContent { padding-bottom: 50px; }
.hero {
  position: relative;
  min-height: clamp(520px, 92vh, 820px);
  padding: 24px 18px 0;
  display: grid;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
  user-select: none;
  pointer-events: none;
}
.hero__slide.isActive { opacity: 1; }
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 12px 0 10px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  justify-items: center;
}
.hero__text {
  max-width: 700px;
  align-self: center;
  padding: 18px 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(32, 26, 20, 0.14);
  background:
    radial-gradient(900px 450px at 25% 25%, rgba(32, 26, 20, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.36));
  box-shadow: var(--shadow);
  text-align: center;
  color: #082c4c;
}
.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #082c4c;
}
.hero__subtitle {
  margin: 0;
  color: #082c4c;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
}
.hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
}
.dot[aria-current="true"] {
  background: rgba(103, 214, 255, 0.75);
  border-color: rgba(103, 214, 255, 0.7);
}

.iconButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  width: 40px;
  border-radius: 999px;
  border: 1px solid rgba(32, 26, 20, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.iconButton:hover { filter: brightness(1.12); }
.iconButton:focus-visible {
  outline: 3px solid rgba(180, 106, 68, 0.35);
  outline-offset: 2px;
}
.iconButton__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

/* Sections */
.fadeOnScroll {
  opacity: 1;
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 18px 0;
}
.section__head {
  margin-bottom: 16px;
}
.section__title {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  color: rgba(32, 26, 20, 0.9);
}
.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 18px;
}
.card {
  display: grid;
  grid-template-columns: minmax(240px, 36%) 1fr;
  min-height: 300px;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  background: #4a3a2e;
}
.card__media {
  position: relative;
  min-height: 100%;
}
.card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.card__body {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(26px, 5vw, 52px);
  color: var(--text);
}
.card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(74, 58, 46, 0.94) 0%,
    rgba(127, 101, 82, 0.72) 48%,
    rgba(233, 221, 208, 0.86) 100%
  );
}
.card__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  max-width: 24ch;
}
.card__text {
  margin: 0;
  line-height: 1.45;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  max-width: 36ch;
}

.card:nth-child(even) {
  grid-template-columns: 1fr minmax(240px, 36%);
}
.card:nth-child(even) .card__media {
  order: 2;
}
.card:nth-child(even) .card__body {
  order: 1;
}
.card:nth-child(even) .card__body::before {
  background: linear-gradient(
    270deg,
    rgba(74, 58, 46, 0.94) 0%,
    rgba(127, 101, 82, 0.72) 48%,
    rgba(233, 221, 208, 0.86) 100%
  );
}

.placeholderBox {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.pricingList {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  max-width: 700px;
}

.pricingList__item {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricingList__item:last-child {
  border-bottom: 0;
}

.pricingList__labelWrap {
  display: grid;
  gap: 6px;
}

.pricingList__label {
  color: var(--text);
}

.pricingList__value {
  color: var(--text);
  font-size: 1.05rem;
  white-space: nowrap;
}

.pricingList__note {
  color: var(--text);
  line-height: 1.4;
}

.hoursInfo {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
  max-width: 380px;
}

.hoursInfo__line {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.hoursInfo__label {
  color: var(--text);
}

.hoursInfo__value {
  color: var(--text);
  font-size: 1.05rem;
}

.contactInfo {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.contactInfo__line {
  margin: 0;
  display: grid;
  gap: 4px;
}

.contactInfo__label {
  color: var(--muted);
  font-size: 0.95rem;
}

.contactInfo__value {
  color: var(--text);
  font-weight: 550;
}

.contactInfo__link {
  width: fit-content;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 22px 18px 28px;
  background: rgba(0, 0, 0, 0.18);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__line, .footer__links { margin: 0; color: var(--muted); }
.footer__links a { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .card {
    grid-template-columns: minmax(210px, 40%) 1fr;
    min-height: 270px;
    border-radius: 30px;
  }
  .card:nth-child(even) {
    grid-template-columns: 1fr minmax(210px, 40%);
  }
  .topHeader__cta { display: none; }
}

@media (max-width: 760px) {
  :root { --sideNavWidth: 320px; }
  .sideNav { box-shadow: 20px 0 40px rgba(0, 0, 0, 0.4); }

  .topHeader__inner {
    justify-content: space-between;
  }
  .brand { justify-content: center; }

  .hero { padding: 14px 12px 0; min-height: 78vh; }
  .section { padding: 34px 12px 0; }
  .card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }
  .card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .card:nth-child(even) .card__media,
  .card:nth-child(even) .card__body {
    order: initial;
  }
  .card__media {
    min-height: 220px;
  }
  .card__image {
    min-height: 220px;
  }
  .card__body::before,
  .card:nth-child(even) .card__body::before {
    background: linear-gradient(
      180deg,
      rgba(74, 58, 46, 0.92) 0%,
      rgba(127, 101, 82, 0.68) 52%,
      rgba(233, 221, 208, 0.88) 100%
    );
  }
  .footer { padding: 22px 12px 28px; }
}

