
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: #0d0d0c;
  color: #f5f0e8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.86);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav {
  max-width: 1180px;
  height: 44px;
  margin: auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: .08em;
  color: white;
}
.brand-title {
  letter-spacing: .18em;
  font-size: 12px;
  margin: 0;
  color: rgba(255,255,255,.92);
}
nav {
  display: flex;
  gap: 34px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 44px;
}
nav a:hover { color: white; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-pill {
  width: 130px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.signin {
  background: #0071e3;
  color: white;
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 21px;
  border: none;
  background: #f1c96a;
  color: #17130d;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .25s ease;
}
.btn:hover { background: #ffe09a; transform: translateY(-1px); }
.btn.secondary {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 96px 24px 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0d0d0c 0%, rgba(13,13,12,.84) 45%, rgba(13,13,12,.18) 100%),
    url("assets/jacob-este-main-watch.png");
  background-size: cover;
  background-position: center center;
}
.video-hero .hero-bg { z-index: 0; }

.hero-motion-image {
  position: absolute;
  inset: -8%;
  z-index: 1;
  background:
    radial-gradient(circle at 62% 45%, rgba(241,201,106,.09), transparent 30%),
    url("assets/jacob-este-main-watch.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 68% center;
  opacity: .72;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.58));
  animation: luxuryWatchMove 14s ease-in-out infinite alternate;
}
.hero-video {
  display: none;
}
@keyframes luxuryWatchMove {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: brightness(.9) contrast(1.08) drop-shadow(0 30px 70px rgba(0,0,0,.58));
  }
  45% {
    transform: scale(1.035) translate3d(-16px, 4px, 0);
    filter: brightness(1.02) contrast(1.14) drop-shadow(0 38px 90px rgba(0,0,0,.72));
  }
  100% {
    transform: scale(1.07) translate3d(-34px, -6px, 0);
    filter: brightness(.96) contrast(1.12) drop-shadow(0 34px 82px rgba(0,0,0,.65));
  }
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(13,13,12,.98) 0%, rgba(13,13,12,.82) 42%, rgba(13,13,12,.24) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.62) 100%);
}
.video-hero .container { z-index: 3; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: end;
}
.kicker {
  color: rgba(241,201,106,.92);
  letter-spacing: .26em;
  font-size: 11px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
  max-width: 760px;
}
.lead {
  color: #d1c8ba;
  font-size: 17px;
  line-height: 1.65;
  max-width: 590px;
  margin: 0 0 30px;
  font-weight: 300;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.glass-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}
.glass-card .icon { font-size: 28px; margin-bottom: 22px; }
.glass-card p.large {
  font-size: 24px;
  line-height: 1.26;
  margin: 0;
  font-weight: 300;
  letter-spacing: -.02em;
}
.section { padding: 96px 24px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 42px;
}
h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.045em;
  margin: 0;
}
.muted {
  color: #9b9388;
  line-height: 1.65;
  max-width: 540px;
  font-size: 15px;
  font-weight: 300;
}
.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.watch-card {
  background: #171716;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 25px;
  overflow: hidden;
  transition: .3s ease;
}
.watch-card:hover { transform: translateY(-5px); }
.watch-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  transition: .7s ease;
}
.watch-card:hover img { transform: scale(1.035); }
.watch-card-content { padding: 23px; }
.watch-brand {
  color: rgba(241,201,106,.9);
  letter-spacing: .22em;
  font-size: 11px;
  text-transform: uppercase;
}
.watch-card h3 {
  font-size: 22px;
  font-weight: 300;
  margin: 9px 0 22px;
  letter-spacing: -.02em;
}
.watch-meta {
  color: #8f867b;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}
.showcase {
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: radial-gradient(circle at top right, rgba(241,201,106,.12), transparent 34%), #111110;
}
.showcase-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}
.showcase-img-wrap {
  border-radius: 34px;
  overflow: hidden;
  background: #1b1b1a;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 70px rgba(0,0,0,.38);
}
.showcase-img-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.detail-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #d6cec2;
  font-size: 14px;
}
.detail-row span:first-child {
  color: #8f867b;
}
.channel-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.channel-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.055);
  border-radius: 20px;
  padding: 18px;
}
.channel-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
}
.channel-card p {
  margin: 0;
  color: #9b9388;
  font-size: 13px;
  line-height: 1.55;
}

.transparent-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.transparent-panel {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(241,201,106,.22);
  background: #080808;
  box-shadow: 0 32px 90px rgba(0,0,0,.5);
}
.transparent-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.transparent-caption {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.transparent-caption span {
  display: block;
  color: #f1c96a;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  margin-bottom: 10px;
}
.transparent-caption strong {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.transparent-caption p {
  margin: 0;
  color: #9b9388;
  line-height: 1.6;
  font-size: 14px;
}

.luxury-gallery-section {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.luxury-gallery-image-wrap {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(241,201,106,.22);
  background: #080808;
  box-shadow: 0 32px 90px rgba(0,0,0,.55);
}
.luxury-gallery-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}


.allocation-section {
  background:
    radial-gradient(circle at top right, rgba(241,201,106,.12), transparent 34%),
    linear-gradient(180deg, #0b0b0b, #050505);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.allocation-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 52px;
  align-items: center;
}
.allocation-card {
  border: 1px solid rgba(241,201,106,.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)),
    radial-gradient(circle at top, rgba(241,201,106,.14), transparent 42%);
  border-radius: 32px;
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 32px 90px rgba(0,0,0,.48);
}
.hourglass {
  font-size: 42px;
  margin-bottom: 22px;
}
.allocation-label {
  color: #f1c96a;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 11px;
  margin: 0 0 12px;
}
.allocation-card h3 {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -.04em;
  margin: 0 0 28px;
}
.allocation-details {
  display: grid;
  gap: 0;
}
.allocation-details div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #d6cec2;
  font-size: 14px;
}
.allocation-details span {
  color: #8f867b;
}
.allocation-details strong {
  font-weight: 500;
  color: #f5f0e8;
}

.light {
  background: #f4efe6;
  color: #17130d;
}
.method-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 64px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: white;
  border: 1px solid #e7ded2;
  border-radius: 25px;
  padding: 27px;
  box-shadow: 0 10px 35px rgba(0,0,0,.055);
}
.service-icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #111;
  color: #f1c96a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.service-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.service-card p { margin: 0; color: #665d53; line-height: 1.6; font-size: 14.5px; font-weight: 300; }
.house-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.house-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 32px;
}
.contact { border-top: 1px solid rgba(255,255,255,.09); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 48px;
  align-items: center;
}
.contact-box {
  background: rgba(255,255,255,.055);
  border-radius: 27px;
  padding: 28px;
  display: grid;
  gap: 17px;
  font-size: 14px;
}
footer {
  padding: 28px 24px;
  color: #766f66;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 12px;
}
.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a:hover { color: #ddd; }
.policy-page {
  background: #f5f5f7;
  color: #1d1d1f;
  padding: 88px 24px 70px;
  min-height: 100vh;
}
.policy-card {
  max-width: 880px;
  margin: auto;
  background: white;
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.policy-card h1 {
  color: #1d1d1f;
  font-size: clamp(38px, 5vw, 58px);
  margin-bottom: 22px;
  letter-spacing: -.05em;
}
.policy-card h2 {
  color: #1d1d1f;
  font-size: 24px;
  margin-top: 34px;
}
.policy-card p, .policy-card li {
  color: #515154;
  line-height: 1.7;
  font-size: 15px;
}
.policy-card a { color: #0066cc; }
@media (max-width: 900px) {
  .hero-motion-image {
    background-position: center 54%;
    background-size: 88%;
    opacity: .58;
  }
  nav, .search-pill, .signin { display: none; }
  .hero-grid, .method-grid, .house-grid, .contact-grid, .showcase-grid, .glass-card { display: none; }
  .watch-grid, .service-grid, .channel-box { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .nav { padding: 0 17px; }
  .hero { padding-top: 88px; }
  .showcase-img-wrap img { height: 520px; }
  .transparent-panel img { height: 520px; }
}
