/* =========================
   DESIGN TOKENS
========================= */

:root {
  --cream: #efe2cc;
  --cream-2: #f8efdf;
  --green: #1f2c1d;
  --black: #111111;
  --orange: #b64d1c;
  --gold: #d89a2b;
  --white: #fff5e9;

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 8px 20px rgba(0,0,0,0.12);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.15);
  --shadow-lg: 0 18px 35px rgba(0,0,0,0.18);

  --transition: 0.2s ease;
}

/* =========================
   RESET / BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: #171411;
  line-height: 1.5;
  padding-top: 90px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* =========================
   LAYOUT SYSTEM
========================= */

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* consistent spacing rhythm */
.section {
  padding: 56px 0;
}

/* =========================
   TOP BAR
========================= */

.topbar {
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--green);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.brand-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 6px;
}

.top-actions {
  text-align: right;
}

.top-actions .label {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.phone {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  display: inline-block;
  white-space: nowrap;
  transition: var(--transition);
}

.phone:hover {
  transform: scale(1.05);
}

/* =========================
   BUTTON SYSTEM
========================= */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #2b3d28;
}

.btn-secondary {
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
}

.btn-secondary:hover {
  background:var(--cream-2);
}

.btn-FAQ {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  color: var(--white);
  background: var(--orange);
  box-shadow: var(--shadow-sm);
}

.btn-FAQ {
  border: 2px solid var(--green);
  background: var(--orange);
  color: var(--white);
}

.btn-FAQ:hover {
  background: #b64d1c;
}

/* flyer button */
.flyer-download {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.flyer-download:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.flyer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.flyer-note {
  text-align: center;
  max-width: 420px;
}
/* =========================
   HERO
========================= */

.hero {
  background: linear-gradient(
    180deg,
    #c76b2a 0%,
    #b64d1c 18%,
    #efd8b1 18%,
    #efd8b1 100%
  );
  border-bottom: 8px solid var(--green);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}

.eyebrow {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  margin: 0;
  line-height: 1.03;
}

.lead {
  font-size: 1.1rem;
  max-width: 640px;
  color: #2a241d;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.faq-hero .hero-grid {
  display: block;      
  text-align: left;
  padding: 40px 0;
}

.faq-hero .hero-content {
  max-width: 100%;
}

.faq-hero h1 {
  margin: 80px 0 10px;
  font-size: clamp(2rem, 5vw, 3.5rem); 
  line-height: 1.1;
}

.faq-hero .lead {
  margin-bottom: 30px;
}


/* =========================
   CARDS
========================= */

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

.card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 4px solid var(--green);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center
}

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

.card.orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--black);
  text-align: center
}

.card.green {
  background: var(--green);
  color: var(--white);
  text-align: center
}

/* =========================
   SERVICES
========================= */

.services-band {
  background: var(--black);
  color: var(--white);
  border-top: 8px solid var(--green);
  border-bottom: 8px solid var(--green);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-item {
  background: #191919;
  border: 1px solid rgba(216,154,43,0.45);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-weight: 700;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
  background: var(--cream);
  padding: 56px 0 70px;
  text-align: center;
}

.big-phone {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--orange);
  font-weight: 900;
  margin: 10px 0;
}

.contact-cta {
  text-align: center;
}
/* =========================
   FORM
========================= */

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(31,44,29,0.35);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(182,77,28,0.15);
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 22px 16px 40px;
  color: var(--green);
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .hero-grid,
  .cards-3,
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================
   CONTACT PAGE LAYOUT (MISSING PIECE)
========================= */

.contact-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-card {
  flex: 2;
  min-width: 300px;
}

.info-card {
  flex: 1;
  min-width: 260px;
  background: var(--green);
  color: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  color: var(--white);
  margin-top: 0;
}

.info-card a {
  color: var(--white);
}

.info-card .contact-info-item strong {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-item {
  margin-bottom: 14px;
}

.contact-info-item strong {
  display: block;
  color: var(--green);
  margin-bottom: 3px;
}

/* SUCCESS BANNER (you were missing this too) */
.success-banner {
  display: none;
  background: var(--green);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  font-weight: 800;
}

/* MOBILE FIX */
@media (max-width: 700px) {
  .form-row {
    flex-direction: column;
  }
}

/* =========================
   MEET THE OWNER PAGE
========================= */

.quote-section {
    padding: 50px 20px;
    text-align: center;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 600;
    color: #333;
}

.featured-quote {
    background: #f5f5f5;
}

.featured-quote blockquote {
    font-size: 1.8rem;
}


.owner-hero {
  text-align: center;
  padding: 50px 0;
}

.owner-hero .subtitle {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 10px;
}

.owner-intro,
.owner-story,
.owner-values,
.owner-community,
.shop-photo,
.cta {
  padding: 60px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
}

.owner-photo img {
  width: 100%;
  max-width: 325px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
 
}

.owner-text h2,
.owner-story h2,
.owner-values h2,
.owner-community h2,
.cta h2 {
  color: var(--green);
  margin-top: 0;
}

.owner-story {
  background: var(--cream-2);
}

.shop-photo img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}

.image-text-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 30px 0;
}

.image-quote {
  width: 300px;
  flex-shrink: 0;
}

.side-photo {
  width: 300px;
  height: auto;
  border-radius: 12px;
  display:block;
}

.image-quote blockquote {
  width: 300px;
  margin: 15px 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
}

.side-text {
  flex: 1;
}

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

.value-card-left {
  background: var(--cream-2);
  border: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  color: var(--black);
  margin-top: 0;
}

.value-card-middle {
  background: var(--orange);
  border: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.value-card-right {
  background: var(--green);
  border: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

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

.owner-community blockquote {
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.6;
}

.cta {
  text-align: center;
  background: var(--green);
  color: var(--white);
}

.cta h2 {
  color: var(--white);
}

.cta .btn {
  margin-top: 20px;
}

@media (max-width: 900px) {

  .two-column {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-photo img {
    margin: 0 auto 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }
}

.owner-img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FINAL MASTER MOBILE FIXES 
   (Only triggers on screens 768px or smaller)
   ============================================================ */
@media (max-width: 768px) {
  
  /* 1. Header & Navigation */
  .topbar-inner {
    flex-direction: column !important; 
    gap: 10px !important;
    padding: 15px 0 !important;
    text-align: center !important;
  }
  
  body {
    padding-top: 150px !important; /* Pushes content down so header doesn't cover it */
  }

  /* 2. Layout Stacking (Makes columns stack vertically) */
  .two-column, 
  .contact-grid, 
  .image-text-row,
  .footer-content {
    grid-template-columns: 1fr !important; 
    flex-direction: column !important;
    gap: 30px !important;
    text-align: center !important;
  }

  /* 3. Specific Image Fixes (Prevents overflow) */
  /* We removed the general 'img' tag to stop the laptop view from breaking */
  .owner-photo img, 
  .side-photo, 
  .image-quote img,
  .feature-icon {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block;
  }

  /* 4. Contact Page Map */
  .map-container iframe {
    height: 300px !important;
    width: 100% !important;
  }

  /* 5. Buttons (Optional: makes buttons easier to tap on phones) */
  .cta-button, .submit-button {
    width: 100%;
    display: block;
  }
}

/* ============================================================
   FAQ Page
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background-color: #fcf6eb; 
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

details {
  background: white;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #efd8b1;
  overflow: hidden;
  transition: all 0.3s ease;
}

summary {
  list-style: none; 
  padding: 25px;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  transition: transform 0.4s ease;
  color: #b64d1c;
}

details[open] {
  border-color: var(--green); 
}

details[open] .faq-arrow {
  transform: rotate(180deg); /* Flips the arrow upside down */
  color: var(--green);       /* Turns the arrow green */
}

details[open] summary {
  border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
  padding: 25px;
  line-height: 1.7;
  color: #444;
  background-color: #fafafa;
  font-size: 1.1rem;
}

/* FAQ SECTION STYLING */
.faq-section {
    padding: 60px 0;
    background-color: #f9f4eb; /* Matches your light tan background */
}

.faq-list {
    max-width: 900px; /* Limits the width so it doesn't stretch too far */
    margin: 0 auto;   /* Centers the list on the page */
}

/* The Box for each question */
details {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* The Question Bar */
summary {
    list-style: none; /* Removes that ugly black triangle */
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    user-select: none;
}

/* Removes the default triangle in Safari/Chrome */
summary::-webkit-details-marker {
    display: none;
}

/* The Arrow Icon */
.faq-arrow {
    transition: transform 0.3s ease;
    color: #b64d1c; /* Your orange color */
    flex-shrink: 0;
    margin-left: 15px;
}

/* Styles when the question is clicked/open */
details[open] {
    border-color: #b64d1c; /* Changes border to orange when open */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

details[open] summary {
    background-color: #fff9f4; /* Very light orange tint when open */
    border-bottom: 1px solid #eee;
}

details[open] .faq-arrow {
    transform: rotate(180deg); /* Flips the arrow up */
}

/* The Answer Text Area */
.faq-answer {
    padding: 20px;
    line-height: 1.6;
    color: #444;
    background-color: #ffffff;
}

.faq-answer p {
    margin: 0;
}
.faq-hero .hero-content {
    text-align: center;
    margin: 0 auto;
}

.faq-lead {
  font-size: 1.1rem;
  max-width: 640px;
  color: #2a241d;
  text-align: center;
}

.center-button {
  display: flex;
  flex-wrap: wrap;
  padding-top: 25px;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .center-button {
    margin-top: 20px;
    margin-bottom: 25x;
  }
}