/* Luxuta — Independent Luxury Watch Guide */
/* Design: Dark editorial with champagne gold accents */

:root {
  --gold: #BE8A50;
  --gold-light: #D4A97A;
  --gold-dark: #9A6E3A;
  --navy: #0D1B2A;
  --navy-mid: #1A2F47;
  --navy-light: #243B55;
  --cream: #F5EFE6;
  --cream-dark: #E8DDCC;
  --text-primary: #1A1A1A;
  --text-light: #F5EFE6;
  --text-muted: #8A9BAD;
  --border: rgba(190, 138, 80, 0.25);
  --shadow: rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); text-decoration: underline; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
h3 { font-size: 1.25rem; margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--gold-dark); }

p { margin-bottom: 1.25rem; font-size: 1.0625rem; }

ul, ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
ul li, ol li { margin-bottom: 0.5rem; }

dl { margin-bottom: 1.5rem; }
dt { font-weight: 700; color: var(--navy); margin-top: 1.25rem; font-family: 'Playfair Display', Georgia, serif; }
dd { margin-left: 0; padding-left: 1rem; border-left: 3px solid var(--gold); margin-bottom: 0.75rem; }

strong { color: var(--navy); font-weight: 600; }

/* Navigation */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow);
  border-bottom: 1px solid var(--gold-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-brand .brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-brand .brand-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: all var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(190, 138, 80, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.6) 60%, rgba(13, 27, 42, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  max-width: 680px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero p {
  color: rgba(245, 239, 230, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--cream);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(190, 138, 80, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid rgba(245, 239, 230, 0.4);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* Page Header (non-hero pages) */
.page-header {
  background: var(--navy);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-header h1 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Article layout */
.article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}

.article-body {}

.article-body .lead-image {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.article-body .inline-image {
  width: 100%;
  border-radius: 4px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Sidebar */
.article-sidebar {}

.sidebar-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold-dark);
}

.sidebar-card h3 {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(190, 138, 80, 0.3);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-card ul li a {
  display: block;
  color: var(--text-muted);
  padding: 0.6rem 0;
  font-size: 0.9rem;
  transition: color var(--transition);
  text-decoration: none;
}

.sidebar-card ul li a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Home feature grid */
.home-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  border: none;
  padding: 0;
  margin-top: 0;
  color: var(--navy);
  font-size: 2rem;
}

.section-header p {
  color: #666;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

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

.feature-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.feature-card-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.feature-card-img-placeholder {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-img-placeholder .icon {
  font-size: 2.5rem;
  opacity: 0.3;
  color: var(--gold);
}

.feature-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.feature-card-body h3 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.feature-card-body p {
  color: #555;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-dark);
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.feature-card-link:hover { color: var(--gold); text-decoration: none; }
.feature-card-link::after { content: '→'; }

/* About band */
.about-band {
  background: var(--navy);
  padding: 4rem 1.5rem;
  text-align: center;
}

.about-band-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-band h2 {
  color: var(--cream);
  border: none;
  padding: 0;
  margin-top: 0;
  font-size: 1.75rem;
}

.about-band p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.about-band .gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* Image band */
.image-band {
  background: var(--navy);
}

.image-band img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: 0.75;
}

/* Contact form */
.contact-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.contact-section h2 { margin-top: 2rem; }

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CCC;
  border-radius: 3px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  background: #fff;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 138, 80, 0.15);
}

.btn-submit {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Glossary */
.glossary-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.breadcrumb span { margin: 0 0.4rem; color: #CCC; }

/* Footer */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 3rem 1.5rem 1.5rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(190, 138, 80, 0.2);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #4A6178;
  font-size: 0.8125rem;
  margin: 0;
}

.footer-disclaimer {
  color: #4A6178;
  font-size: 0.8125rem;
  font-style: italic;
}

/* 404 page */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--navy);
}

.not-found-inner h1 {
  color: var(--gold);
  font-size: 5rem;
  margin-bottom: 0.5rem;
}

.not-found-inner h2 {
  color: var(--cream);
  border: none;
  padding: 0;
  margin-bottom: 1rem;
}

.not-found-inner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .article-wrap {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem;
    border-bottom: 1px solid var(--gold-dark);
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .hero-content { padding: 3rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* Print */
@media print {
  .site-nav, .article-sidebar, .site-footer, .hero-actions { display: none; }
}
