:root {
  --ink: #121617;
  --charcoal: #1d2324;
  --cream: #f3efe5;
  --paper: #fbfaf7;
  --gold: #b5975a;
  --green: #5b743d;
  --muted: #66706f;
  --line: #ded8cb;
  --white: #fff;
  --shadow: 0 20px 55px rgba(10, 15, 15, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}
h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  margin: 0.3rem 0 1.4rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin: 0.2rem 0 1rem;
}
h3 {
  font-size: 1.4rem;
}
.lead {
  font-size: 1.15rem;
  color: #d6dddd;
  max-width: 630px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 800;
  transition: 0.2s;
}
.btn:hover {
  background: #cfb77e;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: #778080;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}
.topbar {
  background: #0b0e0e;
  color: #cfd4d2;
  font-size: 0.78rem;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.45rem 0;
}
.topbar a {
  text-decoration: none;
}
.site-header {
  background: rgba(18, 22, 23, 0.97);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #303637;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  text-decoration: none;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}
.brand small {
  display: block;
  font:
    600 0.58rem Arial,
    sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #dce1df;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid #555;
  color: white;
  font-size: 1.4rem;
  padding: 0.35rem 0.65rem;
}
.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 8, 0.95) 0%,
      rgba(5, 8, 8, 0.76) 48%,
      rgba(5, 8, 8, 0.15) 100%
    ),
    url("../images/watch-hero.jpg") center/cover;
}
.hero-content {
  padding: 100px 0;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.trust-row div {
  padding: 1.35rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-row div:last-child {
  border: 0;
}
.trust-row strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.18rem;
}
.trust-row span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section {
  padding: 90px 0;
}
.section-dark {
  background: var(--charcoal);
  color: white;
}
.section-tint {
  background: var(--cream);
}
.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}
.split img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.prose {
  color: var(--muted);
}
.section-dark .prose {
  color: #c7cecc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2.5rem;
}
.card {
  background: white;
  border: 1px solid var(--line);
  padding: 30px;
}
.card .num {
  font: italic 1.2rem Georgia;
  color: var(--gold);
}
.card p {
  color: var(--muted);
  margin-bottom: 0;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  padding: 0;
  list-style: none;
}
.service-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  margin-right: 0.7rem;
}
.brands {
  text-align: center;
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
}
.brand-list span {
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  font: italic 1rem Georgia;
  color: #4c5553;
  background: #fff;
}
.cta {
  background: var(--green);
  color: white;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 55px;
  padding-bottom: 55px;
}
.cta h2 {
  margin: 0;
}
.page-hero {
  padding: 100px 0 75px;
  background:
    linear-gradient(90deg, rgba(8, 12, 12, 0.95), rgba(8, 12, 12, 0.45)),
    url("../images/watch-hero.jpg") center/cover;
  color: white;
}
.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  font: italic 1.2rem Georgia;
  color: var(--gold);
}
.step h3 {
  margin: 0 0 0.4rem;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  background: white;
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallery figcaption {
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.faq {
  max-width: 900px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.faq summary {
  cursor: pointer;
  font:
    1.2rem Georgia,
    serif;
  padding-right: 2rem;
}
.faq details p {
  color: var(--muted);
  padding-right: 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}
.contact-card {
  background: var(--charcoal);
  color: white;
  padding: 40px;
}
.contact-card a {
  color: #e0ca95;
}
.map {
  border: 0;
  width: 100%;
  min-height: 430px;
}
.notice {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.3rem;
  background: var(--cream);
}
.footer {
  background: #0e1112;
  color: #aeb6b4;
  padding: 60px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer h3 {
  color: white;
}
.footer a {
  color: #d8dcdb;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #303536;
  margin-top: 45px;
  padding-top: 20px;
  font-size: 0.75rem;
  color: #7f8987;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin: 0.35rem 0;
}
@media (max-width: 850px) {
  .topbar {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #121617;
    padding: 1rem 20px 1.4rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    min-height: 620px;
    background-position: 62% center;
  }
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta .container {
    display: block;
  }
  .cta .btn {
    margin-top: 1rem;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  .section {
    padding: 65px 0;
  }
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }
  .trust-row div {
    padding: 1rem 0.5rem;
  }
  .service-list,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .gallery img {
    height: 330px;
  }
}
