/* OroSereno Spa — creamy gold palette */
:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E8DC;
  --champagne: #F5E6D3;
  --gold: #C9A962;
  --gold-light: #E8D5A8;
  --gold-dark: #9A7B3C;
  --bronze: #6B5344;
  --text: #3D3229;
  --text-muted: #7A6B5C;
  --white: #FFFCF8;
  --shadow: rgba(61, 50, 41, 0.08);
  --shadow-lg: rgba(61, 50, 41, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.45rem; }

em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 98, 0.45);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 252, 248, 0.7);
}

.btn--outline:hover {
  background: rgba(255, 252, 248, 0.15);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo:hover { color: var(--gold-dark); }

.logo__mark {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.header__cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero__banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(61, 50, 41, 0.75) 0%,
    rgba(61, 50, 41, 0.35) 50%,
    rgba(201, 169, 98, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 640px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__title em {
  color: var(--champagne);
}

.hero__desc {
  color: rgba(255, 252, 248, 0.88);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

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

/* Intro */
.intro {
  padding: 6rem 0;
  background: var(--white);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__text h2 {
  margin-bottom: 1.25rem;
}

.intro__text p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.intro__stats {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.intro__stats li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.intro__stats strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}

.intro__card {
  background: linear-gradient(145deg, var(--champagne) 0%, var(--cream-dark) 100%);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 40px var(--shadow);
}

.intro__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro__card h3 {
  margin-bottom: 0.75rem;
}

.intro__card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Banner sections */
.banner-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-section--cta {
  min-height: 420px;
}

.banner-section__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(61, 50, 41, 0.7) 0%,
    rgba(61, 50, 41, 0.4) 100%
  );
  display: flex;
  align-items: center;
}

.banner-section__overlay--dark {
  background: linear-gradient(
    to top,
    rgba(61, 50, 41, 0.85) 0%,
    rgba(61, 50, 41, 0.45) 100%
  );
}

.banner-section__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 560px;
}

.banner-section__content--center {
  text-align: center;
  max-width: 100%;
}

.banner-section__content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.banner-section__content p {
  color: rgba(255, 252, 248, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.banner-section__content--center .btn {
  margin-top: 0.5rem;
}

/* Featured article (homepage) */
.featured-article {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.featured-article__header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.featured-article__header h2 {
  margin-bottom: 0.75rem;
}

.featured-article__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.featured-article__hero {
  margin: 0 auto 2.5rem;
  max-width: 960px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.featured-article__hero img,
.featured-article__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.featured-article__hero figcaption,
.featured-article__figure figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--champagne);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
}

.featured-article__content {
  max-width: 720px;
  margin: 0 auto;
}

.featured-article__lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.featured-article__content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.featured-article__content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem;
  padding-top: 0.5rem;
}

.featured-article__figure {
  margin: 1.75rem 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 28px var(--shadow);
}

.featured-article__cta {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(145deg, var(--champagne) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.featured-article__cta p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

/* Services */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 32px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-lg);
}

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(250, 246, 240, 0.95);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  border: 1px solid var(--gold-light);
}

.service-card__body {
  padding: 1.75rem;
}

.service-card__body h3 {
  margin-bottom: 0.35rem;
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.service-card__body > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-card__benefits {
  list-style: none;
  margin-bottom: 1.25rem;
}

.service-card__benefits li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}

.service-card__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.45rem;
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Booking */
.booking {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--champagne) 100%);
}

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

.booking__info h2 {
  margin-bottom: 1rem;
}

.booking__info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.booking__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.booking__detail-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.booking__detail strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.booking__detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.25);
  box-shadow: 0 16px 48px var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.2);
}

.form-group input.error,
.form-group select.error {
  border-color: #c45c4a;
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group--checkbox input {
  width: auto;
  margin-top: 0.35rem;
  accent-color: var(--gold-dark);
}

.form-group--checkbox label {
  text-transform: none;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--text-muted);
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5rem;
}

.form-message.success {
  color: #4a7c59;
}

.form-message.error {
  color: #c45c4a;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #c45c4a;
  font-weight: 500;
}

/* Articles */
.articles {
  padding: 6rem 0;
  background: var(--cream);
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.12);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.article-card:hover {
  box-shadow: 0 12px 36px var(--shadow);
  border-color: rgba(201, 169, 98, 0.35);
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.article-card__tag {
  background: var(--champagne);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.article-card h3 a {
  color: var(--text);
}

.article-card h3 a:hover {
  color: var(--gold-dark);
}

.article-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.article-card__read {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Reviews */
.reviews {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px var(--shadow-lg);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.review-card__text {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
}

.review-card__author {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.review-card__author strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.review-card__author span {
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.03em;
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255, 252, 248, 0.75);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.logo--footer {
  color: var(--champagne);
  margin-bottom: 1rem;
}

.logo--footer .logo__mark {
  color: var(--gold);
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__col h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__col a {
  color: rgba(255, 252, 248, 0.75);
}

.footer__col a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 252, 248, 0.5);
}

.footer__bottom a {
  color: rgba(255, 252, 248, 0.6);
}

.footer__bottom a:hover {
  color: var(--gold-light);
}

.content-disclaimer,
.reviews__disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--champagne);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.reviews__disclaimer {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.site-disclaimer {
  background: rgba(61, 50, 41, 0.95);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.site-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 252, 248, 0.65);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.site-disclaimer strong {
  color: rgba(255, 252, 248, 0.85);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  border-top: 1px solid rgba(201, 169, 98, 0.35);
  box-shadow: 0 -8px 32px var(--shadow-lg);
  padding: 1rem 0;
}

.cookie-banner__inner {
  width: min(1140px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.72rem;
}

.cookie-banner__reject {
  color: var(--text-muted);
  border-color: rgba(201, 169, 98, 0.45);
  background: transparent;
}

.cookie-banner__reject:hover {
  color: var(--text);
  background: var(--cream);
}

/* Article page */
.article-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.article-page__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.article-page__header .section-label {
  margin-bottom: 1rem;
}

.article-page__header h1 {
  margin-bottom: 1rem;
}

.article-page__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-page__content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 32px var(--shadow);
}

.article-page__content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article-page__content h2:first-child {
  margin-top: 0;
}

.article-page__content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.article-page__content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-page__content li {
  margin-bottom: 0.5rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav__link--active {
  color: var(--gold-dark);
}

/* Legal pages */
.legal-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.legal-page__header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.legal-page__header h1 {
  margin-bottom: 0.75rem;
}

.legal-page__updated {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 32px var(--shadow);
}

.legal-page__content h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 1rem;
}

.legal-page__content h2:first-of-type {
  margin-top: 0;
}

.legal-page__content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-page__content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.legal-page__note {
  font-size: 0.85rem;
  font-style: italic;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid rgba(201, 169, 98, 0.25);
}

.legal-table th {
  background: var(--champagne);
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-table td {
  color: var(--text-muted);
}

/* Contacts page */
.page-hero {
  padding: 120px 0 3rem;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero__content {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero__content h1 {
  margin-bottom: 1rem;
}

.page-hero__content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contacts-section {
  padding: 4rem 0 6rem;
}

.contacts-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contacts-quick__item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 24px var(--shadow);
}

.contacts-quick__icon {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contacts-quick__item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.contacts-quick__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contacts-quick__note {
  font-size: 0.8rem !important;
  color: var(--text-muted);
  opacity: 0.85;
}

.contacts-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: 0 8px 32px var(--shadow);
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  margin-bottom: 0.25rem;
}

.location-card__region {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.location-card__details {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.location-card__details li {
  margin-bottom: 1.25rem;
}

.location-card__details span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.35rem;
}

.location-card__details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.location-card__map {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contacts-form-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.contacts-form-block__info h2 {
  margin-bottom: 1rem;
}

.contacts-form-block__info > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contacts-form-block__privacy {
  font-size: 0.85rem;
  padding: 1.25rem;
  background: var(--champagne);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .intro__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }

  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

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

  .burger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .contacts-quick,
  .locations-grid,
  .contacts-form-block {
    grid-template-columns: 1fr;
  }

  .legal-page__content {
    padding: 2rem 1.5rem;
  }

  .featured-article__lead {
    font-size: 1.05rem;
  }

  .featured-article__content h3 {
    font-size: 1.3rem;
  }

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
