/* ─── CATES CAFÉ — Global Stylesheet ─── */

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

:root {
  --cream:        #FAF6F0;
  --warm-white:   #FFF9F2;
  --terracotta:   #B85C38;
  --terra-dark:   #8B3E22;
  --terra-light:  #E07B55;
  --forest:       #2C4A2E;
  --forest-mid:   #3D6641;
  --gold:         #C8963E;
  --charcoal:     #1E1E1E;
  --mid-grey:     #5C5C5C;
  --light-grey:   #E8E2D9;
  --border:       #D9D2C8;
}

html { scroll-behavior: smooth; }

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

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.announcement strong { color: var(--gold); }

/* ─── NAVIGATION ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 2px solid var(--forest);
  color: var(--forest);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--forest); color: #fff; }

.btn-white {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: #fff;
  color: var(--terracotta);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ─── SECTION BASE ─── */
section { padding: 6rem 2rem; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }

.section-body {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 540px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 1.5rem 0 2rem;
}

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.split-image:hover img { transform: scale(1.03); }

.split-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.split-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 2px solid var(--forest);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.split-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ─── CTA BANNER ─── */
.cta-section {
  background: var(--terracotta);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-section .section-title { color: #fff; }
.cta-section .section-title em { color: rgba(255,255,255,0.75); }
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1200&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--gold); }
.page-hero .section-title { color: #fff; }
.page-hero .section-title em { color: var(--terra-light); }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand-name span { color: var(--terra-light); }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .split.reverse .split-image { order: -1; }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
