/* ==========================================================================
   The Watch Room — shared styles (black & gold)
   Palette: black #070706 | panel #12100b | gold #c09050 | text #eae3d3
   Type:    Headings — 'Cormorant Garamond' | Body/UI — 'Inter'
   ========================================================================== */

:root {
  --bg: #070706;
  --bg-2: #0d0c09;
  --panel: #12100b;
  --line: #2a2418;
  --line-soft: #1d1912;
  --gold: #c09050;
  --gold-light: #ddb97e;
  --gold-dim: #8a6a3a;
  --text: #eae3d3;
  --muted: #a99f8a;
  --white: #f7f2e7;

  /* legacy aliases */
  --ink: var(--text);
  --ink-soft: var(--muted);
  --paper: var(--bg);
  --paper-dim: var(--panel);
  --line-dark: var(--line);
  --brass: var(--gold);
  --brass-light: var(--gold-light);

  --max: 1180px;
  --gap: clamp(1.25rem, 3vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: .01em;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .9em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .9em 1.9em;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #14100a;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn:hover { background: transparent; color: var(--gold-light); box-shadow: 0 0 0 1px var(--gold-dim); }

.btn-outline,
.btn.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-dim);
}
.btn-outline:hover { background: linear-gradient(160deg, var(--gold-light), var(--gold)); color: #14100a; border-color: var(--gold); }

.btn-light,
.btn.btn-light {
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #14100a;
  border-color: var(--gold);
}
.btn-light:hover { background: transparent; color: var(--gold-light); border-color: var(--gold-dim); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 6, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo { display: flex; align-items: center; }
.logo img.brand { height: 46px; width: auto; }
.logo img.brand-small { height: 40px; width: auto; }

nav.main-nav { display: flex; align-items: center; gap: 2.4em; }
nav.main-nav a {
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding: .3em 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--gold-light); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold-light); margin: 5px 0; }

/* ---------- hero banner ---------- */
.hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #14110a 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--line-soft);
}
.hero .wrap {
  padding-top: clamp(3.5rem, 9vh, 6rem);
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: min(680px, 88%);
  height: auto;
  margin-bottom: 2.2rem;
}
.hero p.lead { color: var(--muted); font-size: 1.08rem; max-width: 36em; }
.hero .actions { display: flex; gap: 1em; margin-top: 1.6em; flex-wrap: wrap; justify-content: center; }

.hero-visual {
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, #16130c, #0b0a07);
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- generic sections ---------- */
section { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2em;
  margin-bottom: 2.6em;
  flex-wrap: wrap;
}
.section-head p { max-width: 34em; margin: 0; }

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.2em 1.8em;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dim);
  box-shadow: 0 14px 34px -16px rgba(0,0,0,.8), 0 0 24px -12px rgba(192,144,80,.35);
}

.product-photo {
  aspect-ratio: 1/1;
  background: #171410;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-photo.placeholder { color: #6d6350; }
.product-photo.placeholder .ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-photo.placeholder svg { width: 34px; height: 34px; opacity: .55; }

.product-tag {
  position: absolute;
  top: .7em; left: .7em;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #14100a;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .35em .7em;
  border-radius: 2px;
}
.product-tag.sold { background: #4a453c; color: #cfc7b6; }

.product-body {
  padding: 1.3em 1.3em 1.5em;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .3em;
}
.product-cat { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin: 0; color: var(--white); }
.product-desc { font-size: .88rem; color: var(--muted); margin: .2em 0 .6em; flex: 1; }
.product-price { font-size: 1.05rem; font-weight: 700; letter-spacing: .01em; color: var(--gold-light); }
.product-price .was { font-weight: 400; text-decoration: line-through; color: #6d6350; margin-right: .5em; font-size: .9em; }

.filter-bar { display: flex; gap: .6em; flex-wrap: wrap; margin-bottom: 2.4em; }
.filter-bar button {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: .55em 1.1em;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  color: var(--muted);
  transition: all .15s ease;
}
.filter-bar button.active,
.filter-bar button:hover {
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #14100a;
  border-color: var(--gold);
}

.empty-state {
  text-align: center;
  padding: 4em 1em;
  color: var(--muted);
  border: 1px dashed var(--line);
}

/* ---------- available to order ---------- */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6em;
}
.order-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.order-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 14px 34px -18px rgba(0,0,0,.85);
}
.order-visual {
  position: relative;
  padding: 2.1em 0 1.7em;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(192,144,80,.035) 0 2px, transparent 2px 9px),
    #15120d;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
}
.order-mark { width: 62px; height: 62px; opacity: .85; }
.order-badge {
  position: absolute;
  top: .7em; left: .7em;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  background: rgba(7,7,6,.7);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .35em .7em;
  border-radius: 2px;
}
.order-body { padding: 1.3em 1.3em 1.5em; display: flex; flex-direction: column; flex: 1; }
.order-brand { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.order-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin: .15em 0 .1em; color: var(--white); }
.order-ref { font-size: .74rem; letter-spacing: .08em; color: var(--muted); display: block; margin-bottom: .7em; }
.order-detail { font-size: .84rem; color: var(--muted); margin: 0 0 .6em; flex: 1; }
.order-note { font-size: .78rem; color: var(--gold-light); margin: 0 0 .6em; }
.order-btn { align-self: flex-start; padding: .7em 1.4em; font-size: .74rem; }

.brand-picker {
  display: flex;
  align-items: center;
  gap: .9em;
  margin-bottom: 2.2em;
}
.brand-picker label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.brand-picker select {
  appearance: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23c09050' stroke-width='1.6'/></svg>")
    no-repeat right 1em center / 11px auto,
    var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: .85rem;
  letter-spacing: .04em;
  padding: .7em 2.8em .7em 1.1em;
  border-radius: 2px;
  cursor: pointer;
  min-width: 200px;
  transition: border-color .15s ease;
}
.brand-picker select:hover,
.brand-picker select:focus { outline: none; border-color: var(--gold); }
.brand-picker select option { background: var(--panel); color: var(--text); }

/* ---------- how it works ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.6em;
  margin-top: 2.4em;
  text-align: left;
}
.step-item { border-top: 1px solid var(--gold-dim); padding-top: 1.1em; }
.step-item .step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: .35em;
}
.step-item strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .3em; }
.step-item p { font-size: .85rem; margin: 0; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: var(--gap);
  align-items: start;
}
.facts { list-style: none; margin: 1.6em 0 0; padding: 0; display: grid; gap: 1em; }
.facts li { display: flex; gap: 1em; padding-bottom: 1em; border-bottom: 1px solid var(--line); }
.facts .num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 600; width: 2.2em; flex-shrink: 0; }
.facts strong { color: var(--gold-light); }

.dark-block {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.dark-block p { color: var(--muted); }
.dark-block h2 { color: var(--white); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.info-list { list-style: none; margin: 1.6em 0 0; padding: 0; display: grid; gap: 1.3em; }
.info-list li { display: flex; gap: 1em; align-items: flex-start; }
.info-list .ico {
  width: 38px; height: 38px; border: 1px solid var(--gold-dim); border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  color: var(--gold-light);
}
.info-list .ico svg { width: 16px; height: 16px; }
.info-list strong { display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: .15em; }

form.contact-form { display: grid; gap: 1.1em; }
form.contact-form label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--muted); display: block; margin-bottom: .4em; }
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: .85em 1em;
  font-family: inherit;
  font-size: .95rem;
  border-radius: 2px;
}
form.contact-form input:focus,
form.contact-form textarea:focus { outline: none; border-color: var(--gold); }
form.contact-form textarea { resize: vertical; min-height: 130px; }

/* ---------- footer ---------- */
.site-footer {
  background: #050504;
  color: var(--muted);
  padding: 3.4em 0 2em;
  border-top: 1px solid var(--line);
}
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5em;
  padding-bottom: 2.4em;
  border-bottom: 1px solid var(--line-soft);
}
.site-footer h4 { color: var(--gold); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6em; }
.site-footer a { color: var(--muted); font-size: .9rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.6em; font-size: .8rem; flex-wrap: wrap; gap: 1em; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  nav.main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2.5em var(--gap);
    gap: 1.6em;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  nav.main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .site-footer .foot-grid { grid-template-columns: 1fr; }
  .logo img.brand { height: 38px; }
}
