/* ============================================
   RIMESSAGGIO CAMPER BERGAMO — Design System
   Editorial-Industrial: navy + amber + warm paper
   ============================================ */

:root {
  /* Colors */
  --navy: #0F1F3D;
  --navy-deep: #0A1428;
  --navy-soft: #1B3158;
  --amber: #C8924B;
  --amber-bright: #DDA253;
  --amber-deep: #A07434;
  --paper: #FAF7F2;
  --paper-warm: #F2EDE3;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --gray-line: #E8E2D6;
  --gray-soft: #6B6B6B;
  --white: #FFFFFF;
  --success: #2D6A4F;

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 880px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============ Typography ============ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-variation-settings: "opsz" 120, "SOFT" 50;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.italic-display {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============ Layout ============ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
}

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img { height: 38px; }
}
@media (max-width: 480px) {
  .logo-img { height: 32px; }
}

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

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--navy);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.2s var(--ease);
}

.header-cta:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-1px);
}

.header-cta svg {
  width: 14px;
  height: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  margin: 4px 0;
  transition: all 0.3s var(--ease);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .header-cta span { display: none; }
  .header-cta { padding: 0.65rem; }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200, 146, 75, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content h1 .accent {
  color: var(--amber-deep);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  letter-spacing: -0.005em;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(15, 31, 61, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1FB857;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--paper);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 146, 75, 0.18), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, var(--navy-deep) 100%);
  box-shadow: 0 30px 60px -20px rgba(15, 31, 61, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(200, 146, 75, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-visual-overlay {
  position: relative;
  z-index: 3;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.hero-visual-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.85;
}

.hero-visual-top span:nth-child(2)::before {
  content: "—";
  margin-right: 0.5rem;
  opacity: 0.5;
}

.hero-visual-main {
  text-align: left;
  margin: auto 0;
}

.hero-visual-main .big-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--amber);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-visual-main .big-number sup {
  font-size: 0.35em;
  font-style: normal;
  vertical-align: top;
  margin-left: 0.1em;
  opacity: 0.8;
  letter-spacing: 0;
}

.hero-visual-main .big-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.15;
  max-width: 280px;
  font-variation-settings: "opsz" 60;
}

.hero-visual-main .big-label em {
  font-style: italic;
  color: var(--amber-bright);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}

.hero-visual-badge {
  position: relative;
  z-index: 3;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(8px);
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  border-left: 3px solid var(--amber);
  margin-top: 1.5rem;
}

.hero-visual-badge strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-visual-badge span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* When real photo is used */
.hero-visual.has-photo .hero-visual-overlay > *:not(.hero-visual-badge) {
  display: none;
}
.hero-visual.has-photo::before { display: none; }
.hero-visual.has-photo {
  padding: 0;
  background: var(--navy);
}
.hero-visual.has-photo .hero-visual-overlay {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.85) 0%, rgba(10, 20, 40, 0.4) 35%, transparent 65%);
  justify-content: flex-end;
}
.hero-visual.has-photo .hero-visual-badge {
  margin-top: 0;
}

/* ============ Stats Strip ============ */

.stats {
  background: var(--navy);
  color: var(--paper);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(200, 146, 75, 0.1) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

.stat {
  text-align: left;
  position: relative;
  padding-left: 1rem;
  border-left: 1px solid rgba(200, 146, 75, 0.3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.35;
  font-weight: 500;
}

/* ============ Section: Pillars ============ */

.pillars {
  background: var(--paper);
}

.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}

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

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pillar {
  padding: 2.25rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-line);
  position: relative;
  transition: all 0.3s var(--ease);
}

.pillar:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(15, 31, 61, 0.12);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paper-warm), var(--paper));
  border: 1px solid rgba(200, 146, 75, 0.25);
  border-radius: 14px;
  margin-bottom: 1.75rem;
  color: var(--amber-deep);
  position: relative;
}

.pillar-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(200, 146, 75, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

.pillar-icon svg {
  width: 30px;
  height: 30px;
}

.pillar h3 {
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.97rem;
  margin: 0;
}

/* ============ Section: Services overview ============ */

.services-overview {
  background: var(--paper-warm);
  position: relative;
}

.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber) 50%, transparent);
}

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

@media (max-width: 880px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--navy);
  transition: all 0.3s var(--ease);
}

.service-card.featured {
  border-top-color: var(--amber);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15, 31, 61, 0.15);
}

.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.service-card .subtitle {
  font-size: 0.8rem;
  color: var(--amber-deep);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============ Section: Vehicles ============ */

.vehicles {
  background: var(--paper);
  text-align: center;
}

.vehicles-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.vehicle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  position: relative;
}

.vehicle svg {
  width: 80px;
  height: 80px;
  color: var(--navy);
  opacity: 0.9;
  transition: all 0.3s var(--ease);
  padding: 14px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-line);
}

.vehicle:hover svg {
  color: var(--amber-deep);
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(15, 31, 61, 0.15);
}

.vehicle span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
}

/* ============ Section: Trust / Partnership ============ */

.trust {
  background: var(--navy-deep);
  color: var(--paper);
  text-align: center;
}

.trust h2 {
  color: var(--paper);
}

.trust .eyebrow {
  color: var(--amber);
}

.trust p {
  color: rgba(250, 247, 242, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.25rem auto 2.5rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  padding: 1rem 1.75rem;
  border: 1px solid rgba(200, 146, 75, 0.3);
  border-radius: 4px;
  background: rgba(200, 146, 75, 0.05);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--amber-bright);
  letter-spacing: -0.005em;
}

/* ============ Section: CTA Final ============ */

.cta-final {
  background: var(--paper-warm);
  text-align: center;
}

.cta-final h2 {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-final p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

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

/* ============ Footer ============ */

.footer {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 4rem 0 2rem;
}

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

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-brand .logo-img {
  height: 56px;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.65rem;
}

.footer-list a,
.footer-list span {
  color: rgba(250, 247, 242, 0.75);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease);
}

.footer-list a:hover {
  color: var(--amber);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.55);
}

.footer-bottom a {
  color: rgba(250, 247, 242, 0.7);
  transition: color 0.2s var(--ease);
}

.footer-bottom a:hover {
  color: var(--amber);
}

/* ============ Floating WhatsApp ============ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s var(--ease);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============ Page Hero (interior pages) ============ */

.page-hero {
  background: var(--paper);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-line);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200, 146, 75, 0.06), transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-soft);
  margin-bottom: 2rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--gray-soft);
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover { color: var(--amber-deep); }

.breadcrumb-sep {
  opacity: 0.5;
}

/* ============ Service block (servizi page) ============ */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-block:last-child { margin-bottom: 0; }

.service-block.reverse .service-block-content { order: 2; }
.service-block.reverse .service-block-visual { order: 1; }

@media (max-width: 880px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-block.reverse .service-block-content { order: 1; }
  .service-block.reverse .service-block-visual { order: 2; }
  .service-block { margin-bottom: 4rem; }
}

.service-block-content .service-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--amber-deep);
  margin-bottom: 0.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.service-block-content h2 {
  margin-bottom: 1.25rem;
}

.service-block-content > p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-line);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--ink);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.service-block-visual {
  aspect-ratio: 5/4;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 146, 75, 0.15), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 70%, var(--navy-deep) 100%);
  position: relative;
  box-shadow: 0 20px 40px -15px rgba(15, 31, 61, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem;
}

.service-block-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(200, 146, 75, 0.1) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 1;
}

.service-block-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  z-index: 2;
}

.service-block-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sv-overlay {
  position: relative;
  z-index: 3;
  color: var(--paper);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sv-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.85;
}

.sv-overlay-main {
  margin: auto 0;
}

.sv-overlay-num {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--amber);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: 1rem;
}

.sv-overlay-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.1;
  font-variation-settings: "opsz" 90;
  max-width: 300px;
}

.sv-overlay-label em {
  font-style: italic;
  color: var(--amber-bright);
  font-variation-settings: "opsz" 90, "SOFT" 100;
}

.sv-overlay-bottom {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sv-overlay-bottom::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--amber);
}

/* When real photo is used in service block visual */
.service-block-visual.has-photo {
  padding: 0;
  background: var(--navy);
}
.service-block-visual.has-photo::before { display: none; }
.service-block-visual.has-photo .sv-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.85) 0%, rgba(10, 20, 40, 0.35) 40%, transparent 70%);
  justify-content: flex-end;
}
.service-block-visual.has-photo .sv-overlay-top,
.service-block-visual.has-photo .sv-overlay-main {
  display: none;
}
.service-block-visual.has-photo .sv-overlay-bottom {
  font-size: 0.85rem;
  color: var(--paper);
}

/* ============ Map / Location ============ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.location-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid var(--gray-line);
}

.location-info h3 {
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-line);
  align-items: flex-start;
}

.info-row:last-child { border-bottom: none; }

.info-row-icon {
  width: 38px;
  height: 38px;
  background: var(--paper-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
  flex-shrink: 0;
}

.info-row-icon svg { width: 18px; height: 18px; }

.info-row-content {
  flex: 1;
}

.info-row-content strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 0.3rem;
}

.info-row-content p,
.info-row-content a {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
}

.info-row-content a:hover { color: var(--amber-deep); }

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 32px -12px rgba(15, 31, 61, 0.2);
  min-height: 480px;
  background: var(--gray-line);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* ============ Contact page big cards ============ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(15, 31, 61, 0.15);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--paper-warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-deep);
}

.contact-card-icon svg { width: 22px; height: 22px; }

.contact-card.whatsapp .contact-card-icon {
  background: #E8F8EE;
  color: #1FB857;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.contact-card .value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: block;
  margin: 0;
}

.contact-card .desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.contact-card .card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--amber-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 0.5rem;
}

.contact-card:hover .card-cta { color: var(--navy); }

.hours-block {
  background: var(--navy);
  color: var(--paper);
  padding: 3rem;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hours-block {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
  }
}

.hours-block h3 {
  color: var(--paper);
  font-size: 1.5rem;
}

.hours-block .eyebrow {
  color: var(--amber);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 146, 75, 0.2);
  font-size: 0.97rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day { color: var(--paper); }
.hours-list .time { color: var(--amber-bright); font-weight: 600; }
.hours-list .closed { color: rgba(250, 247, 242, 0.5); font-style: italic; }

.notice {
  background: rgba(200, 146, 75, 0.1);
  border-left: 3px solid var(--amber);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: var(--paper);
  margin-top: 1.5rem;
}

/* ============ Reveal Animation ============ */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ Utility ============ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
