@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ==========================================
   STEP 0 — DESIGN SYSTEM / FOUNDATION
   (Cardassilaris-inspired: red + sage green + cream)
   ========================================== */

:root {
  /* Backgrounds */
  --cream: #F4E9CE;
  --cream-light: #FBF6EA;
  --white: #FFFDF8;
  --black: #2A2620;

  /* Brand red (headings, filled pills, accents) */
  --red: #B5392E;
  --red-dark: #93281F;
  --red-light: #C85A4E;

  /* Brand sage/olive green (subheads, accents, ribbons) */
  --green: #7C8A52;
  --green-dark: #5E6B3A;
  --green-light: #9AAE6B;

  /* Legacy token names remapped to the green accent family
     so existing accent rules (borders, dividers, lines) turn sage-green */
  --gold: #7C8A52;
  --gold-dark: #5E6B3A;
  --gold-light: #9AAE6B;

  /* Text inks */
  --earth-dark: #3A352A;
  --earth-mid: #6E6A5C;
  --earth-light: #8A8472;

  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'EB Garamond', 'Times New Roman', Georgia, serif;

  --container-width: 1200px;
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream-light);
  color: var(--earth-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Heading styles — Oswald, all-caps poster look, brick red */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--red);
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: 3.4rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--earth-mid);
  line-height: 1.8;
}

/* Ornamental Divider Component */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px auto;
  width: 200px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* CTA Button — red pill (Cardassilaris style) */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 44px;
  border: 2px solid var(--red);
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

/* Cream pill variant (red text) — used on some sections */
.btn-cream {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--red);
}

.btn-cream:hover {
  background: #EFDFBC;
  border-color: #EFDFBC;
  color: var(--red-dark);
}

/* Outline pill variant */
.btn-outline {
  background: transparent;
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* Section base */
section {
  padding: var(--section-padding);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

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

/* ==========================================
   STEP 1 — HEADER / NAVIGATION
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(42, 38, 32, 0.1);
}

/* Spacer offsetting the fixed header (matches the tall, top-of-page header) */
.header-spacer {
  height: 258px;
}

/* Top bar */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 40px;
  background: var(--green);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream);
}

.header-top a {
  color: var(--cream);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.header-top a:hover {
  opacity: 1;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-social a {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

/* Main bar: centered logo + pill nav */
.header-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 40px 16px;
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo img {
  height: 140px;
  width: auto;
  transition: height 0.4s ease;
}

/* Shrink the logo once the page is scrolled */
.header.scrolled .header-logo img {
  height: 74px;
}

.header-logo-text {
  display: none;
}

.header-logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--earth-dark);
  text-transform: uppercase;
  line-height: 1.1;
}

.header-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* Pill navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 22px;
  border: 1.5px solid rgba(181, 57, 46, 0.35);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: absolute;
  right: 24px;
  top: 16px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--red);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--cream-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--earth-dark);
  transition: color 0.3s;
}

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

/* Gold accent line under header */
.header-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ==========================================
   STEP 2 — HERO
   ========================================== */

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 0;
  background: url('assets/hero.jpg') center 35% / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28, 22, 16, 0.5), rgba(28, 22, 16, 0.66));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-line {
  width: 64px;
  height: 2px;
  background: var(--gold-light);
  margin: 0 auto 32px;
}

.hero-text {
  font-size: 1.12rem;
  color: rgba(255, 253, 248, 0.94);
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-text:last-of-type {
  margin-bottom: 40px;
}

.hero-btn {
  margin-bottom: 10px;
}

/* ==========================================
   STEP 3 — ABOUT
   ========================================== */

.about {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid rgba(124, 138, 82, 0.15);
  border-bottom: 1px solid rgba(124, 138, 82, 0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Logo card — vintage label frame */
.about-logo-card {
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(124, 138, 82, 0.45);
  border-radius: 6px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 44px rgba(42, 38, 32, 0.08);
}

.about-logo-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(181, 57, 46, 0.18);
  border-radius: 3px;
  pointer-events: none;
}

.about-logo-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.about-caption {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  text-align: center;
}

.about-right p.section-subtitle {
  margin-bottom: 14px;
}

.about-right h2 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 2.2rem;
}

.about-right p {
  margin-bottom: 16px;
}

.about-btn {
  margin-top: 24px;
}

/* ==========================================
   STEP 4 — WHAT WE DO
   ========================================== */

.what-we-do {
  position: relative;
  padding: 110px 0;
  background: url('assets/band.jpg') center / cover no-repeat;
  background-attachment: fixed;
}

.what-we-do-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28, 22, 16, 0.66), rgba(28, 22, 16, 0.72));
}

.what-we-do .container {
  position: relative;
  z-index: 1;
}

.what-we-do .section-subtitle {
  color: var(--gold-light);
}

.what-we-do h2 {
  text-transform: uppercase;
  font-size: 2.3rem;
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.what-we-do .ornament-diamond {
  background: var(--gold-light);
}

.what-we-do .ornament::before,
.what-we-do .ornament::after {
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.what-we-do-content {
  max-width: 720px;
  margin: 0 auto 44px;
}

.what-we-do-content p {
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Ribbon divider */
.ribbon-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  gap: 0;
  width: 100%;
}

.ribbon-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ribbon-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

/* ==========================================
   STEP 5 — PRODUCTS
   ========================================== */

.products {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid rgba(124, 138, 82, 0.15);
}

.products h2 {
  text-transform: uppercase;
  font-size: 2.4rem;
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.product-card {
  display: block;
  background: var(--cream-light);
  border: 1px solid rgba(124, 138, 82, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(44, 31, 14, 0.1);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-image svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image svg {
  transform: scale(1.04);
}

.product-info {
  padding: 36px 32px 40px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--earth-dark);
  margin-bottom: 0;
}

.product-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 16px 0 20px;
}

.product-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--earth-mid);
  margin-bottom: 24px;
}

.product-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.3s;
}

.product-card:hover .product-link {
  color: var(--earth-dark);
}

/* ==========================================
   STEP 6 — WHY CHOOSE US
   ========================================== */

.why-us {
  padding: 100px 0 80px;
  background: var(--cream-light);
}

.why-us h2 {
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.why-us-intro {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 50px;
}

.why-us-card {
  padding: 40px 24px 36px;
  background: var(--white);
  border: 1px solid rgba(124, 138, 82, 0.2);
  transition: all 0.4s ease;
}

.why-us-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(44, 31, 14, 0.07);
  transform: translateY(-3px);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.why-us-icon svg {
  width: 100%;
  height: 100%;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.why-us-card-line {
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  margin: 14px auto 18px;
}

.why-us-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--earth-mid);
}

.why-us-btn {
  margin-bottom: 0;
}

/* ==========================================
   STEP 7 — CONTACT
   ========================================== */

.contact {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid rgba(124, 138, 82, 0.15);
}

.contact-header {
  margin-bottom: 60px;
}

.contact-header h2 {
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.contact-intro {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--cream-light);
  border: 1px solid rgba(124, 138, 82, 0.2);
  padding: 48px 44px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--earth-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--earth-dark);
  background: var(--white);
  border: 1px solid rgba(124, 138, 82, 0.3);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B5A88A;
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* Form status message */
.form-status {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 18px;
  text-align: center;
  min-height: 1px;
}

.form-status.success {
  color: var(--green-dark);
}

.form-status.error {
  color: var(--red);
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--cream-light);
  border: 1px solid rgba(124, 138, 82, 0.2);
  padding: 28px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: var(--gold);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-card a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--earth-mid);
  display: block;
  transition: color 0.3s;
}

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

.whatsapp-card {
  border-color: rgba(37, 211, 102, 0.25);
}

.whatsapp-card:hover {
  border-color: #25D366;
}

.whatsapp-link {
  color: #1A8C46 !important;
  font-weight: 500;
}

/* Contact badge */
.contact-badge {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(124, 138, 82, 0.15);
  background: var(--cream-light);
}

.contact-badge img {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  opacity: 0.7;
}

.contact-badge p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--earth-mid);
  line-height: 1.5;
}

/* ==========================================
   STEP 8 — FOOTER
   ========================================== */

.footer {
  background: var(--earth-dark);
  color: var(--cream);
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}

/* Row 1: Nav */
.footer-nav {
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(124, 138, 82, 0.15);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 10px;
  transition: opacity 0.3s, color 0.3s;
}

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

/* Row 2: Social */
.footer-social {
  padding: 36px 0;
  border-bottom: 1px solid rgba(124, 138, 82, 0.15);
}

.footer-social-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-social-links a {
  color: var(--cream);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

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

/* Row 3: CTA */
.footer-cta {
  padding: 48px 0;
  border-bottom: 1px solid rgba(124, 138, 82, 0.15);
}

.footer-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-cta-btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--red);
  margin-bottom: 24px;
}

.footer-cta-btn:hover {
  background: #EFDFBC;
  border-color: #EFDFBC;
  color: var(--red-dark);
}

.footer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-phone span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.6;
}

.footer-phone a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-phone a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* Row 4: Bottom */
.footer-bottom {
  padding: 36px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  height: 64px;
  width: auto;
  background: var(--cream);
  padding: 8px 14px;
  border-radius: 8px;
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-text p {
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.5;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer-legal span {
  color: var(--cream);
  opacity: 0.3;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .header-top {
    display: none;
  }

  .header-main {
    padding: 14px 24px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .container {
    padding: 0 24px;
  }

  /* Moderate logo on phones (top → scrolled) */
  .header-logo img {
    height: 86px;
  }

  .header.scrolled .header-logo img {
    height: 64px;
  }

  /* Shorter header (green bar + nav hidden) → smaller spacer */
  .header-spacer {
    height: 124px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: var(--section-padding-sm);
  }

  /* Fixed background causes jank/cropping on iOS — use scroll on mobile */
  .what-we-do {
    background-attachment: scroll;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-right .ornament {
    margin-left: auto;
    margin-right: auto;
  }

  .about-badge {
    width: 220px;
    height: 220px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 36px 28px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-text {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 14px 32px;
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .about-badge {
    width: 180px;
    height: 180px;
  }

  .about-ribbon {
    min-width: 200px;
    font-size: 0.7rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-info {
    padding: 28px 24px 32px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-phone {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================
   FADE-IN ON SCROLL
   ========================================== */

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger within grids */
.products-grid .product-card:nth-child(2) { transition-delay: 0.12s; }

.why-us-grid .why-us-card:nth-child(2) { transition-delay: 0.08s; }
.why-us-grid .why-us-card:nth-child(3) { transition-delay: 0.16s; }
.why-us-grid .why-us-card:nth-child(4) { transition-delay: 0.24s; }

.contact-info .contact-info-card:nth-child(2) { transition-delay: 0.1s; }
.contact-info .contact-info-card:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================
   FLOATING "TRADE WITH US" CHAT PILL
   ========================================== */

.chat-pill {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(181, 57, 46, 0.4);
  transition: all 0.3s ease;
}

.chat-pill:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(181, 57, 46, 0.5);
}

.chat-pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .chat-pill {
    bottom: 18px;
    right: 18px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}
