/* ═══════════════════════════════════════
   UNO MAS V2 — SHARED STYLES
   Warm white background, green + black
═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg:         #f5f4f0;
  --white:      #ffffff;
  --black:      #0f0f0f;
  --green:      #4C9A2A;
  --green-lite: #eef7e8;
  --green-mid:  rgba(76,154,42,0.12);
  --gold:       #9a7a3a;
  --muted:      #999;
  --mid:        #555;
  --border:     rgba(0,0,0,0.07);
  --border-md:  rgba(0,0,0,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-md);
}

.nav-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--black);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

.nav-cta {
  padding: 10px 22px;
  background: var(--green);
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(76,154,42,0.3); }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: lowercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--green); }

/* ── COMMON LAYOUT ── */
.page-top { padding-top: 64px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 48px; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}

.h-display {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 0.95;
}

.h-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
}

.h-serif em { font-style: italic; color: var(--green); }

.body-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--mid);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'League Spartan', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(76,154,42,0.32); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover { border-color: #fff; }

/* ── SECTION SPACING ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* ── DIVIDER ── */
.green-line {
  width: 48px; height: 3px;
  background: var(--green);
  margin-bottom: 24px;
}

.green-line-full {
  width: 100%; height: 1px;
  background: var(--green);
  opacity: 0.2;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 28px 32px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 14px;
}

.testimonial-cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── INCLUDE LIST ── */
.include-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.55;
}

.include-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FORM ── */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-md);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }

.form-group textarea { height: 100px; resize: vertical; }

/* ── PHOTO GRID ── */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.photo-grid-2 img,
.photo-grid-3 img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.span-2 { grid-column: span 2; height: 360px !important; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 56px 48px 40px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: lowercase;
  color: #f5f4f0;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245,244,240,0.4);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 16px; flex-wrap: wrap; }

.footer-social a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.7; }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.3);
  margin-bottom: 16px;
}

.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-list a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,244,240,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(245,244,240,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 11px; color: rgba(245,244,240,0.25); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .photo-grid-2, .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .span-2 { grid-column: span 2; }
}
