:root {
  --ink: #221b18;
  --muted: #6f625b;
  --paper: #fffaf4;
  --cream: #f5eadc;
  --terracotta: #b95032;
  --terracotta-dark: #8d351f;
  --olive: #56654b;
  --blue: #1f5b6f;
  --white: #ffffff;
  --line: rgba(34, 27, 24, 0.14);
  --shadow: 0 22px 70px rgba(44, 31, 24, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(27, 20, 17, 0.26);
  backdrop-filter: blur(18px);
  transition: 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 16px 48px rgba(34, 27, 24, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--blue));
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.86;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 999px;
  background: var(--terracotta);
  font-weight: 800;
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #251b18;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 13, 11, 0.78), rgba(19, 13, 11, 0.38) 48%, rgba(19, 13, 11, 0.16)),
    linear-gradient(0deg, rgba(19, 13, 11, 0.62), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 140px;
  transform: translateX(-200px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5b4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-address {
  display: flex;
  max-width: 620px;
  gap: 10px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-actions,
.direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 18px 36px rgba(185, 80, 50, 0.32);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-whatsapp {
  color: #103e2b;
  background: #dff7e8;
  box-shadow: 0 18px 36px rgba(35, 130, 82, 0.24);
}

.hero-facts {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  width: min(430px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.13);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intro {
  background: linear-gradient(180deg, #fffaf4, #f7efe7);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-head {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.align-left {
  width: auto;
  margin-left: 0;
  text-align: left;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 12px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.gallery-item {
  min-height: 230px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ddd;
  cursor: zoom-in;
}

.gallery-large {
  grid-row: span 2;
}

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

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

.services {
  color: var(--white);
  background: #22342e;
}

.services .section-kicker {
  color: #f8b995;
}

.services h2 {
  max-width: 820px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.service-card .lucide {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: #f8b995;
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.location {
  background: #f0e6da;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: stretch;
}

.location-content p {
  color: var(--muted);
}

.route-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.route-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.route-list .lucide {
  color: var(--blue);
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.direct {
  background:
    linear-gradient(rgba(34, 27, 24, 0.68), rgba(34, 27, 24, 0.68)),
    url("assets/photos/naples-experience-10.jpg") center / cover fixed;
  color: var(--white);
}

.direct-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 12, 10, 0.46);
  backdrop-filter: blur(16px);
}

.direct-panel h2 {
  max-width: 680px;
}

.direct-panel p,
.direct-benefits {
  color: rgba(255, 255, 255, 0.78);
}

.direct-benefits {
  display: grid;
  gap: 16px;
}

.direct-benefits div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.direct-actions {
  grid-column: 1 / -1;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 88px;
  color: rgba(255, 255, 255, 0.76);
  background: #1e1917;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-contacts {
  display: grid;
  gap: 14px;
}

.footer-contacts a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  color: var(--white);
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 16px 36px rgba(34, 27, 24, 0.18);
  font-weight: 850;
}

.sticky-cta a:last-child {
  color: #103e2b;
  background: #dff7e8;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 11, 9, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero-content {
    transform: none;
  }

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

@media (max-width: 820px) {
  .container,
  .section-head {
    width: min(100% - 28px, 720px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(19, 13, 11, 0.86), rgba(19, 13, 11, 0.34) 72%),
      linear-gradient(90deg, rgba(19, 13, 11, 0.4), rgba(19, 13, 11, 0.08));
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 120px 0 190px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .hero-facts {
    right: 14px;
    bottom: 88px;
    left: 14px;
    width: auto;
  }

  .hero-facts div {
    padding: 14px 12px;
  }

  .intro-grid,
  .location-grid,
  .direct-panel,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .faq-grid {
    gap: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 20px);
  }

  .gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 190px;
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
  }

  .direct {
    background-attachment: scroll;
  }

  .direct-panel {
    padding: 28px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta a {
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn,
  .direct-actions .btn {
    width: 100%;
  }

  .hero-address {
    align-items: flex-start;
  }

  .gallery-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 230px;
  }

  .hero-facts strong {
    font-size: 1.2rem;
  }

  .hero-facts span {
    font-size: 0.68rem;
  }

  .service-card {
    min-height: auto;
  }
}
