/* ============================================================
   WELKOMME-INN — Main Stylesheet
   Brand: DM Sans (body) + Playfair Display (headings)
   Palette: #111111 black · #0066FF blue · grays
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --light-bg:   #f2f4f3;
  --black:      #111111;
  --dark:       #1a1a1a;
  --gray-100:   #f5f5f5;
  --gray-200:   #e8e8e8;
  --gray-300:   #d1d1d1;
  --gray-400:   #a0a0a0;
  --gray-500:   #6b6b6b;
  --gray-600:   #4a4a4a;
  --blue:       #449ec5;
  --blue-dark:  #337fa0;
  --icon-bg:    #eef2ff;

  --font-body:    'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;

  --container:  1200px;
  --header-h:   72px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 999px;
  --radius-btn:  0.625em;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-align: center;
  color: var(--gray-500);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--blue);
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 3px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--gray-500);
  transition: all 0.2s;
  background: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.lang-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.lang-btn:hover:not(.active) { color: var(--black); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.5s;
}
.btn-primary::after {
  content: '';
  background: var(--off-white);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: transform 0.5s;
}
.btn-primary:hover { color: var(--black); }
.btn-primary:hover::after { transform: skewX(-45deg) scale(1, 1); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.5s, border-color 0.5s;
}
.btn-secondary::after {
  content: '';
  background: var(--black);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: transform 0.5s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--black); }
.btn-secondary:hover::after { transform: skewX(-45deg) scale(1, 1); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.5s;
}
.btn-dark::after {
  content: '';
  background: var(--off-white);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: transform 0.5s;
}
.btn-dark:hover { color: var(--black); }
.btn-dark:hover::after { transform: skewX(-45deg) scale(1, 1); }

/* Hero buttons */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.5s;
}
.btn-hero::after {
  content: '';
  background: var(--black);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: transform 0.5s;
}
.btn-hero:hover { color: var(--white); }
.btn-hero:hover::after { transform: skewX(-45deg) scale(1, 1); }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

/* ── HAMBURGER / MOBILE MENU ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
/* Hamburger stays as 3 bars when open — close button lives inside the panel */
.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(2),
.hamburger.open span:nth-child(3) { transform: none; opacity: 1; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1001;           /* above header (1000) so close btn is never covered */
  flex-direction: column;
  padding: 80px 40px 48px;
  gap: 8px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }

/* ── Close button inside panel ───────────────────────────── */
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  background: var(--gray-100);
  border-color: var(--gray-400, #bbb);
  transform: rotate(90deg);
}
.mobile-menu-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  flex-shrink: 0;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--black); }
.mobile-menu .btn-primary {
  margin-top: 24px;
  width: 100%;
}
.lang-switcher--mobile {
  margin-top: 16px;
  align-self: flex-start;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;           /* above header, below the menu panel */
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1100px;
  overflow: hidden;
  /* no margin-top — fixed header floats over the full-bleed hero */
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;   /* 15% extra so GSAP parallax movement never exposes the container bg */
  top: -7.5%;     /* centre the overflow so it clips evenly top and bottom at rest */
  object-fit: cover;
  object-position: center 60%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.55) 100%);
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: var(--header-h) 24px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  max-width: 820px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-title em { font-style: italic; }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.65s both;
}

/* Scroll down indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;
  animation: bounce 2s infinite 1.5s;
}

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--black);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 120px 0 80px;
  background: var(--white);
}
.about-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.about-intro .highlight-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-600);
}
.about-intro .highlight-text strong {
  color: var(--black);
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.g-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.g-item:hover img { transform: scale(1.04); }
.g-item:nth-child(1) { grid-row: 1; grid-column: 1; height: 280px; }
.g-item:nth-child(2) { grid-row: 1; grid-column: 2; height: 280px; }
.g-item:nth-child(3) { grid-row: 1 / 3; grid-column: 3; }
.g-item:nth-child(4) { grid-row: 2; grid-column: 1; height: 280px; }
.g-item:nth-child(5) { grid-row: 2; grid-column: 2; height: 280px; }
.show-photos { text-align: center; margin-top: 40px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  background: var(--off-white);
  padding: 100px 0;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px 40px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--icon-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
}
.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.4;
}
.sc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}
.services-btn { text-align: center; margin-top: 56px; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.how-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0efec;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
  padding-top: 40px;
}
.how-image img {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.5s;
}
.how-image:hover img { transform: scale(1.02); }
.how-info h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.how-info > p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.how-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.how-step-text h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.how-step-text p  { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

/* ── AREAS ───────────────────────────────────────────────── */
.areas { padding: 100px 0; background: var(--off-white); }

.area-featured {
  max-width: 800px;
  margin: 56px auto 0;
}
.area-featured-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.area-featured-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.09); }

.area-featured-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}
.area-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.area-featured-card:hover .area-featured-img img { transform: scale(1.03); }

.area-pin-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.area-pin-badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.area-featured-body {
  padding: 36px 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.area-featured-text h4 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}
.area-featured-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.area-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--gray-600);
}
.area-tag svg {
  width: 11px;
  height: 11px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.area-response-box {
  flex-shrink: 0;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 148px;
}
.area-stat { display: flex; flex-direction: column; gap: 4px; }
.area-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.area-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.area-stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 48px auto 0;
}
.pricing-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.pricing-box.featured { border-color: var(--black); background: var(--white); }
.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  padding: 4px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  display: inline-block;
}
.pricing-tier {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}
.per { font-size: 15px; color: var(--gray-500); }
.pricing-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}
.pricing-cta { text-align: center; }

/* ── PROPERTIES ──────────────────────────────────────────── */
.properties { padding: 80px 0; background: var(--off-white); }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.property-card-img { height: 220px; overflow: hidden; position: relative; }
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.property-card:hover .property-card-img img { transform: scale(1.06); }
.property-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}
.property-card-body { padding: 20px 24px 24px; }
.property-card-loc {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.property-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}
.property-card-meta { font-size: 14px; color: var(--gray-500); margin-bottom: 12px; }
.property-card-price { font-weight: 600; font-size: 16px; }
.property-card-price span { font-weight: 400; font-size: 14px; color: var(--gray-500); }

/* ── TEAM ─────────────────────────────────────────────────── */
.team-section {
  padding: 100px 0 120px;
  background: var(--off-white);
}

/* Header — centred */
.team-header {
  text-align: center;
  margin-bottom: 64px;
}
.team-header .section-label  { justify-content: center; }
.team-header .section-sub    { max-width: 480px; margin: 0 auto; }

/* Grid — 3 equal columns, centred */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 24px;
  justify-content: center;
}

/* Card */
.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

/* ── Photo ─ */
.team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }

/* Pedro studio shot — nudge up so head aligns with the others */
.team-card-photo img[src*="pedro-studio"] {
  /* object-position: center 75% !important; */
  width: 100%;
  height: 90%;
}

/* ── Monogram (no photo yet) ─ */
.team-card-photo--mono {
  background: var(--mono-bg);
  align-items: center;
  justify-content: center;
}
.team-mono-initial {
  font-family: var(--font-serif);
  font-size: 140px;
  font-weight: 400;
  color: var(--mono-color);
  opacity: 0.22;
  line-height: 1;
  user-select: none;
  letter-spacing: -4px;
  transition: opacity 0.4s, transform 0.4s;
}
.team-card:hover .team-mono-initial {
  opacity: 0.32;
  transform: scale(1.06);
}

/* ── Body ─ */
.team-card-body {
  padding: 22px 24px 26px;
}
.team-card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 6px;
}
.team-card-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
  margin: 0;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  background: var(--blue);
  padding: 100px 0;
  color: var(--white);
}
.contact .section-label { color: rgba(255,255,255,0.65); }
.contact .section-heading { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.75); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.15); }
.contact-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5; margin-bottom: 10px; }
.contact-card .contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.contact-card .contact-value:hover { text-decoration: underline; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-form-wrap p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.5;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.08);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}
.form-group .error-msg {
  font-size: 12px;
  color: #ef4444;
  display: none;
}
.form-group.has-error .error-msg { display: block; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { padding: 120px 0; background: var(--white); }
.reviews-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  align-items: start;
}
.rating-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.rating-big {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.rating-big svg { width: 28px; height: 28px; fill: var(--black); }
.rating-big .rating-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}
.rating-label { font-size: 14px; color: var(--gray-500); }
.rating-bars { display: flex; flex-direction: column; gap: 20px; }
.rating-bar-row { display: flex; align-items: center; gap: 16px; }
.rb-label { font-size: 15px; color: var(--gray-500); width: 120px; flex-shrink: 0; }
.rb-track { flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.rb-fill {
  height: 100%;
  background: var(--black);
  border-radius: 3px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.rb-num { font-size: 15px; font-weight: 500; width: 32px; text-align: right; }

.testimonial-card { position: relative; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 20px; height: 20px; }
.testimonial-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 28px;
  font-style: italic;
  min-height: 120px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 16px; }
.testimonial-loc  { font-size: 13px; color: var(--gray-400); }
.testimonial-role { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.testimonial-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--black); transform: scale(1.2); }
.testimonial-nav { display: flex; gap: 10px; }
.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all 0.2s;
}
.testimonial-nav button:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.testimonial-nav button svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
}

/* ── BLOG ────────────────────────────────────────────────── */
.blog { padding: 100px 0; background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: var(--white); }
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.faq-item.open { border-color: var(--gray-300); }
.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gray-400);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--black);
  color: var(--black);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 28px 24px 76px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}
.final-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.62) 100%);
  z-index: 1;
}
.final-cta-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
}
.final-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: 0 24px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.final-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  background: var(--white);
  text-align: center;
}
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-copy { font-size: 14px; color: var(--gray-400); margin-bottom: 4px; }
.footer-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 8px; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gray-100); color: var(--black); }
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 13px; color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  cursor: pointer;
}
#back-to-top:hover { background: var(--dark); }
#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* ── Tier 1: Compact desktop (1280px) — tighten gaps ─────── */
@media (max-width: 1280px) {
  .header-inner { padding: 0 36px; }
  .nav-links    { gap: 24px; }
}

/* ── Tier 2: Small desktop (1100px) — shrink further ─────── */
@media (max-width: 1100px) {
  .header-inner  { padding: 0 28px; }
  .nav-links     { gap: 16px; }
  .nav-links a   { font-size: 14px; }
  .btn-primary   { padding: 10px 18px; font-size: 13px; }
  .lang-btn      { padding: 4px 8px; font-size: 11px; }
}

/* ── Tier 3: Tablet / hamburger (960px) ──────────────────── */
@media (max-width: 960px) {
  .container      { padding: 0 32px; }
  .header-inner   { padding: 0 28px; }
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .mobile-menu    { display: flex; }
  .btn-primary    { padding: 11px 20px; font-size: 13px; }
  /* lang-switcher stays visible — gives users language access without opening menu */

  /* Team: 2 columns at tablet */
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
  }
  .team-grid .team-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
  }
}

/* ── Shared layout fixes (previously 1024px) ─────────────── */
@media (max-width: 1024px) {
  .how-grid        { gap: 48px; }
  .reviews-content { gap: 32px; }
  .services-cards  { grid-template-columns: 1fr 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .contact-info    { flex-direction: row; flex-wrap: wrap; }
  .contact-card    { flex: 1 1 220px; }
}

/* ── Tier 4: Mobile (768px) ──────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container    { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  /* Hide lang from header — it lives in the mobile menu */
  .lang-switcher:not(.lang-switcher--mobile) { display: none; }

  .hero { min-height: 580px; max-height: 800px; }
  .hero-scroll  { display: none; }
  .hero-ctas    { flex-direction: column; align-items: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }

  .about { padding: 80px 0 60px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(1) { grid-row: auto; grid-column: auto; height: 200px; }
  .g-item:nth-child(2) { grid-row: auto; grid-column: auto; height: 200px; }
  .g-item:nth-child(3) { grid-row: auto; grid-column: 1 / -1; height: 240px; }
  .g-item:nth-child(4) { grid-row: auto; grid-column: auto; height: 200px; }
  .g-item:nth-child(5) { grid-row: auto; grid-column: auto; height: 200px; }

  .team-grid {
    grid-template-columns: minmax(0, 360px);
  }
  .team-grid .team-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
    justify-self: stretch;
  }
  .team-mono-initial { font-size: 100px; }

  .services-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-image { min-height: 360px; }
  .area-featured { max-width: 100%; }
  .area-featured-body { grid-template-columns: 1fr; gap: 24px; }
  .area-response-box { flex-direction: row; justify-content: space-around; align-items: center; min-width: unset; }
  .area-stat-divider { width: 1px; height: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .properties-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info   { flex-direction: column; }
  .form-row       { grid-template-columns: 1fr; }
  .reviews-content { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .faq-answer-inner { padding: 0 20px 20px 60px; }
  .section-heading { font-size: clamp(28px, 6vw, 40px); }
  .final-cta { min-height: 400px; }

  #back-to-top { bottom: 20px; right: 20px; }
}

/* ── Tier 5: Small mobile (580px) — strip header to logo + hamburger ── */
@media (max-width: 580px) {
  /* CTA button lives in mobile menu — hide it from header */
  .header-inner .btn-primary { display: none; }
  .header-inner { padding: 0 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(3) { grid-column: auto; }
  .contact-form-wrap { padding: 28px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
