/* ============================================
   Uncle Tony The Jeweler — Modernized Design
   Luxury Jeweler Aesthetic
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Core palette */
  --black: #0a0a0a;
  --dark: #141418;
  --charcoal: #1c1c22;
  --slate: #2a2a32;
  --gray-700: #3d3d47;
  --gray-500: #6b6b78;
  --gray-400: #8e8e9a;
  --gray-300: #b0b0bb;
  --gray-200: #d4d4db;
  --gray-100: #ececef;
  --white: #fafafa;
  --pure-white: #ffffff;

  /* Gold accent */
  --gold: #c9a84c;
  --gold-light: #ddc06a;
  --gold-dark: #a8893d;
  --gold-glow: rgba(201, 168, 76, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-pad: 6rem 0;
  --container-max: 1200px;
  --container-narrow: 780px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section Headers ---------- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 600px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.9rem 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-brand:hover {
  color: var(--gold);
}

.brand-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.brand-accent {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.3rem;
}

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

.nav-links li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.nav-links li a:hover {
  color: var(--white);
}

.nav-links li a.active {
  color: var(--gold);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 6px;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gray-700);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--gold);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gray-300);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease);
}

.hamburger { top: 50%; margin-top: -0.75px; }
.hamburger::before { content: ''; top: -6px; left: 0; position: absolute; width: 18px; }
.hamburger::after { content: ''; top: 6px; left: 0; position: absolute; width: 18px; }

.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  transition: color 0.3s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ============================================
   Hero Section (Home)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-400);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-statement {
  margin-bottom: 2.5rem;
}

.hero-statement p {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.not-retired {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 20px rgba(201, 168, 76, 0.2); }
  50% { text-shadow: 0 0 40px rgba(201, 168, 76, 0.4); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-image-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

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

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--section-pad);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--gray-300);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ============================================
   Why Choose / Features Section
   ============================================ */
.why-choose {
  padding: var(--section-pad);
  background: var(--charcoal);
}

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

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--dark);
  border: 1px solid var(--slate);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-pad);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.services-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.services-text p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--slate);
  transition: all 0.3s var(--ease);
}

.service-item:first-child {
  border-top: 1px solid var(--slate);
}

.service-item:hover {
  padding-left: 1rem;
  border-bottom-color: var(--gold);
}

.service-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 2rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 5rem 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
    var(--charcoal);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content p {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================
   Ventures Section
   ============================================ */
.ventures {
  padding: var(--section-pad);
}

.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.venture-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  color: var(--gray-300);
  transition: all 0.4s var(--ease);
  text-decoration: none;
}

.venture-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.venture-number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.venture-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.venture-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.venture-link-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow {
  transition: transform 0.3s var(--ease);
}

.venture-card:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   Page Hero (Sub Pages)
   ============================================ */
.page-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 1rem auto 0;
}

/* ============================================
   Contact Section (Schedule Page)
   ============================================ */
.contact-section {
  padding: 3rem 0 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-image-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--slate);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.contact-details h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.contact-phone,
.contact-email {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.contact-phone:hover,
.contact-email:hover {
  color: var(--gold);
}

.contact-locations {
  list-style: none;
  padding: 0;
}

.contact-locations li {
  font-size: 0.9rem;
  color: var(--gray-300);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--slate);
}

/* Contact Form */
.contact-form {
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

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

.required {
  color: var(--gold);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  border: 1px solid var(--slate);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Form error */
.form-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #f8a4ad;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

.form-success {
  text-align: center;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 3rem 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

/* ============================================
   Press Release Page
   ============================================ */
.page-hero--press {
  padding-bottom: 2rem;
}

.press-article {
  padding: 0 0 4rem;
}

.press-hero-img {
  max-width: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.press-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate);
}

.press-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.press-location {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.press-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 1.25rem;
}

.press-lede {
  font-size: 1.1rem !important;
  color: var(--gray-200) !important;
}

.press-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.press-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.7;
}

.press-locations {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.press-locations li {
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-left: 2px solid var(--slate);
  margin-bottom: 0.5rem;
  color: var(--gray-300);
  transition: border-color 0.3s var(--ease);
}

.press-locations li:hover {
  border-left-color: var(--gold);
}

.press-about-box {
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.press-about-box h3,
.press-about-box h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.press-about-box p {
  font-size: 0.9rem;
}

.press-contact {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.press-contact a {
  font-weight: 600;
  font-size: 0.9rem;
}

.retirement-countdown {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
}

.countdown-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 0.5rem !important;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold) !important;
  margin-bottom: 0 !important;
}

/* ============================================
   Press Index Cards
   ============================================ */
.press-index {
  padding: 0 0 4rem;
}

.press-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.press-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.press-card-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.press-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.press-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.press-card:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   Press Article Header & Title
   ============================================ */
.press-article-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate);
}

.press-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.press-body h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

/* Article Divider */
.article-divider {
  text-align: center;
  padding: 3rem 0;
}

.divider-diamond {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.4;
}

/* ============================================
   Venture Featured Badge
   ============================================ */
.venture-card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    var(--charcoal);
}

.venture-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

/* ============================================
   Find Tony Section (Press Release)
   ============================================ */
.find-tony {
  padding: var(--section-pad);
  background: var(--charcoal);
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.find-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--dark);
  border: 1px solid var(--slate);
  border-radius: 12px;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.find-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.find-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.find-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.find-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.find-card:hover .arrow {
  transform: translateX(4px);
}

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

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--gray-700);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .press-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  :root {
    --section-pad: 4rem 0;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0.8rem 1.25rem;
  }

  .feature-card {
    padding: 1.75rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .about-stats {
    flex-direction: column;
  }

  .press-meta,
  .press-article-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .hero-scroll-indicator {
    display: none;
  }
}
