/* ============================================================
   Master Watch Repair — Glendale, AZ
   Luxury horological palette: navy / gold / cream
   ============================================================ */

:root{
  --navy:        #0f1b2d;
  --navy-2:      #16263d;
  --navy-3:      #1c3151;
  --gold:        #c9a24b;
  --gold-light:  #e0c074;
  --cream:       #f6f1e7;
  --cream-2:     #fbf8f1;
  --ink:         #1a1a1a;
  --muted:       #5b5346;
  --line:        rgba(201,162,75,0.28);
  --shadow:      0 24px 60px -28px rgba(15,27,45,0.45);
  --shadow-sm:   0 10px 30px -16px rgba(15,27,45,0.4);
  --serif:       'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --serif-2:     'Cormorant Garamond', Georgia, serif;
  --sans:        'Manrope', system-ui, -apple-system, sans-serif;
  --wrap:        1180px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ font-family:var(--serif); line-height:1.12; font-weight:700; letter-spacing:-0.01em; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 24px; }
.section{ padding:96px 0; }

.eyebrow{
  display:inline-block;
  font-family:var(--sans);
  font-size:12.5px; font-weight:700;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold);
  margin-bottom:18px;
}
.section__head{ max-width:720px; margin-bottom:54px; }
.section__head--center{ margin-left:auto; margin-right:auto; text-align:center; }
.section__head h2{ font-size:clamp(2rem,4.2vw,3rem); color:var(--navy); }
.section__lead{ margin-top:18px; color:var(--muted); font-size:1.08rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--sans); font-weight:700; font-size:0.96rem;
  letter-spacing:0.02em;
  padding:15px 28px; border-radius:999px;
  cursor:pointer; border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn--gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  box-shadow:0 14px 30px -12px rgba(201,162,75,0.6);
}
.btn--gold:hover{ transform:translateY(-2px); box-shadow:0 20px 38px -12px rgba(201,162,75,0.75); }
.btn--ghost{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn--ghost:hover{ background:var(--navy); color:var(--cream); transform:translateY(-2px); }
.btn--ghost-light{ border-color:rgba(246,241,231,0.55); color:var(--cream); background:transparent; }
.btn--ghost-light:hover{ background:var(--cream); color:var(--navy); transform:translateY(-2px); }
.btn--block{ width:100%; }

/* ============================================================
   INTRO ANIMATION
   ============================================================ */
.intro{
  position:fixed; inset:0; z-index:2000;
  display:none;
  align-items:center; justify-content:center;
  background:radial-gradient(120% 120% at 50% 35%, var(--navy-2), var(--navy) 70%);
}
.intro.is-active{ display:flex; }
.intro.is-leaving{ animation:introOut .6s ease forwards; }
@keyframes introOut{ to{ opacity:0; visibility:hidden; } }

.intro__stage{ text-align:center; position:relative; padding:24px; }
.intro__art{ width:min(46vw,260px); height:auto; margin:0 auto 8px; }

.gear__spin{ transform-origin:center; animation:gearSpin 2.6s cubic-bezier(.2,.8,.3,1) forwards; }
.gear__spin--rev{ animation:gearSpinRev 2.6s cubic-bezier(.2,.8,.3,1) forwards; }
@keyframes gearSpin{ from{ transform:rotate(-160deg);} to{ transform:rotate(40deg);} }
@keyframes gearSpinRev{ from{ transform:rotate(160deg);} to{ transform:rotate(-40deg);} }

.hand--minute{ transform-origin:120px 120px; animation:sweepMin 2.4s cubic-bezier(.3,.7,.2,1) forwards; }
.hand--hour{ transform-origin:120px 120px; animation:sweepHr 2.4s cubic-bezier(.3,.7,.2,1) forwards; }
@keyframes sweepMin{ from{ transform:rotate(0deg);} to{ transform:rotate(540deg);} }
@keyframes sweepHr{ from{ transform:rotate(0deg);} to{ transform:rotate(210deg);} }

.intro__word{ opacity:0; animation:wordIn .9s ease forwards; animation-delay:1.1s; }
.intro__name{
  display:block; font-family:var(--serif); font-weight:800;
  font-size:clamp(1.7rem,6vw,2.8rem); color:var(--cream);
  letter-spacing:0.01em;
}
.intro__tag{
  display:block; margin-top:8px;
  font-size:0.8rem; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gold);
}
@keyframes wordIn{ from{ opacity:0; transform:translateY(14px);} to{ opacity:1; transform:translateY(0);} }

.intro__skip{
  position:absolute; bottom:-58px; left:50%; transform:translateX(-50%);
  background:transparent; border:1px solid rgba(246,241,231,0.3);
  color:var(--cream); font-family:var(--sans); font-size:0.82rem;
  letter-spacing:0.12em; text-transform:uppercase;
  padding:9px 22px; border-radius:999px; cursor:pointer;
  transition:background .25s,border-color .25s;
}
.intro__skip:hover{ background:rgba(246,241,231,0.12); border-color:var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:900;
  background:rgba(15,27,45,0.86);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid rgba(201,162,75,0.22);
  transition:background .3s;
}
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; height:74px; gap:18px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{ flex:none; }
.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{ font-family:var(--serif); font-weight:700; color:var(--cream); font-size:1.16rem; }
.brand__sub{ font-size:0.68rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); }

.nav{ display:flex; align-items:center; gap:30px; }
.nav a{
  color:var(--cream); font-size:0.92rem; font-weight:500;
  position:relative; opacity:0.9; transition:opacity .2s;
}
.nav a:not(.nav__cta)::after{
  content:""; position:absolute; left:0; bottom:-6px; height:1.5px; width:0;
  background:var(--gold); transition:width .3s;
}
.nav a:not(.nav__cta):hover{ opacity:1; }
.nav a:not(.nav__cta):hover::after{ width:100%; }
.nav__cta{
  border:1.5px solid var(--gold); color:var(--gold);
  padding:9px 18px; border-radius:999px; font-weight:700;
  transition:background .25s,color .25s;
}
.nav__cta:hover{ background:var(--gold); color:var(--navy); }

.header-call{
  display:none; align-items:center; gap:8px;
  color:var(--gold-light); font-weight:700; font-size:0.92rem;
}
.header-call:hover{ color:var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; background:linear-gradient(160deg,var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 140%); color:var(--cream); overflow:hidden; }
.hero__bg{ position:absolute; inset:0; pointer-events:none; }
.hero__guilloche{ position:absolute; top:50%; right:-10%; width:780px; height:780px; transform:translateY(-50%); }
.hero__inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:54px; align-items:center;
  padding:90px 24px 96px;
}
.hero__copy .eyebrow{ color:var(--gold-light); }
.hero h1{ font-size:clamp(2.4rem,5.4vw,3.9rem); color:var(--cream); }
.hero__sub{ margin-top:22px; font-size:1.12rem; color:rgba(246,241,231,0.82); max-width:36ch; }
.hero__cta{ margin-top:34px; display:flex; gap:14px; flex-wrap:wrap; }
.hero__cta .btn--ghost{ border-color:rgba(246,241,231,0.5); color:var(--cream); }
.hero__cta .btn--ghost:hover{ background:var(--cream); color:var(--navy); }
.hero__trust{ margin-top:24px; font-size:0.86rem; color:var(--gold-light); letter-spacing:0.02em; }

/* hero watch */
.hero__visual{ display:flex; justify-content:center; }
.watch{ position:relative; width:min(82%,360px); animation:floaty 6s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-12px);} }
.watch__case{ filter:drop-shadow(0 30px 50px rgba(0,0,0,0.5)); }
.watch__crown{
  position:absolute; top:50%; right:-3%; width:5%; height:9%;
  background:linear-gradient(var(--gold-light),var(--gold));
  border-radius:3px; transform:translateY(-50%);
}
.dial-hand--m{ transform-origin:130px 130px; animation:spinMin 60s linear infinite; }
.dial-hand--h{ transform-origin:130px 130px; animation:spinHr 720s linear infinite; }
.dial-hand--s{ transform-origin:130px 130px; animation:spinSec 12s linear infinite; }
@keyframes spinSec{ to{ transform:rotate(360deg);} }
@keyframes spinMin{ to{ transform:rotate(360deg);} }
@keyframes spinHr{ to{ transform:rotate(360deg);} }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar{ background:var(--navy-2); border-top:1px solid rgba(201,162,75,0.2); border-bottom:1px solid rgba(201,162,75,0.2); }
.trustbar__inner{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; padding:30px 24px; text-align:center; }
.trustbar__item strong{ display:block; font-family:var(--serif); font-size:1.5rem; color:var(--gold-light); }
.trustbar__item span{ font-size:0.82rem; letter-spacing:0.08em; color:rgba(246,241,231,0.7); text-transform:uppercase; }

/* ============================================================
   SERVICES
   ============================================================ */
.services{ background:var(--cream); }
.grid{ display:grid; gap:24px; }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.card{
  background:var(--cream-2);
  border:1px solid var(--line);
  border-radius:18px; padding:34px 30px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--gold); }
.card__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:58px; height:58px; border-radius:14px;
  background:linear-gradient(140deg,var(--navy),var(--navy-3));
  color:var(--gold-light); margin-bottom:20px;
}
.card__icon svg{ width:30px; height:30px; }
.card h3{ font-size:1.32rem; color:var(--navy); margin-bottom:10px; }
.card p{ color:var(--muted); font-size:0.98rem; }
.services__extra{ margin-top:36px; text-align:center; color:var(--muted); }
.services__extra a{ color:var(--gold); font-weight:700; border-bottom:1px solid var(--line); }
.services__extra a:hover{ color:var(--navy); }

/* ============================================================
   WHY US
   ============================================================ */
.why{ background:linear-gradient(180deg,var(--navy) 0%, var(--navy-2) 100%); color:var(--cream); }
.why__inner{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:center; }
.why h2{ color:var(--cream); font-size:clamp(2rem,4vw,2.8rem); }
.why__copy .eyebrow{ color:var(--gold-light); }
.why__copy > p{ margin-top:16px; color:rgba(246,241,231,0.82); }
.why__list{ list-style:none; margin:30px 0 32px; display:grid; gap:18px; }
.why__list li{ display:flex; gap:14px; align-items:flex-start; }
.why__ico{ flex:none; width:26px; height:26px; border-radius:50%; background:rgba(201,162,75,0.16); color:var(--gold-light); display:grid; place-items:center; }
.why__ico svg{ width:16px; height:16px; }
.why__list strong{ color:var(--cream); }
.why__list div{ color:rgba(246,241,231,0.8); font-size:0.98rem; }

.why__visual{ display:flex; justify-content:center; }
.loupe{ position:relative; width:min(80%,320px); }
.loupe svg{ filter:drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }
.loupe__tag{
  position:absolute; bottom:8px; left:0;
  font-size:0.78rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold);
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase{ background:var(--cream-2); }
.showcase__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.show-card{
  background:var(--navy); color:var(--cream);
  border-radius:18px; padding:26px 22px 28px; text-align:center;
  border:1px solid rgba(201,162,75,0.25);
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s;
}
.show-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.show-card__art{ width:120px; height:120px; margin:0 auto 14px; }
.show-card h3{ color:var(--gold-light); font-size:1.18rem; }
.show-card p{ font-size:0.88rem; color:rgba(246,241,231,0.7); margin-top:4px; }

.sc-gear{ animation:scGear 14s linear infinite; }
.sc-gear--rev{ animation:scGearRev 10s linear infinite; }
@keyframes scGear{ to{ transform:rotate(360deg);} }
@keyframes scGearRev{ to{ transform:rotate(-360deg);} }
.pendulum,.pendulum-bob{ animation:swing 2.4s ease-in-out infinite; }
@keyframes swing{ 0%,100%{ transform:rotate(11deg);} 50%{ transform:rotate(-11deg);} }
.drop{ animation:dropPulse 2.6s ease-in-out infinite; transform-origin:60px 60px; }
@keyframes dropPulse{ 0%,100%{ opacity:0.55; transform:scale(0.9);} 50%{ opacity:1; transform:scale(1.05);} }
.shine{ animation:shineMove 3.4s ease-in-out infinite; }
@keyframes shineMove{ 0%,100%{ transform:rotate(-12deg); opacity:0.4;} 50%{ transform:rotate(12deg); opacity:1;} }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews{ background:var(--cream); }
.quote{
  background:var(--cream-2); border:1px solid var(--line); border-radius:18px;
  padding:34px 30px 30px; position:relative; box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s;
}
.quote:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.quote__mark{ font-family:var(--serif); font-size:4rem; color:var(--gold); line-height:0.4; height:34px; opacity:0.7; }
.quote blockquote{ font-family:var(--serif-2); font-size:1.18rem; line-height:1.5; color:var(--navy); margin-bottom:18px; }
.quote figcaption{ font-weight:700; color:var(--navy); }
.quote figcaption span{ display:block; font-weight:500; color:var(--muted); font-size:0.85rem; letter-spacing:0.04em; }
.reviews__note{ text-align:center; margin-top:30px; font-size:0.82rem; color:var(--muted); font-style:italic; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ background:var(--cream-2); }
.faq__inner{ max-width:860px; margin:0 auto; }
.accordion{ display:grid; gap:14px; }
.acc{
  background:var(--cream); border:1px solid var(--line); border-radius:14px;
  overflow:hidden; transition:border-color .25s, box-shadow .25s;
}
.acc[open]{ border-color:var(--gold); box-shadow:var(--shadow-sm); }
.acc summary{
  list-style:none; cursor:pointer;
  padding:20px 24px; font-family:var(--serif); font-size:1.12rem; font-weight:600; color:var(--navy);
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc__icon{ flex:none; width:20px; height:20px; position:relative; }
.acc__icon::before,.acc__icon::after{
  content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  background:var(--gold); transition:transform .3s;
}
.acc__icon::before{ width:14px; height:2px; }
.acc__icon::after{ width:2px; height:14px; }
.acc[open] .acc__icon::after{ transform:translate(-50%,-50%) scaleY(0); }
.acc__body{ padding:0 24px 22px; }
.acc__body p{ color:var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background:linear-gradient(135deg,var(--navy) 0%, var(--navy-3) 100%);
  color:var(--cream); text-align:center;
  border-top:1px solid rgba(201,162,75,0.25);
  border-bottom:1px solid rgba(201,162,75,0.25);
}
.cta-band__inner{ padding:78px 24px; }
.cta-band h2{ color:var(--cream); font-size:clamp(2rem,4.4vw,3rem); }
.cta-band p{ margin-top:14px; color:rgba(246,241,231,0.82); font-size:1.08rem; }
.cta-band__btns{ margin-top:30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ background:var(--cream); }
.contact__inner{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:start; }
.contact h2{ color:var(--navy); font-size:clamp(1.9rem,3.6vw,2.6rem); }
.contact__info > p{ margin-top:14px; color:var(--muted); max-width:42ch; }
.contact__list{ list-style:none; margin-top:30px; display:grid; gap:20px; }
.contact__list li{ display:flex; gap:16px; align-items:flex-start; }
.contact__ico{ flex:none; width:46px; height:46px; border-radius:12px; background:linear-gradient(140deg,var(--navy),var(--navy-3)); color:var(--gold-light); display:grid; place-items:center; }
.contact__ico svg{ width:22px; height:22px; }
.contact__label{ display:block; font-size:0.74rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:2px; }
.contact__list a{ color:var(--navy); font-weight:700; }
.contact__list a:hover{ color:var(--gold); }

.contact__form{
  background:var(--navy); color:var(--cream);
  border-radius:20px; padding:36px 32px;
  box-shadow:var(--shadow); border:1px solid rgba(201,162,75,0.25);
}
.contact__form h3{ color:var(--cream); font-size:1.5rem; margin-bottom:20px; }
.contact__form label{ display:block; font-size:0.82rem; font-weight:600; letter-spacing:0.04em; color:var(--gold-light); margin-bottom:16px; }
.contact__form input,
.contact__form select,
.contact__form textarea{
  width:100%; margin-top:7px;
  background:rgba(246,241,231,0.06);
  border:1px solid rgba(201,162,75,0.3);
  border-radius:10px; padding:12px 14px;
  color:var(--cream); font-family:var(--sans); font-size:0.95rem; font-weight:500;
  transition:border-color .2s, background .2s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder{ color:rgba(246,241,231,0.45); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus{ outline:none; border-color:var(--gold); background:rgba(246,241,231,0.1); }
.contact__form select option{ color:var(--navy); }
.contact__form textarea{ resize:vertical; }
.form__note{ margin-top:14px; font-size:0.8rem; color:rgba(246,241,231,0.6); }
.form__note a{ color:var(--gold-light); font-weight:700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--navy); color:var(--cream); padding-top:56px; }
.site-footer__inner{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:40px; }
.site-footer__brand .brand__name{ font-size:1.3rem; }
.site-footer__brand p{ margin-top:12px; color:rgba(246,241,231,0.7); font-size:0.92rem; max-width:38ch; }
.site-footer__nav{ display:flex; flex-direction:column; gap:10px; }
.site-footer__nav a{ color:rgba(246,241,231,0.78); font-size:0.92rem; }
.site-footer__nav a:hover{ color:var(--gold-light); }
.site-footer__contact{ display:flex; flex-direction:column; gap:10px; }
.site-footer__contact a,.site-footer__contact span{ color:rgba(246,241,231,0.78); font-size:0.92rem; }
.site-footer__contact a:hover{ color:var(--gold-light); }
.site-footer__bottom{
  display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
  padding:22px 24px; border-top:1px solid rgba(201,162,75,0.2);
  font-size:0.84rem; color:rgba(246,241,231,0.6);
}
.credit a{ color:var(--gold-light); font-weight:700; }
.credit a:hover{ text-decoration:underline; }

/* ============================================================
   MOBILE CALL BAR
   ============================================================ */
.mobilebar{
  position:fixed; left:0; right:0; bottom:0; z-index:850;
  display:none; gap:10px; padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(15,27,45,0.96);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(201,162,75,0.3);
}
.mobilebar a{ flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border-radius:12px; font-weight:700; font-size:0.95rem; }
.mobilebar__call{ background:transparent; border:1.5px solid var(--gold); color:var(--gold-light); }
.mobilebar__quote{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--navy); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .hero__inner{ grid-template-columns:1fr; text-align:center; gap:40px; }
  .hero__sub{ margin-left:auto; margin-right:auto; }
  .hero__cta{ justify-content:center; }
  .hero__visual{ order:-1; }
  .why__inner{ grid-template-columns:1fr; gap:42px; }
  .contact__inner{ grid-template-columns:1fr; gap:36px; }
  .grid--3{ grid-template-columns:1fr 1fr; }
  .showcase__grid{ grid-template-columns:1fr 1fr; }
  .header-call{ display:none; }
}

@media (max-width:760px){
  .nav{ display:none; }
  .header-call{ display:flex; }
  .section{ padding:72px 0; }
  .trustbar__inner{ grid-template-columns:1fr 1fr; gap:24px; }
  .site-footer__inner{ grid-template-columns:1fr; gap:28px; }
  .site-footer__bottom{ flex-direction:column; text-align:center; }
  .mobilebar{ display:flex; }
  body{ padding-bottom:70px; }
}

@media (max-width:520px){
  .grid--3{ grid-template-columns:1fr; }
  .showcase__grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:2.1rem; }
  .brand__sub{ display:none; }
  .wrap{ padding:0 18px; }
  .btn{ width:100%; }
  .hero__cta,.cta-band__btns{ width:100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
  .intro{ display:none !important; }
}
