/* ============================================
   VILLA VOLPE — Design System
   Minimal Luxury / Boutique Hotel Style
   ============================================ */

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 26, 26, 0.95);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #FAFAF8;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FAFAF8;
  font-size: 3rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.lightbox__btn:hover { opacity: 1; }
.lightbox__btn--prev { left: 1rem; }
.lightbox__btn--next { right: 1rem; }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #FAFAF8;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.gallery__item { cursor: pointer; }

@media (max-width: 768px) {
  .lightbox__btn { font-size: 2rem; width: 44px; height: 44px; }
  .lightbox__btn--prev { left: 0.5rem; }
  .lightbox__btn--next { right: 0.5rem; }
}

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --color-bg: #FAFAF8;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-text: #2D2D2D;
  --color-text-light: #6B6B6B;
  --color-text-muted: #9A9A9A;
  --color-accent: #8B7355;
  --color-accent-light: #A6906F;
  --color-accent-dark: #6E5A42;
  --color-border: #E8E5E0;
  --color-surface: #F5F3EF;
  --color-overlay: rgba(26, 26, 26, 0.6);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Sizes */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 65ch;
}

.text-sm {
  font-size: 0.875rem;
}

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

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

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background-color: var(--color-white);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease);
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(250, 250, 248, 0.98);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-black);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-black);
  padding: 0.7rem 1.5rem;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
}

.nav__cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  margin: 6px 0;
  transition: all var(--duration) var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C4B7A3 0%, #8B9DAF 50%, #A3B5C4 100%);
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.6;
  color: var(--color-white);
}

.hero__actions {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--primary:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  letter-spacing: 0.08em;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--duration) var(--ease);
}

.btn--ghost:hover {
  color: var(--color-black);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* ---------- Feature Cards ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.feature-card:hover .feature-card__img {
  transform: scale(1.05);
}

.feature-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--color-white);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--color-white);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.two-col__content {
  padding: var(--space-lg) 0;
}

/* ---------- Amenities Grid ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.amenity {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color var(--duration) var(--ease);
}

.amenity:hover {
  border-color: var(--color-accent);
}

.amenity__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.amenity__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.amenity__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Story / Timeline ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline__item {
  padding-left: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.timeline__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}

.timeline__text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ---------- Booking ---------- */
.booking-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
}

.booking-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.booking-highlight {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.booking-highlight__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-black);
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.faq-item__question:hover {
  color: var(--color-accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: var(--space-sm);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform var(--duration) var(--ease);
}

.faq-item__icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item--open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease);
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 350px;
}

.footer__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
}

.footer__links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel__track {
  display: flex;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__btn:hover {
  background: rgba(0,0,0,0.8);
}

.carousel__btn--prev { left: var(--space-sm); }
.carousel__btn--next { right: var(--space-sm); }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease);
}

.carousel__dot--active {
  background: var(--color-accent);
}

/* ---------- Mosaic Gallery ---------- */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
}

.mosaic__hero {
  grid-row: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
}

.mosaic__hero img,
.mosaic__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.mosaic__hero:hover img,
.mosaic__thumb:hover img {
  transform: scale(1.03);
}

.mosaic__thumb {
  border-radius: var(--radius);
  overflow: hidden;
}

.mosaic__title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.mosaic__title .label {
  display: block;
  margin-bottom: var(--space-xs);
}

/* Mosaic bottom row for extra photos */
.mosaic__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.mosaic__bottom .mosaic__thumb {
  aspect-ratio: 3/2;
}

/* Duo layout — 2 photos side by side */
.mosaic--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
}

.mosaic--duo .mosaic__thumb {
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic__hero {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .mosaic__bottom {
    grid-template-columns: 1fr;
  }
  .mosaic--duo {
    grid-template-columns: 1fr;
  }
}

/* ---------- Page Header ---------- */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  text-align: center;
}

.page-header__label {
  display: block;
  margin-bottom: var(--space-sm);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__desc {
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-lg) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Contact Info Block ---------- */
.contact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.contact-item {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  text-align: center;
}

.contact-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact-item__value {
  font-size: 1.05rem;
  color: var(--color-black);
  font-weight: 500;
}

.contact-item__value a {
  color: var(--color-accent);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin: 0 auto var(--space-lg);
}

/* ---------- Accessibility Badge ---------- */
.a11y-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, #C4B7A3 0%, #8B9DAF 50%, #A3B5C4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-black);
}

.mobile-menu a.btn--dark {
  color: var(--color-white);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-black);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

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

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .two-col--reverse {
    direction: ltr;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

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

  .contact-block {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog Post Article ---------- */
.post-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.post-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.post-header__category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.post-header__date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.post-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: var(--space-md);
}

.post-header__excerpt {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto;
}

.post-hero-img {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto var(--space-xl);
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
}

.post-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.post-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.post-content h3 {
  font-size: 1.35rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: var(--space-md);
  max-width: none;
}

.post-content strong {
  color: var(--color-black);
  font-weight: 600;
}

.post-content em {
  font-style: italic;
}

.post-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: var(--color-accent-dark);
}

.post-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  background: var(--color-surface);
}

.post-content blockquote p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0;
}

.post-content img {
  width: 100%;
  margin: var(--space-lg) 0;
  border-radius: 0;
}

.post-content figure {
  margin: var(--space-lg) 0;
}

.post-content figcaption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-xs);
}

.post-content ul,
.post-content ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.post-content li {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.post-nav {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-nav__back {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.post-nav__back:hover {
  color: var(--color-black);
}

/* ---------- Animations (on-scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Gallery Grid (Airbnb Style) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Map Styling ---------- */
#map {
  filter: saturate(0.6) sepia(0.08) brightness(1.02) contrast(0.95);
  transition: filter 0.3s ease;
}

#map:hover {
  filter: saturate(0.75) sepia(0.05) brightness(1.02) contrast(0.95);
}

.leaflet-popup-content-wrapper {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.leaflet-popup-content {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 12px 16px;
}

.leaflet-popup-content strong {
  font-family: 'Playfair Display', serif;
  color: var(--color-accent);
  font-size: 1rem;
}

.leaflet-popup-tip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
