:root {
  --ink:        #0e0c0a;
  --ink-2:      #15110d;
  --ink-3:      #1c1814;
  --cream:      #f3ece1;
  --cream-2:    #e6dccb;
  --muted:      #8a7f6f;
  --gold:       #c9a25a;
  --gold-2:     #e7c98a;
  --line:       rgba(201,162,90,0.22);
  --line-soft:  rgba(243,236,225,0.10);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ======================= NAV ======================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14,12,10,0.55);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px 32px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links.right { justify-content: flex-end; }

.nav-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-2);
  transition: color .25s ease;
}
.nav-link:hover { color: var(--gold-2); }

.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo img { height: 56px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* ======================= HERO ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-img {
  position: absolute; inset: 0;
  background-image: url('assets/images/tudor-black-bay-chrono-panda.jpg');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.04);
  filter: contrast(1.05) saturate(0.95);
}

.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 30% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0) 60%),
    linear-gradient(180deg,
      rgba(14,12,10,0.78) 0%,
      rgba(14,12,10,0.25) 30%,
      rgba(14,12,10,0.45) 70%,
      rgba(14,12,10,0.95) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 180px 32px 120px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 36px;
}
.hero-eyebrow .rule {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-size: clamp(54px, 7.6vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  max-width: 11ch;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--gold-2);
}

.hero-sub {
  max-width: 46ch;
  margin-top: 36px;
  font-size: 17px; line-height: 1.65;
  color: var(--cream-2);
}

.hero-cta-row {
  display: flex; gap: 18px; margin-top: 48px; flex-wrap: wrap;
}

/* ======================= BUTTONS ======================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  transition: all .3s ease;
  cursor: pointer; font-family: inherit;
}

.btn-gold { background: var(--gold); color: var(--ink); border: none; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(243,236,225,0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.arrow { display: inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* hero meta strip */
.hero-meta {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(243,236,225,0.55);
}

.hero-meta .featured {
  font-family: 'Fraunces', serif;
  font-weight: 300; font-style: italic;
  font-size: 16px; color: var(--muted);
  letter-spacing: 0; text-transform: none;
}

.scroll-cue { display: flex; align-items: center; gap: 14px; }
.scroll-cue .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

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

/* ======================= MARQUEE ======================= */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0; overflow: hidden;
  background: var(--ink-2);
}

.marquee-track {
  display: flex; gap: 80px;
  animation: marquee-scroll 50s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-track span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px; font-weight: 300;
  color: var(--cream-2);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  color: var(--gold);
  margin-left: 80px;
  font-size: 14px;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======================= ABOUT ======================= */
.about {
  background: var(--ink);
  border-top: 1px solid var(--line-soft);
  padding: 160px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 88px; align-items: start;
}

.about-portrait { position: relative; max-width: 380px; }

.about-portrait .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
}

.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.02);
}

.about-portrait .badge {
  position: absolute; left: -24px; bottom: 36px;
  background: var(--gold); color: var(--ink);
  padding: 14px 22px;
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 18px;
}

.about-portrait .caption {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}

.about-body { padding-top: 12px; }

.about-body h2 {
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.02; letter-spacing: -0.02em;
  font-weight: 300; margin-top: 18px; margin-bottom: 36px;
}
.about-body h2 em { color: var(--gold-2); font-style: italic; }

.about-body .lead {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 300; line-height: 1.45;
  color: var(--cream); margin-bottom: 28px;
}

.about-body p {
  font-size: 16px; line-height: 1.75;
  color: var(--cream-2); margin: 0 0 20px;
  max-width: 58ch;
}

/* ======================= TESTIMONIALS ======================= */
.quote-section {
  padding: 160px 0;
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 120px; line-height: 1;
  color: var(--gold); opacity: 0.5;
  user-select: none;
}

.quote-stage {
  position: relative;
  max-width: 1000px; margin: 0 auto;
  min-height: 320px;
}

.testimonial {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
  display: flex; flex-direction: column; align-items: center;
}
.testimonial.active {
  position: relative;
  opacity: 1; visibility: visible;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.25; font-weight: 300;
  max-width: 22ch; margin: 0 auto;
  font-style: italic;
  letter-spacing: -0.01em;
}
.quote-text em { color: var(--gold-2); font-style: italic; }

.quote-attrib {
  margin-top: 36px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted);
}

.quote-controls {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
}

.quote-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent; color: var(--cream-2);
  font-size: 18px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.quote-arrow:hover { border-color: var(--gold); color: var(--gold-2); }

.quote-dots { display: flex; gap: 10px; align-items: center; }

.quote-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(243,236,225,0.18);
  border: none; padding: 0; cursor: pointer;
  transition: all .3s ease;
}
.quote-dot.active {
  background: var(--gold);
  width: 28px; border-radius: 4px;
}

/* ======================= CONTACT ======================= */
.contact {
  padding: 160px 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.contact h2 {
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.05; font-weight: 300;
  letter-spacing: -0.02em;
  margin: 18px auto 24px;
}
.contact h2 em { color: var(--gold-2); font-style: italic; }

.contact .sub {
  font-size: 17px; max-width: 50ch;
  margin: 0 auto 48px;
  color: var(--cream-2); line-height: 1.65;
}

.contact-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.contact-channels {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}

.channel {
  background: var(--ink);
  padding: 36px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: background .2s ease;
}
.channel:hover { background: var(--ink-2); }

.channel .ico {
  width: 28px; height: 28px;
  margin: 0 auto 16px;
  color: var(--gold-2);
}

.channel .lbl {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}

.channel .val {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-style: italic;
  color: var(--cream); font-weight: 300;
}

/* ======================= FOOTER ======================= */
.footer {
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}

.footer-logo img { height: 76px; margin-bottom: 24px; }

.footer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 16px;
  color: var(--muted); max-width: 32ch; line-height: 1.65;
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 12px; }

.footer a {
  font-size: 14px; font-weight: 300;
  color: var(--cream-2);
  transition: color .2s ease;
}
.footer a:hover { color: var(--gold-2); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-logo { justify-content: flex-start; }
  .container { padding: 0 20px; }
  .hero-content { padding: 140px 20px 80px; }
  .hero-meta { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-channels { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
}
