:root {
  --bg-primary: #080806;
  --bg-secondary: #0f0f0d;
  --bg-tertiary: #191917;
  --fg-primary: #f2ede5;
  --fg-secondary: #9e9585;
  --fg-muted: #524e45;
  --accent: #c5a257;
  --accent-dim: rgba(197, 162, 87, 0.12);
  --accent-glow: rgba(197, 162, 87, 0.07);
  --border: rgba(197, 162, 87, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  background: linear-gradient(180deg, rgba(8,8,6,0.97) 0%, rgba(8,8,6,0) 100%);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--fg-primary);
}

.nav-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  display: none;
}

.hero-watch-image {
  position: relative;
  overflow: hidden;
}

.hero-watch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* CSS trick to cover the bottom-right watermark area */
  clip-path: inset(0 0 6% 0);
}

.hero-watch-mask {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--bg-primary) 100%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4rem 5rem 3rem;
  position: relative;
  z-index: 2;
}

.hero-logo-wrap {
  margin-bottom: 3rem;
}

.hero-logo-img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--fg-primary);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--fg-secondary);
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.hero-cta:hover {
  background: #d4b47a;
}

.hero-price-hint {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.75rem;
}

.philosophy-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-secondary);
}

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.value-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.value-content p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* ===== COLLECTION ===== */
.collection {
  padding: 8rem 3rem;
}

.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.collection-header {
  margin-bottom: 4rem;
}

.collection-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg-primary);
}

/* Collection showcase — lifestyle image + info side by side */
.collection-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.showcase-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Clip bottom-right corner to reduce watermark visibility */
  clip-path: inset(0 0 5% 0);
  transition: transform 0.6s ease;
}

.showcase-image-wrap:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,8,6,0.3) 100%);
  pointer-events: none;
}

.showcase-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.showcase-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 2.5rem;
}

.showcase-price-block {
  margin-bottom: 2rem;
}

.showcase-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--fg-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.showcase-currency {
  font-size: 1.4rem;
  vertical-align: super;
}

.showcase-price-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}

.showcase-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.showcase-cta:hover {
  background: #d4b47a;
}

.collection-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, background 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  background: var(--bg-tertiary);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

.collection-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.detail-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.detail-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  max-width: 500px;
  line-height: 1.6;
}

/* ===== CRAFTSMANSHIP ===== */
.craftsmanship {
  padding: 8rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.craftsmanship-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.craft-header {
  margin-bottom: 4rem;
}

.craft-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.craft-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg-primary);
}

.craftsmanship-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.craft-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.craft-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Trim any watermark from bottom-right corner */
  clip-path: inset(0 0 5% 0);
  transition: transform 0.6s ease;
}

.craft-photo-wrap:hover .craft-photo {
  transform: scale(1.03);
}

.craft-photo-caption {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.craft-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
}

.craft-specs-inline {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.craft-spec {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.craft-spec-key {
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.craft-spec-val {
  color: var(--fg-primary);
  font-family: var(--font-display);
  text-align: right;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing-logo-wrap {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.closing-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 3rem;
}

.closing-cta {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.closing-cta:hover {
  background: #d4b47a;
}

.closing-signature {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--fg-secondary);
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.15em;
  margin-top: 0.1rem;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-dot {
  color: var(--border);
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

/* ===== NAV CTA ===== */
.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ===== SHOP PAGE ===== */
.shop-page {
  padding-top: 7rem;
  min-height: 100vh;
}

.shop-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

/* Product Hero Split */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 0;
}

/* Watch Photos Stack */
.watch-visual {
  position: sticky;
  top: 7rem;
}

.watch-photos-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.watch-photo-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.watch-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Clip bottom-right corner to cover watermark area */
  clip-path: inset(0 0 7% 0);
  transition: transform 0.5s ease;
}

.watch-photo-img:hover {
  transform: scale(1.02);
}

.watch-photo-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(197,162,87,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.watch-photo-secondary {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.watch-photo-lifestyle {
  clip-path: inset(0 0 4% 0);
}

.watch-caption {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.watch-caption-left {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.watch-caption-right {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent);
  font-style: italic;
}

/* Product Info */
.product-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.product-title em {
  font-style: italic;
  color: var(--accent);
}

.product-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg-secondary);
  margin-bottom: 2.5rem;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 3rem;
}

/* Founder Badge */
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Pricing */
.price-block {
  margin-bottom: 2rem;
}

.price-original {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--fg-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.price-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* CTA Button */
.cta-btn {
  display: block;
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 1rem;
}

.cta-btn:hover {
  background: #d4b47a;
}

.cta-btn:active {
  transform: scale(0.99);
}

.cta-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.1em;
}

/* Specs Table */
.specs-section {
  margin-bottom: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.specs-title {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.spec-key {
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.spec-val {
  color: var(--fg-primary);
  text-align: right;
  font-family: var(--font-display);
}

/* Origin band on shop page */
.origin-band {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 5rem;
}

.origin-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.origin-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.origin-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  clip-path: inset(0 0 5% 0);
}

.origin-photo-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--bg-secondary) 100%);
  pointer-events: none;
}

.origin-text-wrap {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.origin-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.origin-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.origin-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
}

/* ===== ORDER SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
}

.success-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.success-inner {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.success-mark {
  width: 60px;
  height: 60px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  color: var(--accent);
}

.success-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--fg-primary);
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 2.5rem;
}

.success-founder-badge {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 1rem 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.success-founder-title {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.success-founder-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--fg-secondary);
  font-style: italic;
}

.success-back {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}

.success-back:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-watch-image {
    height: 55vw;
    min-height: 300px;
  }
  .hero-watch-mask {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, var(--bg-primary) 0%, transparent 100%);
  }
  .hero-content {
    padding: 3rem 1.5rem 5rem;
  }
  .hero-logo-img { height: 50px; }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }
  .nav-name { display: none; }

  .philosophy { padding: 5rem 1.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }

  .collection { padding: 5rem 1.5rem; }
  .collection-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .collection-features { grid-template-columns: 1fr; }
  .collection-detail { flex-direction: column; gap: 1.5rem; }
  .detail-line { width: 60px; height: 1px; }

  .craftsmanship { padding: 5rem 1.5rem; }
  .craftsmanship-split { grid-template-columns: 1fr; gap: 3rem; }

  .closing { padding: 6rem 1.5rem; }
  .closing-logo-img { height: 60px; }

  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { justify-content: center; }

  /* Shop responsive */
  .product-split { grid-template-columns: 1fr; gap: 3rem; }
  .watch-visual { position: static; }
  .shop-inner { padding: 3rem 1.5rem; }
  .origin-band-inner { grid-template-columns: 1fr; }
  .origin-photo-wrap { min-height: 280px; }
  .origin-photo-overlay { display: none; }
  .origin-text-wrap { padding: 3rem 1.5rem; }
}
