:root {
  --primary: #000000;
  --secondary: #101010;
  --tertiary: #ffffff;
  --neutral: #e5e7eb;
  --surface: #ffffff;
  --on-surface: #101010;
  --error: #d92d20;
  --muted: #5f6368;
  --line: #e5e7eb;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 30px;
  --radius-full: 9999px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--on-surface);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

a,
button,
input {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-bar {
  display: flex;
  justify-content: center;
  min-height: 34px;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--tertiary);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.admin-bar .site-header {
  top: 32px;
}

.header-main {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 30px;
  max-width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand,
.header-action,
.primary-button,
.secondary-button,
.whatsapp-float,
.brand-tab {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
}

.brand .custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 42px;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transform-origin: bottom center;
}

.brand-mark::before {
  left: 14px;
  top: 7px;
  width: 2px;
  height: 10px;
}

.brand-mark::after {
  left: 15px;
  top: 15px;
  width: 8px;
  height: 2px;
}

.site-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-full);
  background: #f9fafb;
}

.site-search span {
  font-size: 18px;
  font-weight: 700;
}

.site-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--on-surface);
  font-size: 14px;
  font-weight: 500;
}

.site-search input::placeholder {
  color: #777b80;
}

.header-action {
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--on-surface);
  font-size: 14px;
  font-weight: 600;
}

.nav-links ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  white-space: nowrap;
}

.nav-links a:hover,
.header-action:hover {
  opacity: 0.72;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 50px;
  min-height: 620px;
  padding: 70px max(24px, calc((100vw - var(--container)) / 2)) 62px;
  background: var(--secondary);
  color: var(--tertiary);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 10px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.hero-text,
.collection-head p,
.featured-brand p,
.service-grid p,
.contact-section p {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hero-text {
  max-width: 470px;
  opacity: 0.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.primary-button {
  background: var(--primary);
  color: var(--tertiary);
}

.secondary-button {
  border: 1px solid var(--tertiary);
  background: var(--tertiary);
  color: var(--primary);
}

.primary-button:hover,
.secondary-button:hover {
  opacity: 0.78;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 5%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(76%, 455px);
  filter: drop-shadow(0 40px 34px rgba(0, 0, 0, 0.52));
}

.hero-badge {
  position: absolute;
  z-index: 3;
  width: 146px;
  padding: 14px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--on-surface);
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.hero-badge strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.hero-badge-top {
  top: 16%;
  right: 2%;
}

.hero-badge-bottom {
  bottom: 15%;
  left: 0;
}

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #2a2a2a;
}

.benefits-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 18px clamp(20px, 4vw, 50px);
  background: var(--primary);
  color: var(--tertiary);
}

.benefits-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-weight: 700;
}

.benefits-strip strong,
.benefits-strip small {
  display: block;
}

.benefits-strip strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.benefits-strip small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.brand-banner-section,
.collection-section,
.service-section,
.contact-section {
  padding: 50px max(24px, calc((100vw - var(--container)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  color: var(--muted);
}

.section-heading h2 {
  max-width: 720px;
}

.featured-brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--secondary);
  color: var(--tertiary);
}

.featured-brand p {
  max-width: 740px;
  margin-bottom: 0;
  opacity: 0.78;
}

.featured-brand .primary-button {
  background: var(--tertiary);
  color: var(--primary);
}

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

.brand-tab {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 205px;
  padding: 22px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.brand-tab:hover,
.brand-tab.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--tertiary);
}

.brand-tab::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -64px;
  width: 180px;
  height: 180px;
  border: 18px solid currentColor;
  border-radius: 50%;
  opacity: 0.08;
}

.brand-tab span,
.brand-tab strong,
.brand-tab em {
  position: relative;
  z-index: 1;
}

.brand-tab span {
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  opacity: 0.72;
  text-transform: uppercase;
}

.brand-tab strong {
  display: block;
  max-width: 190px;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.brand-tab em {
  color: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.72;
}

.collection-section {
  border-top: 1px solid var(--line);
  background: #f8f8f8;
}

.collection-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.collection-head .eyebrow {
  color: var(--muted);
}

.collection-head p {
  margin-bottom: 4px;
  color: var(--muted);
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.watch-card {
  min-height: 346px;
  padding: 14px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.watch-window {
  display: grid;
  place-items: center;
  min-height: 188px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.6), transparent 34%),
    #f4f4f4;
}

.mini-watch {
  position: relative;
  width: 84px;
  height: 150px;
}

.mini-watch::before,
.mini-watch::after {
  content: "";
  position: absolute;
  left: 31px;
  width: 22px;
  height: 45px;
  border-radius: 12px;
  background: var(--strap);
}

.mini-watch::before {
  top: 0;
}

.mini-watch::after {
  bottom: 0;
}

.mini-face {
  position: absolute;
  top: 38px;
  left: 0;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 8px solid var(--bezel);
  border-radius: 50%;
  background: var(--dial);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.mini-face::before,
.mini-face::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 39px;
  width: 3px;
  border-radius: 3px;
  background: var(--hand);
  transform-origin: bottom center;
}

.mini-face::before {
  height: 26px;
  transform: rotate(26deg);
}

.mini-face::after {
  height: 19px;
  transform: rotate(105deg);
}

.watch-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.watch-card h3 {
  min-height: 48px;
  margin-bottom: 8px;
  color: var(--on-surface);
}

.watch-card p {
  margin-bottom: 14px;
  color: var(--on-surface);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.watch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.watch-meta span {
  padding: 7px 12px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--on-surface);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--neutral);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--tertiary);
  font-size: 12px;
  font-weight: 700;
}

.service-grid p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.contact-section .eyebrow,
.contact-section p {
  color: var(--muted);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-button {
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 15px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .brand-banners,
  .watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-main {
    grid-template-columns: 1fr auto;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 3;
    margin-bottom: 16px;
  }
}

@media (max-width: 920px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .hero,
  .section-heading,
  .featured-brand,
  .collection-head,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .benefits-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    font-size: 11px;
  }

  .header-main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 20px;
  }

  .brand {
    justify-content: center;
  }

  .header-action,
  .site-search,
  .primary-button,
  .secondary-button,
  .brand-jump {
    width: 100%;
  }

  h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .brand-banners,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }

  .watch-card {
    min-height: 320px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
  }
}
