/* ============================================
   Swiss Concierge Sicily — Mediterranean Luxury CSS
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Lato:wght@300;400;500&display=swap');

:root {
  --navy: #0d1b2a;
  --deep-blue: #1b3a5c;
  --ocean: #2e6a8e;
  --gold: #b8975a;
  --gold-light: rgba(201,169,110,0.12);
  --white: #ffffff;
  --sand: #e8dfc8;
  --cream: #faf6ee;
  --warm-white: #fffcf5;
  --charcoal: #1a1a1a;
  --warm-grey: #6b6560;
  --terra: #a0512a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Lang switcher ── */
.lang-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.9rem 2.5rem;
  gap: 0;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 0.3rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.25s var(--ease-out);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.lang-btn.active { font-weight: 700; }

/* ── Nav brand ── */
.nav-brand {
  position: fixed;
  top: 52px;
  left: 2.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.72) 0%,
    rgba(13, 27, 42, 0.45) 50%,
    rgba(13, 27, 42, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 6rem;
  max-width: 820px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 1rem 2.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}
.btn-primary:hover { background: #d4b87a; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  background: transparent;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  border: 1px solid var(--sand);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}
.btn-outline:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-1px); }

/* ── SECTION shared ── */
.section-pad { padding: 9rem 4rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.services .section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0.04em;
}
.section-body {
  font-size: 0.98rem;
  color: var(--warm-grey);
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 580px;
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--deep-blue);
  margin-top: 0.5rem;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-body { margin-bottom: 1.5rem; }
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.55;
  padding-left: 2rem;
  border-left: 3px solid var(--gold);
  margin-top: 2rem;
  padding-top: 1rem;
}
.about-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) saturate(85%);
}
.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,27,42,0.7), transparent);
}
.about-visual-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── SERVICES ── */
.services { background: var(--navy); }
.services .section-title { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  border-top: 2px solid transparent;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.service-card:hover { background: rgba(201,169,110,0.08); border-top-color: var(--gold); box-shadow: 0 2px 16px rgba(0,0,0,0.15); }
.service-card:hover { background: rgba(201,169,110,0.08); border-top-color: var(--gold); }
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.services-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.3);
  text-align: center;
}
.services-note p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

/* ── PROCESS ── */
.process { background: var(--warm-white); }
.process-header { margin-bottom: 4rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 2.5rem 2rem;
  border-left: 1px solid var(--sand);
  position: relative;
}
.process-step:first-child { border-left: none; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step-body {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact { background: var(--cream); }
.contact-single { max-width: 580px; margin: 0 auto; text-align: center; }

/* ── ABOUT centered variant ── */
.about-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── INCLUDED BLOCK ── */
.included-block {
  background: var(--warm-white);
  padding: 4rem 4rem 5rem;
  border-bottom: 1px solid var(--sand);
}
.included-inner { max-width: 1160px; margin: 0 auto; }
.included-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.2rem;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--sand);
}
.included-card {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid var(--sand);
  text-align: center;
  transition: background 0.3s var(--ease-out);
}
.included-card:first-child {
  border-left: 2px solid var(--gold);
}
.included-card:last-child { border-right: none; }
.included-card:hover { background: rgba(201,169,110,0.06); }
.included-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--gold);
  line-height: 1;
}
.included-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.included-desc {
  font-size: 0.82rem;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 3.5rem 4rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; }
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-address {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.3rem;
  display: block;
}
.footer-bottom {
  max-width: 1160px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 2rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.55); }

/* ── Scroll-reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .section-pad { padding: 5rem 2rem; }
  .included-block { padding: 4rem 2rem 5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-step { border-left: none; padding: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
}
@media (max-width: 600px) {
  .included-block { padding: 3rem 1.5rem 4rem; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .included-card { border-right: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
  .included-card:nth-child(2n) { border-right: none; }
  .included-card:nth-child(3), .included-card:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .lang-bar { justify-content: center; }
  .nav-brand { left: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--sand);
  padding: 1.4rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--sand); }
.faq-q {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); font-weight: 300; }
details[open] .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.92rem;
  color: var(--warm-grey);
  line-height: 1.75;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(232,223,200,0.5);
}

/* ── WhatsApp buttons ── */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--warm-white);
  border: 1px solid var(--sand);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn-whatsapp:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); }
.btn-whatsapp svg { color: #25D366; flex-shrink: 0; }

.btn-whatsapp-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 2rem auto 0;
  padding: 1.4rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border: 2px solid #25D366;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}
.btn-whatsapp-primary:hover { background: rgba(37,211,102,0.08); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,0.15); }
.btn-whatsapp-primary svg { color: #25D366; flex-shrink: 0; }