/* ═══════════════════════════════════════════════════════════════
   Dunai Menedék – Frontend Stylesheet
   Vintage pastel aesthetic | Responsive | Hungarian vacation rental
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom properties ──────────────────────────────────────── */
:root {
  --cream:       #f7f3ee;
  --blush:       #e8d5c4;
  --sage:        #b5c4b1;
  --dusty-rose:  #c9a99a;
  --warm-gray:   #8a7f78;
  --dark:        #3d3530;
  --light-sage:  #dce8d9;
  --gold:        #c4a882;
  --white:       #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(61,53,48,.08);
  --shadow-md: 0 4px 20px rgba(61,53,48,.12);
  --shadow-lg: 0 8px 40px rgba(61,53,48,.16);

  --radius:    12px;
  --radius-sm: 6px;
  --transition: .3s ease;

  --nav-height: 72px;
  --max-w: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--warm-gray);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--dusty-rose);
  margin-bottom: .5rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

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

.btn-primary {
  background: var(--dusty-rose);
  color: var(--white);
  border-color: var(--dusty-rose);
}
.btn-primary:hover { background: #b5887a; border-color: #b5887a; }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-secondary:hover { background: var(--dark); color: var(--white); }

.btn-outline {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.25); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); }

.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(247,243,238,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(61,53,48,.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.nav-brand {
  flex-shrink: 0;
  text-decoration: none;
}

.brand-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--dark);
  transition: color var(--transition);
}
.brand-script:hover { color: var(--dusty-rose); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: .5rem .9rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .9rem; right: .9rem;
  height: 2px;
  background: var(--dusty-rose);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--dusty-rose); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  flex-shrink: 0;
  padding: .6rem 1.4rem;
  background: var(--dusty-rose);
  color: var(--white);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #b5887a; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      #e8d5c4 0%,
      #f0e8df 25%,
      #dce8d9 60%,
      #c9dbc6 100%);
}

.hero.has-bg-image {
  background: var(--hero-bg) center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,243,238,.55) 0%,
    rgba(61,53,48,.25) 100%
  );
}

.hero.has-bg-image .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(61,53,48,.35) 0%,
    rgba(61,53,48,.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 4rem;
  max-width: 750px;
  animation: heroFadeUp .8s ease both;
}

.hero-tagline {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--dusty-rose);
  margin-bottom: 1rem;
}

.hero.has-bg-image .hero-tagline { color: rgba(255,255,255,.9); }

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}

.hero.has-bg-image .hero-title { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.3); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--warm-gray);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero.has-bg-image .hero-subtitle { color: rgba(255,255,255,.85); }

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Features ───────────────────────────────────────────────── */
.features-section { background: var(--white); }

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--blush);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg { width: 28px; height: 28px; stroke: var(--dusty-rose); }

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
  color: var(--dark);
}

/* ── About ──────────────────────────────────────────────────── */
.about-section { background: var(--light-sage); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-label { margin-bottom: .25rem; }

.about-text h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.about-body {
  margin-bottom: 2rem;
  color: var(--warm-gray);
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--blush);
  border: 2px dashed var(--dusty-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
  color: var(--warm-gray);
}

.placeholder-inner svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: .5;
}

.about-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--sage);
  border-radius: 50%;
  z-index: -1;
  opacity: .4;
}

/* ── Gallery Preview ────────────────────────────────────────── */
.gallery-preview-section { background: var(--cream); }

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

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: block;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,53,48,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay svg { width: 36px; height: 36px; stroke: white; }

.gallery-preview-item:hover img { transform: scale(1.05); }
.gallery-preview-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,154,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(181,196,177,.1) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p  { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }

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

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--light-sage) 100%);
  padding: calc(var(--nav-height) + 3rem) 1.5rem 3rem;
  text-align: center;
}

.page-hero .container { max-width: 700px; }
.page-hero .section-label { font-size: 1.1rem; }
.page-hero h1 { margin-block: .25rem 1rem; }
.page-hero p  { font-size: 1.1rem; color: var(--warm-gray); }

/* ── Prices ─────────────────────────────────────────────────── */
.prices-section { background: var(--cream); }

.prices-container { max-width: 860px; }

.prices-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Pricing table: row-based layout */
.pricing-table { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--blush);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-row:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.pricing-row.color-sage   { border-left-color: var(--sage); }
.pricing-row.color-blush  { border-left-color: var(--blush); }
.pricing-row.color-gold   { border-left-color: var(--gold); }
.pricing-row.color-rose   { border-left-color: var(--dusty-rose); }

.pricing-season {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.season-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  color: inherit;
}

.pricing-row.color-sage   .season-dot { background: var(--sage); }
.pricing-row.color-blush  .season-dot { background: var(--dusty-rose); }
.pricing-row.color-gold   .season-dot { background: var(--gold); }
.pricing-row.color-rose   .season-dot { background: var(--dusty-rose); }

.season-name  { font-family: var(--font-heading); font-size: 1.1rem; color: var(--dark); }
.season-dates { display: block; font-size: .85rem; color: var(--warm-gray); margin-top: .1rem; }

.pricing-middle { font-size: .85rem; color: var(--warm-gray); font-style: italic; }

.pricing-notes { font-size: .85rem; color: var(--warm-gray); }

.pricing-right { text-align: right; }

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.price-label { font-size: .75rem; font-weight: 400; color: var(--warm-gray); display: block; }

.min-nights {
  font-size: .8rem;
  color: var(--warm-gray);
  margin-top: .25rem;
}

.prices-notes-box {
  background: var(--light-sage);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.prices-notes-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.prices-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--blush);
  border-radius: var(--radius);
}

.prices-cta p { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--dark); }
.prices-cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-section { background: var(--cream); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--blush);
  border: none;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,53,48,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item-overlay svg { width: 36px; height: 36px; stroke: white; }

.gallery-item:hover img             { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--warm-gray);
}

.gallery-empty svg { width: 64px; height: 64px; margin: 0 auto 1.5rem; opacity: .3; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s ease;
}

.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,15,12,.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  width: 100%;
}

.lightbox-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-height: 85vh;
  max-width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: white;
}
.lightbox-close svg { width: 28px; height: 28px; }

.lightbox-prev,
.lightbox-next {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }

.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 0; right: 0;
  text-align: center;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-intro {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--blush);
  transition: box-shadow var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card-phone { border-left-color: var(--sage); }
.contact-card-email { border-left-color: var(--dusty-rose); }

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--dark); }

.contact-card-body h3 {
  font-size: .9rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--warm-gray);
  margin-bottom: .3rem;
}

.contact-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--dusty-rose); }

.contact-hint {
  font-size: .8rem;
  color: var(--warm-gray);
  margin-top: .25rem;
  margin-bottom: 0;
}

.contact-social { margin-top: 1rem; }
.contact-social h3 { font-size: 1rem; margin-bottom: .75rem; }

.social-links { display: flex; gap: .75rem; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}

.social-fb { background: #e8f0fe; color: #1877f2; }
.social-fb:hover { background: #1877f2; color: white; }
.social-ig { background: var(--blush); color: var(--dark); }
.social-ig:hover { background: var(--dark); color: white; }

.social-link svg { width: 18px; height: 18px; }

.contact-cta-box {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.contact-cta-box h2 { color: var(--white); margin-bottom: 1rem; font-size: 1.6rem; }
.contact-cta-box p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.contact-cta-box .btn + .btn { margin-top: .75rem; }

.contact-directions {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--light-sage);
  border-radius: var(--radius);
}
.contact-directions h3 { font-size: 1rem; margin-bottom: .75rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social a {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sage);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }

.footer-contact h4,
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-contact ul,
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
}

.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2em; stroke: var(--gold); }

.footer-contact a,
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contact a:hover,
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.6); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid    { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .pricing-row      { grid-template-columns: 1fr auto; }
  .pricing-middle   { display: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(247,243,238,.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: .25rem;
    box-shadow: var(--shadow-md);
    animation: fadeIn .2s ease;
  }

  .nav-links.open + .nav-cta {
    display: block;
    margin: 0 1.5rem 1.5rem;
    text-align: center;
  }

  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .about-deco { display: none; }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .pricing-right { text-align: left; }
}

@media (max-width: 480px) {
  .section { padding-block: 3.5rem; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .prices-cta-buttons { flex-direction: column; align-items: stretch; }
  .lightbox-prev, .lightbox-next { display: none; }
}
