/* Premium warm luxury landing page styling */
:root {
  --bg: #F4F1EC;
  --panel: rgba(244, 241, 236, 0.95);
  --text: #2F2A26;
  --muted: #6F675E;
  --walnut: #8B7A66;
  --stone: #E7E1D8;
  --greige: #F4F1EC;
  --accent: #B8A58A;
  --stroke: rgba(139, 122, 102, 0.15);
  --glow: 0 12px 40px rgba(139, 122, 102, 0.15);
  --radius: 26px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Manrope", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(217, 210, 198, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
}

.top-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 44px;
}

.logo__image {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 26px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  margin-left: 32px;
}

.nav__link {
  position: relative;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 180ms ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--walnut), transparent);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(4px);
}

.nav__link:hover {
  color: var(--walnut);
}

.nav__link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.nav__link--accent {
  color: var(--walnut);
  font-weight: 600;
}

.nav__link--accent::after {
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--walnut), transparent);
}

.nav__link--accent:hover {
  color: var(--walnut);
}

.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.caret {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  transition: transform 180ms ease, border-color 180ms ease;
}

.nav__link--dropdown:hover .caret {
  transform: translateY(1px);
  border-top-color: var(--walnut);
}

.nav__icons {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav__socials {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  background: rgba(96, 84, 77, 0.05);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  cursor: pointer;
  margin-left: auto;
  z-index: 31;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--walnut);
}

.nav-dim {
  display: none;
}

.icon-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(96, 84, 77, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: none;
  color: var(--walnut);
}

.icon-link path {
  fill: currentColor;
}

.icon-link:hover {
  border-color: var(--walnut);
  box-shadow: 0 8px 22px rgba(96, 84, 77, 0.2);
  transform: translateY(-1px);
}

.page {
  padding: 0 0 48px;
  max-width: 100%;
  margin: 0 auto 48px;
}

.hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 420px;
  background: var(--bg);
  box-shadow: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(217, 210, 198, 0.95) 0%,
    rgba(217, 210, 198, 0.88) 32%,
    rgba(217, 210, 198, 0.7) 55%,
    rgba(217, 210, 198, 0.4) 75%,
    rgba(217, 210, 198, 0.1) 90%,
    rgba(217, 210, 198, 0) 100%);
}

.hero__overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  background: linear-gradient(180deg,
    rgba(217, 210, 198, 0) 0%,
    rgba(217, 210, 198, 0.7) 60%,
    rgba(217, 210, 198, 0.95) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  padding: 82px 0 64px;
}

.hero__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--walnut);
  margin: 0;
}

.hero__title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 200ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  border: 1px solid transparent;
}

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

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 44px rgba(96, 84, 77, 0.35);
  background: #544840;
}

.btn--ghost {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}

.btn--ghost:hover {
  background: var(--walnut);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero__meta {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  max-width: 560px;
}

.meta__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.meta__value {
  font-weight: 600;
}

.meta__divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--stone), transparent);
  opacity: 0.6;
}

.booking {
  padding: 32px 0 28px;
  scroll-margin-top: 96px;
}

.booking__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.booking__map,
.booking__form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 22px 0;
  box-shadow: none;
  backdrop-filter: none;
}

.map__header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.map__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--walnut);
  border: 1px solid var(--walnut);
  box-shadow: 0 10px 28px rgba(96, 84, 77, 0.25);
}

.map__icon svg path {
  fill: #ffffff;
}

.map__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.map__title {
  margin: 4px 0 0;
  font-weight: 600;
  color: var(--text);
}

.map__canvas {
  position: relative;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 32px rgba(96, 84, 77, 0.15);
}

.map__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(25%) saturate(70%);
}

.map__pin {
  position: absolute;
  left: 54%;
  top: 48%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--walnut);
  box-shadow: 0 8px 20px rgba(96, 84, 77, 0.45);
  z-index: 2;
}

.map__pulse {
  position: absolute;
  left: 54%;
  top: 48%;
  width: 46px;
  height: 46px;
  margin-left: -14px;
  margin-top: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 84, 77, 0.35) 0%, rgba(96, 84, 77, 0) 65%);
  filter: blur(6px);
}

.map__label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking__form-header h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.booking__form-header p {
  margin: 0 0 14px;
  color: var(--muted);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.field input,
.select select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--greige);
  color: var(--text);
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 200ms ease;
}

.field input:focus,
.select select:focus {
  outline: none;
  border-color: var(--walnut);
  box-shadow: 0 8px 24px rgba(96, 84, 77, 0.15);
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: var(--greige);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  transition: border-color 180ms ease, box-shadow 200ms ease;
}

.phone:focus-within {
  border-color: var(--walnut);
  box-shadow: 0 8px 24px rgba(96, 84, 77, 0.15);
}

.flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--stroke);
  box-shadow: 0 2px 8px rgba(96, 84, 77, 0.15);
}

.flag--ru {
  background: linear-gradient(#ffffff 33%, #2245b8 33%, #2245b8 66%, #d42927 66%);
}

.phone__prefix {
  color: var(--text);
  font-weight: 600;
}

.phone input {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.phone input::placeholder {
  color: var(--muted);
}

.select select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--walnut) 50%), linear-gradient(135deg, var(--walnut) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.services {
  display: grid;
  gap: 12px;
}

.service {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--greige);
  border: 1px solid var(--stroke);
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 200ms ease, transform 180ms ease, background 180ms ease;
}

.service:hover {
  border-color: var(--stone);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(96, 84, 77, 0.15);
}

.service--selected {
  border-color: var(--walnut);
  box-shadow: 0 10px 26px rgba(96, 84, 77, 0.2);
  background: var(--stone);
}

.service h4 {
  margin: 0 0 6px;
  color: var(--text);
}

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

.form__submit {
  margin-top: 6px;
  align-self: flex-start;
  padding: 12px 20px;
}

.consent {
  margin-top: 8px;
}

.consent__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.consent__checkbox input {
  position: absolute;
  opacity: 0;
}

.consent__mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--stroke);
  background: var(--greige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, box-shadow 200ms ease, background 180ms ease;
}

.consent__checkbox input:checked + .consent__mark {
  border-color: var(--walnut);
  background: var(--walnut);
  box-shadow: 0 8px 24px rgba(96, 84, 77, 0.25);
}

.consent__mark::after {
  content: "";
  width: 9px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 120ms ease;
}

.consent__checkbox input:checked + .consent__mark::after {
  opacity: 1;
}

.consent__text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rules-trigger {
  border: none;
  background: none;
  color: var(--walnut);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 160ms ease;
  text-decoration: underline;
}

.rules-trigger:hover {
  color: var(--stone);
}

.rules-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 50;
}

.rules-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rules-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(96, 84, 77, 0.5);
  backdrop-filter: blur(6px);
}

.rules-modal__dialog {
  position: relative;
  max-width: 860px;
  width: calc(100% - 32px);
  max-height: 80vh;
  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 24px 80px rgba(139, 122, 102, 0.25);
  overflow-y: auto;
}

.rules-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.rules-modal h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.rules-modal__body p {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 0;
}

.services-showcase {
  padding: 10px 0 36px;
}

.services-showcase__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.services-slider {
  position: relative;
  overflow: hidden;
}

.service-slide {
  display: none;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 22px;
  align-items: stretch;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.service-slide.is-active {
  display: grid;
}

.slide__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  background: var(--stone);
}

.slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(96, 84, 77, 0.1), rgba(96, 84, 77, 0.3));
}

.slide__content {
  padding: 10px 6px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide__content h3 {
  margin: 0;
  font-size: 26px;
}

.slide__meta {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.slide__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--greige);
  color: var(--walnut);
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, box-shadow 200ms ease, transform 180ms ease, background 180ms ease;
}

.slider__nav:hover {
  border-color: var(--walnut);
  box-shadow: 0 12px 30px rgba(96, 84, 77, 0.18);
  transform: translateY(-1px);
}

.articles {
  padding: 18px 0 46px;
}

.articles__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.articles__header h2 {
  margin: 8px 0 6px;
  font-size: clamp(28px, 4vw, 36px);
}

.articles__lede {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.articles-page .articles__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 10px;
}

.articles__actions {
  margin-top: 6px;
}

.article-card {
  background: var(--walnut);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 160px 1fr;
  box-shadow: 0 18px 48px rgba(96, 84, 77, 0.25);
}

.article-card__media {
  background: var(--stone);
}

.article-card__body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-card__date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.article-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  flex: 1;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--greige);
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.article-card__link:hover {
  color: #ffffff;
}

.articles-page {
  padding: 110px 0 60px;
}

.articles-page__hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 14px;
}

.article-page .top-bar,
.articles-page .top-bar {
  position: sticky;
}

.article-page main {
  padding: 100px 0 50px;
}

.article__hero {
  max-width: 900px;
  margin: 0 auto 14px;
  padding: 0 28px;
}

.article__meta {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 6px;
}

.article__hero h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4.4vw, 42px);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}

.article__excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.article__content {
  max-width: 900px;
  margin: 12px auto 0;
  padding: 0 28px;
  color: var(--text);
  line-height: 1.7;
}

.article__content h2,
.article__content h3,
.article__content h4 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.article__content p {
  margin: 10px 0;
}

.article__content ul,
.article__content ol {
  padding-left: 20px;
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--stroke);
  margin-top: 28px;
  background: var(--stone);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.footer__col {
  display: grid;
  gap: 10px;
}

.footer__list,
.footer__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__list a,
.footer__contacts a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer__list a:hover,
.footer__contacts a:hover {
  color: var(--walnut);
}

@media (max-width: 960px) {
  .service-slide {
    grid-template-columns: 1fr;
  }

  .services-showcase__inner {
    grid-template-columns: 1fr;
  }

  .slider__nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    position: relative;
    z-index: 1000;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 300px;
    max-width: 85vw;
    height: 100vh !important;
    height: 100dvh !important;
    background: var(--greige) !important;
    border-left: 1px solid var(--stroke);
    padding: 100px 24px 40px 24px;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 20px;
    box-shadow: -20px 0 60px rgba(96, 84, 77, 0.3);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 300ms ease, transform 300ms ease, visibility 0ms 300ms;
    z-index: 999 !important;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav--open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
    transition: opacity 300ms ease, transform 300ms ease, visibility 0ms 0ms;
  }

  .nav__links {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  .nav__links li {
    width: 100%;
    list-style: none;
  }

  .nav__links .nav__link {
    display: block !important;
    width: 100%;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    color: var(--text);
    transition: background 180ms ease, color 180ms ease;
  }

  .nav__links .nav__link::after {
    display: none !important;
  }

  .nav__links .nav__link:hover,
  .nav__links .nav__link:active {
    background: var(--stone);
  }

  .nav__links .nav__link--accent {
    color: var(--walnut) !important;
  }

  .nav__socials {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--stroke);
  }

  .nav__social-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--stone);
    border: 1px solid var(--stroke);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: background 180ms ease, border-color 180ms ease;
  }

  .nav__social-link:hover,
  .nav__social-link:active {
    background: var(--stone);
    border-color: var(--walnut);
  }

  .nav__social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .nav__social-link svg path {
    fill: var(--walnut);
  }

  .nav__icons {
    display: none !important;
  }

  .top-bar__inner {
    gap: 12px;
  }

}

@media (max-width: 1100px) {
  .nav__links {
    gap: 12px;
  }

  .nav__link {
    padding: 8px 10px;
  }

  .booking__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero__content {
    padding: 82px 0 64px;
  }

  .hero__inner {
    padding: 0 28px;
  }

  .booking {
    padding: 28px 0 36px;
  }

  .booking__inner {
    padding: 0 18px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 0;
    margin: 0;
  }

  .hero {
    border-radius: 0;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__content {
    padding: 60px 0 48px;
  }

  .hero__inner {
    padding: 0 28px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .meta__divider {
    display: none;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
  }
}

/* About page */
.about-page body {
  background: var(--bg);
}

.about {
  padding: 110px 0 60px;
}

.about__hero {
  padding: 0 0 28px;
}

.about__hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.about__title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.4vw, 52px);
  margin: 8px 0 12px;
}

.about__lede {
  color: #d7d9df;
  line-height: 1.7;
  max-width: 980px;
  margin: 0;
}

.about__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about__cards {
  max-width: 1280px;
  margin: 22px auto 0;
  padding: 0 28px 36px;
  display: grid;
  gap: 18px;
}

.about__card {
  position: relative;
  background: var(--stone);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 22px 24px 24px;
  box-shadow: 0 16px 42px rgba(139, 122, 102, 0.1);
  overflow: hidden;
}

.about__card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  position: relative;
  padding-left: 12px;
}

.about__card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 18px;
  width: 4px;
  border-radius: 4px;
  background: var(--walnut);
  box-shadow: 0 8px 20px rgba(96, 84, 77, 0.25);
}

.about__card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15.5px;
}

.about__card--wide {
  grid-column: 1 / -1;
}

.about__card--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.about__list li {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--greige);
  border: 1px solid var(--stroke);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .about {
    padding-top: 90px;
  }

  .about__hero-inner,
  .about__grid,
  .about__cards {
    padding: 0 18px;
  }
}

/* Publications Page Styles */
.publications-hero {
  background: var(--stone);
  padding: 120px 28px 80px;
  text-align: center;
  border-bottom: 1px solid var(--stroke);
}

.publications-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.publications-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin: 12px 0 24px;
  color: var(--text);
}

.publications-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.publications-list {
  padding: 80px 28px 120px;
}

.publications-list__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* About Page Styles */
.about-page {
  background: var(--bg);
}

.about-hero {
  background: var(--stone);
  padding: 120px 28px 80px;
  text-align: center;
  border-bottom: 1px solid var(--stroke);
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 20px;
  color: var(--text);
}

.about-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--walnut);
  font-weight: 500;
}

.about-content {
  padding: 80px 28px 120px;
}

.about-content__inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 60px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 20px;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--text);
  border-left: 4px solid var(--walnut);
  padding-left: 20px;
}

.about-section h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 32px 0 16px;
  color: var(--text);
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.about-list li {
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--stone);
  border: 1px solid var(--stroke);
  line-height: 1.6;
  font-size: 15.5px;
  color: var(--muted);
  position: relative;
  padding-left: 42px;
}

.about-list li::before {
  content: "→";
  position: absolute;
  left: 18px;
  color: var(--walnut);
  font-weight: 600;
}

/* Mobile responsiveness for new pages */
@media (max-width: 768px) {
  .publications-hero,
  .about-hero {
    padding: 100px 18px 60px;
  }

  .publications-list,
  .about-content {
    padding: 60px 18px 100px;
  }

  .about-section h2 {
    padding-left: 16px;
  }

  .about-list li {
    padding-left: 38px;
  }

  .about-list li::before {
    left: 14px;
  }
}
