/* ── ZINO PROPERTIES — style.css ── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

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

:root {
  --ink:     #131311;
  --ink2:    #222220;
  --gold:    #B8965A;
  --gold-lt: #E8D5B0;
  --gold-dk: #7A5E30;
  --cream:   #FAF8F3;
  --cream2:  #F2EFE7;
  --cream3:  #E4DDD0;
  --muted:   #7C776E;
  --green:   #2D5A3D;
  --green-lt:#E4EFE8;
  --white:   #FDFCF9;
  --r:       4px;
  --rlg:     10px;
  --nav-h:   68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream3);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.logo span { color: var(--gold); }

nav ul { list-style: none; display: flex; gap: 2.25rem; align-items: center; }
nav ul a {
  text-decoration: none; color: var(--muted);
  font-size: 15px; letter-spacing: 0.04em; font-weight: 400;
  transition: color .2s;
}
nav ul a:hover, nav ul a.active { color: var(--ink); }
nav ul a.active { font-weight: 500; }

.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--r);
  font-size: 15px !important; font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; }

.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all .3s;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--ink);
  padding: 80px 6vw 70px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.page-hero-inner { max-width: 1180px; margin: 0 auto; }
.page-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .875rem;
  display: flex; align-items: center; gap: 10px;
}
.page-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 400;
  line-height: 1.1; color: var(--white); max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: #9A958E; font-size: 18px; max-width: 520px;
  line-height: 1.8; margin-top: 1.25rem; font-weight: 300;
}

/* ─── SECTIONS ─── */
section { padding: 90px 6vw; }
.wrap { max-width: 1180px; margin: 0 auto; }

.sec-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
  display: flex; align-items: center; gap: 10px;
}
.sec-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 400;
  line-height: 1.15; margin-bottom: 1rem; color: var(--ink);
}
h2 em { font-style: italic; color: var(--gold-dk); }

.lead {
  color: var(--muted); max-width: 580px; font-size: 18px;
  line-height: 1.85; margin-bottom: 3rem; font-weight: 300;
}

.bg-cream  { background: var(--cream); }
.bg-ink    { background: var(--ink); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; text-decoration: none;
  padding: 14px 32px; border-radius: var(--r);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-gold  { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-dark  { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--gold-dk); }
.btn-outline {
  background: transparent; color: var(--muted);
  border: 1px solid rgba(154,149,142,.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── IMAGE BLOCKS ─── */
.img-cover {
  width: 100%; height: 100%; object-fit: cover;
  display: block; border-radius: var(--rlg);
}
.img-frame {
  border-radius: var(--rlg); overflow: hidden;
  position: relative;
}
.img-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--cream3);
  border-radius: var(--rlg);
  padding: 2rem 1.75rem;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }

/* ─── DIVIDER LINE ─── */
.divider {
  border: none; height: 1px;
  background: var(--cream3); margin: 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s, transform .65s; }
.reveal.on { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink2);
  padding: 4rem 6vw 2rem;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.f-brand .logo { color: var(--white); display: block; margin-bottom: 1rem; }
.f-brand p { font-size: 15px; color: #6E6B64; line-height: 1.8; }

.f-col h4 {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #888279; margin-bottom: 1.25rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.f-col a {
  text-decoration: none; color: #6E6B64;
  font-size: 15px; transition: color .2s;
}
.f-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 14px; color: #4A4843; }

/* ─── FORM ─── */
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block; font-size: 14px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--cream3); border-radius: var(--r);
  font-size: 16px; font-family: 'Raleway', sans-serif;
  background: var(--white); color: var(--ink);
  outline: none; transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { height: 120px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── STAT ROW ─── */
.stat-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--cream3);
  border-radius: var(--rlg); overflow: hidden;
}
.stat-cell {
  background: var(--white); padding: 1.5rem 1rem; text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 400; color: var(--gold);
  display: block; line-height: 1;
}
.stat-l {
  font-size: 13px; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase;
  margin-top: 6px; display: block;
}

/* ─── ZONE PILLS ─── */
.pill {
  display: inline-block; font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px; letter-spacing: .04em;
}
.pill-gold { background: #FFF3E0; color: var(--gold-dk); border: 1px solid var(--gold-lt); }
.pill-green { background: var(--green-lt); color: var(--green); border: 1px solid #C0D9C9; }
.pill-blue  { background: #EEF2FF; color: #3B5CC4; border: 1px solid #C4CEEE; }
.pill-purple{ background: #F3EEFF; color: #5B35A8; border: 1px solid #D0C0EE; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-2col   { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  section { padding: 60px 5vw; }
  .page-hero { padding: 60px 5vw 50px; }
  nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream3);
    padding: 1.75rem 6vw 2rem;
    gap: 1.5rem;
    z-index: 199;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  nav ul.open { display: flex; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-strip { grid-template-columns: 1fr; }
}
