/* ═══════════════════════════════════════════════════════════════
   DE AMSHOFF — STYLE
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bone: #F9F5F1;
  --bone-dark: #F2EBE5;
  --dark: #1A1A1A;
  --dark-accent: #242424;
  --text: #2C2C2C;
  --text-secondary: #595959;
  --brand-red: #7A2E2E;
  --brand-red-hover: #5E2222;
  --gold: #C6A87C;
  --green: #4A5D4F;
  --border: #E5E0DB;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Work Sans', sans-serif;
  --font-script: 'Pinyon Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bone);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection { background: var(--brand-red); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); }

/* ─── LAYOUT UTILITIES ─────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 96px; } }

.section { padding: 96px 24px; }
@media (min-width: 768px) { .section { padding: 128px 48px; } }
@media (min-width: 1024px) { .section { padding: 160px 96px; } }

.section--bone { background: var(--bone); }
.section--bone-dark { background: var(--bone-dark); }
.section--dark { background: var(--dark); color: #fff; }

.grid { display: grid; gap: 64px; }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid--2 { grid-template-columns: 1fr 1fr; gap: 96px; } }

.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

.grid--4 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .grid--4 { grid-template-columns: repeat(4, 1fr); gap: 48px; } }

.text-center { text-align: center; }
.items-center { align-items: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-7xl { max-width: 1280px; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
.script { font-family: var(--font-script); }
.serif { font-family: var(--font-serif); }
.sans { font-family: var(--font-sans); }

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--text);
}
.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--text);
}
.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.heading-sm {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.heading-xl.white, .heading-lg.white, .heading-md.white { color: #fff; }
.heading-xl i, .heading-lg i { font-weight: 300; }

.overline {
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--brand-red);
}
.overline.gold { color: var(--gold); }

.body-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.body-text.white { color: rgba(255,255,255,0.6); }

.label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.label.red { color: var(--brand-red); }
.label.gold { color: var(--gold); }
.label.white { color: rgba(255,255,255,0.4); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn--primary { background: var(--brand-red); color: #fff; }
.btn--primary:hover { background: var(--brand-red-hover); }
.btn--outline { border: 1px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--outline-red { border: 1px solid var(--brand-red); color: var(--brand-red); background: transparent; }
.btn--outline-red:hover { background: var(--brand-red); color: #fff; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--brand-red); }

.btn-group { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .btn-group { flex-direction: row; } }
.btn-group--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--brand-red);
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 16px; }
.link-arrow svg { width: 18px; height: 18px; }
.link-arrow.white { color: #fff; }

.link-underline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-red);
  text-decoration: underline;
  text-underline-offset: 8px;
}
.link-underline:hover { color: var(--brand-red-hover); }

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.nav--solid, .nav--scrolled {
  background: rgba(249, 245, 241, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media (min-width: 768px) { .nav__inner { padding: 0 48px; height: 96px; } }
@media (min-width: 1024px) { .nav__inner { padding: 0 96px; } }

.nav__logo { flex-shrink: 0; margin-right: 32px; }
.nav__logo img { height: 40px; width: auto; transition: filter 0.4s; }
@media (min-width: 768px) { .nav__logo img { height: 48px; } }
.nav--solid .nav__logo img,
.nav--scrolled .nav__logo img { filter: brightness(0.3); }

.nav__links {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}
.nav__link:hover, .nav__link--active { color: var(--brand-red); }
.nav--solid .nav__link,
.nav--scrolled .nav__link { color: var(--text); }
.nav--solid .nav__link:hover,
.nav--scrolled .nav__link:hover,
.nav--solid .nav__link--active,
.nav--scrolled .nav__link--active { color: var(--brand-red); }

.nav__cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
}
.nav__cta:hover { background: var(--brand-red-hover); }

/* Mobile Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
@media (min-width: 1024px) { .nav__toggle { display: none; } }

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
.nav--solid .nav__toggle span,
.nav--scrolled .nav__toggle span { background: var(--text); }

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bone);
  padding: 96px 32px 32px;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text);
}
.mobile-menu a.active { color: var(--brand-red); }

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero--short {
  min-height: 70vh;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero--short .hero__bg::after {
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2) 50%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero--short .hero__content {
  text-align: left;
  max-width: 1280px;
  width: 100%;
  padding: 0 24px 64px;
}
@media (min-width: 768px) {
  .hero--short .hero__content { padding: 0 48px 96px; }
}
@media (min-width: 1024px) {
  .hero--short .hero__content { padding: 0 96px 96px; }
}

.hero__overline {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 32px;
}
.hero__title i { font-weight: 300; }

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8125rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.hero--short .hero__subtitle { margin-top: 24px; }
.hero .hero__subtitle { margin: 0 auto 48px; }

.hero .btn-group { margin-top: 48px; }
.hero--short .btn-group { margin-top: 40px; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

/* ─── IMAGE COMPONENTS ─────────────────────────────────────── */
.img-zoom { overflow: hidden; position: relative; }
.img-zoom img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.img-zoom:hover img { transform: scale(1.05); }

.img-aspect-portrait { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.img-aspect-landscape { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.img-aspect-square { aspect-ratio: 1; object-fit: cover; width: 100%; }
.img-aspect-43 { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.img-aspect-169 { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--brand-red);
  color: #fff;
  padding: 16px 24px;
  font-family: var(--font-serif);
  font-size: 0.875rem;
}
.badge strong { display: block; font-size: 1.5rem; font-weight: 600; }

/* ─── IMAGE STRIP ──────────────────────────────────────────── */
.img-strip { display: flex; overflow: hidden; }
.img-strip__item { flex-shrink: 0; width: 50%; overflow: hidden; }
@media (min-width: 768px) { .img-strip__item { width: 25%; } }
.img-strip__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.img-strip__item:hover img { transform: scale(1.05); }

/* ─── SERVICE CARDS ────────────────────────────────────────── */
.service-card { display: block; }
.service-card__img { margin-bottom: 32px; }
.service-card__img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card:hover .service-card__title { color: var(--brand-red); }
.service-card__desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── NUMBER STEPS ─────────────────────────────────────────── */
.step { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.step__num { font-family: var(--font-sans); font-size: 0.6875rem; color: var(--gold); letter-spacing: 0.15em; }
.step__title { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin: 12px 0; }
.step__desc { font-family: var(--font-sans); font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ─── REVIEWS SLIDER ───────────────────────────────────────── */
.reviews { text-align: center; }

.reviews__stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}
.reviews__stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }

.reviews__meta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.review-slider { position: relative; max-width: 768px; margin: 0 auto; overflow: hidden; }
.review-slider__track { display: flex; transition: transform 0.5s ease; }
.review-slider__slide {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding: 0 16px;
}

.review-slider__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  line-height: 1.5;
  margin: 32px 0;
}

.review-slider__author {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--brand-red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-slider__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.review-slider__btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.review-slider__btn:hover { border-color: var(--brand-red); color: var(--brand-red); }
.review-slider__btn svg { width: 20px; height: 20px; }

/* ─── ICON FEATURES ────────────────────────────────────────── */
.feature { text-align: center; }
.feature__icon { color: var(--brand-red); margin: 0 auto 12px; }
.feature__icon svg { width: 28px; height: 28px; margin: 0 auto; }
.feature__label { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }

.feature-row { text-align: left; }
.feature-row__icon { color: var(--brand-red); margin-bottom: 16px; }
.feature-row__icon svg { width: 28px; height: 28px; }
.feature-row__title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--text); margin-bottom: 12px; }
.feature-row__desc { font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── MENU CARDS ───────────────────────────────────────────── */
.menu-card {
  background: var(--bone);
  padding: 40px 48px;
}
.menu-card__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--text); margin-bottom: 8px; }
.menu-card__price { font-family: var(--font-serif); font-size: 2.25rem; color: var(--brand-red); margin-bottom: 24px; }
.menu-card__price span { font-size: 1rem; color: var(--text-secondary); }
.menu-card__desc { font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.menu-card__wine { font-family: var(--font-sans); font-size: 0.75rem; color: var(--gold); margin-bottom: 8px; }
.menu-card__note { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-secondary); font-style: italic; }

/* ─── ROOM CARDS ───────────────────────────────────────────── */
.room-card__img { margin-bottom: 32px; }
.room-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.room-card__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--text); margin-bottom: 8px; }
.room-card__subtitle { font-family: var(--font-serif); font-style: italic; font-size: 1.125rem; color: var(--brand-red); margin-bottom: 16px; }
.room-card__desc { font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.room-card__price { font-family: var(--font-serif); font-size: 1.75rem; color: var(--text); margin-bottom: 8px; }
.room-card__price span { font-family: var(--font-sans); font-size: 0.6875rem; color: var(--text-secondary); }
.room-card__extra { font-family: var(--font-sans); font-size: 0.75rem; color: var(--gold); }
.room-card__amenities {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  color: var(--text-secondary);
}
.room-card__amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
}
.room-card__amenity svg { width: 16px; height: 16px; }

/* ─── CONTACT FORM ─────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; } }

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44,44,44,0.2);
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}
.form-input::placeholder { color: rgba(44,44,44,0.3); }
.form-input:focus { border-color: var(--brand-red); }

textarea.form-input { resize: none; }

.form-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.form-type-btn {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.3s;
}
.form-type-btn:hover { border-color: var(--brand-red); color: var(--brand-red); }
.form-type-btn.active { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }

.contact-info { position: sticky; top: 128px; }
.contact-info__title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text); margin-bottom: 32px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.contact-info__item svg { color: var(--brand-red); flex-shrink: 0; margin-top: 4px; width: 20px; height: 20px; }
.contact-info__item a { transition: color 0.3s; }
.contact-info__item a:hover { color: var(--brand-red); }
.contact-info__divider { margin: 48px 0; padding-top: 48px; border-top: 1px solid var(--border); }
.contact-info__owners { font-family: var(--font-sans); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-secondary); margin-bottom: 16px; }

.form-success {
  text-align: center;
  padding: 80px 0;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success__icon svg { width: 28px; height: 28px; }

/* ─── BLOG CARDS ───────────────────────────────────────────── */
.blog-card { display: block; }
.blog-card__img { margin-bottom: 24px; }
.blog-card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card__date { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.blog-card:hover .blog-card__title { color: var(--brand-red); }
.blog-card__excerpt { font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

/* ─── SECTION LABEL + ICON ─────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label svg { width: 24px; height: 24px; color: var(--brand-red); }
.section-label span { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--brand-red); }

/* ─── GALLERY GRID ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-grid__item--large { grid-column: span 2; grid-row: span 2; }
  .gallery-grid__item--large img { aspect-ratio: 1; }
}
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-grid__item--large img { aspect-ratio: 1; }

/* ─── TESTIMONIAL (DARK BG) ───────────────────────────────── */
.testimonial { text-align: center; max-width: 640px; margin: 80px auto 0; }
.testimonial__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 24px; }
.testimonial__stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.125rem, 2vw, 1.5rem); color: #fff; line-height: 1.5; margin-bottom: 24px; }
.testimonial__author { font-family: var(--font-sans); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); color: #fff; }
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 96px 24px; }
@media (min-width: 768px) { .footer__inner { padding: 128px 48px; } }
@media (min-width: 1024px) { .footer__inner { padding: 128px 96px; } }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }

.footer__logo { height: 40px; margin-bottom: 32px; }
.footer__heading { font-family: var(--font-serif); font-size: 1.125rem; color: var(--gold); margin-bottom: 24px; }
.footer__desc { font-family: var(--font-sans); font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; }
.footer__link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer__link:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.footer__contact-item:hover { color: #fff; }
.footer__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer__social { display: flex; gap: 16px; margin-top: 24px; }
.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer__bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom p, .footer__bottom a {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ─── CTA SECTION ──────────────────────────────────────────── */
.cta-section { text-align: center; max-width: 896px; margin: 0 auto; }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 3fr 2fr; gap: 96px; } }
