/* ═══════════════════════════════════════════════════
   AVELLA TOWNS — Global Widget Stylesheet
   v1.0.0
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --av-wine:        #7A1A2E;
  --av-wine-dark:   #4D0F1C;
  --av-wine-deep:   #360A13;
  --av-wine-mid:    #9B2540;
  --av-wine-soft:   #C15070;
  --av-gold:        #C69A4A;
  --av-gold-light:  #DDB870;
  --av-gold-pale:   #EDD9A8;
  --av-cream:       #FAF6F1;
  --av-ivory:       #F3EBE0;
  --av-warm-white:  #FFFCF9;
  --av-charcoal:    #1C1014;
  --av-text-dark:   #2C1218;
  --av-text-mid:    #624050;
  --av-text-soft:   #9A7080;
  --av-border:      rgba(122,26,46,0.12);
}

/* ── Reset helpers ── */
.avella-widget *, .avella-widget *::before, .avella-widget *::after { box-sizing: border-box; }
.avella-widget { font-family: 'Outfit', sans-serif; }
.avella-widget img { max-width: 100%; display: block; }

/* ── Tags / eyebrows ── */
.av-tag {
  display: flex; align-items: center; gap: .8rem;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--av-wine); font-weight: 600; margin-bottom: 1rem;
}
.av-tag::before { content: ''; width: 28px; height: 1px; background: var(--av-wine); }
.av-tag.light { color: var(--av-gold); }
.av-tag.light::before { background: var(--av-gold); }
.av-tag.center { justify-content: center; }

/* ── Headings ── */
.av-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; line-height: 1.1;
  color: var(--av-wine-dark); margin-bottom: .2em;
}
.av-h2 em { font-style: italic; color: var(--av-wine-mid); }
.av-h2.light { color: #fff; }
.av-h2.light em { color: var(--av-gold-light); }

/* ── Buttons ── */
.av-btn {
  display: inline-block; padding: .9rem 2.4rem;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; transition: background .25s, transform .2s; cursor: pointer; border: none;
}
.av-btn-wine { background: var(--av-wine); color: #fff; border: 1px solid var(--av-wine-mid); }
.av-btn-wine:hover, .av-btn-wine:focus { background: var(--av-wine-mid); transform: translateY(-2px); color: #fff; }
.av-btn-ghost { border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent; }
.av-btn-ghost:hover { border-color: var(--av-gold); color: var(--av-gold-light); }
.av-btn-gold { background: var(--av-gold); color: var(--av-wine-deep); border: none; }
.av-btn-gold:hover { background: var(--av-gold-light); color: var(--av-wine-deep); }

/* ── Scroll reveal ── */
.av-r { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.av-r.av-v { opacity: 1; transform: none; }
.av-d1 { transition-delay: .1s; }
.av-d2 { transition-delay: .2s; }
.av-d3 { transition-delay: .3s; }
.av-d4 { transition-delay: .4s; }
.av-d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════
   1. HERO
═══════════════════════════════════════ */
.av-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.av-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.av-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(54,10,19,.82) 0%, rgba(77,15,28,.65) 45%, rgba(20,5,10,.4) 100%);
}
.av-hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent 0, transparent 60px, rgba(198,154,74,.025) 60px, rgba(198,154,74,.025) 61px);
}
.av-hero-content { position: relative; z-index: 2; padding: 0 3rem 5.5rem; max-width: 860px; }
.av-hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--av-gold-light); font-weight: 500; margin-bottom: 1.6rem;
}
.av-hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--av-gold); }
.av-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 400; line-height: 1; color: #fff; letter-spacing: -.01em; margin-bottom: .4em;
}
.av-hero h1 em { font-style: italic; color: var(--av-gold-light); }
.av-hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.72); max-width: 520px; margin-bottom: 2.5rem;
}
.av-hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.av-pill {
  border: 1px solid rgba(198,154,74,.4); background: rgba(198,154,74,.08);
  color: var(--av-gold-pale); padding: .38rem 1rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.av-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.av-hero-statbar {
  position: absolute; bottom: 0; right: 0; z-index: 3;
  display: flex; background: rgba(54,10,19,.92); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(198,154,74,.2); border-left: 1px solid rgba(198,154,74,.2);
}
.av-stat-box { padding: 1.4rem 2rem; border-right: 1px solid rgba(198,154,74,.12); text-align: center; }
.av-stat-box:last-child { border-right: none; }
.av-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: var(--av-gold); display: block; line-height: 1; }
.av-stat-lbl { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .35rem; display: block; }

/* ═══════════════════════════════════════
   2. INTRO STRIP
═══════════════════════════════════════ */
.av-intro-strip { background: var(--av-wine-deep); padding: 2rem 0; }
.av-intro-strip-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 3rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.av-intro-quote {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic;
  color: var(--av-gold-pale); white-space: nowrap;
}
.av-intro-dot { color: rgba(198,154,74,.3); font-size: 1.5rem; }
.av-intro-desc { font-size: .88rem; color: rgba(255,255,255,.55); font-weight: 300; flex: 1; min-width: 260px; line-height: 1.6; }
.av-intro-desc strong { color: var(--av-gold-light); font-weight: 500; }

/* ═══════════════════════════════════════
   3. ABOUT
═══════════════════════════════════════ */
.av-about { background: var(--av-cream); padding: 7rem 0; }
.av-about-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.av-about-img-wrap { position: relative; }
.av-about-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.av-about-badge {
  position: absolute; bottom: -1.8rem; right: -1.8rem;
  background: var(--av-wine); color: #fff; padding: 1.6rem 2rem; text-align: center;
}
.av-about-badge strong {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400;
  display: block; line-height: 1; color: var(--av-gold-light);
}
.av-about-badge span { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; opacity: .7; }
.av-about-text { padding-top: 1rem; }
.av-about-text .av-h2 { margin-bottom: 1.5rem; }
.av-about-text p { font-size: .97rem; line-height: 1.9; color: var(--av-text-mid); margin-bottom: 1.3rem; font-weight: 300; }
.av-about-text p strong { color: var(--av-text-dark); font-weight: 500; }
.av-about-list { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.av-about-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .55rem 0; border-bottom: 1px solid var(--av-border);
  font-size: .9rem; color: var(--av-text-mid); font-weight: 300; line-height: 1.4;
}
.av-about-list li::before { content: '›'; color: var(--av-wine); font-weight: 600; font-size: 1rem; flex-shrink: 0; }

/* ═══════════════════════════════════════
   4. STATS BAR
═══════════════════════════════════════ */
.av-stats-bar { background: var(--av-wine); }
.av-stats-bar-grid { display: grid; grid-template-columns: repeat(5, 1fr); max-width: 1180px; margin: 0 auto; }
.av-sb-item { padding: 2.2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.08); text-align: center; transition: background .3s; }
.av-sb-item:hover { background: rgba(255,255,255,.06); }
.av-sb-item:last-child { border-right: none; }
.av-sb-icon { font-size: 1.3rem; margin-bottom: .7rem; display: block; opacity: .8; }
.av-sb-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 400; color: var(--av-gold-light); display: block; line-height: 1; }
.av-sb-key { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .4rem; display: block; }

/* ═══════════════════════════════════════
   5. GALLERY
═══════════════════════════════════════ */
.av-gallery { background: var(--av-ivory); padding: 6rem 0; }
.av-gallery-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-gallery-header { margin-bottom: 2.5rem; }
.av-gallery-header p { font-size: .9rem; color: var(--av-text-soft); font-weight: 300; max-width: 480px; }
.av-gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 8px; }
.av-g-cell { overflow: hidden; position: relative; background: var(--av-wine-dark); }
.av-g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.av-g-cell:hover img { transform: scale(1.05); }
.av-g-cell-tall { grid-row: 1 / 3; }
.av-g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(54,10,19,.85), transparent);
  padding: 1.5rem 1.2rem .8rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--av-gold-pale); opacity: 0; transition: opacity .3s;
}
.av-g-cell:hover .av-g-label { opacity: 1; }

/* ═══════════════════════════════════════
   6. FEATURES
═══════════════════════════════════════ */
.av-features { background: var(--av-warm-white); padding: 7rem 0; }
.av-features-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-features-head { margin-bottom: 3.5rem; max-width: 560px; }
.av-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(122,26,46,.08); }
.av-feat-card { background: var(--av-warm-white); padding: 2.6rem 2rem; position: relative; overflow: hidden; transition: background .3s; }
.av-feat-card::after { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--av-wine); transition: width .45s; }
.av-feat-card:hover { background: var(--av-cream); }
.av-feat-card:hover::after { width: 100%; }
.av-feat-n { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 400; color: rgba(122,26,46,.07); line-height: 1; margin-bottom: .8rem; display: block; }
.av-feat-t { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--av-wine-dark); font-weight: 600; margin-bottom: .7rem; }
.av-feat-d { font-size: .88rem; line-height: 1.78; color: var(--av-text-soft); font-weight: 300; }

/* ═══════════════════════════════════════
   7. FINISHES
═══════════════════════════════════════ */
.av-finishes { background: var(--av-wine-dark); padding: 7rem 0; }
.av-finishes-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-finishes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.av-fin-list { list-style: none; margin-top: 2.5rem; padding: 0; }
.av-fin-list li { display: flex; gap: 1rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid rgba(198,154,74,.1); font-size: .9rem; color: rgba(255,255,255,.72); font-weight: 300; line-height: 1.5; }
.av-fin-list li::before { content: '—'; color: var(--av-gold); flex-shrink: 0; }
.av-fin-img-col { position: sticky; top: 7rem; }
.av-fin-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.av-fin-cap { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.25); text-align: center; margin-top: .8rem; }

/* ═══════════════════════════════════════
   8. SITE PLAN
═══════════════════════════════════════ */
.av-siteplan { background: var(--av-cream); padding: 7rem 0; }
.av-siteplan-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.av-sp-desc { font-size: .95rem; line-height: 1.88; color: var(--av-text-mid); font-weight: 300; margin-top: 1.5rem; margin-bottom: 0; }
.av-sp-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.5rem; }
.av-sp-card { border: 1px solid rgba(122,26,46,.14); padding: 2rem 1.5rem; text-align: center; position: relative; transition: border-color .3s; }
.av-sp-card:hover { border-color: var(--av-wine); }
.av-sp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--av-wine); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.av-sp-card:hover::before { transform: scaleX(1); }
.av-sp-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 400; color: var(--av-wine-dark); display: block; line-height: 1; }
.av-sp-lbl { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--av-text-soft); margin-top: .4rem; display: block; }
.av-sp-img-wrap { position: relative; }
.av-sp-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.av-sp-img-tag { position: absolute; bottom: 0; left: 0; background: var(--av-wine); color: var(--av-gold-pale); padding: 1rem 1.5rem; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }

/* ═══════════════════════════════════════
   9. LOCATION
═══════════════════════════════════════ */
.av-location { background: var(--av-wine-deep); padding: 7rem 0; }
.av-location-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-loc-header { text-align: center; margin-bottom: 4rem; }
.av-loc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(198,154,74,.08); }
.av-loc-card { background: var(--av-wine-dark); padding: 2.4rem 2rem; transition: background .3s; }
.av-loc-card:hover { background: rgba(122,26,46,.9); }
.av-loc-ico { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.av-loc-t { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--av-gold); font-weight: 600; margin-bottom: .9rem; }
.av-loc-ul { list-style: none; padding: 0; }
.av-loc-ul li { font-size: .86rem; color: rgba(255,255,255,.62); padding: .32rem 0 .32rem 1rem; position: relative; font-weight: 300; line-height: 1.45; }
.av-loc-ul li::before { content: '›'; position: absolute; left: 0; color: var(--av-wine-soft); }

/* ═══════════════════════════════════════
   10. INVESTMENT
═══════════════════════════════════════ */
.av-investment { background: var(--av-ivory); padding: 7rem 0; }
.av-investment-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-invest-intro { font-size: .95rem; line-height: 1.85; color: var(--av-text-mid); font-weight: 300; max-width: 640px; margin-top: 1rem; }
.av-invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.av-inv-card { padding: 2.5rem; background: var(--av-warm-white); border-top: 3px solid var(--av-wine); }
.av-inv-title { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--av-wine); font-weight: 600; margin-bottom: 1rem; }
.av-inv-card p { font-size: .9rem; line-height: 1.85; color: var(--av-text-mid); font-weight: 300; margin: 0; }
.av-inv-card p strong { color: var(--av-text-dark); font-weight: 500; }

/* ═══════════════════════════════════════
   11. DEPOSIT
═══════════════════════════════════════ */
.av-deposit { background: var(--av-wine-deep); padding: 7rem 0; }
.av-deposit-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-dep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.av-dep-desc { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.45); margin-top: 1rem; font-weight: 300; }
.av-dep-tbl { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.av-dep-tbl tr { border-bottom: 1px solid rgba(198,154,74,.08); }
.av-dep-tbl tr:last-child { border: none; }
.av-dep-tbl td { padding: .95rem 0; font-size: .88rem; color: rgba(255,255,255,.65); font-weight: 300; }
.av-dep-tbl td:last-child { text-align: right; color: var(--av-gold-light); font-weight: 500; }
.av-dep-total { margin-top: 1.5rem; padding: 1.2rem 1.5rem; background: rgba(198,154,74,.1); border: 1px solid rgba(198,154,74,.22); display: flex; justify-content: space-between; align-items: center; }
.av-dep-total span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.av-dep-total strong { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--av-gold); }
.av-inc-list { list-style: none; margin-top: 1.5rem; padding: 0; }
.av-inc-list li { display: flex; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(198,154,74,.07); font-size: .88rem; color: rgba(255,255,255,.68); font-weight: 300; line-height: 1.5; }
.av-inc-list li::before { content: '✓'; color: var(--av-gold); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════
   12. BUILDER
═══════════════════════════════════════ */
.av-builder { background: var(--av-cream); padding: 7rem 0; }
.av-builder-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-builder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.av-builder-img { position: relative; }
.av-builder-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.av-builder-img-tag { position: absolute; top: -1.5rem; right: -1.5rem; background: var(--av-wine-dark); padding: 1.5rem 2rem; text-align: center; }
.av-builder-img-tag strong { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; color: var(--av-gold-light); display: block; line-height: 1; }
.av-builder-img-tag span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; display: block; }
.av-builder-bstats { display: flex; gap: 2rem; margin-top: 2rem; }
.av-bstat { flex: 1; text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--av-border); }
.av-bstat-n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--av-wine-dark); display: block; line-height: 1; }
.av-bstat-l { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--av-text-soft); margin-top: .4rem; display: block; }
.av-builder-text p { font-size: .93rem; line-height: 1.88; color: var(--av-text-mid); font-weight: 300; margin-bottom: 1.1rem; }
.av-builder-text p strong { color: var(--av-text-dark); font-weight: 500; }

/* ═══════════════════════════════════════
   13. FAQ
═══════════════════════════════════════ */
.av-faq { background: var(--av-warm-white); padding: 7rem 0; }
.av-faq-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-faq-header { text-align: center; margin-bottom: .5rem; }
.av-faq-wrap { max-width: 800px; margin: 3rem auto 0; }
.av-faq-item { border-bottom: 1px solid rgba(122,26,46,.1); }
.av-faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 500;
  color: var(--av-text-dark); text-align: left; letter-spacing: .01em; transition: color .2s;
}
.av-faq-btn:hover { color: var(--av-wine); }
.av-faq-icon { font-size: 1.3rem; color: var(--av-wine); flex-shrink: 0; margin-left: 1rem; transition: transform .3s; }
.av-faq-item.open .av-faq-icon { transform: rotate(45deg); }
.av-faq-ans { font-size: .9rem; line-height: 1.82; color: var(--av-text-mid); font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.av-faq-item.open .av-faq-ans { max-height: 400px; padding-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   14. REGISTER
═══════════════════════════════════════ */
.av-register { background: var(--av-wine-dark); padding: 7rem 0; overflow: hidden; position: relative; }
.av-register::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(198,154,74,.06), transparent 70%); pointer-events: none; }
.av-register-inner { max-width: 1180px; margin: 0 auto; padding: 0 3rem; }
.av-reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.av-reg-text p { font-size: .93rem; line-height: 1.85; color: rgba(255,255,255,.58); font-weight: 300; margin-bottom: 1.5rem; }
.av-vip-box { background: rgba(198,154,74,.07); border: 1px solid rgba(198,154,74,.18); padding: 1.8rem; margin-bottom: 2rem; }
.av-vip-box-title { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--av-gold); margin-bottom: 1rem; font-weight: 600; }
.av-vip-box ul { list-style: none; padding: 0; }
.av-vip-box li { font-size: .84rem; color: rgba(255,255,255,.65); padding: .28rem 0; font-weight: 300; }
.av-vip-box li::before { content: '✓  '; color: var(--av-gold); font-weight: 700; }
.av-reg-contacts a { display: flex; align-items: center; gap: .8rem; color: rgba(255,255,255,.5); font-size: .85rem; text-decoration: none; padding: .4rem 0; transition: color .2s; font-weight: 300; }
.av-reg-contacts a:hover { color: var(--av-gold-light); }
.av-reg-form { background: rgba(255,255,255,.03); border: 1px solid rgba(198,154,74,.14); padding: 2.5rem; }
.av-form-title { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--av-gold); margin-bottom: 1.6rem; }
.av-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.av-fg { margin-bottom: 1.1rem; }
.av-fg label { display: block; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .5rem; }
.av-fg input, .av-fg select, .av-fg textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(198,154,74,.18);
  color: rgba(255,255,255,.85); padding: .75rem 1rem; font-size: .88rem;
  font-family: 'Outfit', sans-serif; font-weight: 300; outline: none; transition: border-color .25s;
}
.av-fg input::placeholder, .av-fg textarea::placeholder { color: rgba(255,255,255,.2); }
.av-fg input:focus, .av-fg select:focus, .av-fg textarea:focus { border-color: var(--av-wine-soft); }
.av-fg select option { background: var(--av-wine-dark); }
.av-fg textarea { resize: none; height: 88px; }
.av-form-note { font-size: .68rem; color: rgba(255,255,255,.22); line-height: 1.55; margin-bottom: 1.2rem; }
.av-btn-submit { width: 100%; background: var(--av-wine); color: #fff; padding: 1rem; border: 1px solid var(--av-wine-mid); cursor: pointer; font-family: 'Outfit', sans-serif; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; transition: background .25s; }
.av-btn-submit:hover { background: var(--av-wine-mid); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .av-about-grid, .av-finishes-grid, .av-sp-grid,
  .av-dep-grid, .av-builder-grid, .av-reg-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .av-invest-grid, .av-loc-cards, .av-feat-grid { grid-template-columns: 1fr; }
  .av-stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
  .av-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .av-g-cell-tall { grid-row: auto; }
  .av-about-badge { right: 0; bottom: -1.5rem; }
  .av-builder-img-tag { top: -1rem; right: -.5rem; }
  .av-form-row { grid-template-columns: 1fr; }
  .av-hero-content { padding: 0 1.5rem 14rem; }
  .av-hero-statbar { position: relative; flex-wrap: wrap; }
  .av-stat-box { flex: 1 1 40%; }
  .av-sp-nums { grid-template-columns: 1fr 1fr; }
  .av-intro-strip-inner, .av-about-inner, .av-gallery-inner, .av-features-inner,
  .av-finishes-inner, .av-siteplan-inner, .av-location-inner, .av-investment-inner,
  .av-deposit-inner, .av-builder-inner, .av-faq-inner, .av-register-inner { padding: 0 1.5rem; }
}
