@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;900&family=Alex+Brush&family=Inter:wght@400;500;600&display=swap');

:root {
  --gold: #c9a227;
  --gold-bright: #e0bb3f;
  --gold-dark: #96791c;
  --red: #b81f2d;
  --red-dark: #8f1622;
  --black: #15120f;
  --charcoal: #232019;
  --ivory: #faf6ec;
  --ivory-dim: #f0e9d8;
  --cream-line: #e3d9bd;

  --bg: #faf6ec;
  --bg-alt: #f0e9d8;
  --surface: #ffffff;
  --border: #e3d9bd;
  --text: #241f18;
  --text-soft: #5b5344;
}

[data-theme="dark"] {
  --bg: #17130e;
  --bg-alt: #1e1911;
  --surface: #241e15;
  --border: #3a3020;
  --text: #f3ecd9;
  --text-soft: #c7bda2;
}

* { box-sizing: border-box; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  transition: background-color 0.2s ease, color 0.2s ease;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-weight: 900; }
h2 { font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-soft); transition: color 0.2s ease; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-dark);
}

/* ---------- Logo (real artwork, transparent) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 86px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-footer .logo img { height: 68px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 18, 15, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  height: 108px;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}

@media (max-width: 860px) {
  .site-header .container {
    height: auto;
    justify-content: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .logo img { height: 60px; }
  .nav { justify-content: center; }
}

.nav a {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--gold-bright); }

.nav a.btn { color: var(--black); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(250, 246, 236, 0.25);
  color: var(--ivory-dim);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.theme-toggle .icon-sun { display: none; }

[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.btn {
  display: inline-block;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 3px;
  border: 1px solid var(--gold);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover { background: var(--gold-bright); }

.btn--outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250, 246, 236, 0.4);
}

.btn--outline:hover { background: rgba(250, 246, 236, 0.08); color: var(--gold-bright); border-color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(201,162,39,0.16), transparent 55%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--ivory);
  padding: 96px 0 88px;
  text-align: center;
}

.hero .eyebrow { color: var(--gold-bright); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ivory);
  margin: 0.3em 0 0.4em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 2em;
  color: rgba(250, 246, 236, 0.78);
  font-size: 1.08rem;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }

section.alt { background: var(--bg-alt); transition: background-color 0.2s ease; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 880px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--gold-dark);
}

.card h3 { font-size: 1.15rem; margin-bottom: 0.4em; }

.card p { margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Store card ---------- */
.store-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.store-card img { width: 168px; }

.store-card .status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(184,31,45,0.08);
  border: 1px solid rgba(184,31,45,0.25);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.store-card--soon {
  border-style: dashed;
  opacity: 0.7;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
}

@media (max-width: 640px) {
  .store-card { flex-direction: column; text-align: center; }
}

/* ---------- Stat row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat .num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--gold-dark);
}

.stat .label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); }

.cta-band .btn { background: var(--ivory); color: var(--black); border-color: var(--ivory); }
.cta-band .btn:hover { background: #fff; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 18px 0;
}

.breadcrumb a:hover { color: var(--red); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(250, 246, 236, 0.7);
  padding: 56px 0 32px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer .col h4 {
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer .col a, .site-footer .col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(250, 246, 236, 0.65);
}

.site-footer .col a:hover { color: var(--gold-bright); }

.site-footer .bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,236,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(250,246,236,0.4);
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 120px; }

.badge-heritage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-soft);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface);
}

/* ---------- FAQ accordion ---------- */
.faq-group { max-width: 760px; margin: 0 auto 40px; }

.faq-group-title {
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 18px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dark);
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item .faq-answer { padding: 0 0 18px; margin: 0; }

/* ---------- Area / suburb grid ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 780px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

.area-chip {
  display: block;
  text-align: center;
  padding: 14px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.2s ease;
}

.area-chip:hover { border-color: var(--red); color: var(--red); }
