/* ==========================================================================
   Top Line Builders - Custom Home Building in Hamilton, ON
   Single stylesheet for all pages
   ========================================================================== */

/* -------------------- CSS VARIABLES -------------------- */
:root {
  --primary: #2A3538;        /* charcoal */
  --primary-light: #3D4B4F;
  --primary-dark: #1C2528;
  --accent: #B8945F;         /* gold/copper */
  --accent-light: #D4AE78;
  --accent-dark: #957442;
  --cream: #F5F1EA;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --off-white: #FAFAF5;
  --border: #E5E0D6;
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
  --shadow-lg: 0 15px 50px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-medium); }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-cta {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}
@keyframes hvSpin {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes hvSparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%      { opacity: 1; transform: scale(1); }
}
@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}
@keyframes spinRing {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- NAVBAR -------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(42, 53, 56, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
  background: rgba(28, 37, 40, 0.98);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  position: relative;
}
.logo-mark::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg) translate(2px, -2px);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-text span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-light);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
}

.cta-button {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* -------------------- PAGE HEADER (INNER PAGES) -------------------- */
.page-header {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 30px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,148,95,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-header .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-header .breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  position: relative;
  z-index: 1;
}

/* -------------------- HERO -------------------- */
.hero {
  margin-top: 80px;
  min-height: 85vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,148,95,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  max-width: 600px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 6px 16px;
  border: 1px solid rgba(184,148,95,0.4);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title span { color: var(--accent); font-style: italic; }

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual - orbit of building icons */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-container {
  position: relative;
  width: 380px; height: 380px;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(184,148,95,0.4);
  z-index: 2;
}
.center-text-large {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.center-text-small {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-top: 6px;
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border: 2px dashed rgba(184,148,95,0.35);
  border-radius: 50%;
  animation: hvSpin 30s linear infinite;
}

.food-emoji {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  animation: hvFloat 3s ease-in-out infinite;
  z-index: 3;
}
.emoji-1 { top: -10px; left: calc(50% - 32px); animation-delay: 0s; }
.emoji-2 { top: 18%; right: -10px; animation-delay: 0.5s; }
.emoji-3 { bottom: 18%; right: -10px; animation-delay: 1s; }
.emoji-4 { bottom: -10px; left: calc(50% - 32px); animation-delay: 1.5s; }
.emoji-5 { bottom: 18%; left: -10px; animation-delay: 2s; }
.emoji-6 { top: 18%; left: -10px; animation-delay: 2.5s; }

.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: hvSparkle 2s ease-in-out infinite;
}
.sparkle:nth-child(1) { top: 10%; left: 8%;  animation-delay: 0s; }
.sparkle:nth-child(2) { top: 80%; right: 15%; animation-delay: 0.7s; }
.sparkle:nth-child(3) { top: 40%; right: 5%;  animation-delay: 1.4s; }

/* -------------------- SECTION COMMON -------------------- */
.section {
  padding: 90px 30px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.section-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* -------------------- STATS -------------------- */
.stats-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 30px;
}
.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-right: none; }
.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* -------------------- SERVICES / FEATURES GRID -------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-radius: 2px;
}
.feature-card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}
.feature-card p { margin: 0; font-size: 0.95rem; }

/* -------------------- ABOUT PREVIEW (on homepage) -------------------- */
.about-preview {
  background: var(--cream);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-preview-img {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-preview-img::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(184,148,95,0.4);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 180px; height: 180px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  padding: 20px;
}
.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-preview-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.about-preview-text h2 span { color: var(--accent); font-style: italic; }
.about-preview-text p { font-size: 1.02rem; margin-bottom: 16px; }
.about-preview-text .checks {
  list-style: none;
  margin: 24px 0 32px;
}
.about-preview-text .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.about-preview-text .checks li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: -2px;
}

/* -------------------- PROCESS TIMELINE -------------------- */
.process-section { background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  position: relative;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.process-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}
.process-card p { font-size: 0.9rem; margin: 0; }

/* -------------------- FAQ -------------------- */
.faq-section { background: var(--cream); }
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent-light); }

button.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-icon {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
button.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 28px 22px;
  color: var(--text-medium);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* -------------------- CTA BANNER -------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,148,95,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,148,95,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-content .section-tag { color: var(--accent-light); }
.cta-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------- ABOUT PAGE -------------------- */
.story-section {}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.story-text h2 span { color: var(--accent); font-style: italic; }
.story-text p { font-size: 1.02rem; margin-bottom: 18px; }
.story-signature {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.story-signature strong {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 1.3rem;
  display: block;
}
.story-signature span {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
  display: inline-block;
}

.story-img {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-img::before {
  content: '';
  position: absolute;
  top: 20px; right: 20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(184,148,95,0.4);
  pointer-events: none;
}
.story-img img {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.values-section { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 20px;
}
.value-card h3 { margin-bottom: 10px; color: var(--primary); }
.value-card p { font-size: 0.95rem; margin: 0; }

.team-section {}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.team-photo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.team-photo img { width: 100%; height: auto; }
.team-initials {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(184,148,95,0.35);
  border: 2px solid rgba(255,255,255,0.08);
}

/* Brand visual (replaces business-card photo) */
.brand-visual {
  position: relative;
  z-index: 1;
  width: 78%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1A2224 0%, #2A3538 100%);
  border: 1px solid rgba(184,148,95,0.35);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}
.brand-visual::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184,148,95,0.18);
  border-radius: 3px;
  pointer-events: none;
}
.bv-mark {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
}
.bv-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.bv-line1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.bv-line2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
}
.bv-tag {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(184,148,95,0.3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.team-info { padding: 40px; }
.team-info .role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-info h3 {
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.8rem;
}
.team-info p { font-size: 0.97rem; }

/* -------------------- CONTACT PAGE -------------------- */
.contact-section {}
.contact-info-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.contact-cta {
  margin-top: 50px;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(184,148,95,0.25);
}
.contact-cta h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.contact-cta p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 24px;
}
.contact-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-cta .btn-secondary {
  border-color: var(--accent);
  color: var(--accent-light);
}
.contact-cta .btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}
.contact-card {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.contact-card .card-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-card h4 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.contact-card a { color: var(--text-dark); font-weight: 500; }
.contact-card a:hover { color: var(--accent); }

.hours-block {
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  margin-top: 10px;
}
.hours-block h4 {
  color: var(--accent-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hours-block ul {
  list-style: none;
}
.hours-block li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}
.hours-block li:last-child { border-bottom: none; }
.hours-block li span:last-child { color: var(--accent-light); font-weight: 500; }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-medium);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,148,95,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.map-wrap {
  margin-top: 60px;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border);
  filter: grayscale(15%);
}

/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 30px 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 50px;
}
.footer-column .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-column .footer-logo span { color: var(--accent); }
.footer-column > p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 380px;
}
.footer-column h4 {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer-column h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--accent);
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-light); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}
.footer-contact-item .contact-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin: 0;
}
.footer-tagline {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
}

/* -------------------- 404 PAGE -------------------- */
.error-page {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 30px;
  text-align: center;
}
.error-content {
  max-width: 640px;
}
.error-content .num {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.error-content h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin: 16px 0;
}
.error-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* -------------------- UTILITY -------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { height: 360px; }
  .orbit-container { width: 320px; height: 320px; }
  .orbit-ring { width: 300px; height: 300px; }
  .about-preview-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-preview-img { max-width: 500px; margin: 0 auto; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-card:nth-child(2) { border-right: none; }
  .features-grid, .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 70px 30px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { padding: 30px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 24px 0;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active { max-height: 500px; }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-link { display: block; padding: 14px; }
  .cta-button { display: none; }
  .hamburger { display: flex; }
  .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(6px, -6px); }

  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .page-header h1 { font-size: 2.2rem; }
  .page-header { padding: 70px 20px 50px; }

  .features-grid, .process-grid, .values-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .cta-content h2 { font-size: 2rem; }
  .about-badge { width: 140px; height: 140px; bottom: -20px; right: -20px; }
  .about-badge .num { font-size: 1.8rem; }
  .error-content .num { font-size: 6rem; }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-description { font-size: 1rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .section { padding: 60px 20px; }
  .stats-container { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
  .stat-card:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .orbit-container { width: 260px; height: 260px; }
  .orbit-ring { width: 240px; height: 240px; }
  .orbit-center { width: 140px; height: 140px; }
  .center-text-large { font-size: 2.2rem; }
  .food-emoji { width: 54px; height: 54px; font-size: 1.5rem; }
}
