@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #393F50;
  --blue: #435892;
  --cream: #F2EEE7;
  --gold: #BCAA8A;
  --white: #ffffff;
  --text: #2D2D2D;
  --text-light: #6B7280;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1E2D4A;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 6%;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo { text-decoration: none; display: flex; flex-direction: row; align-items: center; gap: 0; }
.logo-img { height: 40px; width: auto; display: block; }

.logo-name {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.logo-title {
  font-size: 10px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(242,238,231,0.75);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover { color: var(--cream); }
nav a.active { color: var(--gold); }

.btn-nav {
  background: var(--blue) !important;
  color: var(--cream) !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
  opacity: 1 !important;
}

.btn-nav:hover { background: var(--gold) !important; color: var(--navy) !important; }

main { padding-top: 68px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 96px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  min-height: 560px;
}

.hero-crp {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(242,238,231,0.65);
  line-height: 1.75;
  text-wrap: balance;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

.btn-primary {
  background: var(--blue);
  color: var(--cream);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}

.btn-primary:hover { background: #364a7e; }

.btn-ghost {
  background: transparent;
  color: rgba(242,238,231,0.75);
  padding: 13px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(242,238,231,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo, .hero-photo-placeholder {
  width: 340px;
  height: 420px;
  border-radius: 4px;
  object-fit: cover;
}

.hero-photo-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
}

/* ── PAGE HERO (interno) ── */
.page-hero {
  background: var(--navy);
  padding: 64px 6%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero .page-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,238,231,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ── STRIP ── */
.strip {
  background: var(--gold);
  padding: 0 6%;
  display: flex;
  justify-content: center;
  gap: 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 48px;
  border-right: 1px solid rgba(57,63,80,0.15);
}

.strip-item:last-child { border-right: none; }

.strip-num {
  font-family: 'Work Sans', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}

.strip-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  max-width: 90px;
}

/* ── SECTIONS ── */
section { padding: 80px 6%; }
section.bg-white { background: var(--white); }
section.bg-cream { background: var(--cream); }
section.bg-navy { background: var(--navy); }

.label {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

section.bg-navy .label { color: var(--gold); }

.section-title {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

section.bg-navy .section-title { color: var(--cream); }

.section-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 24px;
}

section.bg-navy .section-sub { color: rgba(242,238,231,0.55); }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.card {
  background: var(--white);
  border: 1px solid rgba(57,63,80,0.07);
  border-radius: 4px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 4px 20px rgba(57,63,80,0.07); transform: translateY(-2px); }

.card-icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.card h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.65; }

/* ── SERVICE ITEMS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }

.service-item {
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(188,170,138,0.07);
}

.service-item h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-item p { font-size: 12px; font-weight: 300; color: var(--text-light); line-height: 1.6; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-photo, .about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.about-photo-placeholder {
  background: rgba(57,63,80,0.04);
  border: 1px dashed rgba(57,63,80,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 13px;
}

/* ── CREDENTIALS ── */
.credentials { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 3px;
}

.credential-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.credential-item p { font-size: 13px; color: var(--text); line-height: 1.5; font-weight: 300; }

/* ── MODALITIES ── */
.modalities { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.modality-tag {
  padding: 7px 18px;
  background: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--blue);
  padding: 80px 6%;
  text-align: center;
}

.cta-section h2 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,238,231,0.7);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-cta {
  background: var(--cream);
  color: var(--navy);
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta:hover { background: var(--gold); }

.btn-cta-outline {
  background: transparent;
  color: var(--cream);
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(242,238,231,0.35);
  transition: border-color 0.2s;
}

.btn-cta-outline:hover { border-color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: #1E2D4A;
  padding: 48px 6%;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

.footer-links a {
  font-size: 12px;
  color: rgba(242,238,231,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── GALLERY ── */
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(57,63,80,0.06);
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

.gallery-item.img-placeholder {
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(57,63,80,0.15);
  font-size: 12px;
  color: var(--text-light);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(57,63,80,0.75));
  color: rgba(242,238,231,0.9);
  font-size: 11px;
  font-weight: 400;
  padding: 20px 14px 10px;
  letter-spacing: 0.3px;
}

/* ── TILES ── */
.tile {
  background: var(--white);
  padding: 36px 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.tile:hover { background: #FAFAF8; }

.tile-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}

.tile-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.tile h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.tile p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.tile-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
/* ── TESTIMONIALS / CAROUSEL ── */
.carousel { max-width: 720px; margin: 0 auto; }

.carousel-viewport { overflow: hidden; }

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.testimonial {
  background: transparent;
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  text-align: center;
  align-items: center;
}

.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 22px;
}

.testimonial p {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
}

.testimonial-author::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

.carousel-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(57,63,80,0.15);
  background: var(--white);
  border-radius: 50%;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

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

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(57,63,80,0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active { background: var(--gold); transform: scale(1.25); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .strip { flex-wrap: wrap; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(57,63,80,0.1); width: 100%; justify-content: center; padding: 16px; }
  .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  nav a:not(.btn-nav) { display: none; }
  header { padding: 0 4%; }
  section { padding: 56px 4%; }
  .hero { padding: 56px 4% 48px; }
}
