/* ============================================================
   Hotel La Marina – Stile principale
   Tema: Eleganza marittima – Cilento
   ============================================================ */

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

:root {
  --navy:     #0d2b45;
  --teal:     #1a6e8e;
  --aqua:     #3fa8c8;
  --gold:     #c9a84c;
  --gold-lt:  #e8d08a;
  --sand:     #f5f0e8;
  --white:    #ffffff;
  --gray-lt:  #f8f9fa;
  --gray-mid: #6c757d;
  --gray-dk:  #343a40;
  --text:     #2c3e50;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;

  --header-h: 80px;
  --section-py: 90px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 600px;
}

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

.section-header .section-desc { margin: 0 auto; }

.section-header--light .section-title,
.section-header--light .section-desc { color: rgba(255,255,255,.9); }

.section-header--light .section-desc { color: rgba(255,255,255,.7); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

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

.btn-header {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  padding: .6rem 1.4rem;
  font-size: .7rem;
}
.btn-header:hover { background: var(--gold-lt); }

.btn-sm { padding: .5rem 1.2rem; font-size: .7rem; }

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

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

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}
.logo-sub {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,43,69,.55) 0%,
    rgba(13,43,69,.35) 50%,
    rgba(13,43,69,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  margin-bottom: .75rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-dots {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.booking-form {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
  min-width: 130px;
}

.booking-field label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-field input,
.booking-field select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: .65rem .85rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--gold);
}
.booking-field select option { background: var(--navy); }

.booking-bar .btn { align-self: flex-end; height: 42px; }

/* ============================================================
   ABOUT
   ============================================================ */
.section { padding: var(--section-py) 0; }

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.75rem;
  text-align: center;
  font-weight: 700;
}

.badge-num { display: block; font-size: 1.4rem; letter-spacing: .1em; }
.badge-text { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }

.about-text .section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }

.about-text p {
  color: var(--gray-mid);
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
}
.stat-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gray-mid);
}

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--sand);
  border-top: 3px solid var(--gold);
}

.highlight-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,.08);
  text-align: center;
  transition: background var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(201,168,76,.1); }

.hi-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.highlight-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.highlight-item p { font-size: .85rem; color: var(--gray-mid); }

/* ============================================================
   CAMERE
   ============================================================ */
.camere { background: var(--gray-lt); }

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

.camera-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.camera-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.16); }

.camera-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(13,43,69,.2);
}
.camera-card.featured:hover { transform: translateY(-14px); }

.card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.camera-card:hover .card-img img { transform: scale(1.06); }

.card-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,69,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.camera-card:hover .card-overlay { opacity: 1; }

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
}

.card-body { padding: 1.75rem; }

.card-cat {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.card-body p { font-size: .88rem; color: var(--gray-mid); margin-bottom: 1.25rem; }

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.card-features li {
  font-size: .7rem;
  background: var(--sand);
  color: var(--navy);
  padding: .25rem .75rem;
  border-radius: 50px;
}

/* ============================================================
   SERVIZI
   ============================================================ */
.servizi {
  position: relative;
  color: var(--white);
}

.servizi-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.servizi-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,69,.88);
}

.servizi .container { position: relative; z-index: 1; }

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

.servizio-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition), border-color var(--transition);
}
.servizio-card:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--gold);
}

.sv-icon { font-size: 2.4rem; margin-bottom: 1.25rem; }

.servizio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.servizio-card p { font-size: .88rem; color: rgba(255,255,255,.7); }

/* ============================================================
   CILENTO STRIP
   ============================================================ */
.cilento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cilento-text .section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cilento-text p { color: var(--gray-mid); margin-bottom: 1.25rem; }

.cilento-images {
  position: relative;
  height: 500px;
}

.ci-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ci-img--1 {
  width: 70%; height: 70%;
  top: 0; right: 0;
}
.ci-img--2 {
  width: 55%; height: 55%;
  bottom: 0; left: 0;
  border: 6px solid var(--white);
}

/* ============================================================
   GALLERIA
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(3),
.gallery-item:nth-child(8) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,69,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 1rem;
  transition: color var(--transition);
  z-index: 2001;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-close { top: 1rem; right: 1.5rem; font-size: 1.8rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ============================================================
   CONTATTI
   ============================================================ */
.contatti { background: var(--gray-lt); }

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.contact-item p { font-size: .9rem; color: var(--gray-mid); }
.contact-item a { color: var(--navy); transition: color var(--transition); }
.contact-item a:hover { color: var(--teal); }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50%;
  transition: var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--navy); color: var(--white); }
.social-btn--wa { border-color: #25d366; color: #25d366; }
.social-btn--wa:hover { background: #25d366; color: var(--white); }

.contatti-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.footer-tagline {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
}
.footer-addr { font-size: .85rem; line-height: 1.7; }

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact p { font-size: .88rem; margin-bottom: .5rem; }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* stagger */
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .cilento-grid { gap: 3rem; }

  .highlights { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }

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

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

@media (max-width: 768px) {
  :root { --section-py: 60px; }

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

  .hamburger { display: flex; }

  .main-nav.open {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    padding: 100px 2rem 2rem;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .main-nav.open a {
    font-size: 1.2rem;
  }

  .about-grid,
  .cilento-grid,
  .contatti-grid { grid-template-columns: 1fr; }

  .about-image img { height: 320px; }
  .about-badge { right: 0; bottom: -1rem; }
  .about-stats { gap: 1.5rem; justify-content: center; }

  .camere-grid { grid-template-columns: 1fr; }
  .camera-card.featured { transform: none; }

  .servizi-grid { grid-template-columns: 1fr; }

  .cilento-images { height: 300px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(8) { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .booking-form { flex-direction: column; }
  .booking-field { min-width: 100%; }

  .highlights { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .highlight-item:last-child { border-bottom: none; }

  .hero-title { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--gray-lt); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(13,43,69,.10);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item[open] summary { color: var(--teal); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--teal); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--gray-mid);
  margin: 0;
}
