/* ============================================================
   WILD TURKEY DECKS LLC — STYLES
   Color palette drawn from logo: earthy, rustic, bold
   Primary: #4A2C0A (deep walnut brown)
   Accent:  #8B4513 (saddle brown)
   Gold:    #C8860A (amber/gold)
   Light:   #F5EFE6 (warm cream)
   Dark:    #1C1008 (near black)
   ============================================================ */

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

:root {
  --primary: #4A2C0A;
  --primary-dark: #2E1A05;
  --accent: #8B4513;
  --gold: #C8860A;
  --gold-light: #E5A020;
  --cream: #F5EFE6;
  --cream-dark: #EDE2D0;
  --dark: #1C1008;
  --text: #2D1F0E;
  --text-light: #6B5740;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(74, 44, 10, 0.15);
  --shadow-lg: 0 8px 40px rgba(74, 44, 10, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(200,134,10,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-light {
  background: var(--white);
  color: var(--primary);
}
.btn-light:hover { background: var(--cream); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 16, 8, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.nav-logo {
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-link {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--gold); background: rgba(200,134,10,0.1); }
.nav-cta {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(28,16,8,0.75) 0%, rgba(74,44,10,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 800px;
}
.hero-logo-wrap {
  margin: 0 auto 28px;
  max-width: 400px;
}
.hero-logo-wrap img {
  width: 100%;
  filter: brightness(0) invert(1);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)) brightness(0) invert(1);
}
.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-sub {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-label { color: var(--gold-light); }
.section-label {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.25s;
}
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section {
  background: var(--primary-dark);
  padding-bottom: 90px;
}
.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.portfolio-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}
.portfolio-dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

/* ============================================================
   GALLERY (legacy)
   ============================================================ */
.gallery-section {
  background: var(--primary-dark);
  padding-bottom: 90px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,16,8,0.82));
  padding: 20px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay span {
  color: var(--gold-light);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER OWNER LABEL
   ============================================================ */
.footer-owner-label {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-service-area {
  font-size: 0.78rem;
  color: rgba(245,239,230,0.45);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: visible;
}
.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 130px;
}
.badge-num {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
.badge-text {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.about-content .section-label { margin-bottom: 6px; }
.about-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-content p {
  font-size: 0.97rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  list-style: none;
  margin-bottom: 32px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 400;
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.about-features li:last-child { border-bottom: none; }
.about-features i { color: var(--gold); font-size: 1rem; }

.about-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  margin-bottom: 20px;
  background: var(--cream);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

.about-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 60px 24px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 0.97rem;
  color: rgba(245, 239, 230, 0.85);
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 1rem; }
.contact-info-item h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item p {
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 400;
}
.contact-info-item a:hover { color: var(--gold); }
.contact-logo-wrap {
  margin-top: 8px;
  max-width: 220px;
}
.contact-logo-wrap img { width: 100%; opacity: 0.85; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { margin-bottom: 20px; }
.form-group label {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 5px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
}
.form-group textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer-logo img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-middle { text-align: center; }
.footer-middle h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-phone {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(245,239,230,0.55);
}
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245,239,230,0.4);
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid.two-col { grid-template-columns: 1fr; max-width: 100%; }
  .portfolio-placeholder { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-dynamic { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .about-badge { bottom: -20px; right: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .contact-logo-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .footer-contact { text-align: center; }
  .footer-logo { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(28, 16, 8, 0.98);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 4px;
    border-bottom: 2px solid var(--gold);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 12px 16px; text-align: center; }
  .nav-cta { text-align: center; padding: 12px 16px; margin-top: 8px; }

  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-placeholder {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .portfolio-placeholder .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 220px;
  }
  .portfolio-placeholder .gallery-item { height: 160px; }
  .portfolio-dynamic { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 220px;
  }
  .gallery-item { height: 160px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .contact-info { flex-direction: column; }
  .hero-logo-wrap { max-width: 280px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 18px; }
}

@media (max-width: 375px) {
  .hero-tagline { font-size: 1.2rem; }
  .hero-sub { font-size: 0.78rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-item.large { height: 180px; }
  .gallery-item { height: 130px; }
}
