 * { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --cream: #EAEFEF;
    --mist: #BFC9D1;
    --dark: #25343F;
    --accent: #FF9B51;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--cream); color: var(--dark); font-family: var(--sans); overflow-x: hidden; }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 5rem;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    padding: 0.9rem 5rem;
    background: #25343F;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(37,52,63,0.07);
    color: #EAEFEF;
  }
  nav.scrolled a {
    color:#EAEFEF
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.7rem; font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--dark); text-decoration: none;
  }
  .nav-logo em { color: var(--accent); font-style: normal; }
  .nav-links { display: flex; gap: 2.8rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--dark);
    font-size: 0.78rem; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 500;
    position: relative; transition: color 0.25s;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    bottom: -5px; left: 0; right: 0;
    height: 1px; background: var(--accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s ease;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-links a.active { color: var(--accent); }
  .nav-links a.active::after { transform: scaleX(1); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  nav.scrolled .hamburger span {
  background: #EAEFEF; 
}
  .hamburger span { width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; display: block; }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 190;
    background: rgba(234,239,239,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.8rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--serif); font-size: 2.4rem;
    color: var(--dark); text-decoration: none;
    letter-spacing: 0.1em; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-close {
    position: absolute; top: 1.8rem; right: 2.5rem;
    font-size: 1.5rem; cursor: pointer;
    color: var(--dark); background: none; border: none;
    font-family: var(--sans);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5rem;
    padding-top: 5rem;
    position: relative; overflow: hidden;
  }
  .hero-bg-text {
    position: absolute; right: -3rem; top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif); font-size: 20rem; font-weight: 900;
    color: rgba(191,201,209,0.13); letter-spacing: -0.05em;
    pointer-events: none; user-select: none; white-space: nowrap;
    line-height: 1;
  }
  .hero-text { position: relative; z-index: 2; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.7rem;
    font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.4rem;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.3s forwards;
  }
  .hero-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: var(--accent);
  }
  .hero-title {
    font-family: var(--serif);
    font-size: 4.2rem; line-height: 1.08;
    font-weight: 900; color: var(--dark);
    margin-bottom: 1.6rem;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.5s forwards;
  }
  .hero-title em { color: var(--accent); font-style: italic; }
  .hero-sub {
    font-size: 0.97rem; line-height: 1.8;
    color: rgba(37,52,63,0.55); max-width: 400px;
    margin-bottom: 2.8rem; font-weight: 300;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.7s forwards;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp 0.7s ease 0.9s forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.8rem;
    background: var(--dark); color: var(--cream);
    padding: 1rem 2.2rem;
    text-decoration: none; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    position: relative; overflow: hidden; transition: all 0.35s ease;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--accent); transform: translateX(-101%);
    transition: transform 0.4s ease; z-index: 0;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { color: var(--dark); }
  .btn-primary span, .btn-primary .arr { position: relative; z-index: 1; }
  .btn-primary:hover .arr { transform: translateX(4px); }
  .arr { display: inline-block; transition: transform 0.3s; }
  .btn-ghost {
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(37,52,63,0.55); text-decoration: none; font-weight: 500;
    border-bottom: 1px solid rgba(37,52,63,0.25);
    padding-bottom: 2px; transition: all 0.3s;
  }
  .btn-ghost:hover { color: var(--dark); border-color: var(--dark); }

  /* ── WATCH VISUAL ── */
  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    opacity: 0; transform: translateX(30px) scale(0.96);
    animation: heroVisual 1s ease 0.6s forwards;
  }
  .watch-ring-outer {
    width: 440px; height: 440px; border-radius: 50%;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .watch-ring-outer::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 1px dashed rgba(37,52,63,0.12);
    animation: spin 25s linear infinite;
  }
  .watch-ring-outer::after {
    content: ''; position: absolute; inset: -30px; border-radius: 50%;
    border: 1px dashed rgba(255,155,81,0.18);
    animation: spin 40s linear infinite reverse;
  }
  .watch-body {
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(ellipse at 35% 30%, #3a5060, #1a2830 70%);
    display: flex; align-items: center; justify-content: center;
    box-shadow:
      0 40px 100px rgba(37,52,63,0.35),
      0 10px 30px rgba(37,52,63,0.2),
      inset 0 2px 8px rgba(255,255,255,0.06);
    position: relative;
  }
  .watch-lug { position: absolute; width: 26px; height: 50px; background: #2a3f4e; }
  .watch-lug.top { top: -38px; left: 50%; transform: translateX(-50%); border-radius: 3px 3px 0 0; }
  .watch-lug.bottom { bottom: -38px; left: 50%; transform: translateX(-50%); border-radius: 0 0 3px 3px; }
  .watch-crown { position: absolute; right: -18px; top: 50%; transform: translateY(-50%); width: 18px; height: 34px; background: #334d5e; border-radius: 0 6px 6px 0; }
  .watch-face {
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(ellipse at 40% 35%, #2e4454, #1a2830 80%);
    border: 2px solid rgba(255,155,81,0.2);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .watch-face::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: repeating-conic-gradient(rgba(255,155,81,0.03) 0deg, transparent 1deg, transparent 29deg, rgba(255,155,81,0.03) 30deg);
  }
  .tick {
    position: absolute; width: 1px; height: 8px;
    background: rgba(255,155,81,0.4);
    transform-origin: 0.5px 130px;
  }
  .tick.major { height: 14px; width: 2px; background: rgba(255,155,81,0.6); }
  .watch-center { display: flex; flex-direction: column; align-items: center; gap: 3px; z-index: 5; }
  .watch-brand-text { font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.25em; color: var(--cream); font-weight: 700; }
  .watch-model-text { font-size: 0.52rem; letter-spacing: 0.35em; color: var(--mist); text-transform: uppercase; opacity: 0.7; }
  .hands-layer { position: absolute; inset: 0; border-radius: 50%; }
  .hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; border-radius: 2px; }
  .hand-hour { width: 3px; height: 62px; background: var(--cream); margin-left: -1.5px; }
  .hand-min { width: 2px; height: 84px; background: rgba(234,239,239,0.85); margin-left: -1px; }
  .hand-sec { width: 1px; height: 96px; background: var(--accent); margin-left: -0.5px; }
  .hand-sec::after { content: ''; position: absolute; bottom: -14px; left: -3px; width: 7px; height: 18px; background: var(--accent); border-radius: 2px; }
  .center-dot { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--accent); z-index: 10; }
  .date-window {
    position: absolute; right: 28%; top: 50%; transform: translateY(-50%);
    background: var(--cream); width: 22px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; font-weight: 700; color: var(--dark); z-index: 6;
  }
  .price-badge {
    position: absolute; bottom: 10px; right: -8px;
    background: var(--accent); color: var(--dark);
    padding: 0.55rem 1.2rem; font-size: 0.85rem;
    font-weight: 700; letter-spacing: 0.04em; font-family: var(--sans);
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    overflow: hidden; background: var(--dark); padding: 1rem 0;
    border-top: 1px solid rgba(255,155,81,0.15);
    border-bottom: 1px solid rgba(255,155,81,0.15);
  }
  .marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(191,201,209,0.45); white-space: nowrap;
    display: flex; align-items: center; gap: 1.5rem;
  }
  .marquee-item::after { content: '◆'; color: var(--accent); font-size: 0.5rem; }

  /* ── FEATURES ── */
  .features {
    padding: 7rem 5rem;
    background: var(--dark);
    position: relative; overflow: hidden;
  }
  .features-top-line {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  }
  .section-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
  .section-heading {
    font-family: var(--serif); font-size: 2.8rem;
    font-weight: 900; color: var(--cream);
    line-height: 1.12; margin-bottom: 4rem;
  }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(191,201,209,0.06); }
  .feat-card {
    padding: 2.8rem 2.2rem; background: var(--dark);
    position: relative; overflow: hidden;
    transition: background 0.4s ease; cursor: default;
  }
  .feat-card:hover { background: rgba(255,155,81,0.04); }
  .feat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s ease;
  }
  .feat-card:hover::after { transform: scaleX(1); }
  .feat-num {
    font-family: var(--serif); font-size: 3.5rem; font-weight: 900;
    color: rgba(191,201,209,0.06); position: absolute; right: 1.5rem; top: 1.2rem;
    line-height: 1; user-select: none;
  }
  .feat-icon-wrap {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,155,81,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: all 0.3s ease;
    overflow: hidden;
  }
  .feat-card:hover .feat-icon-wrap { background: rgba(255,155,81,0.08); border-color: rgba(255,155,81,0.4); }
  .feat-icon { font-size: 1.3rem; }
  .feat-title { font-size: 1.05rem; font-weight: 500; color: var(--cream); margin-bottom: 0.7rem; }
  .feat-desc { font-size: 0.86rem; color: rgba(191,201,209,0.55); line-height: 1.75; font-weight: 300; }

  /* ── PRODUCTS / PRICING SECTION ── */
  .pricing {
    padding: 7rem 5rem;
    background: var(--cream);
    position: relative;
  }

  /* Section header row */
  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
  }
  .section-tag {
    font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-tag::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
  .section-title {
    font-family: var(--serif); font-size: 2.8rem;
    font-weight: 900; color: var(--dark); line-height: 1.12;
  }

  /* Cards grid */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .card {
    background: #fff;
    border: 1px solid rgba(37,52,63,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(37,52,63,0.12);
  }
  .card-img { overflow: hidden; }
  .watch-img-size {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.4s ease; display: block;
  }
  .card:hover .watch-img-size { transform: scale(1.07); }
  .card-body { padding: 1.2rem; }
  .card-collection {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(37,52,63,0.4); margin-bottom: 0.3rem;
  }
  .card-name {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
    color: var(--dark); margin-bottom: 0.4rem;
  }
  .card-desc {
    font-size: 0.82rem; color: rgba(37,52,63,0.55);
    line-height: 1.6; margin-bottom: 1rem; font-weight: 300;
  }
  .card-footer { display: flex; justify-content: space-between; align-items: center; }
  .card-price {
    font-family: var(--serif); font-size: 1.15rem;
    font-weight: 700; color: var(--accent);
  }
  .card-add {
    background: var(--dark); color: var(--cream);
    border: none; width: 32px; height: 32px;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s ease;
  }
  .card-add:hover { background: var(--accent); color: var(--dark); }

  /* ── CTA ── */
  .cta {
    padding: 6rem 5rem;
    background: var(--mist);
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden; gap: 3rem;
  }
  .cta::before {
    content: ''; position: absolute;
    left: -120px; top: -120px;
    width: 420px; height: 420px; border-radius: 50%;
    background: rgba(255,155,81,0.07); pointer-events: none;
  }
  .cta::after {
    content: ''; position: absolute;
    right: 5%; bottom: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(37,52,63,0.06); pointer-events: none;
  }
  .cta-text { position: relative; z-index: 1; }
  .cta-label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
  .cta-heading {
    font-family: var(--serif); font-size: 3rem; font-weight: 900;
    color: var(--dark); line-height: 1.1; margin-bottom: 0.6rem;
  }
  .cta-sub { font-size: 0.92rem; color: rgba(37,52,63,0.55); font-weight: 300; }
  .cta-buttons { display: flex; gap: 1rem; position: relative; z-index: 1; flex-wrap: wrap; }
  .cta-btn-dark {
    display: inline-block; background: var(--dark); color: var(--cream);
    padding: 1rem 2.2rem; text-decoration: none;
    font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    transition: all 0.3s ease;
  }
  .cta-btn-dark:hover { background: var(--accent); color: var(--dark); }
  .cta-btn-outline {
    display: inline-block; background: transparent; color: var(--dark);
    padding: 1rem 2.2rem; border: 1px solid rgba(37,52,63,0.35);
    text-decoration: none; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
    transition: all 0.3s ease;
  }
  .cta-btn-outline:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }

  /* ── FOOTER ── */
  footer {
    background: var(--dark); padding: 1.6rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.8rem;
  }
  .footer-logo { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.18em; color: var(--cream); font-weight: 700; }
  .footer-logo em { color: var(--accent); font-style: normal; }
  .footer-copy { font-size: 0.75rem; color: rgba(191,201,209,0.3); letter-spacing: 0.06em; }
  .footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(191,201,209,0.2); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── KEYFRAMES ── */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes heroVisual { to { opacity: 1; transform: translateX(0) scale(1); } }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1000px) {
    nav, nav.scrolled { padding: 1.2rem 2.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { grid-template-columns: 1fr; padding: 2.5rem; padding-top: 7rem; gap: 4rem; text-align: center; }
    .hero-bg-text { font-size: 9rem; right: 0; }
    .hero-sub { margin: 0 auto 2.8rem; }
    .hero-actions { justify-content: center; }
    .watch-ring-outer { width: 300px; height: 300px; }
    .watch-body { width: 220px; height: 220px; }
    .watch-face { width: 178px; height: 178px; }
    .hand-hour { height: 42px; }
    .hand-min { height: 56px; }
    .hand-sec { height: 64px; }
    .features { padding: 5rem 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing { padding: 5rem 2.5rem; }
    .cta { flex-direction: column; text-align: center; padding: 4.5rem 2.5rem; }
    .cta-buttons { justify-content: center; }
    footer { padding: 1.6rem 2.5rem; flex-direction: column; text-align: center; }
  }
  @media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; }
    .hero-title { font-size: 2.6rem; }
    .section-heading { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .cta-heading { font-size: 2rem; }
  }