/* Hero Section — Acreways Living */

.aw-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -80px; /* pull up into body padding */
  padding-top: 80px; /* push content below fixed nav */
}
.aw-hero__bg {
  position: absolute;
  inset: 0; z-index: 0;
}
.aw-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.aw-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,43,76,0.88) 0%, rgba(15,43,76,0.65) 50%, rgba(15,43,76,0.80) 100%);
}
.aw-hero__content {
  position: relative; z-index: 10;
  padding: 60px 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.aw-hero__label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #daa520;
  background: rgba(201,147,58,0.15);
  border: 1px solid rgba(201,147,58,0.4);
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}
.aw-hero__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 26px; font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
}
.aw-hero__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
.aw-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.aw-hero__buttons a { width: fit-content; }
/* Hero primary button */
.aw-hero__btn--gold {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content;
  background: #daa520;
  border: none; border-radius: 0 0.75rem 0.75rem 0;
  padding: 7px 7px 7px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff; text-decoration: none;
  cursor: pointer; transition: box-shadow 0.3s;
}
.aw-hero__btn--gold::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: #0f2b4c; z-index: 1;
}
.aw-hero__btn--gold::after {
  content: '';
  position: absolute; inset: 0;
  background: #0f2b4c;
  width: 0; transition: width 0.45s; z-index: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.aw-hero__btn--gold:hover::after { width: 100%; }
.aw-hero__btn--gold:hover { box-shadow: 0 10px 22px rgba(15,43,76,0.4); }
.aw-hero__btn--gold .btn-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff; white-space: nowrap;
  position: relative; z-index: 1;
}
.aw-hero__btn--gold .btn-circle {
  flex: none; width: 32px; height: 32px;
  border-radius: 50%; background: #0f2b4c;
  display: grid; place-items: center;
  position: relative; z-index: 1;
  transition: background 0.35s;
}
.aw-hero__btn--gold:hover .btn-circle { background: #daa520; }
.aw-hero__btn--gold .btn-circle svg {
  width: 14px; height: 14px;
  stroke: #ffffff; stroke-width: 2.3;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
  transition: transform 0.35s;
}
.aw-hero__btn--gold:hover .btn-circle svg { transform: rotate(45deg); }

/* Hero secondary button */
.aw-hero__btn--outline {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 6px 6px 6px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff; text-decoration: none;
  cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s;
}
.aw-hero__btn--outline:hover {
  border-color: #ffffff;
  box-shadow: 0 10px 22px rgba(255,255,255,0.15);
}
.aw-hero__btn--outline .btn-label { white-space: nowrap; color: #ffffff; }
.aw-hero__btn--outline .btn-circle {
  flex: none; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  transition: background 0.35s;
}
.aw-hero__btn--outline:hover .btn-circle { background: rgba(255,255,255,0.3); }
.aw-hero__btn--outline .btn-circle svg {
  width: 14px; height: 14px;
  stroke: #ffffff; stroke-width: 2.3;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
  transition: transform 0.35s;
}
.aw-hero__btn--outline:hover .btn-circle svg { transform: rotate(45deg); }
.aw-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.aw-hero__stat {
  width: 100%;
  text-align: center;
  padding: 0.5rem 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
}
.aw-hero__stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 800;
  color: #e8b96a; line-height: 1.1; margin: 0;
}
.aw-hero__stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin: 3px 0 0 0;
}

/* ── 480px+ ── */
@media (min-width: 480px) {
  .aw-hero__heading { font-size: 32px; }
  .aw-hero__label { font-size: 11px; }
  .aw-hero__sub { font-size: 15px; }
  .aw-hero__stat-num { font-size: 20px; }
  .aw-hero__stat-label { font-size: 10px; }
  .aw-hero__stats { flex-direction: row; justify-content: center; gap: 0.75rem; }
  .aw-hero__stat { flex: 1 1 0; width: auto; min-width: 0; padding: 0.6rem 0.75rem; }
}

/* ── 640px+ ── */
@media (min-width: 640px) {
  .aw-hero__content { padding: 60px 2rem; }
  .aw-hero__heading { font-size: 40px; }
  .aw-hero__label { font-size: 12px; margin-bottom: 1.25rem; }
  .aw-hero__sub { font-size: 16px; margin-bottom: 2rem; }
  .aw-hero__buttons { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .aw-hero__btn--gold { padding: 9px 9px 9px 26px; font-size: 13px; gap: 12px; }
  .aw-hero__btn--gold .btn-label { font-size: 13px; }
  .aw-hero__btn--gold .btn-circle { width: 36px; height: 36px; }
  .aw-hero__btn--outline { padding: 8px 8px 8px 26px; font-size: 13px; gap: 12px; }
  .aw-hero__btn--outline .btn-circle { width: 36px; height: 36px; }
  .aw-hero__stats { gap: 1rem; margin-top: 2.5rem; }
  .aw-hero__stat { padding: 0.75rem 1rem; min-width: 100px; }
  .aw-hero__stat-num { font-size: 22px; }
  .aw-hero__stat-label { font-size: 11px; }
}

/* ── 768px+ ── */
@media (min-width: 768px) {
  .aw-hero__heading { font-size: 54px; }
  .aw-hero__sub { font-size: 18px; margin-bottom: 2.5rem; }
  .aw-hero__btn { padding: 1rem 3rem; font-size: 16px; }
  .aw-hero__stat-num { font-size: 26px; }
}

/* ── 1024px+ ── */
@media (min-width: 1024px) {
  .aw-hero__content { padding: 60px 1.5rem; }
}

/* ── 1280px+ ── */
@media (min-width: 1280px) {
  .aw-hero { min-height: 100svh; }
  .aw-hero__content { padding: 60px 4rem; }
}
