:root {
  --black: #0a0a0a;
  --off-white: #f5f2ee;
  --warm-gray: #8a8278;
  --gold: #b8975a;
  --gold-light: #d4b07a;
  --gold-mid: #c8ab5f;
  --border: rgba(184, 151, 90, 0.25);
  --white: #ffffff;
  --card-bg-warm: #ece7e1;
  --surface-light: #eef1f5;
  --surface-subtle: #f9f9f9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
  --transition-fast: 0.25s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.45s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.wip-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--black);
  color: var(--gold);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 16px;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
}

.section-sub {
  max-width: 720px;
  color: var(--warm-gray);
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* nav button is slightly compact */
.btn-secondary {
  padding: 12px 22px;
  letter-spacing: 0.08em;
}

.nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 120px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(245, 242, 238, 0.92);
}

.nav-inner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
}

.nav-logo-with-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  height: 130px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-logo-text-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.1em;
  color: var(--black);
  line-height: 1;
}


.nav-logo-main {
  color: var(--black) !important;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 1;
  padding: 6px 4px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.page-offset {
  padding-top: 80px;
}

.nav--transparent {
  border-bottom: none;
  box-shadow: none;
}

/* HERO */
.page-hero,
.home-like-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.page-hero.tall {
  min-height: 680px;
}

.page-hero-bg,
.home-like-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay,
.home-like-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.18), rgba(10,10,10,0.72));
}

.page-hero-content,
.home-like-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 0 88px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.page-hero-content h1,
.home-like-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 22px;
}

.page-hero-content p,
.home-like-hero-content p {
  max-width: 620px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* TRUST BAR */
.trust-bar {
  background: var(--black);
  color: rgba(255,255,255,0.68);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.trust-item {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CARDS / GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.watch-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.watch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.watch-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--card-bg-warm);
}

.watch-card-img img {
  height: 100%;
  transition: transform 0.4s ease;
}

.watch-card:hover .watch-card-img img {
  transform: scale(1.04);
}

.watch-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.44);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.watch-card:hover .watch-card-overlay {
  opacity: 1;
}

.buy-btn {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.72);
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.watch-card-body {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--border);
}

.watch-card-brand {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.watch-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.watch-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.watch-card-year {
  color: var(--warm-gray);
  font-size: 14px;
}

.watch-card-price {
  font-size: 15px;
  font-weight: 500;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 42px;
}

.filter-pill {
  border: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: var(--white);
  cursor: pointer;
}

.filter-pill.active,
.filter-pill:hover {
  color: var(--black);
  border-color: var(--gold);
}

/* SPLIT SECTION */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.split.dark {
  background: var(--black);
  color: var(--white);
}

.split-media {
  min-height: 520px;
}

.split-media img {
  height: 100%;
}

.split-copy {
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split.dark .section-sub,
.split.dark li,
.split.dark .detail-text {
  color: rgba(255,255,255,0.72);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* DETAIL PAGE */
.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
}

.product-gallery-main {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 20px;
}

.product-gallery-main img {
  aspect-ratio: 1 / 1;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.thumb-row img {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(0,0,0,0.06);
}

.detail-brand {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 14px;
}

.detail-price {
  font-size: 22px;
  margin-bottom: 22px;
}

.detail-text {
  color: var(--warm-gray);
  margin-bottom: 28px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.spec-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
}

.spec-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.spec-value {
  font-size: 15px;
}

/* FORMS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font: inherit;
  color: var(--black);
  outline: none;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* INFO BLOCKS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 28px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
}

.info-card p,
.info-card li {
  color: var(--warm-gray);
}

/* CONTACT STRIP */
.contact-connect {
  background: var(--black);
  color: var(--white);
}

.contact-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-panel {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px;
}

.contact-panel h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 12px;
}

.contact-panel p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  color: var(--gold-light);
}

/* FOOTER */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.48);
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-row a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid,
  .info-grid,
  .trust-bar-inner,
  .detail-grid,
  .split,
  .contact-connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-grid,
  .split {
    gap: 0;
  }

  .split-copy {
    padding: 48px;
  }
}

/* HAMBURGER BUTTON */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav {
    height: auto;
    padding: 10px 0;
  }

  .nav-inner {
    height: auto;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 14px;
    position: relative;
  }

  .nav-logo {
    width: auto;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    background: rgba(245, 242, 238, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    gap: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
  }

  .btn-secondary {
    display: none;
  }

  .cards-grid,
  .info-grid,
  .detail-grid,
  .split,
  .contact-connect-grid,
  .trust-bar-inner,
  .form-grid,
  .spec-grid,
  .thumb-row {
    grid-template-columns: 1fr;
  }

  .container,
  .page-hero-content,
  .home-like-hero-content {
    width: min(1200px, calc(100% - 28px));
  }

  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .page-hero,
  .home-like-hero,
  .page-hero.tall {
    min-height: 520px;
  }

  .page-hero-content,
  .home-like-hero-content {
    padding: 0 0 56px;
  }

  .page-hero-content h1,
  .home-like-hero-content h1 {
    font-size: clamp(36px, 10vw, 54px);
    line-height: 1.08;
  }

  .page-hero-content p,
  .home-like-hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .split-copy,
  .contact-panel,
  .form-card,
  .product-gallery-main,
  .spec-item,
  .info-card {
    padding: 24px;
  }

  .split-media {
    min-height: 320px;
  }

  .watch-card-name {
    font-size: 22px;
  }

  .watch-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .filter-bar {
    gap: 10px;
    margin: 24px 0 32px;
  }

  .filter-pill {
    width: 100%;
    text-align: center;
  }

  input,
  select,
  textarea,
  .btn-primary,
  .btn-outline,
  .btn-secondary {
    min-height: 48px;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container,
  .page-hero-content,
  .home-like-hero-content {
    width: min(1200px, calc(100% - 20px));
  }

  .section {
    padding: 56px 0;
  }

  .section-title,
  .detail-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .contact-panel h3,
  .info-card h3,
  .watch-card-name {
    font-size: 20px;
  }

  .hero-eyebrow,
  .section-label,
  .nav-links a,
  .filter-pill,
  .buy-btn,
  .btn-primary,
  .btn-outline,
  .btn-secondary,
  label {
    letter-spacing: 0.1em;
  }

  .trust-item {
    font-size: 10px;
    line-height: 1.5;
  }

  .split-copy,
  .contact-panel,
  .form-card,
  .product-gallery-main,
  .spec-item,
  .info-card,
  .watch-card-body {
    padding: 20px;
  }
}

/* SHOP */
.shop-hero-bg {
  background-image:
    linear-gradient(to bottom, rgba(10,10,10,0.14), rgba(10,10,10,0.62)),
    url("https://images.unsplash.com/photo-1547996160-81dfa63595aa?w=1800&q=90");
}

.shop-center-label {
  display: block;
  width: fit-content;
  margin: 0 auto 18px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.shop-center-title {
  text-align: center;
  margin-bottom: 14px;
}

.shop-center-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.shop-products {
  padding-top: 10px;
}

.shop-products .watch-card {
  display: block;
}

.shop-products .watch-card-name {
  font-size: 22px;
}

.shop-products .watch-card-img img {
  aspect-ratio: 1 / 1;
}

.shop-feature .split-media img {
  min-height: 100%;
}

/* =========================
   PREMIUM CONNECT SECTION
========================= */
.luxe-connect {
  background: var(--surface-light);
  padding: 84px 0;
}

.luxe-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  align-items: center;
  gap: 42px;
}

.luxe-connect-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.luxe-connect-col.center {
  align-items: center;
  text-align: center;
}

.luxe-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 6px;
}

.luxe-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.luxe-contact-info p,
.luxe-contact-info a {
  color: var(--warm-gray);
  font-size: 16px;
  transition: color 0.25s ease;
}

.luxe-contact-info a:hover {
  color: var(--black);
}

.luxe-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.luxe-socials a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.luxe-socials a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.luxe-socials a i {
  font-size: 18px;
  line-height: 1;
}

.luxe-connect-image {
  overflow: hidden;
  background: var(--white);
}

.luxe-connect-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.luxe-connect-image:hover img {
  transform: scale(1.04);
}

/* =========================
   PAGE TRANSITIONS
========================= */
body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

.page-hero,
.section,
.split,
.footer,
.luxe-connect {
  opacity: 0;
  transform: translateY(24px);
  animation: sectionFadeUp 0.8s ease forwards;
}

.page-hero { animation-delay: 0.08s; }
.section:nth-of-type(1) { animation-delay: 0.14s; }
.section:nth-of-type(2) { animation-delay: 0.22s; }
.section:nth-of-type(3) { animation-delay: 0.3s; }
.split { animation-delay: 0.24s; }
.luxe-connect { animation-delay: 0.32s; }
.footer { animation-delay: 0.36s; }

@keyframes sectionFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   EXTRA POLISH
========================= */
.watch-card,
.info-card,
.contact-panel,
.form-card,
.about-image,
.product-gallery-main,
.spec-item,
.luxe-connect-image {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.nav-logo,
.nav-links a,
.btn-primary,
.btn-secondary,
.btn-outline,
.contact-links a,
.luxe-contact-info a {
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.watch-card-img img,
.about-image img,
.split-media img,
.product-gallery-main img,
.thumb-row img,
.find-image img,
.features-image img,
.footer-contact-image img,
.get-in-touch-image img,
.sell-image img {
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.about-image:hover img,
.split-media:hover img,
.product-gallery-main:hover img,
.find-image:hover img,
.features-image:hover img,
.footer-contact-image:hover img,
.get-in-touch-image:hover img,
.sell-image:hover img {
  transform: scale(1.02);
}

/* =========================
   PREMIUM CONNECT RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .luxe-connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .luxe-connect-image {
    grid-column: 1 / -1;
  }

  .luxe-connect-image img {
    height: 260px;
  }
}

@media (max-width: 820px) {
  .shop-center-title,
  .shop-center-sub {
    text-align: center;
  }

  .luxe-connect {
    padding: 64px 0;
  }

  .luxe-connect-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .luxe-connect-col,
  .luxe-connect-col.center {
    align-items: center;
    text-align: center;
  }

  .luxe-title {
    font-size: 28px;
  }

  .luxe-connect-image img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .luxe-connect {
    padding: 56px 0;
  }

  .luxe-title {
    font-size: 24px;
  }

  .luxe-contact-info p,
  .luxe-contact-info a {
    font-size: 15px;
  }

  .luxe-socials a {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .luxe-connect-image img {
    height: 190px;
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  body,
  .page-hero,
  .section,
  .split,
  .footer,
  .luxe-connect,
  .watch-card,
  .info-card,
  .contact-panel,
  .form-card,
  .about-image,
  .product-gallery-main,
  .spec-item,
  .luxe-connect-image,
  .nav-logo,
  .nav-links a,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .contact-links a,
  .luxe-contact-info a,
  .watch-card-img img,
  .about-image img,
  .split-media img,
  .product-gallery-main img,
  .thumb-row img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================
   SHOP PAGE REDESIGN
========================= */
.shop-page-top {
  padding-top: 56px;
  padding-bottom: 40px;
}

.shop-page-top-inner {
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}

.shop-main-fixed {
  padding-top: 0;
}

.shop-page-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 0;
}

.shop-page-title em {
  font-style: italic;
}

.shop-page-line {
  width: 110px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.shop-page-sub {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.shop-page-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.shop-search-shell {
  max-width: 920px;
  margin: 0 auto 28px;
}

.shop-search-shell input {
  width: 100%;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font: inherit;
}

.shop-filter-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-filter-chip {
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--white);
  color: var(--black);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.shop-filter-chip.active,
.shop-filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.shop-grid-section {
  padding-top: 10px;
}

.shop-grid-modern {
  gap: 32px;
}

.shop-card-modern {
  overflow: hidden;
  display: block;
  background: var(--white);
}

.shop-card-modern .watch-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
}

.shop-card-modern .watch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-price-tag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--gold-mid);
  color: var(--white);
  padding: 12px 18px;
  border-bottom-left-radius: 18px;
  font-size: 15px;
  font-weight: 500;
}

.shop-card-modern .watch-card-body {
  padding: 22px 22px 24px;
}

.shop-card-modern .watch-card-name {
  font-size: 22px;
  line-height: 1.2;
}

.shop-card-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.shop-card-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* newsletter */
.newsletter-modern {
  padding-top: 26px;
}

.newsletter-sub {
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: center;
}

.newsletter-modern-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.newsletter-modern-form input {
  width: 100%;
  min-height: 58px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.14);
  background: transparent;
  font: inherit;
}

.newsletter-modern-btn {
  min-height: 58px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.75);
  background: transparent;
  color: var(--black);
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.newsletter-modern-btn:hover {
  background: var(--black);
  color: var(--white);
}

.shop-connect-fixed {
  margin-top: 34px;
}

.shop-connect-fixed .luxe-connect-grid {
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.shop-connect-fixed .luxe-connect-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .shop-connect-fixed .luxe-connect-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-connect-fixed .luxe-connect-image {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .shop-page-top {
    padding-top: 40px;
  }

  .shop-center-label {
    margin-bottom: 14px;
  }

  .shop-page-title {
    font-size: clamp(40px, 11vw, 60px);
  }

  .shop-page-sub {
    font-size: 16px;
    line-height: 1.75;
  }

  .shop-card-modern .watch-card-name {
    font-size: 20px;
  }

  .shop-card-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-connect-fixed .luxe-connect-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .shop-connect-fixed .luxe-connect-col,
  .shop-connect-fixed .luxe-connect-col.center {
    align-items: center;
    text-align: center;
  }

  .shop-connect-fixed .luxe-connect-image img {
    height: 220px;
  }
}

/* =========================
   ABOUT PAGE
========================= */
.about-main {
  padding-top: 80px;
}

.about-hero {
  padding: 40px 0 80px;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
}

.about-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

.about-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--surface-subtle);
}

.testimonials-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
}

.testimonials-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 25px;
  font-style: italic;
}

.star-rating {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.testimonial-slider {
  display: grid;
}

.testimonial-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8b89a;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.slider-pause {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: 1px solid #c8b89a;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: #c8b89a;
  font-size: 12px;
  transition: border-color 0.3s, color 0.3s;
  line-height: 1;
}

.slider-pause:hover,
.slider-pause.paused {
  border-color: var(--gold);
  color: var(--gold);
}

.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-title {
  text-align: center;
  margin-bottom: 60px;
}

.values-title h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-card {
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
}

@media (max-width: 820px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h1 {
    font-size: 36px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shop-page-line {
    width: 80px;
  }

  .shop-search-shell input,
  .newsletter-modern-form input,
  .newsletter-modern-btn {
    min-height: 52px;
  }

  .shop-price-tag {
    font-size: 13px;
    padding: 10px 14px;
  }

  .shop-connect-fixed .luxe-connect-image img {
    height: 190px;
  }
}

/* =========================
   SHARED: FOOTER CONTACT SECTION
   (contact.html, find-a-watch.html)
========================= */
.footer-contact-section {
  padding: 60px 0;
  background: #d9dfe5;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
  position: relative;
  padding-bottom: 15px;
}

.footer-contact-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-contact-col p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 10px;
}

.footer-contact-col a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-col a:hover {
  color: var(--black);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-gray);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-social-icon:hover {
  background: var(--gold);
}

.footer-contact-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.footer-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   SHARED: CONTACT / FIND-A-WATCH FORMS
========================= */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-row.full,
.form-row.full-width {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: white;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--warm-gray);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background: var(--black);
  color: white;
}

/* =========================
   SHARED: SOCIAL ICON BUTTON
========================= */
.social-icons-group {
  display: flex;
  gap: 15px;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.social-icon-btn:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* =========================
   CONTACT PAGE
========================= */

.get-in-touch {
  padding: 80px 0;
  background: white;
}

.get-in-touch-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.get-in-touch-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
}

.get-in-touch-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}

.get-in-touch-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 25px;
}

.get-in-touch-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.get-in-touch-image img {
  width: 100%;
  height: auto;
  display: block;
}

.email-section {
  padding: 80px 0;
  background: white;
}

.email-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--black);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.email-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
}

.newsletter-section {
  position: relative;
  padding: 100px 0;
  background-image: url('images/20260422_205004.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: white;
}

.newsletter-subtitle {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.newsletter-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 12px 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 4px;
}

.newsletter-form input::placeholder {
  color: var(--warm-gray);
}

.newsletter-btn {
  padding: 12px 30px;
  background: var(--gold);
  color: white;
  border: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.newsletter-btn:hover {
  background: var(--gold-light);
}

/* =========================
   FIND A WATCH PAGE
========================= */
.find-hero {
  padding: 80px 0;
  background: white;
}

.find-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.find-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.find-image img {
  width: 100%;
  height: auto;
  display: block;
}

.find-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--black);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.find-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
}

.why-section {
  padding: 60px;
  background: #f5f5f5;
  border-radius: 4px;
}

.why-section h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--black);
}

.why-section p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.benefits-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.benefit-item {
  margin-bottom: 50px;
}

.benefit-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.features-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.features-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-content {
  order: 2;
}

.features-image {
  order: 1;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-item {
  margin-bottom: 40px;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-item p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.form-section {
  padding: 80px 0;
  background: white;
}

.form-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

/* =========================
   SELL A WATCH PAGE
========================= */
.sell-hero {
  padding: 40px 0 80px;
  background: white;
  margin-top: -1px;
}

.sell-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sell-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
}

.sell-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}

.sell-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 30px;
}

.sell-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.sell-image img {
  width: 100%;
  height: auto;
  display: block;
}

.process-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.process-title {
  text-align: center;
  margin-bottom: 60px;
}

.process-title h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
  position: relative;
  padding-bottom: 20px;
}

.process-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-card {
  padding: 40px;
  text-align: center;
  background: white;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 15px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
}

.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.sell-benefits-section {
  padding: 80px 0;
  background: white;
}

.sell-benefits-title {
  text-align: center;
  margin-bottom: 60px;
}

.sell-benefits-title h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--black);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.cta-section {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: white;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}

.cta-button:hover {
  background: transparent;
  border-color: white;
  color: white;
}

.submission-section {
  padding: 80px 0;
  background: var(--black);
}

.submission-title {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.submission-title h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: white;
  position: relative;
  padding-bottom: 20px;
}

.submission-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.submission-title p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--black);
  color: white;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.checkbox-group .form-label {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.checkbox-option input {
  width: auto;
  min-height: auto;
  accent-color: var(--gold);
}

.submission-section .submit-btn {
  width: 100%;
  padding: 16px 40px;
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
  border-radius: 4px;
  margin-top: 10px;
}

.submission-section .submit-btn:hover {
  background: transparent;
  color: var(--gold);
}

/* =========================
   RESPONSIVE: CONTACT / FIND / SELL PAGES
========================= */
@media (max-width: 768px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .get-in-touch-container,
  .find-container,
  .features-container,
  .sell-container {
    grid-template-columns: 1fr;
  }

  .newsletter-section {
    padding: 60px 0;
  }

  .email-title,
  .newsletter-title,
  .benefits-title,
  .features-title,
  .form-title,
  .find-content h1,
  .sell-content h1 {
    font-size: 28px;
  }

  .process-title h2,
  .sell-benefits-title h2,
  .cta-section h2,
  .submission-title h2 {
    font-size: 28px;
  }

  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
