/* =========================================================================
   AWG PROPERTY MANAGEMENT LTD — Landing Page
   Brand system per Brand Guidelines Issue 01, 2026: Montserrat only,
   ink / navy / gold / paper, gold as single accent drawn once per view.
   ========================================================================= */

:root{
  --ink:     #0E1012;
  --ink-soft:#171b1e;
  --navy:    #0B1B2C;
  --navy-soft:#12283f;
  --gold:    #C89955;
  --gold-deep:#9c7539;
  --paper:   #F7F7F5;
  --white:   #FFFFFF;
  --line:    rgba(14,16,18,.12);
  --line-on-dark: rgba(247,247,245,.14);
  --text-soft: rgba(14,16,18,.62);
  --text-on-dark-soft: rgba(247,247,245,.66);

  --font: 'Montserrat', sans-serif;
  --container: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --radius: 6px;
  --ease: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,p{ margin: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head{
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head h2{
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.08;
  margin-top: .6rem;
}
.section-head p{
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}
.section-head.on-dark p{ color: var(--text-on-dark-soft); }

section{ position: relative; }

/* buttons -------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-gold{ background: var(--gold); color: var(--ink); }
.btn-gold:hover{ background: #d8ab68; transform: translateY(-2px); }
.btn-ghost-dark{ border-color: rgba(247,247,245,.35); color: var(--white); }
.btn-ghost-dark:hover{ border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-light{ border-color: rgba(14,16,18,.25); color: var(--ink); }
.btn-ghost-light:hover{ border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-2px); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.3rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(247,247,245,.92);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  padding: .8rem 0;
  border-color: var(--line);
}
.nav-inner{ display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo{ height: 34px; width: auto; transition: opacity .3s var(--ease); }
.nav-logo.on-dark{ opacity: 1; }
.nav-logo.on-light{ opacity: 0; position: absolute; }
.nav.scrolled .nav-logo.on-dark{ opacity: 0; }
.nav.scrolled .nav-logo.on-light{ opacity: 1; position: static; }
.nav-logo-wrap{ position: relative; display: flex; align-items: center; height: 34px; }

.nav-links{ display: none; align-items: center; gap: 2.2rem; }
@media (min-width: 860px){ .nav-links{ display: flex; } }
.nav-links a{
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); opacity: .8; transition: opacity .3s, color .3s;
  position: relative; padding-bottom: 2px;
}
.nav.scrolled .nav-links a{ color: var(--ink); }
.nav-links a::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-links a:hover{ opacity: 1; }
.nav-links a:hover::after{ right: 0; }
.nav-cta{ display: none; }
@media (min-width: 860px){ .nav-cta{ display: inline-flex; } }

.nav-toggle{
  display: flex; flex-direction: column; gap: 5px; width: 26px; background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span{ display: block; height: 2px; width: 100%; background: var(--white); transition: background .3s, transform .3s, opacity .3s; }
.nav.scrolled .nav-toggle span{ background: var(--ink); }
@media (min-width: 860px){ .nav-toggle{ display: none; } }

.mobile-menu{
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-menu.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a{ font-size: 1.4rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.mobile-menu a:hover{ color: var(--gold); }
body.menu-open{ overflow: hidden; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(200,153,85,.16), transparent 60%),
    linear-gradient(165deg, rgba(14,16,18,.88) 0%, rgba(11,27,44,.85) 62%, rgba(18,40,63,.9) 100%),
    url("../img/hero-atmosphere.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center 65%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: var(--white);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: clamp(4.5rem, 10vh, 7rem);
}

/* Compact hero variant for inner pages (Services / About) --------------- */
.page-hero{
  position: relative;
  min-height: 56vh;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(200,153,85,.16), transparent 60%),
    linear-gradient(165deg, rgba(14,16,18,.9) 0%, rgba(11,27,44,.86) 62%, rgba(18,40,63,.9) 100%),
    var(--hero-img, url("../img/hero-atmosphere.jpg"));
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 9rem 0 4rem;
}
.page-hero .hero-inner{ position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; padding: 0 var(--gutter); }
.page-hero .hero-eyebrow{ display:flex; align-items:center; gap:.9rem; font-size:.74rem; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:1.4rem; }
.page-hero .hero-eyebrow::before{ content:""; width:34px; height:1px; background:var(--gold); }
.page-hero h1{ font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight:800; line-height:1.03; letter-spacing:-.015em; max-width: 20ch; }
.page-hero h1 .accent{ color: var(--gold); }
.page-hero .hero-sub{ margin-top:1.4rem; font-size: clamp(1rem, 1.4vw, 1.1rem); line-height:1.7; color: var(--text-on-dark-soft); max-width: 56ch; font-weight:400; }
.page-hero--services{ --hero-img: url("../img/services-hero.jpg"); }
.hero-grain{
  position: absolute; inset: 0; opacity: .05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-hex{
  position: absolute; right: clamp(-14vw, -4vw, 4vw); top: 50%; transform: translateY(-50%);
  width: min(62vw, 780px); opacity: .07; pointer-events: none;
}
.hero-hexgrid{
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 0 var(--gutter);
}
.hero-eyebrow{
  display: flex; align-items: center; gap: .9rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before{ content: ""; width: 34px; height: 1px; background: var(--gold); }

.hero h1{
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.015em;
  max-width: 16ch;
}
.hero h1 .accent{ color: var(--gold); }

.hero-sub{
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-on-dark-soft);
  max-width: 44ch;
  font-weight: 400;
}

.hero-actions{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

.hero-meta{
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: clamp(3.5rem, 8vh, 5.5rem);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-on-dark);
}
.hero-meta .stat b{
  display: block; font-size: 1.6rem; font-weight: 800; color: var(--white);
}
.hero-meta .stat span{
  display: block; margin-top: .3rem; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-on-dark-soft);
}

.scroll-cue{
  position: absolute; left: var(--gutter); bottom: 2rem; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-on-dark-soft);
}
.scroll-cue .line{ width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue{ 0%,100%{ transform: scaleY(1); opacity: .5; } 50%{ transform: scaleY(.5); opacity: 1; } }
@media (max-width: 700px){ .scroll-cue{ display: none; } }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee{
  background: var(--gold); color: var(--ink);
  overflow: hidden; white-space: nowrap;
  border-bottom: 1px solid rgba(14,16,18,.08);
}
.marquee-track{
  display: inline-flex; align-items: center;
  animation: scroll-marquee 26s linear infinite;
  padding: .85rem 0;
}
.marquee-track span{
  font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 0 1.4rem;
  display: inline-flex; align-items: center; gap: 1.4rem;
}
.marquee-track span::after{ content: "\2726"; font-size: .6rem; opacity: .6; }
@keyframes scroll-marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* =========================================================================
   SERVICES
   ========================================================================= */
.services{ padding: clamp(5rem, 10vw, 8rem) 0 1.5rem; background: var(--paper); }
.services-grid{ display: grid; gap: 1.6rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(14,16,18,.22); border-color: transparent; }
.service-card:hover::before{ transform: scaleX(1); }

.service-icon{ width: 46px; height: 46px; color: var(--gold-deep); margin-bottom: 1.6rem; }
.service-index{
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: var(--text-soft);
  margin-bottom: .6rem; display: block;
}
.service-card h3{ font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.service-card p{ margin-top: .8rem; font-size: .92rem; line-height: 1.7; color: var(--text-soft); }

/* checklist (homepage services teaser + services page overview) -------- */
.check-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: .5rem; }
@media (max-width: 860px){ .check-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .check-grid{ grid-template-columns: 1fr; } }
.check-item{
  display:flex; align-items:center; gap:.85rem;
  padding: 1.15rem 1.3rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  font-weight: 700; font-size: .92rem; letter-spacing: -.005em;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.check-item:hover{ transform: translateY(-3px); border-color: var(--gold-deep); }
.check-item svg{ width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; }
.services-cta{ margin-top: 2.2rem; display:flex; }

/* services page — process flow strip ------------------------------------ */
.service-flow{ padding: clamp(2rem, 4vw, 3rem) 0 0; background: var(--paper); }
.flow-strip{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: 999px; background: var(--white);
}
@media (max-width: 700px){ .flow-strip{ flex-direction: column; border-radius: var(--radius); } }
.flow-step{
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); padding: .3rem .6rem;
}
.flow-arrow{ color: var(--gold-deep); font-weight: 700; }
@media (max-width: 700px){ .flow-arrow{ transform: rotate(90deg); } }

/* services page — in-depth cards ---------------------------------------- */
.services-detail{ padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem); background: var(--paper); }
.services-detail-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 860px){ .services-detail-grid{ grid-template-columns: 1fr; } }
.services-detail-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.services-detail-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(14,16,18,.22); border-color: transparent; }
.service-open{
  appearance: none; -webkit-appearance: none;
  display: block; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: inherit; color: inherit;
  padding: clamp(1.8rem, 3vw, 2.4rem);
}
.service-open:focus-visible{ outline: 2px solid var(--gold-deep); outline-offset: -2px; }
.services-detail-card .service-index{ font-size:.68rem; font-weight:700; letter-spacing:.16em; color: var(--text-soft); margin-bottom:.6rem; display:block; }
.services-detail-card h3{ font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; }
.services-detail-card p{ margin-top:.7rem; font-size:.92rem; line-height:1.7; color: var(--text-soft); }
.service-more{
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-deep);
}
.service-open:hover .service-more{ color: var(--gold); }

/* =========================================================================
   SERVICE BREAKDOWN MODAL
   ========================================================================= */
.modal-overlay{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,27,44,.72);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal-overlay.open{ opacity: 1; visibility: visible; }
body.modal-open{ overflow: hidden; }

.modal{
  background: var(--white); border-radius: var(--radius);
  max-width: 620px; width: 100%; max-height: 86vh; overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transform: translateY(18px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.modal-overlay.open .modal{ transform: translateY(0); opacity: 1; }

.modal-close{
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}
.modal-close:hover{ border-color: var(--gold-deep); color: var(--gold-deep); transform: rotate(90deg); }

.modal-index{ font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: var(--gold-deep); text-transform: uppercase; display: block; margin-bottom: .6rem; }
.modal h3{ font-size: clamp(1.4rem, 3vw, 1.7rem); font-weight: 800; letter-spacing: -.01em; padding-right: 2rem; }
.modal-tagline{ margin-top: .4rem; font-size: .92rem; font-weight: 700; color: var(--gold-deep); }
.modal-body p{ margin-top: 1rem; font-size: .94rem; line-height: 1.75; color: var(--text-soft); }
.modal-list{ margin-top: 1rem; display: flex; flex-direction: column; gap: .55rem; }
.modal-list li{ position: relative; padding-left: 1.3rem; font-size: .92rem; line-height: 1.55; color: var(--ink); font-weight: 600; }
.modal-list li::before{ content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.modal-body p.modal-closing{ margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-weight: 700; color: var(--ink); }

/* about section (homepage) — text + photo, values pills (light .pillar) - */
.about-section{ padding: clamp(4rem, 8vw, 6rem) 0; background: var(--paper); }
.about-grid{ display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 900px){ .about-grid{ grid-template-columns: 1fr; } }
.about-photo{ max-width: 340px; margin-left: auto; }
.about-photo img{ width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 900px){ .about-photo{ order: -1; max-width: 320px; margin: 0 auto; } .about-photo img{ aspect-ratio: 16 / 9; } }

.pillars.pillars--light{ grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
@media (max-width: 480px){ .pillars.pillars--light{ grid-template-columns: 1fr; } }
.pillars--light .pillar{ border-color: var(--line); color: var(--ink); }
.pillars--light .pillar:hover{ border-color: var(--gold-deep); background: rgba(200,153,85,.08); }

/* =========================================================================
   FOR LANDLORDS / TENANTS
   ========================================================================= */
.audience{ padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(5rem, 10vw, 8rem); background: var(--paper); }
.audience-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 860px){ .audience-grid{ grid-template-columns: 1fr; } }

.audience-card{
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  background: var(--white);
}
.audience-card--dark{ background: var(--navy); color: var(--white); border-color: transparent; }
.audience-card h3{ font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; margin-top: .5rem; }
.audience-list{ margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: .85rem; }
.audience-list li{
  position: relative; padding-left: 1.4rem; font-size: .92rem; line-height: 1.6;
  color: var(--text-soft);
}
.audience-card--dark .audience-list li{ color: var(--text-on-dark-soft); }
.audience-list li::before{
  content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* =========================================================================
   TESTIMONIALS (placeholder)
   ========================================================================= */
.testimonials{ padding: clamp(2rem, 3vw, 2.5rem) 0 clamp(5rem, 10vw, 8rem); background: var(--paper); }
.testimonials .section-head{ margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.testimonial-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px){ .testimonial-grid{ grid-template-columns: 1fr; } }
.testimonial-card{
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
}
.t-quote-mark{ font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .6rem; opacity: .55; }
.t-line{ height: 9px; border-radius: 4px; background: var(--line); margin-bottom: .6rem; }
.t-person{ display: flex; align-items: center; gap: .8rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.t-avatar{ width: 36px; height: 36px; border-radius: 50%; background: var(--line); flex-shrink: 0; }
.t-name{ display: block; font-size: .82rem; font-weight: 700; color: var(--text-soft); }
.t-role{ display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); opacity: .7; margin-top: .15rem; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq{ padding: clamp(5rem, 10vw, 8rem) 0; background: var(--paper); }
.faq-list{ max-width: 760px; }
.faq-item{
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq-list .faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-item summary{
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; list-style: none;
  font-size: 1.02rem; font-weight: 700; letter-spacing: -.005em;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-toggle{
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold-deep);
  color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-weight: 700;
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq-item[open] .faq-toggle{ transform: rotate(45deg); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.faq-item p{ margin-top: 1rem; font-size: .92rem; line-height: 1.7; color: var(--text-soft); max-width: 60ch; }

/* =========================================================================
   WHY AWG
   ========================================================================= */
.why{
  background: var(--navy); color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}
.why-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: 1fr; } }

.pillars{ display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (max-width: 480px){ .pillars{ grid-template-columns: 1fr; } }
.pillar{
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line-on-dark); border-radius: 999px;
  padding: .85rem 1.2rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  transition: border-color .3s, background .3s;
}
.pillar:hover{ border-color: var(--gold); background: rgba(200,153,85,.08); }
.pillar .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.voice-card{
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 2.2rem;
}
.voice-row{ display: flex; gap: 1rem; align-items: flex-start; }
.voice-row + .voice-row{ margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-on-dark); }
.voice-tag{
  flex-shrink: 0; font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 4px; margin-top: .1rem;
}
.voice-tag.say{ color: #7fd88f; border: 1px solid rgba(127,216,143,.4); }
.voice-tag.avoid{ color: #e2897f; border: 1px solid rgba(226,137,127,.4); }
.voice-row p{ font-style: italic; font-size: 1rem; line-height: 1.6; color: rgba(247,247,245,.88); }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process{ padding: clamp(4rem, 7vw, 5.5rem) 0 1.5rem; background: var(--paper); }
.process .section-head{ margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.steps{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem;
  position: relative;
}
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.steps::before{
  content: ""; position: absolute; top: 22px; left: 4%; right: 4%; height: 1px; background: var(--line);
}
@media (max-width: 900px){ .steps::before{ display: none; } }
.step{ position: relative; }
.step-num{
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--gold); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; position: relative; z-index: 1;
  margin-bottom: 1rem;
}
.step h3{ font-size: 1.06rem; font-weight: 800; }
.step p{ margin-top: .45rem; font-size: .88rem; line-height: 1.6; color: var(--text-soft); }

/* =========================================================================
   PORTFOLIO / IMAGERY PLACEHOLDER
   ========================================================================= */
.portfolio{ padding: clamp(5rem, 10vw, 8rem) 0; background: var(--ink); color: var(--white); }
.portfolio-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
@media (max-width: 860px){ .portfolio-grid{ grid-template-columns: 1fr; } }

.portfolio-tile{
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
  background:
    repeating-linear-gradient(135deg, rgba(200,153,85,.05) 0 2px, transparent 2px 26px),
    linear-gradient(160deg, #101823, #0B1B2C 55%, #13202f);
  display: flex; align-items: flex-end;
}
.portfolio-tile .hexmark{
  position: absolute; top: 50%; left: 50%; width: 34%; transform: translate(-50%,-56%);
  opacity: .16;
}
.portfolio-tile .tile-label{
  position: relative; z-index: 1; padding: 1.4rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-on-dark-soft);
}
.portfolio-tile .tile-label b{ display: block; color: var(--gold); font-size: .72rem; margin-bottom: .3rem; }
.portfolio-note{
  margin-top: 2rem; font-size: .78rem; color: var(--text-on-dark-soft);
  display: flex; align-items: center; gap: .6rem;
}
.portfolio-note .pulse{ width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse{ 0%,100%{ opacity: .4; transform: scale(.85); } 50%{ opacity: 1; transform: scale(1); } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact{
  background: var(--navy); color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative; overflow: hidden;
}
.contact-grid{ display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact h2{ font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; }
.contact h2 .accent{ color: var(--gold); }
.contact-lead{ margin-top: 1.2rem; font-size: 1.02rem; line-height: 1.7; color: var(--text-on-dark-soft); max-width: 42ch; }

.contact-methods{ margin-top: 2.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 480px){ .contact-methods{ grid-template-columns: 1fr; } }

.contact-method{
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}
.contact-method:hover{ border-color: var(--gold); background: rgba(200,153,85,.08); transform: translateY(-2px); }
.cm-icon{
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.cm-icon svg{ width: 18px; height: 18px; }
.cm-text{ display: flex; flex-direction: column; min-width: 0; }
.cm-label{ font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-on-dark-soft); }
.cm-value{ margin-top: .2rem; font-size: .92rem; font-weight: 700; color: var(--white); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.contact-form{
  background: rgba(247,247,245,.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.field{ margin-bottom: 1.2rem; }
.field label{
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-on-dark-soft); margin-bottom: .55rem;
}
.field input, .field textarea{
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-on-dark);
  color: var(--white); font-family: var(--font); font-size: .95rem; padding: .6rem .1rem;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus{ outline: none; border-color: var(--gold); }
.field textarea{ resize: vertical; min-height: 90px; }
.contact-form .btn{ width: 100%; justify-content: center; margin-top: .6rem; }
.form-note{ margin-top: 1rem; font-size: .72rem; color: var(--text-on-dark-soft); line-height: 1.6; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background: var(--ink); color: var(--text-on-dark-soft); padding: 3.2rem 0 2rem; }
.footer-top{
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid var(--line-on-dark);
}
.footer-logo{ height: 30px; width: auto; }
.footer-links{ display: flex; flex-wrap: wrap; gap: 1.8rem; }
.footer-links a{ font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .75; transition: opacity .3s, color .3s; }
.footer-links a:hover{ opacity: 1; color: var(--gold); }
.footer-bottom{
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 1.8rem; font-size: .7rem; letter-spacing: .04em;
}
.footer-bottom .tag{ color: var(--gold); font-weight: 700; letter-spacing: .1em; }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal{ transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal{ opacity: 0; transform: translateY(26px); }
html.js .reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* Safety net: if JS never finishes wiring up IntersectionObserver (slow
   connection, script error), don't leave content permanently invisible. */
html.js:not(.reveal-ready) .reveal{ animation: reveal-fallback 0s 4s forwards; }
@keyframes reveal-fallback{ to{ opacity: 1; transform: none; } }
