/* ── Aurelian Holdings Co. — Site Styles ──────────────────────────────────── */

:root {
  --gold:         #D4A017;
  --gold-light:   #E8C84A;
  --gold-deep:    #B8860B;
  --black:        #0A0A0A;
  --charcoal:     #1A1A1A;
  --parchment:    #F5EFE0;
  --travertine:   #E8E1D4;
  --ink:          #2C2416;
  --red-clay:     #9C4A2A;
  --forest:       #2F4A3A;
  --bronze:       #8B6F47;
  --white:        #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', Arial, sans-serif;

  --max-w:  1100px;
  --text-w: 720px;
  --gap:    2rem;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--ink); background: var(--white); line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container     { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container--text { max-width: var(--text-w); margin: 0 auto; padding: 0 1.5rem; }
.section       { padding: 5rem 0; }
.section--dark  { background: var(--black); color: var(--white); }
.section--parchment { background: var(--parchment); }
.section--travertine { background: var(--travertine); }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
.nav {
  background: var(--black);
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav__logo img  { height: 36px; width: auto; }
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-light); }

/* Mobile nav */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: #ccc; margin: 5px 0; transition: 0.2s; }

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links  {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid #1f1f1f;
    padding: 1rem 1.5rem;
  }
  .nav__links.open { display: flex; }
  .nav__links li   { padding: 0.6rem 0; border-bottom: 1px solid #1f1f1f; }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a    { font-size: 0.85rem; }
  .nav__cta { font-size: 0.8rem; margin-top: 0.5rem; display: inline-block; }
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--black) url('assets/hero-property.jpg') center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 7rem 1.5rem 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}
.hero > * { position: relative; }
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); max-width: 700px; margin: 0 auto 1.25rem; }
.hero__sub {
  font-size: 1.05rem;
  color: #bbb;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem auto;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--charcoal); }
.btn--dark {
  background: var(--charcoal);
  color: var(--gold);
}
.btn--dark:hover { background: var(--black); }

/* ── Trust strip ────────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--charcoal);
  padding: 1.5rem 1.5rem;
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-strip__item {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Divider rule ───────────────────────────────────────────────────────────── */
.rule { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.rule--center { margin: 1.5rem auto; }

/* ── Two-column grid ────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* ── Offer compare block ────────────────────────────────────────────────────── */
.offer-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--travertine);
}
.offer-compare__col {
  padding: 2.5rem 2rem;
}
.offer-compare__col:first-child {
  border-right: 1px solid var(--travertine);
}
.offer-compare__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}
.offer-compare__headline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
@media (max-width: 580px) {
  .offer-compare { grid-template-columns: 1fr; }
  .offer-compare__col:first-child { border-right: none; border-bottom: 1px solid var(--travertine); }
}

/* ── Steps ──────────────────────────────────────────────────────────────────── */
.steps { list-style: none; counter-reset: steps; }
.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.steps li::before {
  content: counter(steps);
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.25rem;
}
.steps li h3 { margin-bottom: 0.4rem; }

/* ── FAQ accordion ──────────────────────────────────────────────────────────── */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--travertine); }
.faq-item:first-child { border-top: 1px solid var(--travertine); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-q__icon::before,
.faq-q__icon::after {
  content: '';
  position: absolute;
  background: var(--bronze);
  border-radius: 1px;
  transition: transform 0.2s;
}
.faq-q__icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-q__icon::after  { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.open .faq-q__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact form ───────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--travertine);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B6F47' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: 0.85rem; color: var(--bronze); margin-top: 1rem; }
.form-success {
  display: none;
  padding: 2rem;
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
}

/* ── CTA band ───────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: #bbb; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--travertine);
  border-top: 1px solid #d5cfc7;
  padding: 3rem 1.5rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer__brand { font-family: var(--font-serif); }
.footer__brand h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 0.25rem; }
.footer__brand p  { font-size: 0.85rem; color: var(--bronze); margin-bottom: 0.25rem; }
.footer__brand a  { color: var(--bronze); text-decoration: none; }
.footer__brand a:hover { color: var(--gold-deep); }
.footer__legal {
  font-size: 0.78rem;
  color: var(--bronze);
  line-height: 1.7;
}
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

/* ── Inline article styles ──────────────────────────────────────────────────── */
.article h2 { margin: 2.5rem 0 0.75rem; }
.article h3 { margin: 2rem 0 0.5rem; font-size: 1.1rem; color: var(--bronze); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.8rem; }
.article p  { color: var(--charcoal); font-size: 0.975rem; line-height: 1.8; }
.article ul, .article ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article li { margin-bottom: 0.4rem; font-size: 0.975rem; line-height: 1.75; color: var(--charcoal); }
.article .example-box {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.article .example-box table { width: 100%; border-collapse: collapse; }
.article .example-box td { padding: 0.4rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--travertine); }
.article .example-box tr:last-child td { border-bottom: none; font-weight: 600; }

/* ── Situations list ────────────────────────────────────────────────────────── */
.situations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0;
}
.situations li {
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--travertine);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* ── Page header (interior pages) ──────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem 3.5rem;
}
.page-hero .container--text { text-align: left; }
.page-hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: #bbb; max-width: 540px; font-size: 1.05rem; }

/* ── Utility ────────────────────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-bronze { color: var(--bronze); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
