/* ==========================================================================
   THE WATCH SPA — watchspaservice.com
   Black + gold, taken from the business card.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:        #0a0a0b;
  --black-soft:   #121214;
  --panel:        #17171a;
  --panel-lift:   #1e1e22;
  --gold:         #d4af37;
  --gold-bright:  #f3d98b;
  --gold-deep:    #b8912a;
  --cream:        #f5f0e6;
  --muted:        #a29b90;
  --line:         rgba(212, 175, 55, 0.18);
  --red:          #d9776a;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1140px;
  --gold-grad: linear-gradient(135deg, #f3d98b 0%, #d4af37 38%, #b8912a 70%, #e8c766 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-bright); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: .68rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: .02em; }
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  margin: .6rem 0 1rem;
}
h3 { font-size: 1.3rem; }
p { color: var(--muted); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .45;
  margin: 0 auto;
  max-width: 180px;
}

section { padding: 5.5rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 3.2rem; }
.section-head p { max-width: 620px; margin: .5rem auto 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,11,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand__mark { width: auto; height: 40px; flex-shrink: 0; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand__tag {
  display: block;
  font-family: var(--sans);
  font-size: .54rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.header-cta {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  padding: .6rem 1.2rem; border-radius: 2px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: var(--black); }

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 50% 8%,  rgba(212,175,55,.13), transparent 62%),
    radial-gradient(700px 520px at 88% 96%, rgba(212,175,55,.06), transparent 58%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
/* The lockup artwork already contains the wordmark and tagline, so the h1 is
   the image itself — alt text carries the name for search and screen readers. */
.hero__lockup { margin: 0 0 1.6rem; }
.hero__lockup img {
  width: min(470px, 84vw);
  height: auto;
  margin: 0 auto;
}
/* Tagline is live text rather than part of the artwork, so the wording can be
   changed without re-cutting the logo. Sized and tracked to sit under the
   wordmark the way the original lockup did. */
.hero__tagline {
  display: block;
  margin-top: .85rem;
  font-family: var(--sans);
  font-size: clamp(.62rem, 1.55vw, .8rem);
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .92;
  line-height: 1.5;
}
.hero__lede {
  max-width: 620px; margin: 1.6rem auto 2.2rem;
  font-size: 1.03rem;
}
.hero__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all .22s ease;
}
.btn--gold { background: var(--gold-grad); color: var(--black); font-weight: 600; border-color: transparent; }
.btn--gold:hover { filter: brightness(1.1); color: var(--black); }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: rgba(212,175,55,.1); color: var(--gold-bright); }
.btn:disabled { opacity: .5; cursor: default; filter: none; }

/* ---------- Services ---------- */
.services { background: var(--black-soft); border-block: 1px solid var(--line); }
.service-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2rem 1.6rem;
  transition: transform .2s, border-color .2s, background .2s;
}
.service:hover { transform: translateY(-3px); border-color: rgba(212,175,55,.42); background: var(--panel-lift); }
.service__num {
  font-family: var(--serif);
  font-size: .95rem; color: var(--gold); opacity: .6;
  letter-spacing: .1em; margin-bottom: .7rem;
}
.service h3 { color: var(--cream); margin-bottom: .5rem; font-size: 1.22rem; letter-spacing: .04em; }
.service p { font-size: .89rem; line-height: 1.62; }

/* ---------- Brands ---------- */
.brands { text-align: center; }
.brand-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .7rem 2.4rem;
  margin-top: 1.8rem;
}
.brand-list li {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.32rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .82;
}
.brands__note { font-size: .83rem; margin-top: 1.8rem; opacity: .8; }

/* ---------- Process ---------- */
.process { background: var(--black-soft); border-block: 1px solid var(--line); }
.steps {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  counter-reset: step;
}
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .85;
  line-height: 1;
}
.step h3 { font-size: 1.15rem; margin-bottom: .45rem; color: var(--cream); letter-spacing: .04em; }
.step p { font-size: .89rem; }

/* ---------- Inquiry form ---------- */
.inquiry { scroll-margin-top: 70px; }
.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 780px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .63rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem; font-weight: 500;
}
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(212,175,55,.26);
  border-radius: 2px;
  color: var(--cream);
  padding: .78rem .9rem;
  font-family: inherit; font-size: .93rem;
  transition: border-color .18s, background .18s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(0,0,0,.6);
}
.field input::placeholder, .field textarea::placeholder { color: #6b665e; }
.field select option { background: var(--panel); color: var(--cream); }

/* Photo dropzone */
.dropzone {
  border: 2px dashed rgba(212,175,55,.34);
  border-radius: 3px;
  padding: 2rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--gold); background: rgba(212,175,55,.055); }
.dropzone__icon { width: 34px; margin: 0 auto .7rem; opacity: .75; }
.dropzone strong { color: var(--cream); font-weight: 500; font-size: .95rem; }
.dropzone span { color: var(--gold); text-decoration: underline; }
.dropzone small { display: block; color: var(--muted); font-size: .76rem; margin-top: .45rem; }

.thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: .55rem; margin-top: .9rem;
}
.thumb {
  position: relative; border: 1px solid var(--line);
  border-radius: 2px; overflow: hidden; aspect-ratio: 1;
  background: #000;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute; top: 4px; right: 4px;
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(0,0,0,.78); color: #fff;
  border: none; cursor: pointer; font-size: 13px; line-height: 1; padding: 0;
}
.thumb button:hover { background: var(--red); }

.form-actions { margin-top: 1.6rem; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.form-actions .btn { width: 100%; max-width: 340px; }
.form-msg { font-size: .88rem; min-height: 1.3em; text-align: center; }
.form-msg.error { color: var(--red); }
.form-msg.ok { color: var(--gold-bright); }
.form-note { font-size: .74rem; color: var(--muted); text-align: center; opacity: .85; }

/* Success panel */
.sent {
  text-align: center; padding: 2.6rem 1rem;
}
.sent__mark {
  width: 56px; height: 56px; margin: 0 auto 1.1rem;
  border: 2px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem; color: var(--gold);
}
.sent h3 { color: var(--cream); margin-bottom: .5rem; font-size: 1.5rem; }

/* ---------- About ---------- */
.about { background: var(--black-soft); border-block: 1px solid var(--line); }
.about__inner {
  display: grid; gap: 2.6rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
}
.about__mark {
  display: grid; place-items: center;
  padding: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.09), transparent 68%), var(--panel);
}
.about__mark img { width: 122px; height: auto; }
.credential {
  display: flex; gap: .7rem; align-items: flex-start;
  margin-top: .8rem; font-size: .9rem; color: var(--muted);
}
.credential::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ---------- Location ---------- */
.location { text-align: center; }
.address {
  font-family: var(--serif);
  font-size: 1.32rem; line-height: 1.55;
  color: var(--cream); margin: 1.2rem 0;
  font-style: normal;
}
.appointment-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  padding: .5rem 1.2rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.4rem;
  text-align: center;
  background: var(--black-soft);
}
.site-footer .brand { justify-content: center; margin-bottom: 1.2rem; }
.site-footer .brand__mark { height: 34px; }
.footer-services {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.footer-brands {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.6rem;
}
.social { margin-bottom: 1.5rem; }
.social a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  letter-spacing: .08em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem 1rem;
  transition: border-color .2s, color .2s, background .2s;
}
.social a:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.social svg { width: 17px; height: 17px; flex-shrink: 0; }

.disclaimer {
  font-size: .68rem; line-height: 1.7; color: #6f6a62;
  max-width: 620px; margin: 0 auto 1.2rem;
}
.copyright { font-size: .72rem; color: #6f6a62; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__mark { order: -1; padding: 2rem; }
  .about__mark img { width: 98px; }
}
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .header-cta { padding: .5rem .9rem; font-size: .64rem; }
  .hero { min-height: 82vh; }
  .brand-list { gap: .5rem 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
