/* =========================================================
   ASHWORTH & CROWN — "The Regent Line"
   Aesthetic: Art Deco royal. Ebony black, gold, emerald.
   Symmetric, geometric, ceremonial.
   ========================================================= */

:root{
  --black:      #0c0c0c;
  --black-2:    #131313;
  --emerald:    #0d3327;
  --emerald-2:  #082019;
  --gold:       #d4af37;
  --gold-soft:  #e9cd7c;
  --gold-deep:  #8f7326;
  --ivory:      #f1ead9;
  --ivory-dim:  rgba(241,234,217,.68);
  --ivory-faint:rgba(241,234,217,.42);

  --font-display: 'Cinzel', 'Georgia', serif;
  --font-accent:  'Poiret One', cursive;
  --font-body:    'Spectral', Georgia, serif;

  --container: 1200px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background: var(--black); color: var(--ivory);
  font-family: var(--font-body); font-size:17px; line-height:1.7;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background: var(--gold-deep); color: var(--black); }

.reveal{ opacity:0; transform: translateY(24px) scale(.98); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view{ opacity:1; transform:none; }

.eyebrow{
  font-family: var(--font-accent); text-transform:uppercase; letter-spacing:.36em;
  font-size:.8rem; color: var(--gold); margin:0 0 1.2rem;
}
.eyebrow.center{ text-align:center; }

.section{ max-width: var(--container); margin:0 auto; padding: 7rem 2rem; position:relative; }
.section-title{
  font-family: var(--font-display); font-weight:600; text-transform:uppercase; letter-spacing:.04em;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); text-align:center; margin: 0 auto 1.2rem; max-width:640px;
}
.section-title.center-title{ text-align:center; }
.lede{ color: var(--ivory-dim); font-size:1.05rem; text-align:center; max-width: 56ch; margin: 0 auto 2.4rem; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-family: var(--font-display); letter-spacing:.14em; text-transform:uppercase;
  font-size:.78rem; font-weight:600; padding: 1rem 2.1rem; border: 1px solid transparent;
  transition: all .35s var(--ease); position:relative; overflow:hidden;
}
.btn-gold{ background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep)); color: var(--black); }
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(212,175,55,.5); }
.btn-line{ border-color: rgba(212,175,55,.5); color: var(--gold-soft); }
.btn-line:hover{ border-color: var(--gold-soft); background: rgba(212,175,55,.07); }
.btn-small{ padding:.85rem 1.7rem; font-size:.72rem; }

/* ---------- header ---------- */
.site-header{ position:fixed; top:0; left:0; right:0; z-index:200; padding: 1.5rem 0; transition: background .4s ease, padding .4s ease, border-color .4s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled{ padding: .9rem 0; background: rgba(12,12,12,.92); backdrop-filter: blur(10px); border-color: rgba(212,175,55,.25); }
.header-inner{
  max-width: var(--container); margin:0 auto; padding: 0 2rem;
  display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:1rem;
}
.main-nav{ display:flex; gap:2rem; }
.nav-left{ justify-content:flex-end; }
.nav-right{ justify-content:flex-start; }
.main-nav a{ font-family: var(--font-display); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--ivory-dim); transition:color .3s ease; }
.main-nav a:hover{ color: var(--gold-soft); }
.brand{ display:flex; flex-direction:column; align-items:center; gap:.3rem; }
.brand-mark{ width:30px; height:30px; color: var(--gold); }
.brand-word{ font-family: var(--font-display); letter-spacing:.2em; font-size:.85rem; color: var(--ivory); }
.mobile-nav{ display:none; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; justify-self:end; }
.nav-toggle span{ width:22px; height:1.4px; background: var(--gold); display:block; }

/* ---------- hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center; justify-content:center;
  padding: 8rem 2rem 5rem; text-align:center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(13,51,39,.5), transparent 60%),
    linear-gradient(180deg, var(--black), var(--black-2));
}
.sunburst{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; z-index:0; opacity:.5; }
.sunburst svg{ width: 130vh; max-width:1400px; animation: rotateSlow 140s linear infinite; }
.sunburst.small svg{ width:900px; }
.rays line{ stroke: var(--gold); }
@keyframes rotateSlow{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

.hero-content{ position:relative; z-index:2; max-width: 640px; }
.hero-title{
  font-family: var(--font-display); font-weight:700; text-transform:uppercase;
  font-size: clamp(3rem, 8vw, 5.6rem); line-height:1.02; letter-spacing:.02em; margin:0 0 1.6rem;
}
.hero-title span{ color: var(--gold-soft); }
.hero-rule{ width:120px; height:1px; background: var(--gold); margin: 0 auto 1.8rem; position:relative; }
.hero-rule::before, .hero-rule::after{
  content:""; position:absolute; top:-3px; width:7px; height:7px; border:1px solid var(--gold); transform: rotate(45deg);
}
.hero-rule::before{ left:-4px; } .hero-rule::after{ right:-4px; }
.hero-sub{ color: var(--ivory-dim); font-size:1.1rem; margin: 0 0 2.4rem; }
.hero-actions{ display:flex; gap:1.2rem; justify-content:center; flex-wrap:wrap; }

.hero-step-frame{ position:absolute; inset: 16px; border: 1px solid rgba(212,175,55,.28); pointer-events:none; z-index:1; }
.hero-step-frame::before, .hero-step-frame::after{
  content:""; position:absolute; width:36px; height:36px; border: 1px solid rgba(212,175,55,.5);
}
.hero-step-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.hero-step-frame::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

/* ---------- chevron divider ---------- */
.chevron-band{ color: var(--gold); background: var(--emerald-2); padding: .4rem 0; }
.chevron-band svg{ width:100%; height:16px; }
.chevron-band polyline{ fill:none; stroke: currentColor; stroke-width:1; }

/* ---------- collections ---------- */
.deco-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 1.6rem; margin-top: 3rem; }
.deco-card{
  text-align:center; padding: 2.4rem 1.4rem; position:relative;
  background: linear-gradient(180deg, rgba(212,175,55,.04), transparent);
  border-top: 1px solid rgba(212,175,55,.35); border-bottom: 1px solid rgba(212,175,55,.35);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.deco-card:hover{ transform: translateY(-6px); background: linear-gradient(180deg, rgba(212,175,55,.1), transparent); }
.deco-hex{
  width:74px; height:74px; margin: 0 auto 1.4rem; display:flex; align-items:center; justify-content:center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.4);
}
.deco-hex svg{ width:60%; color: var(--gold-soft); }
.deco-card h3{ font-family: var(--font-display); text-transform:uppercase; letter-spacing:.08em; font-size:1.05rem; margin:0 0 .5rem; color: var(--ivory); }
.deco-card p{ color: var(--ivory-faint); font-size:.86rem; margin:0; }

/* ---------- craft ---------- */
.craft{ background: radial-gradient(ellipse at 50% 0%, rgba(13,51,39,.4), transparent 65%); }
.craft-frame{ position:relative; text-align:center; }
.craft-fan{ position:absolute; top:-40px; left:50%; transform:translateX(-50%); width:100%; max-width:500px; opacity:.35; pointer-events:none; z-index:0; }
.craft-fan svg{ width:100%; }
.fan-lines line{ stroke: var(--gold); }
.badge-row{ display:flex; justify-content:center; gap: 2.2rem; margin-top: 2.6rem; position:relative; z-index:1; flex-wrap:wrap; }
.badge{
  width:110px; height:110px; border-radius:50%; border: 1px solid var(--gold);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.2rem;
  background: radial-gradient(circle, rgba(212,175,55,.08), transparent);
}
.badge-lg{ width:130px; height:130px; border-width:2px; }
.badge .num{ font-family: var(--font-display); font-weight:700; font-size:1.5rem; color: var(--gold-soft); }
.badge span:last-child{ font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color: var(--ivory-faint); }

/* ---------- gallery ---------- */
.deco-gallery{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
.deco-plate{
  position:relative; text-align:center; padding: 2.4rem 1.6rem 2rem;
  background: linear-gradient(160deg, var(--emerald-2), var(--black-2));
  border: 1px solid rgba(212,175,55,.3);
  clip-path: polygon(12% 0, 88% 0, 100% 12%, 100% 100%, 0 100%, 0 12%);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.deco-plate:hover{ transform: translateY(-6px); border-color: var(--gold); }
.plate-roman{ position:absolute; top:14px; left:20px; font-family: var(--font-display); color: var(--gold-deep); font-size:.9rem; }
.deco-plate svg{ width:56%; margin: 1.2rem auto 1.4rem; color: var(--gold-soft); }
.deco-plate h3{ font-family: var(--font-display); text-transform:uppercase; letter-spacing:.05em; font-size:1.05rem; margin:0 0 .5rem; }
.deco-plate p{ color: var(--ivory-faint); font-size:.85rem; margin:0; }

/* ---------- testimonial ---------- */
.testimonial{ max-width: 720px; margin: 0 auto; padding: 6rem 2rem; text-align:center; position:relative; }
.fan-divider{ width:120px; height:30px; margin: 0 auto 2rem; background: radial-gradient(circle at 50% 0%, transparent 60%, rgba(212,175,55,.4) 61%, transparent 64%); }
.fan-divider.bottom{ margin: 2rem auto 0; transform: rotate(180deg); }
.testimonial-text{ font-family: var(--font-display); font-weight:500; font-style:normal; font-size: clamp(1.2rem,2.2vw,1.55rem); line-height:1.6; color: var(--ivory); margin:0 0 1.4rem; }
.testimonial-attr{ font-family: var(--font-accent); letter-spacing:.1em; color: var(--gold-soft); }

/* ---------- cta ---------- */
.cta-band{ position:relative; background: var(--emerald-2); padding: 6rem 2rem; text-align:center; overflow:hidden; border-top:1px solid rgba(212,175,55,.3); border-bottom:1px solid rgba(212,175,55,.3); }
.cta-inner{ position:relative; z-index:1; max-width: 560px; margin:0 auto; }
.cta-inner h2{ font-family: var(--font-display); text-transform:uppercase; letter-spacing:.05em; font-size: clamp(1.8rem,3.2vw,2.4rem); margin:0 0 1rem; }
.cta-inner > p{ color: var(--ivory-dim); margin:0 0 2.2rem; }
.cta-form{ display:flex; gap:1rem; max-width:460px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.cta-form input{ flex:1; min-width:200px; background: rgba(255,255,255,.03); border:1px solid rgba(212,175,55,.4); color: var(--ivory); padding:.9rem 1.1rem; font-family: var(--font-body); }
.cta-form input::placeholder{ color: var(--ivory-faint); }
.cta-form input:focus{ outline:none; border-color: var(--gold); }

/* ---------- footer ---------- */
.site-footer{ padding: 5rem 2rem 2.5rem; text-align:center; border-top:1px solid rgba(212,175,55,.2); }
.footer-mark{ width:34px; height:34px; color: var(--gold); margin: 0 auto 2.4rem; }
.footer-cols{ display:flex; justify-content:center; gap: 4.5rem; margin-bottom: 3rem; flex-wrap:wrap; text-align:left; }
.footer-cols h4{ font-family: var(--font-display); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); margin:0 0 1rem; }
.footer-cols a{ display:block; color: var(--ivory-dim); font-size:.92rem; margin-bottom:.6rem; }
.footer-cols a:hover{ color: var(--gold-soft); }
.footer-bottom{ font-size:.78rem; color: var(--ivory-faint); letter-spacing:.03em; }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .deco-grid{ grid-template-columns: 1fr 1fr; }
  .deco-gallery{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-inner{ grid-template-columns: auto 1fr auto; }
  .mobile-nav{
    display:flex; flex-direction:column; align-items:center; gap:1.4rem;
    position:fixed; inset:0; background: rgba(12,12,12,.98); backdrop-filter: blur(10px);
    padding-top: 7rem; transform: translateY(-100%); transition: transform .45s var(--ease); z-index:150;
  }
  .mobile-nav.open{ transform:none; }
  .mobile-nav a{ font-family: var(--font-display); text-transform:uppercase; letter-spacing:.12em; font-size:1.05rem; color: var(--ivory); }
}
@media (max-width: 620px){
  .deco-grid{ grid-template-columns:1fr; }
  .deco-gallery{ grid-template-columns:1fr; }
  .footer-cols{ gap: 2.4rem; justify-content:flex-start; }
}
