@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Serif 4', Georgia, serif; color: #1a1a1a; background: #f5f0e6; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === CSS VARIABLES === */
:root {
  --charcoal: #1a1a1a;
  --olive: #3d4f1e;
  --olive-light: #5a7a2a;
  --sand: #c4a35a;
  --sand-light: #d4bc7e;
  --cream: #f5f0e6;
  --cream-dark: #e8dfd0;
  --rust: #8b3a2a;
  --white: #fefcf7;
  --text: #2a2a2a;
  --text-light: #6b6356;
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { max-width: 65ch; }

.label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}

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

section {
  padding: 5rem 0;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-brand span {
  color: var(--sand);
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sand);
}

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--olive);
  color: var(--cream) !important;
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s;
}

.nav-wa:hover {
  background: var(--olive-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(30%) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(26, 26, 26, 0.6) 40%,
    rgba(26, 26, 26, 0.3) 70%,
    rgba(61, 79, 30, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--sand);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-dark);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.85;
}

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.9rem 2rem;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--olive);
  color: var(--cream);
  border: 2px solid var(--olive);
}

.btn-primary:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(196, 163, 90, 0.4);
}

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

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--charcoal);
}

.btn-dark:hover {
  background: #2a2a2a;
}

.btn-sand {
  background: var(--sand);
  color: var(--charcoal);
  border: 2px solid var(--sand);
}

.btn-sand:hover {
  background: var(--sand-light);
  border-color: var(--sand-light);
}

/* === INTRO / ABOUT === */
.intro {
  background: var(--white);
  position: relative;
}

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

.intro-text .label {
  margin-bottom: 1rem;
  display: block;
}

.intro-text h2 {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.intro-img {
  position: relative;
}

.intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05);
}

.intro-img::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 3px solid var(--sand);
  z-index: -1;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--charcoal);
  padding: 2.5rem 0;
  border-top: 3px solid var(--olive);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sand);
  margin-bottom: 0.3rem;
}

.stat-item p {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dark);
  opacity: 0.7;
}

/* === SERVICES === */
.services {
  background: var(--cream);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(61, 79, 30, 0.03) 20px,
    rgba(61, 79, 30, 0.03) 40px
  );
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.services-header h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.services-header p {
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--olive);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card .service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(61, 79, 30, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === RING FRANCES SPOTLIGHT === */
.spotlight {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 79, 30, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.spotlight-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.95);
}

.spotlight-text .label {
  margin-bottom: 1rem;
  display: block;
}

.spotlight-text h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.spotlight-text p {
  color: var(--cream-dark);
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.spotlight-text .highlight {
  display: inline-block;
  background: var(--olive);
  color: var(--cream);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* === REVIEWS === */
.reviews {
  background: var(--white);
}

.reviews-header {
  margin-bottom: 3rem;
}

.reviews-header h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

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

.review-card {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
  border-top: 3px solid var(--sand);
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(196, 163, 90, 0.2);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.review-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.reviews-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* === GALLERY STRIP === */
.gallery-strip {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.gallery-strip img:hover {
  filter: grayscale(0%);
}

/* === BOOKING === */
.booking {
  background: var(--cream);
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-header h2 {
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.booking-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0 auto;
}

.booking-frame {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* === CONTACT / FOOTER === */
.contact {
  background: var(--charcoal);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info .label {
  margin-bottom: 1rem;
  display: block;
}

.contact-info h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--cream-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--sand);
}

.contact-map {
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  filter: grayscale(50%) contrast(1.1);
}

.footer {
  background: #111;
  padding: 1.5rem 0;
  text-align: center;
}

.footer p {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.3);
  margin: 0 auto;
}

/* === LANGUAGE TOGGLE === */
[lang-en] { display: none; }
body.lang-en [lang-en] { display: initial; }
body.lang-en [lang-es] { display: none; }

.lang-toggle {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dark);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(245, 240, 230, 0.2);
  transition: border-color 0.2s;
}

.lang-toggle:hover {
  border-color: var(--sand);
  color: var(--sand);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .intro-grid,
  .spotlight-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .spotlight-img {
    order: -1;
  }

  .intro-img::after {
    display: none;
  }

  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(196, 163, 90, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-wa {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 6rem 1.5rem 3rem;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

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

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: fadeUp 0.6s ease-out 0.2s both; }
.hero h1 { animation: fadeUp 0.6s ease-out 0.4s both; }
.hero-tagline { animation: fadeUp 0.6s ease-out 0.6s both; }
.hero-actions { animation: fadeUp 0.6s ease-out 0.8s both; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
