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

:root {
  --bg: #070707;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #f5efe5;
  --muted: #b8ada0;
  --gold: #c9a45c;
  --line: rgba(201, 164, 92, 0.23);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7%;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  letter-spacing: 4px;
  font-weight: 700;
}

.logo span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--gold);
  margin-top: -6px;
}

nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  color: var(--gold);
  font-size: 14px;
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 60px;
  align-items: center;
  padding: 94px 7%;
  background:
    radial-gradient(circle at 75% 35%, rgba(201, 164, 92, 0.22), transparent 32%),
    linear-gradient(135deg, #070707 0%, #111111 55%, #040404 100%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(45px, 7vw, 92px);
  max-width: 900px;
}

.hero-text {
  margin: 26px 0 34px;
  color: var(--muted);
  max-width: 660px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  font-weight: 700;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--gold);
  color: #070707;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(201, 164, 92, 0.18);
}

.btn.secondary {
  color: var(--gold);
}

.btn.secondary:hover,
.nav-cta:hover {
  background: rgba(201, 164, 92, 0.12);
}

.hero-card {
  padding: 40px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  min-height: 448px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.watch-circle {
  position: absolute;
  width: 285px;
  height: 285px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 45px;
  right: 38px;
  opacity: 0.88;
}

.watch-circle::before,
.watch-circle::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,229,0.25);
}

.watch-circle::after {
  inset: 92px;
  background: radial-gradient(circle, var(--gold), #30220d);
  border: none;
}

.hero-card p {
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-card h2 {
  font-size: 38px;
  margin: 12px 0;
}

.hero-card span {
  color: var(--muted);
}

.brands {
  padding: 36px 7%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 30px;
}

.brands p {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-grid span {
  padding: 20px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 2px;
}

.section {
  padding: 96px 7%;
}

.section.dark {
  background: #0c0c0c;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.service-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-grid article,
.watch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
}

.service-grid h3,
.watch-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.service-grid p,
.watch-card p,
.contact p,
footer p {
  color: var(--muted);
}

.watch-image {
  height: 220px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at center, rgba(201,164,92,0.31), transparent 34%),
    linear-gradient(145deg, #252525, #090909);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.watch-image::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.watch-image::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 7px;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform-origin: left;
  transform: rotate(-25deg);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust div {
  padding: 34px 7vw;
  border-right: 1px solid var(--line);
}

.trust strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.trust span {
  color: var(--muted);
}

.contact {
  padding: 90px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    linear-gradient(90deg, rgba(201,164,92,0.13), transparent),
    #101010;
}

.contact div {
  max-width: 700px;
}

.phone {
  margin-top: 18px;
}

.phone a {
  color: var(--gold);
  font-weight: 700;
}

footer {
  padding: 34px 7%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 18px;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .brands {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid,
  .brand-grid,
  .trust {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }

  .service-grid,
  .portfolio-grid,
  .brand-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    min-height: 360px;
  }

  .watch-circle {
    width: 220px;
    height: 220px;
  }
}
