:root {
  --ink: #101a2f;
  --ink-soft: #435066;
  --paper: #fbfaf7;
  --white: #ffffff;
  --tint: #f0f3f2;
  --line: #d9dfdd;
  --copper: #b96f4d;
  --copper-dark: #874b35;
  --sage: #b9c8bd;
  --max: 1180px;
  --shadow: 0 18px 55px rgba(16, 26, 47, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251, 250, 247, .96); border-bottom: 1px solid rgba(217, 223, 221, .85); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; font-weight: 800; letter-spacing: .14em; }
.brand-mark { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--copper); color: var(--copper); font-size: 13px; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: 13px; color: var(--ink-soft); }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a:not(.nav-cta):hover, .site-nav a.active { color: var(--ink); }
.site-nav a:not(.nav-cta).active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px; background: var(--copper); }
.nav-cta { padding: 11px 16px !important; color: var(--white) !important; background: var(--ink); }
.nav-cta:hover { background: var(--copper-dark); }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; background: var(--ink); }
.hero-image { position: absolute; inset: 0; background: url("hero-watch.jpg") center 44% / cover no-repeat; opacity: .62; filter: saturate(.82); }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(8, 17, 30, .62); }
.hero-content { position: relative; z-index: 1; padding: 92px 0 82px; }
.eyebrow { margin: 0 0 16px; color: var(--copper-dark); font-size: 11px; font-weight: 800; letter-spacing: .16em; line-height: 1.4; text-transform: uppercase; }
.eyebrow.light { color: #e5b59e; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; color: var(--white); font-size: clamp(42px, 5.8vw, 76px); font-weight: 650; letter-spacing: -.04em; line-height: .98; }
.hero-subtitle { max-width: 570px; margin-bottom: 34px; color: #eef2f1; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; font-size: 13px; font-weight: 750; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--white); }
.button-primary:hover { background: #f4ded2; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--copper-dark); }
.button-copper { color: var(--white); background: var(--copper); }
.button-copper:hover { background: var(--copper-dark); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 750; }
.text-link:hover { gap: 13px; }
.light-link { color: var(--white); }
.dark-link { color: var(--ink); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 56px; color: #d7e3df; font-size: 12px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #a4c6b5; box-shadow: 0 0 0 5px rgba(164, 198, 181, .15); }
.hero-content > * { animation: hero-rise .75s cubic-bezier(.22, .8, .3, 1) both; }
.hero-content > *:nth-child(2) { animation-delay: .08s; }
.hero-content > *:nth-child(3) { animation-delay: .16s; }
.hero-content > *:nth-child(4) { animation-delay: .24s; }
.hero-content > *:nth-child(5) { animation-delay: .34s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, .8, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.proof-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { display: grid; gap: 3px; padding: 25px 28px; border-left: 1px solid var(--line); }
.proof-grid > div:first-child { border-left: 0; }
.proof-grid strong { color: var(--ink); font-size: 15px; }
.proof-grid span { color: var(--ink-soft); font-size: 11px; }

.section { padding: 112px 0; }
.section-tint { background: var(--tint); }
.section-dark { color: var(--white); background: var(--ink); }
h2 { max-width: 620px; margin-bottom: 21px; color: var(--ink); font-size: clamp(31px, 4vw, 53px); font-weight: 650; letter-spacing: -.035em; line-height: 1.02; }
.section-dark h2 { color: var(--white); }
.lede { max-width: 640px; margin-bottom: 16px; color: var(--ink); font-size: 20px; line-height: 1.55; }
.body-copy { max-width: 620px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.split-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: start; }
.about-panel { padding: 34px; background: var(--white); border-top: 3px solid var(--copper); box-shadow: var(--shadow); }
.panel-kicker { margin-bottom: 27px; color: var(--copper-dark); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.about-stat { display: grid; gap: 4px; padding: 17px 0; border-top: 1px solid var(--line); }
.about-stat strong { font-size: 15px; }
.about-stat span { color: var(--ink-soft); font-size: 13px; }
.about-quote { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--copper-dark); font-size: 14px; font-style: italic; }

.founder { background: var(--white); }
.founder-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.founder-image-wrap { position: relative; margin: 0; background: var(--tint); }
.founder-image-wrap img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.image-caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 14px 18px; color: var(--white); background: rgba(16, 26, 47, .88); font-size: 11px; font-weight: 750; letter-spacing: .04em; }
.founder-copy .lede { max-width: 650px; }
.founder-copy .body-copy + .body-copy { margin-top: 13px; }
.founder-signature { display: flex; align-items: center; gap: 14px; margin-top: 29px; color: var(--copper-dark); font-size: 11px; font-weight: 750; letter-spacing: .03em; }
.signature-line { width: 44px; height: 2px; background: var(--copper); }

.photo-masonry { display: grid; grid-template-columns: 1.12fr .88fr .88fr; grid-auto-rows: 190px; gap: 14px; }
.photo-tile { position: relative; min-height: 0; margin: 0; overflow: hidden; background: var(--ink); }
.photo-tile-wide { grid-column: span 2; }
.photo-tile-tall { grid-row: span 2; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.photo-tile:hover img { transform: scale(1.04); }
.photo-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(16, 26, 47, .8)); pointer-events: none; }
.photo-tile figcaption { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 1; color: var(--white); font-size: 12px; font-weight: 750; letter-spacing: .02em; }

.factory-video { background: var(--white); }
.video-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
.video-points { display: grid; gap: 10px; margin-top: 30px; color: var(--ink); font-size: 12px; font-weight: 750; }
.video-points span { display: flex; align-items: center; gap: 10px; }
.video-points span::before { content: ""; width: 7px; height: 7px; background: var(--copper); }
.video-frame { overflow: hidden; background: #0b1325; box-shadow: var(--shadow); }
.video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-frame { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, .8, .3, 1); }
.video-frame.is-visible { opacity: 1; transform: translateY(0); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.section-aside { max-width: 370px; margin-bottom: 3px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { min-height: 240px; padding: 28px; background: var(--white); }
.process-step > span { display: block; margin-bottom: 48px; color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.process-step h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.02em; }
.process-step p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.specs-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.spec-list { border-top: 1px solid var(--line); }
.spec-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.spec-list strong { font-size: 13px; }
.spec-list span { color: var(--ink-soft); font-size: 13px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-width: 0; background: var(--white); border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image { position: relative; aspect-ratio: 1 / .92; overflow: hidden; background: #101824; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image img, .founder-image-wrap img { transition: transform .55s cubic-bezier(.22, .8, .3, 1), filter .55s ease; }
.product-card:hover .product-image img, .founder-image-wrap:hover img { transform: scale(1.045); filter: saturate(1.08); }
.stock-tag { position: absolute; top: 12px; left: 12px; padding: 5px 8px; color: var(--white); background: rgba(16, 26, 47, .88); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-body { padding: 20px; }
.product-code { margin-bottom: 8px; color: var(--copper-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-body h3 { margin-bottom: 12px; font-size: 20px; letter-spacing: -.025em; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 13px; color: var(--ink-soft); font-size: 12px; }
.product-meta strong { color: var(--ink); font-size: 16px; }
.product-body > p:not(.product-code) { min-height: 64px; margin-bottom: 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.quote-button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; color: var(--ink); background: none; font-size: 12px; font-weight: 800; }
.quote-button:hover { color: var(--copper-dark); }
.collection-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 38px; padding-top: 25px; border-top: 1px solid var(--line); }
.collection-foot p { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }

.shipping { background: var(--white); }
.shipping-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.shipping-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.shipping-options > div { min-height: 220px; padding: 23px; background: var(--tint); border-bottom: 3px solid var(--sage); }
.shipping-icon { display: block; margin-bottom: 55px; color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.shipping-options strong { display: block; margin-bottom: 8px; font-size: 15px; }
.shipping-options p { margin-bottom: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.contact-copy h2 { margin-bottom: 21px; }
.contact-copy > p:not(.eyebrow) { max-width: 420px; color: #c4ced3; font-size: 15px; line-height: 1.75; }
.contact-details { display: grid; gap: 9px; margin-top: 38px; color: #dce6e4; font-size: 13px; }
.contact-details a:hover { color: #f3c0a8; }
.inquiry-form { padding: 32px; color: var(--white); background: #19263e; border-top: 3px solid var(--copper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inquiry-form label { display: grid; gap: 7px; margin-bottom: 16px; color: #dbe3e5; font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.inquiry-form label:not(.checkbox) { display: block; }
.inquiry-form label:not(.checkbox) > input, .inquiry-form label:not(.checkbox) > textarea, .inquiry-form label:not(.checkbox) > select { display: block; margin-top: 7px; }
.inquiry-form .field-optional, .inquiry-form .field-required { color: #aab7c3; font-size: 10px; font-weight: 500; letter-spacing: 0; }
.inquiry-form .field-required { color: #f3c0a8; }
.inquiry-form input:not([type="checkbox"]), .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 12px 13px; color: var(--white); background: #101a2f; border: 1px solid #435066; border-radius: 0; outline: none; }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: #8592a5; }
.inquiry-form input:not([type="checkbox"]):focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: #e3af96; box-shadow: 0 0 0 2px rgba(227, 175, 150, .13); }
.inquiry-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #e3af96 50%), linear-gradient(135deg, #e3af96 50%, transparent 50%); background-position: calc(100% - 17px) 16px, calc(100% - 12px) 16px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.checkbox { display: flex !important; grid-template-columns: none !important; align-items: start; gap: 9px !important; font-weight: 500 !important; line-height: 1.5; }
.checkbox input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--copper); }
.form-note { margin: 15px 0 0; color: #aab7c3; font-size: 11px; line-height: 1.6; }
.form-success { min-height: 0; margin-top: 14px; color: #b9d8c5; font-size: 12px; }

.site-footer { color: #c8d2d5; background: #0b1325; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr; gap: 70px; padding: 56px 0 44px; }
.footer-brand { color: var(--white); }
.footer-grid > div > p:not(.footer-label) { max-width: 310px; margin: 16px 0 0; color: #8f9db0; font-size: 13px; line-height: 1.7; }
.footer-label { margin-bottom: 14px; color: #f1b99f; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 9px; font-size: 13px; }
.footer-grid a:hover { color: var(--white); }
.social-buttons { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.social-button { display: inline-flex; align-items: center; justify-content: center; min-height: 32px; padding: 7px 9px; border: 1px solid #3a4860; color: #dce3e8; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.social-button:hover { color: #0b1325 !important; background: var(--white); border-color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 23px; border-top: 1px solid #27354b; color: #77869b; font-size: 11px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 1000px) {
  .split-grid, .founder-grid, .specs-grid, .shipping-grid, .contact-grid, .video-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .shipping-options { max-width: 760px; }
  .contact-copy > p:not(.eyebrow) { max-width: 650px; }
}

@media (max-width: 700px) {
  .container { width: min(var(--max), calc(100% - 34px)); }
  .nav-wrap { min-height: 66px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 66px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 13px 17px 19px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(16, 26, 47, .08); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .site-nav a:not(.nav-cta).active::after { right: auto; width: 24px; bottom: 5px; }
  .nav-cta { margin-top: 7px; padding: 13px 14px !important; text-align: center; }
  .hero { min-height: 650px; }
  .hero-content { padding: 76px 0 65px; }
  h1 { font-size: clamp(39px, 12vw, 57px); }
  .hero-subtitle { font-size: 17px; }
  .hero-note { margin-top: 40px; line-height: 1.5; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { padding: 18px 16px; }
  .proof-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 77px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-aside { margin-top: 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .photo-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; gap: 9px; }
  .photo-tile-wide { grid-column: span 2; }
  .photo-tile-tall { grid-row: span 2; }
  .photo-tile figcaption { right: 10px; bottom: 9px; left: 10px; font-size: 10px; }
  .process-step { min-height: auto; }
  .process-step > span { margin-bottom: 28px; }
  .spec-list > div { grid-template-columns: 1fr; gap: 5px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-body > p:not(.product-code) { min-height: auto; }
  .collection-foot { display: block; }
  .collection-foot .text-link { margin-top: 15px; }
  .shipping-options { grid-template-columns: 1fr; }
  .shipping-options > div { min-height: auto; }
  .shipping-icon { margin-bottom: 26px; }
  .contact-grid { gap: 35px; }
  .inquiry-form { padding: 23px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; padding: 45px 0 35px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; line-height: 1.7; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.locale-controls { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
.locale-control { display: grid; gap: 3px; color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.locale-control select { min-width: 112px; padding: 6px 23px 6px 8px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 0; font: inherit; font-size: 10px; letter-spacing: 0; text-transform: none; }
html[dir="rtl"] .locale-controls { margin-right: 4px; margin-left: 0; }
html[dir="rtl"] .site-nav, html[dir="rtl"] .nav-wrap { direction: rtl; }
@media (max-width: 700px) {
  .locale-controls { align-items: stretch; flex-direction: row; gap: 10px; margin-top: 10px; padding-top: 11px; border-top: 1px solid var(--line); }
  .locale-control { flex: 1; }
  .locale-control select { width: 100%; min-width: 0; }
}

@media (max-width: 700px) {
  .site-nav { gap: 0; padding: 10px 17px 16px; }
  .site-nav a { padding: 10px 0; }
  .locale-controls { display: grid; width: 100%; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; gap: 10px; margin-top: 9px; padding-top: 12px; border-top: 1px solid var(--line); }
  .locale-control { min-width: 0; display: grid; gap: 5px; flex: none; }
  .locale-control select { width: 100%; min-width: 0; min-height: 36px; padding: 7px 8px; font-size: 11px; }
}
