/* ============================================
   BURKE & PACE LUMBER — Central Coast Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

/* --- CSS Variables --- */
:root {
  --sand:       #E8DCC8;
  --sand-light: #F4EEE2;
  --sand-dark:  #CFC0A3;
  --driftwood:  #8B7355;
  --redwood:    #7A3F2D;
  --redwood-lt: #A0533E;
  --ocean:      #2C5F6E;
  --ocean-deep: #1A3D4A;
  --ocean-mist: #5B8A98;
  --sage:       #7A8C6E;
  --sunset:     #C4733A;
  --sunset-lt:  #E09060;
  --charcoal:   #2E2A25;
  --warm-white: #FAF7F2;
  --text:       #3A342C;
  --text-light: #6B5F52;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Libre Baskerville', Georgia, serif;
  --font-ui:      'Source Sans 3', sans-serif;

  --radius: 3px;
  --shadow: 0 2px 16px rgba(46, 42, 37, 0.10);
  --shadow-lg: 0 8px 40px rgba(46, 42, 37, 0.15);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

.text-center { text-align: center; }
.text-ocean { color: var(--ocean); }
.text-redwood { color: var(--redwood); }
.text-sunset { color: var(--sunset); }

.tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunset);
}

/* --- Grain texture overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-dark);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--driftwood);
}

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

.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--sunset);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.nav-cta {
  background: var(--redwood);
  color: var(--warm-white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--redwood-lt) !important; color: var(--warm-white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--warm-white);
  z-index: 99;
  padding: 32px 28px;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--sand);
  letter-spacing: 0.04em;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ocean-deep);
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(26,61,74,0.92) 0%, rgba(44,95,110,0.85) 40%, rgba(122,63,45,0.75) 100%);
  z-index: 1;
}

/* Decorative SVG wave */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--warm-white);
  max-width: 680px;
  padding: 60px 0;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunset-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--sunset-lt);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--warm-white);
}

.hero-title em {
  font-style: italic;
  color: var(--sand-light);
}

.hero-desc {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250,247,242,0.80);
  margin-bottom: 40px;
  max-width: 500px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--sunset);
  color: var(--warm-white);
  border-color: var(--sunset);
}
.btn-primary:hover {
  background: var(--sunset-lt);
  border-color: var(--sunset-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,115,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(250,247,242,0.4);
}
.btn-outline:hover {
  border-color: var(--warm-white);
  background: rgba(250,247,242,0.08);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--redwood);
  color: var(--warm-white);
  border-color: var(--redwood);
}
.btn-dark:hover {
  background: var(--redwood-lt);
  border-color: var(--redwood-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,63,45,0.30);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(250,247,242,0.15);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--sand-light);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   STRIP / TAGLINE BAR
   ============================================ */
.strip {
  background: var(--redwood);
  padding: 18px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.strip-item {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  padding: 0 32px;
}

.strip-dot {
  color: var(--sunset-lt);
  font-size: 18px;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
  background: var(--sand-light);
  border-bottom: 1px solid var(--sand-dark);
}

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

.value-card {
  text-align: center;
  padding: 40px 28px;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--sunset);
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.value-desc {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================
   ABOUT STRIP (homepage)
   ============================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-strip-img {
  position: relative;
  overflow: hidden;
  background: var(--driftwood);
}

.about-strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s ease;
}
.about-strip-img:hover img { transform: scale(1.03); }

.about-strip-content {
  background: var(--ocean-deep);
  color: var(--warm-white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip-content .tag { color: var(--sunset-lt); margin-bottom: 16px; }

.about-strip-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--sand-light);
}

.about-strip-content p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,247,242,0.75);
  margin-bottom: 32px;
}

/* ============================================
   PRODUCTS PREVIEW
   ============================================ */
.products-preview { background: var(--warm-white); }

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-top: 10px;
}

.section-header p {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--text-light);
  margin-top: 14px;
  max-width: 540px;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

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

.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--driftwood);
}

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-card-body p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.product-card-items {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--sand);
  color: var(--driftwood);
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -20px; right: 5%;
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(250,247,242,0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-header h2,
.testimonials .tag { color: var(--sand-light); }
.testimonials .section-header h2 { color: var(--warm-white); }
.testimonials .section-header p { color: rgba(250,247,242,0.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.10);
  border-radius: 4px;
  padding: 32px;
  backdrop-filter: blur(4px);
}

.testimonial-stars {
  color: var(--sunset-lt);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: rgba(250,247,242,0.80);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--sunset-lt);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--sand);
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.cta-banner p {
  font-family: var(--font-ui);
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(250,247,242,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(250,247,242,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--sand-light);
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-bottom: 18px;
}

.footer-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,247,242,0.50);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(250,247,242,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sand-light); }

.footer-contact-item {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(250,247,242,0.55);
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--driftwood);
}

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

.footer-copy {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250,247,242,0.30);
}

.footer-hours {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(250,247,242,0.40);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  padding: 120px 0 64px;
  margin-top: 68px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-tag { margin-bottom: 12px; color: var(--sunset-lt) !important; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-family: var(--font-ui);
  font-size: 17px;
  color: rgba(250,247,242,0.70);
  max-width: 520px;
  line-height: 1.65;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-full { background: var(--warm-white); }

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.product-full-card {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  padding: 36px;
  transition: box-shadow var(--transition);
}

.product-full-card:hover { box-shadow: var(--shadow); }

.product-full-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 2px solid var(--sand-dark);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.product-full-list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}

.product-full-list li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(207,192,163,0.4);
  break-inside: avoid;
}

.product-full-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sunset);
  font-size: 12px;
}

.product-full-list li.special-order {
  color: var(--driftwood);
  font-style: italic;
}

.special-note {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--driftwood);
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--sand);
  border-left: 3px solid var(--driftwood);
  border-radius: 0 3px 3px 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--warm-white);
}

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

.about-story-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--driftwood);
}

.about-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 12px 0 20px;
}

.about-story-content p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.timeline {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand-dark);
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--redwood);
  min-width: 52px;
  line-height: 1.3;
}

.timeline-text {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

.team-section { background: var(--sand-light); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--warm-white);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }

.team-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--driftwood) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-img svg {
  width: 72px; height: 72px;
  color: rgba(250,247,242,0.4);
}

.team-card-body {
  padding: 24px;
}

.team-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-card-role {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 10px;
}

.team-card-years {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  background: var(--warm-white);
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 10px 0 20px;
  line-height: 1.2;
}

.contact-info p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--redwood);
}

.contact-detail-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.hours-table {
  margin-top: 32px;
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--font-ui);
  font-size: 14px;
  border-bottom: 1px solid var(--sand-dark);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-light); font-weight: 600; }
.hours-time { color: var(--text); }
.hours-closed { color: var(--driftwood); font-style: italic; }

/* Form */
.contact-form-wrap {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-subtitle {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--driftwood);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean-mist);
  box-shadow: 0 0 0 3px rgba(91,138,152,0.15);
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 8px;
}

/* Map */
.map-section { background: var(--sand); padding: 0; }
.map-wrap {
  height: 380px;
  background: var(--driftwood);
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(20%) saturate(0.9);
}

/* ============================================
   SCROLL ANIMATION
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; gap: 0; }
  .value-card { border-bottom: 1px solid var(--sand-dark); }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { height: 300px; }
  .about-strip-content { padding: 48px 36px; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .product-full-list { columns: 1; }
}
