/* ============================================
   timeogler — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- Design Tokens ---- */
:root {
  --black:        #0a0a0a;
  --white:        #ffffff;
  --accent:       #4A90E2;
  --accent-hover: #3a7ed4;
  --accent-light: #edf4fb;
  --accent-lt:    #6FB1FF;
  --bg-light:     #f7f7f5;
  --border:       #e2e2de;
  --text:         #1c1c1a;
  --muted:        #6b6b65;
  --max-w:        1200px;
  --header-h:     70px;
  --ease:         200ms ease;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ============================================ HEADER ============================================ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); background: var(--black);
  z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06);
}
header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }
.logo em { color: var(--accent); font-style: normal; }
nav ul { list-style: none; display: flex; gap: 40px; }
nav a { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; transition: color var(--ease); padding-bottom: 2px; border-bottom: 1px solid transparent; }
nav a:hover, nav a.active { color: var(--white); border-bottom-color: var(--accent); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--ease); }

/* ============================================ HERO ============================================ */
.hero { min-height: 100vh; background: var(--black); display: flex; align-items: center; padding-top: var(--header-h); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(66,133,200,0.08) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(66,133,200,0.3), transparent); }
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.eyebrow { display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 68px); font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.08; letter-spacing: -0.02em; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 40px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 1px; border: none; cursor: pointer; transition: var(--ease); white-space: nowrap; }
.btn-accent {
  background: linear-gradient(135deg, #4A90E2, #6FB1FF);
  color: var(--white);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(74,144,226,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #3a7ed4, #4A90E2);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74,144,226,0.3);
}
.btn-accent:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(74,144,226,0.18);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.btn-ghost:hover { border-color: var(--accent-lt); color: var(--white); background: rgba(74,144,226,0.08); }

/* ============================================ PAGE BANNER ============================================ */
.page-banner { background: var(--black); padding: calc(var(--header-h) + 64px) 0 60px; position: relative; }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(66,133,200,0.25), transparent); }
.page-banner h1 { font-size: clamp(30px, 4.5vw, 50px); color: var(--white); margin-bottom: 10px; }
.page-banner p { font-size: 14px; color: rgba(255,255,255,0.38); }

/* ============================================ SECTIONS ============================================ */
.section { padding: 88px 0; }
.section-bg { background: var(--bg-light); }
.section-header { margin-bottom: 52px; }
.section-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; }
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 480px; line-height: 1.7; }

/* ============================================ WATCH CARDS ============================================ */
.watches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)); gap: 28px; }
.watch-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: box-shadow var(--ease), transform var(--ease); cursor: pointer; }
.watch-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.09); transform: translateY(-3px); border-color: rgba(74,144,226,0.35); }
.watch-card-image { aspect-ratio: 1; overflow: hidden; background: var(--bg-light); position: relative; }
.watch-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.watch-card:hover .watch-card-image img { transform: scale(1.04); }
.watch-card-image.img-error { display: flex; align-items: center; justify-content: center; background: #111110; }
.watch-card-image.img-error::after { content: 'T'; font-family: 'Playfair Display', serif; font-size: 88px; color: rgba(66,133,200,0.12); }
.sold-badge { position: absolute; top: 14px; left: 14px; background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: #ffffff; font-size: 9.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 11px; border: none; box-shadow: 0 0 0 1px rgba(74,144,226,0.3); transform: rotate(3deg); }
.watch-card-body { padding: 20px 22px 26px; }
.watch-card-name { font-family: 'Playfair Display', serif; font-size: 16.5px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.watch-card-ref { font-size: 12px; color: var(--muted); margin-bottom: 12px; letter-spacing: 0.02em; }
.watch-card-price { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.watch-card-listed { font-size: 11px; color: var(--muted); margin-top: 5px; letter-spacing: 0.02em; }
.watch-card-status { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* ============================================ WATCH LISTING PAGE ============================================ */
.breadcrumb { padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 52px; }
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { font-size: 12.5px; color: var(--muted); }
.breadcrumb li a { transition: color var(--ease); }
.breadcrumb li a:hover { color: var(--accent); }
.breadcrumb li.sep { color: var(--border); }
.breadcrumb li.current { color: var(--accent); font-weight: 500; }
.listing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.gallery-main { aspect-ratio: 1; background: var(--bg-light); overflow: hidden; cursor: zoom-in; margin-bottom: 10px; border: 1px solid var(--border); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-main.empty { display: flex; align-items: center; justify-content: center; background: #111110; }
.gallery-main.empty::after { content: 'T'; font-family: 'Playfair Display', serif; font-size: 120px; color: rgba(66,133,200,0.1); }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.g-thumb { width: 70px; height: 70px; border: 2px solid transparent; overflow: hidden; cursor: pointer; background: var(--bg-light); flex-shrink: 0; transition: border-color var(--ease); }
.g-thumb.active { border-color: var(--accent); }
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-counter { font-size: 11.5px; color: var(--muted); margin-top: 10px; letter-spacing: 0.04em; }
.listing-sold-banner { display: flex; align-items: center; gap: 10px; background: var(--accent-light); border-left: 3px solid var(--accent); padding: 11px 16px; margin-bottom: 22px; font-size: 13px; font-weight: 500; color: #2d4e6e; }
.listing-sold-banner .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.listing-listed-date { display: flex; align-items: center; gap: 10px; background: rgba(66,168,66,0.06); border-left: 3px solid #42a842; padding: 11px 16px; margin-bottom: 22px; font-size: 13px; font-weight: 500; color: #2e5e2e; }
.listing-listed-date .dot { width: 7px; height: 7px; border-radius: 50%; background: #42a842; flex-shrink: 0; }
.listing-name { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.listing-ref { font-size: 13px; color: var(--muted); margin-bottom: 20px; letter-spacing: 0.03em; }
.listing-price { font-size: 30px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; margin-bottom: 24px; }
.accent-rule { width: 36px; height: 2px; background: var(--accent); margin-bottom: 28px; }
.listing-description { font-size: 15px; line-height: 1.85; color: #3c3c38; }
.listing-description p { margin-bottom: 16px; }
.listing-description p:last-child { margin-bottom: 0; }
.listing-actions { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.btn-cart { display: block; width: 100%; padding: 16px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 1px; cursor: pointer; transition: var(--ease); }
.btn-cart.available {
  background: linear-gradient(135deg, #4A90E2, #6FB1FF);
  color: var(--white);
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(74,144,226,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-cart.available:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74,144,226,0.3);
}
.btn-cart.available:active { transform: scale(0.98); }
.btn-cart.sold { background: #e4e4e0; color: #9a9a94; cursor: not-allowed; }

/* ============================================ HOME ABOUT GRID ============================================ */
/* Class-based so media query can override (inline styles can't be overridden) */
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ============================================ HOME FEATURE STRIP ============================================ */
.feature-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-item { padding: 36px 32px; border-right: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start; }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 36px; height: 36px; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.feature-item h3 { font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; margin-bottom: 5px; }
.feature-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================ ABOUT PAGE ============================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-block { aspect-ratio: 4/5; background: linear-gradient(135deg, #111110 0%, #1c1c18 100%); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(66,133,200,0.15); position: relative; overflow: hidden; }
.about-image-block::before { content: 'TO'; font-family: 'Playfair Display', serif; font-size: 160px; font-weight: 700; color: rgba(66,133,200,0.06); letter-spacing: 0.05em; }
.about-image-block span { position: absolute; bottom: 28px; right: 28px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(66,133,200,0.4); }
.about-text h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 22px; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--muted); margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 80px; }
.pillar { background: var(--white); padding: 40px 28px; text-align: center; }
.pillar-icon { width: 44px; height: 44px; border: 1px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 17px; margin: 0 auto 18px; }
.pillar h3 { font-size: 16px; margin-bottom: 10px; }
.pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ============================================ CONTACT PAGE ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 28px; margin-bottom: 14px; }
.contact-info > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.c-method { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--border); transition: border-color var(--ease), background var(--ease); }
.c-method:hover { border-color: var(--accent); background: var(--accent-light); }
.c-icon { width: 40px; height: 40px; background: var(--black); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.c-method-text h4 { font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.c-method-text p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }
.contact-form-wrap { background: var(--bg-light); padding: 44px; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-size: 22px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-input, .form-textarea { width: 100%; padding: 11px 14px; background: var(--white); border: 1px solid var(--border); font-size: 14.5px; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color var(--ease); border-radius: 1px; }
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { height: 130px; resize: vertical; }

/* ============================================ FOOTER ============================================ */
footer { background: var(--black); padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ============================================ LIGHTBOX ============================================ */
.lightbox { position: fixed; inset: 0; background: rgba(5,5,4,0.94); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 220ms ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 88vw; max-height: 88vh; object-fit: contain; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.lb-btn { position: absolute; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: none; border-radius: 50%; color: rgba(255,255,255,0.7); font-size: 18px; cursor: pointer; transition: background var(--ease), color var(--ease); }
.lb-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================ CART BADGE ============================================ */
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: var(--white);
  font-size: 9.5px; font-weight: 700; border-radius: 999px;
  vertical-align: middle; margin-left: 4px; line-height: 1;
}

/* ============================================ TOAST ============================================ */
.to-toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 2000;
  padding: 13px 20px; font-size: 13.5px; font-weight: 500;
  border-radius: 2px; box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  opacity: 0; transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}
.to-toast.visible { opacity: 1; transform: translateY(0); }
.to-toast-success { background: var(--black); color: var(--white); }
.to-toast-error   { background: #8b1a1a; color: var(--white); }

/* ============================================ CART PAGE ============================================ */
.cart-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 52px; }
.cart-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 28px;
  padding: 24px; border: 1px solid var(--border);
  transition: border-color var(--ease);
}
.cart-item:hover { border-color: var(--accent); }
.cart-item-image { display: block; }
.cart-item-img-wrap {
  width: 120px; height: 120px; background: var(--bg-light); overflow: hidden;
}
.cart-item-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img-wrap.img-error { display: flex; align-items: center; justify-content: center; background: #111110; }
.cart-item-body { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cart-item-ref  { font-size: 12px; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.02em; }
.cart-item-price { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cart-remove-btn {
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  background: none; border: none; cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--ease);
}
.cart-remove-btn:hover { color: #8b1a1a; }
.cart-footer-note {
  padding: 24px 28px; background: var(--bg-light); border: 1px solid var(--border);
  font-size: 14px; color: var(--muted); line-height: 1.75;
}

/* ---- In-cart button state ---- */
.btn-cart.in-cart { background: var(--accent); }
.btn-cart.in-cart:hover { background: var(--accent-hover); }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 900px) {
  .listing-grid { grid-template-columns: 1fr; gap: 44px; }
  .gallery { position: static; }
  .about-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-image-block { aspect-ratio: 16/7; }
  .pillars { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* ─ Section vertical padding: 88px is too tall on mobile ─ */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .page-banner { padding: calc(var(--header-h) + 36px) 0 32px; }

  /* ─ Buttons: 44px minimum touch target ─ */
  .btn { min-height: 44px; }

  /* ─ Forms: 16px font prevents iOS auto-zoom on input focus ─ */
  .form-input, .form-textarea { font-size: 16px; }

  /* ─ Contact methods: comfortable tap area ─ */
  .c-method { min-height: 64px; }

  /* ─ Cart: smaller thumbnail, tighter gaps, tappable remove button ─ */
  .cart-item { grid-template-columns: 88px 1fr; gap: 14px; padding: 16px; }
  .cart-item-img-wrap { width: 88px; height: 88px; }
  .cart-remove-btn { min-height: 44px; display: inline-flex; align-items: center; padding: 0 4px; }

  /* ─ Footer: increase link tap area ─ */
  .footer-col a { padding: 5px 0; display: inline-block; }
  .footer-col ul { gap: 2px; }

  /* ─ Home about section: single column ─ */
  .home-about-grid { grid-template-columns: 1fr; gap: 36px; }

  /* ─ Watch listing page: tighter breadcrumb, slightly smaller price ─ */
  .breadcrumb { padding: 12px 0; margin-bottom: 28px; }
  .listing-price { font-size: 24px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: #0f0f0d; padding: 28px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all 220ms ease; border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  nav ul { flex-direction: column; gap: 22px; }
  nav a { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .watches-grid { grid-template-columns: 1fr; }
}
