/* Azalea — shared design system (Premium garden showroom direction) */
:root {
  --cream: #F7F1E5;
  --paper: #FCFAF4;
  --ink: #102016;
  --forest: #06150E;
  --wine: #8A0032;
  --wine-dark: #52001E;
  --gold: #C7A65B;
  --gold-light: #E9CF8F;
  --muted: #6F6A5E;
  --olive: #6F7D3C;
  --green: #2E6B3F;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Manrope', sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); }
a { text-decoration: none; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(1000px 560px at 85% -140px, rgba(233,207,143,0.45), transparent 65%), var(--cream);
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
main { flex: 1; }
.page-inner { max-width: 1320px; margin: 0 auto; padding: 64px 32px 110px; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,21,14,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(199,166,91,0.22);
}
.site-header .container { height: 80px; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 31px; font-weight: 500; color: var(--cream); letter-spacing: 1px; }
.logo-sub { font-family: var(--sans); font-size: 8.5px; font-weight: 700; letter-spacing: 3.2px; text-transform: uppercase; color: var(--gold); }
.site-nav { display: flex; gap: 26px; flex: 1; justify-content: center; align-items: center; }
.site-nav a {
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: -0.2px;
  white-space: nowrap; color: rgba(247,241,229,0.82);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: color .2s;
}
.site-nav a:hover { color: var(--gold-light); }
.site-nav a .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0; }
.site-nav a.active { color: var(--gold-light); }
.site-nav a.active .dot { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(199,166,91,0.4); background: rgba(247,241,229,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); transition: background .2s;
}
.icon-btn:hover { background: rgba(247,241,229,0.15); }
.icon-btn .badge {
  position: absolute; top: -3px; right: -3px; min-width: 16px; height: 16px;
  border-radius: 999px; background: var(--wine); color: var(--paper);
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.btn-primary {
  background: var(--wine); color: var(--paper); border-radius: 999px;
  font-family: var(--sans); font-weight: 600;
  transition: background .2s; white-space: nowrap;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--wine-dark); }
.header-cta { margin-left: 8px; padding: 13px 24px; font-size: 14px; box-shadow: 0 10px 26px rgba(138,0,50,0.35); }

/* ── Common page patterns ── */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--wine); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
h1 { font-family: var(--serif); font-size: 58px; line-height: 1; font-weight: 500; color: var(--ink); margin: 0 0 20px; }
.lead { font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 48px;
}
.page-head-text { max-width: 620px; }
.chip {
  border: 1px solid rgba(16,32,22,0.22); color: var(--ink); border-radius: 999px;
  padding: 10px 20px; white-space: nowrap; font-family: var(--sans); font-size: 13.5px;
  cursor: pointer; transition: all .2s; background: none;
}
.chip:hover { border-color: var(--wine); color: var(--wine); }
.chip.active {
  background: var(--wine); color: var(--paper); border: none;
  font-weight: 600; cursor: default;
}
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-band {
  margin-top: 72px; background: var(--forest); border: 1px solid rgba(199,166,91,0.3);
  border-radius: 28px; padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-title { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--cream); margin-bottom: 8px; }
.cta-sub { font-family: var(--sans); font-size: 15px; color: rgba(247,241,229,0.62); }
.cta-btn { padding: 16px 30px; font-size: 15px; box-shadow: 0 12px 30px rgba(138,0,50,0.35); }

/* ── Footer ── */
.site-footer { background: var(--forest); border-top: 1px solid rgba(199,166,91,0.22); }
.footer-grid {
  max-width: 1320px; margin: 0 auto; padding: 72px 32px 56px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.35fr; gap: 48px;
}
.footer-logo { display: flex; flex-direction: column; gap: 5px; line-height: 1; }
.footer-logo .logo-name { font-size: 34px; }
.footer-about {
  font-family: var(--sans); font-size: 14px; line-height: 1.7;
  color: rgba(247,241,229,0.62); max-width: 300px; margin: 20px 0 24px;
}
.footer-phone {
  display: block; font-family: var(--sans); font-size: 19px; font-weight: 700;
  color: var(--cream); margin-bottom: 8px;
}
.footer-email { font-family: var(--sans); font-size: 14px; color: var(--gold); transition: color .2s; }
.footer-email:hover { color: var(--gold-light); }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-heading {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.footer-col a:not(.footer-cta-link) {
  font-family: var(--sans); font-size: 14px; color: rgba(247,241,229,0.72); transition: color .2s;
}
.footer-col a:not(.footer-cta-link):hover { color: var(--gold-light); }
.footer-address { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: rgba(247,241,229,0.72); margin: 0 0 12px; }
.footer-hours { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: rgba(247,241,229,0.52); margin: 0 0 24px; }
.footer-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--gold-light);
  border-bottom: 1px solid rgba(199,166,91,0.45); padding-bottom: 4px; transition: color .2s;
}
.footer-cta-link:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(247,241,229,0.1); }
.footer-bottom .container {
  padding: 22px 32px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-bottom span { font-family: var(--sans); font-size: 13px; color: rgba(247,241,229,0.45); }

/* ── Photo placeholder (prototype has no real images) ── */
.ph-photo {
  position: relative; display: block;
  background:
    linear-gradient(160deg, rgba(233,207,143,0.35), rgba(167,185,138,0.3)),
    repeating-linear-gradient(45deg, #EAE0C9 0 16px, #F1E8D4 16px 32px);
}
.ph-note {
  position: absolute; bottom: 12px; left: 16px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; color: #5F5B4E;
  background: rgba(252,250,244,0.9); padding: 5px 10px; border-radius: 999px;
}

/* ── Responsive (shared) ── */
@media (max-width: 1060px) {
  .site-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  h1 { font-size: 44px; }
  .page-inner { padding: 48px 24px 80px; }
  .cta-band { padding: 36px 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .header-cta { display: none; }
  h1 { font-size: 38px; }
}
