/* ============================================
   Uncle Tony The Jeweler — Heritage Redesign
   Old-world, established master-jeweler aesthetic
   Warm ivory paper · deep forest green · antique gold
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Paper / surfaces (warm ivory) */
  --paper: #f6f1e6;
  --paper-deep: #efe7d4;
  --card: #fcf9f1;
  --card-deep: #f2ead8;

  /* Ink */
  --ink: #20201b;
  --ink-soft: #38362f;
  --text: #514c42;
  --text-muted: #6b6450;
  --line: #ddd1b8;
  --line-soft: #e8ddc6;

  /* Heritage green (anchor color) */
  --green: #1f3a2e;
  --green-deep: #16291f;
  --green-soft: #2c4d3b;

  /* Antique gold */
  --gold: #9c7c33;
  --gold-deep: #846527;
  --gold-light: #c1a358;
  --gold-bright: #d8be7e;
  --gold-glow: rgba(156, 124, 51, 0.12);

  /* On dark green */
  --on-dark: #f3ecd9;
  --on-dark-soft: #d8cfb6;
  --on-dark-muted: #b3aa8e;

  --white: #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'EB Garamond', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-pad: 6rem 0;
  --container-max: 1180px;
  --container-narrow: 760px;

  /* 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(--paper);
  background-image:
    radial-gradient(ellipse at 12% -10%, rgba(156, 124, 51, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 0%, rgba(31, 58, 46, 0.04) 0%, transparent 42%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.75;
  font-size: 19px;
  overflow-x: hidden;
}

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

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

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

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

/* ---------- 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(26px);
  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.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.section-eyebrow::before {
  content: '';
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

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

.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  max-width: 640px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(22, 41, 31, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(193, 163, 88, 0.25);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(18, 33, 25, 0.98);
  box-shadow: 0 10px 30px rgba(16, 27, 21, 0.35);
  border-bottom-color: rgba(193, 163, 88, 0.4);
}

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

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

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

.brand-icon {
  color: var(--gold-light);
  font-size: 1.1rem;
  transform: translateY(-1px);
}

.brand-accent {
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-left: 0.35rem;
}

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

.nav-links li a {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--on-dark-soft);
  border-radius: 4px;
  position: relative;
  transition: color 0.3s var(--ease);
  letter-spacing: 0.02em;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

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

.nav-cta {
  display: inline-block;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold-light);
  border-radius: 3px;
  border: 1px solid var(--gold-bright);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(193, 163, 88, 0.45);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease);
}

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

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--on-dark);
  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 (built by script.js) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 33, 25, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

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

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

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

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

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--green-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 6px 18px rgba(132, 101, 39, 0.18);
}

.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-light) 100%);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(132, 101, 39, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green-soft);
}

.btn-outline:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--on-dark);
  transform: translateY(-2px);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(31, 58, 46, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(156, 124, 51, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.hero-eyebrow::after {
  content: '\2666';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 820px;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 600px;
  margin-bottom: 2.25rem;
}

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

.hero-statement p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.not-retired {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 2px double var(--gold);
  animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { color: var(--gold-deep); }
  50% { color: var(--gold); }
}

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

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

.hero-image-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  padding: 0.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(32, 32, 27, 0.18);
}

.hero-image-frame img {
  border-radius: 1px;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(156, 124, 51, 0.45);
  border-radius: 1px;
  pointer-events: none;
  z-index: 2;
}

.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.55;
}

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

.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: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
  color: var(--text);
}

.about-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.8;
  float: left;
  color: var(--gold-deep);
  margin: 0.35rem 0.7rem 0 0;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 14px 38px rgba(32, 32, 27, 0.07);
}

.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(--green);
  line-height: 1;
}

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

.stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ============================================
   Why Choose / Features Section
   ============================================ */
.why-choose {
  padding: var(--section-pad);
  background: var(--paper-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.feature-card {
  padding: 2.75rem 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  transition: all 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(32, 32, 27, 0.12);
}

.feature-icon {
  color: var(--gold-deep);
  margin: 0 auto 1.5rem;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card-deep);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.feature-card p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.75;
}

/* ============================================
   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.9rem, 4vw, 2.7rem);
  margin-bottom: 1.35rem;
}

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

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

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

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

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

.service-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-deep);
  min-width: 2rem;
}

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

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(193, 163, 88, 0.1) 0%, transparent 60%),
    var(--green);
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.cta-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--on-dark);
  margin-bottom: 1.1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content h2 em {
  color: var(--gold-bright);
}

.cta-content p {
  font-size: 1.12rem;
  color: var(--on-dark-soft);
  max-width: 540px;
  margin: 0 auto 2.25rem;
}

/* ============================================
   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: 2.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  position: relative;
}

.venture-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(32, 32, 27, 0.12);
}

.venture-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.venture-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.venture-card p {
  font-size: 1.02rem;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 1.35rem;
}

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

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

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

/* ============================================
   Page Hero (Sub Pages)
   ============================================ */
.page-hero {
  padding: 11rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(156, 124, 51, 0.07) 0%, transparent 60%);
}

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

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 540px;
  margin: 1.1rem auto 0;
}

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

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

.contact-image-frame {
  border-radius: 2px;
  overflow: hidden;
  padding: 0.55rem;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(32, 32, 27, 0.12);
  margin-bottom: 2rem;
}

.contact-details h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  margin-top: 1.6rem;
}

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

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

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

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

.contact-locations li {
  font-size: 1.02rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.75rem;
  box-shadow: 0 18px 45px rgba(32, 32, 27, 0.07);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}

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

.form-hint {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1.02rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

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

/* Form error */
.form-error {
  background: rgba(150, 40, 35, 0.08);
  border: 1px solid rgba(150, 40, 35, 0.3);
  color: #8a2c25;
  border-radius: 2px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
}

.form-success {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 3.25rem 2rem;
  box-shadow: 0 18px 45px rgba(32, 32, 27, 0.07);
}

.success-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.1rem;
  background: var(--green);
  color: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: 2px solid var(--gold);
}

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

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

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

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

.press-hero-img {
  max-width: 480px;
  margin: 0 auto 3rem;
  border-radius: 2px;
  overflow: hidden;
  padding: 0.6rem;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(32, 32, 27, 0.16);
}

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

.press-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: var(--green);
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
}

.press-location {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

.press-body p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.35rem;
}

.press-lede {
  font-size: 1.22rem !important;
  color: var(--ink-soft) !important;
}

.press-lede::first-letter {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 0.78;
  float: left;
  color: var(--gold-deep);
  margin: 0.4rem 0.7rem 0 0;
}

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

.press-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.55;
}

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

.press-locations li {
  padding: 0.8rem 0 0.8rem 1.25rem;
  border-left: 2px solid var(--line);
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.08rem;
  transition: border-color 0.3s var(--ease);
}

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

.press-about-box {
  background: var(--card-deep);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 2.25rem;
  margin-top: 3rem;
}

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

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

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

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

.retirement-countdown {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(193, 163, 88, 0.12) 0%, transparent 60%),
    var(--green);
  border: 1px solid var(--green-deep);
  border-radius: 3px;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 0.6rem !important;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold-bright) !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.5rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.press-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(32, 32, 27, 0.12);
}

.press-card-date {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}

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

.press-card p {
  font-size: 1.02rem;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

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

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

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

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

.article-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: var(--line);
}

.divider-diamond {
  position: relative;
  display: inline-block;
  background: var(--paper);
  padding: 0 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   Venture Featured Badge
   ============================================ */
.venture-card--featured {
  border-color: var(--gold);
  border-top: 3px solid var(--gold);
  background: var(--card-deep);
}

.venture-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: var(--green);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.85rem;
  width: fit-content;
}

/* ============================================
   Find Tony Section (Press Release)
   ============================================ */
.find-tony {
  padding: var(--section-pad);
  background: var(--paper-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.find-card {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}

.find-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(32, 32, 27, 0.12);
}

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

.find-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.find-card p {
  font-size: 1.02rem;
  color: var(--text);
  flex-grow: 1;
  margin-bottom: 1.1rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  padding: 3.5rem 0;
  background: var(--green-deep);
  border-top: 3px solid var(--gold);
}

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

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

.footer-brand .brand-icon {
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--on-dark-muted);
  margin-bottom: 1.75rem;
}

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

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  opacity: 0.7;
}

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

  .nav-toggle {
    display: block;
  }

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

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

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

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

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

  .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;
  }

  body {
    font-size: 18px;
  }

  .hero {
    padding: 8rem 1.5rem 3.5rem;
  }

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

  .container {
    padding: 0 1.25rem;
  }

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

  .nav-brand {
    font-size: 1.1rem;
  }

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

  .contact-form {
    padding: 1.75rem;
  }

  .about-stats {
    padding: 1.5rem;
  }

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

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
