/* ============================================
   LA BRICIOLA - RISTORANTE SUL LAGO
   One-page · Modern · Elegant
   Palette: black + #a8884a (antique gold) + white
   ============================================ */

/* --- CSS Variables --- */
:root {
  --accent: #a8884a;
  --accent-dark: #806832;
  --accent-light: #c5a76b;
  --accent-pale: #f5efe2;
  --black: #111111;
  --dark: #1c1c1c;
  --bg: #ffffff;
  --bg-alt: #faf7f7;
  --bg-warm: #fdf6f8;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #5e5e5e;
  --text-muted: #9a9a9a;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 10px 40px rgba(168, 136, 74, 0.18);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition);
}

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

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

h1 { font-size: clamp(3rem, 9vw, 8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); }

p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-light);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preloader-inner {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-plate {
  position: absolute;
  inset: 0;
}

.preloader-plate svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.plate-outer {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 816;
  stroke-dashoffset: 816;
  opacity: 0.9;
}

.plate-inner {
  fill: none;
  stroke: var(--black);
  stroke-width: 0.7;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  opacity: 0.6;
}

.plate-detail {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 0.5;
  stroke-dasharray: 722;
  stroke-dashoffset: 722;
  opacity: 0.5;
}

/* Logo "free" — no background frame, no shadow */
.preloader-logo-wrap {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.preloader-logo {
  width: 170px;
  height: auto;
  opacity: 0;
  transform: scale(0.85);
}

.preloader-text {
  margin-top: 40px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  padding: 0.7rem 2.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

/* Logo "free" — no background frame, isolated stacking to avoid backdrop-filter halo */
.nav-logo-frame {
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.nav-logo-frame img {
  height: 68px;
  width: auto;
  display: block;
  transition: height 0.3s var(--transition);
}

.navbar.scrolled .nav-logo-frame img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.4s var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Transparent navbar (top) */
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}

.navbar:not(.scrolled) .nav-hamburger span {
  background: var(--white);
}

.nav-cta {
  padding: 0.65rem 1.6rem !important;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 999px;
  transition: all 0.3s ease !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.navbar:not(.scrolled) .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  text-shadow: none;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1.8px;
  background: var(--black);
  transition: all 0.4s var(--transition);
  transform-origin: center;
  border-radius: 2px;
}

.nav-hamburger.active span { background: var(--black) !important; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--transition);
}

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

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--transition);
  letter-spacing: 1px;
}

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

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.32s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.40s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.48s; }

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 999px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

/* Hero slider (crossfade) */
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease-in-out;
}

.hero-slider .hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.45) 0%,
    rgba(17, 17, 17, 0.25) 40%,
    rgba(17, 17, 17, 0.55) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(168, 136, 74, 0.18) 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTIONS / LAYOUT
   ============================================ */
.section {
  padding: 7rem 2.5rem;
  position: relative;
}

.section-alt { background: var(--bg-alt); }
.section-warm { background: var(--bg-warm); }

.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 500;
}

.section-title {
  color: var(--black);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.section-divider {
  width: 50px;
  height: 1.5px;
  background: var(--accent);
  margin: 0 auto;
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  text-align: center;
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-pale), transparent 70%);
  pointer-events: none;
}

.intro::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-pale), transparent 70%);
  pointer-events: none;
}

.intro-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--black);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto 2rem;
  position: relative;
}

.intro-quote span {
  color: var(--accent);
  font-style: italic;
}

.intro-author {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ============================================
   SPLIT CONTENT (Chi Siamo)
   ============================================ */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.split-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.split-image:hover img { transform: scale(1.04); }

.split-image-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transition: inset 0.5s var(--transition);
}

.split-image:hover .split-image-frame { inset: 26px; }

.split-text .section-label { margin-bottom: 1rem; }

.split-text h2 {
  color: var(--black);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.split-text p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.split-text p strong {
  color: var(--black);
  font-weight: 500;
}

.quote-line {
  margin-top: 2rem !important;
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--accent);
  background: var(--accent-pale);
  font-style: italic;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
}

.quote-mark {
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.2em;
  font-family: Georgia, serif;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

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

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--transition);
}

.feature-card:hover .feature-card-img { transform: scale(1.08); }

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.92) 0%,
    rgba(17, 17, 17, 0.4) 45%,
    rgba(17, 17, 17, 0.05) 80%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  transition: background 0.5s ease;
}

.feature-card:hover .feature-card-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.96) 0%,
    rgba(128, 104, 50, 0.3) 50%,
    rgba(17, 17, 17, 0.1) 90%
  );
}

.feature-card-label {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.8rem;
  transition: transform 0.4s var(--transition);
}

.feature-card:hover h3 { transform: translateY(-4px); }

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: all 0.45s var(--transition);
}

.feature-card:hover p {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

/* On touch devices: show description always */
@media (hover: none) {
  .feature-card p {
    opacity: 1;
    max-height: 200px;
    transform: none;
  }
  .feature-card-overlay {
    background: linear-gradient(
      to top,
      rgba(17, 17, 17, 0.94) 0%,
      rgba(17, 17, 17, 0.3) 55%,
      rgba(17, 17, 17, 0.05) 90%
    );
  }
}

/* ============================================
   PARALLAX BREAK
   ============================================ */
.parallax-section {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}

.parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-content {
  text-align: center;
  padding: 2rem;
}

.parallax-content h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-style: italic;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.45);
}

.parallax-content p {
  color: var(--accent-light);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(168, 136, 74, 0);
  transition: background 0.4s ease;
}

.gallery-item:hover::after { background: rgba(168, 136, 74, 0.18); }

/* Make some items taller for editorial feel (desktop) */
@media (min-width: 1025px) {
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8) {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.review-card:hover::before { transform: scaleX(1); }

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.review-body {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.review-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-author {
  font-weight: 500;
  color: var(--black);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 8rem 2.5rem;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(168, 136, 74, 0.22), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 136, 74, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-section > * { position: relative; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .section-label { color: var(--accent-light); }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block { margin-bottom: 2.2rem; }

.contact-info-block h4 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.9;
}

.contact-info-block a {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-info-block a:hover { border-bottom-color: var(--accent); }

.contact-map-wrap {
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.contact-map {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%);
  transition: filter 0.5s ease;
}

.contact-map:hover { filter: grayscale(0%); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 999px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.4s var(--transition);
  z-index: -1;
}

.btn:hover {
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn:hover::before { left: 0; }

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

.btn-solid::before { background: var(--accent-dark); }
.btn-solid:hover { border-color: var(--accent-dark); }

.btn-white {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn-white::before { background: var(--white); }
.btn-white:hover { color: var(--black); border-color: var(--white); }

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

.btn-ghost::before { background: rgba(255, 255, 255, 0.95); }
.btn-ghost:hover { color: var(--black); border-color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 5rem 2.5rem 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Logo "free" — no background frame */
.footer-logo-frame {
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-frame img {
  height: 85px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.3rem;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.35rem 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  align-items: flex-start;
  line-height: 1.7;
}

.footer-contact-item .icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.footer-credit a {
  color: var(--accent-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--transition), color 0.3s var(--transition);
}

.footer-credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-content { opacity: 0; }
.page-content.visible { opacity: 1; transition: opacity 0.8s ease; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 5rem 2rem; }
  .intro { padding: 6rem 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split-content { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }

  .navbar { padding: 0.9rem 1.2rem; }
  .navbar.scrolled { padding: 0.6rem 1.2rem; }
  .nav-logo-frame { padding: 5px 12px; }
  .nav-logo-frame img { height: 38px; }
  .navbar.scrolled .nav-logo-frame img { height: 34px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 1.2rem; }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
  }

  .section { padding: 4rem 1.3rem; }
  .intro { padding: 5rem 1.3rem; }
  .intro-quote { font-size: 1.6rem; }

  .features-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .feature-card { aspect-ratio: 4/5; }

  .reviews-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .review-card { padding: 2rem 1.6rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }

  .parallax-section { height: 50vh; min-height: 360px; }

  .cta-section { padding: 5rem 1.3rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; text-align: center; }

  .contact-map-wrap { height: 320px; }

  .footer { padding: 3.5rem 1.3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .preloader-inner { width: 220px; height: 220px; }
  .preloader-logo-wrap { width: 120px; height: 120px; }
  .preloader-logo { width: 95px; }
  .preloader-text { font-size: 0.8rem; letter-spacing: 5px; }

  .mobile-menu a { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 1.9rem; }
  .intro-quote { font-size: 1.4rem; }
  .hero-tagline { font-size: 1rem; letter-spacing: 3px; }
  .hero-subtitle { letter-spacing: 4px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
