/* ============================================
   FINESHINE FOODS LLC — MAIN STYLESHEET
   Brand: Navy + Gold + Cream + White
   Version: 1.0
   ============================================ */

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1A3A52;
  --navy-dark: #102838;
  --navy-light: #2E5270;
  --gold: #B8860B;
  --gold-light: #D4A43C;
  --gold-pale: #F0E4C3;
  --cream: #F5F1E8;
  --cream-light: #FAF7F0;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --border: #E5E0D5;
  --shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
  --shadow-hover: 0 12px 40px rgba(26, 58, 82, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text); }

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

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream-light);
}

/* === HEADER / NAVIGATION === */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 64px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(26, 58, 82, 0.15)) drop-shadow(0 2px 4px rgba(184, 134, 11, 0.1));
  transition: all 0.3s ease;
}

.logo-wrap:hover img {
  filter: drop-shadow(0 6px 12px rgba(26, 58, 82, 0.25)) drop-shadow(0 3px 6px rgba(184, 134, 11, 0.15));
  transform: translateY(-1px);
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 4px;
  border-bottom: none !important;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(184, 134, 11, 0.15);
  color: var(--gold-light);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Georgia', serif;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy) !important;
}

.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
}

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

/* === STATS STRIP === */
.stats {
  background: var(--cream);
  padding: 3rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
  font-weight: 600;
}

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

.section-head p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

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

.product-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-cta {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.product-card:hover .product-card-cta::after {
  transform: translateX(4px);
}

/* === FEATURES / WHY US === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  border-top: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* === ABOUT SECTION === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-split-image {
  background: var(--cream);
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 1px solid var(--border);
}

.about-split-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-split ul {
  list-style: none;
  margin: 1.5rem 0;
}

.about-split ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text);
  font-size: 1rem;
}

.about-split ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--cream-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.current { color: var(--navy); font-weight: 600; }

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

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

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.page-header .section-label {
  color: var(--gold-light);
}

/* === PRODUCT DETAIL PAGE === */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-content h1 {
  margin-bottom: 1rem;
}

.product-hero-content p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.product-hero-meta {
  background: var(--cream);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  margin: 1.5rem 0;
}

.product-hero-meta dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.95rem;
}

.product-hero-meta dt {
  font-weight: 700;
  color: var(--navy);
}

.product-hero-meta dd {
  color: var(--text);
}

@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; }
}

/* === VARIETY CARDS === */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.variety-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.variety-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.variety-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.variety-card-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.variety-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.variety-card ul {
  list-style: none;
  margin-top: 1rem;
}

.variety-card ul li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
}

.variety-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* === PROS CONS === */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros-cons-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.pros-cons-card.pros { border-top: 4px solid #2d7a3e; }
.pros-cons-card.cons { border-top: 4px solid #c47b0b; }

.pros-cons-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.pros-cons-card.pros h3 { color: #2d7a3e; }
.pros-cons-card.cons h3 { color: #c47b0b; }

.pros-cons-card ul {
  list-style: none;
}

.pros-cons-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.pros-cons-card.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d7a3e;
  font-weight: 700;
}

.pros-cons-card.cons li::before {
  content: '!';
  position: absolute;
  left: 0;
  color: #c47b0b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
}

/* === COMPARISON TABLE === */
.comparison-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.comparison-table tr:nth-child(even) { background: var(--cream-light); }
.comparison-table tr:last-child td { border-bottom: none; }

/* === FAQ === */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
}

.faq-item h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-item h4::before {
  content: 'Q: ';
  color: var(--gold);
  font-weight: 700;
}

.faq-item p {
  color: var(--text);
  margin-bottom: 0;
}

.faq-item p::before {
  content: 'A: ';
  color: var(--gold);
  font-weight: 700;
}

/* === TERMS PAGE === */
.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-content .legal-notice {
  background: var(--cream);
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
}

.terms-section {
  margin-bottom: 2.5rem;
}

.terms-section h2 {
  color: var(--navy);
  font-size: 1.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1rem;
}

.terms-section p {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: var(--text);
}

.terms-section .clause-num {
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 4rem 0;
}

.about-founder {
  background: var(--cream-light);
  padding: 3rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin: 3rem 0;
}

.about-founder h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-founder .founder-title {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-founder p {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
}

/* === CONTACT FORM === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--text);
  font-size: 1rem;
}

.contact-info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

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

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* === CERTIFICATIONS === */
.certs-strip {
  background: var(--cream);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.certs-strip h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.certs-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-badge {
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certs-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 4px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-brand .slogan {
  color: var(--gold-light);
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

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

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

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p { margin-bottom: 0.25rem; }

/* === MOBILE NAV === */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 900px) {
  .mobile-nav-toggle { display: block; }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 1rem;
  }

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

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag, .hero h1, .hero p, .hero-cta {
  animation: fadeInUp 0.8s ease backwards;
}
.hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* === THANK YOU PAGE === */
.thank-you {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
}

/* ============================================
   NEW FEATURES — v2 ADDITIONS
   ============================================ */

/* === FLOATING CONTACT BUTTON === */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: var(--navy);
  color: var(--white) !important;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.25), 0 3px 8px rgba(26, 58, 82, 0.15);
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.float-btn:hover {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.35), 0 4px 10px rgba(26, 58, 82, 0.2);
}

.float-btn-icon {
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .floating-contact { bottom: 1rem; right: 1rem; }
  .float-btn { padding: 0.75rem 1.1rem; font-size: 0.85rem; }
}

/* === SOCIAL MEDIA ICONS === */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--gold-light) !important;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.3);
}

/* === PDF DOWNLOAD CARD === */
.download-card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 3rem;
  border-radius: 8px;
  border: 2px solid var(--gold);
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.download-card-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.download-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.6rem;
}

.download-card p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--text);
}

.download-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.download-form input {
  flex: 1;
  min-width: 240px;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.2s ease;
}

.download-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

.download-form button {
  padding: 0.9rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.download-form button:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* === SAMPLE REQUEST SECTION === */
.sample-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.sample-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.sample-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.sample-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .sample-layout { grid-template-columns: 1fr; }
}

.sample-content {
  color: var(--white);
}

.sample-content .section-label {
  color: var(--gold-light);
}

.sample-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.sample-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.sample-content ul {
  list-style: none;
  margin: 1.5rem 0;
}

.sample-content li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.sample-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}

.sample-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.sample-form-wrap h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.sample-form-wrap > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sample-form-wrap .form-group { margin-bottom: 1rem; }

.sample-form-wrap .form-submit {
  margin-top: 0.5rem;
}

/* === STATS COMMITMENT LANGUAGE === */
.stat-item strong.stat-text {
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}


/* ============================================
   V3.2 ADDITIONS — Container Toggle & CAPTCHA
   ============================================ */

/* Container Size Toggle Buttons */
.container-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  gap: 0.35rem;
}

.toggle-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.1);
}

.toggle-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 58, 82, 0.25);
}

.toggle-btn.active .toggle-sub {
  color: var(--gold-light);
}

.toggle-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.toggle-label {
  font-size: 1rem;
  font-weight: 700;
  color: inherit;
}

.toggle-btn .toggle-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* CAPTCHA Styling Integration */
.recaptcha-wrap {
  margin: 1.25rem 0;
  display: flex;
  justify-content: center;
}

.recaptcha-wrap > div {
  max-width: 100%;
}

.captcha-note {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  margin: 0.5rem 0 1rem;
  font-style: italic;
}

