@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --sand: #F5EFE6;
  --cream: #FAF7F2;
  --terracotta: #C17A4A;
  --terracotta-dark: #9A5E34;
  --deep: #1C1712;
  --mid: #4A3F35;
  --light: #8A7B6E;
  --white: #FFFFFF;
  --gold: #C9A96E;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--deep); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193,122,74,0.15);
  transition: all 0.3s ease;
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 0.04em; color: var(--deep); text-decoration: none; }
.nav-logo span { color: var(--terracotta); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-cta { background: var(--terracotta); color: white; padding: 0.6rem 1.6rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: background 0.2s; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--terracotta-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep); text-decoration: none; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--deep); }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 10rem 4rem 5rem;
  background: var(--deep);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://placehold.co/1600x400/1C1712/2C2218?text=+') center/cover;
  opacity: 0.4;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.page-hero-tag::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: white; line-height: 1.1; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 520px; margin-top: 1rem; line-height: 1.8; }

/* BREADCRUMB */
.breadcrumb { padding: 1rem 4rem; background: var(--sand); font-size: 0.78rem; color: var(--light); display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: var(--terracotta); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* SECTIONS */
section { padding: 5rem 4rem; }
.section-tag { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.section-tag::before { content: ''; width: 1.5rem; height: 1px; background: var(--terracotta); }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; line-height: 1.15; color: var(--deep); }
h2 em { font-style: italic; color: var(--terracotta); }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--deep); }

/* BUTTONS */
.btn-primary { background: var(--terracotta); color: white; padding: 0.9rem 2.2rem; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { border: 1.5px solid var(--terracotta); color: var(--terracotta); padding: 0.9rem 2.2rem; text-decoration: none; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--terracotta); color: white; }

/* FOOTER */
footer { background: var(--deep); color: rgba(255,255,255,0.4); padding: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-f { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: white; letter-spacing: 0.06em; display: block; margin-bottom: 1rem; }
.footer-brand .logo-f span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col p { font-size: 0.85rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 99; background: #25D366; color: white; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* CARDS */
.card { background: white; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,23,18,0.12); }
.card-img { width: 100%; object-fit: cover; display: block; }
.card-body { padding: 1.8rem; }
.card-status { display: inline-block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 0.3rem 0.8rem; margin-bottom: 0.8rem; }
.status-ongoing { background: #FFF3E0; color: #E65100; }
.status-upcoming { background: #E8F5E9; color: #2E7D32; }
.status-completed { background: #F3E5F5; color: #6A1B9A; }

/* FORMS */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { padding: 0.85rem 1rem; border: 1px solid rgba(193,122,74,0.25); background: white; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--deep); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--terracotta); color: white; padding: 1rem 2rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: background 0.2s; }
.form-submit:hover { background: var(--terracotta-dark); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .breadcrumb { padding: 0.8rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
