@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #D49A2A; --secondary: #E58A17; --accent: #B3131B;
  --bg: #FAF7F2; --text-dark: #222222; --text-mid: #3D3328;
  --text-light: #7A6A58; --border: #EDE5D8;
  --grad1: linear-gradient(135deg, #7A4A00 0%, #D49A2A 55%, #E58A17 100%);
  --shadow: 0 10px 40px rgba(212,154,42,0.14);
  --shadow-hover: 0 20px 60px rgba(212,154,42,0.26);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-dark); overflow-x: hidden; }

/* NAV — all base styles come from components.css */
/* Only override what's needed per page, no base nav redeclarations */

/* PAGE HERO */
.page-hero { min-height: 52vh; background: linear-gradient(135deg, #5C3600 0%, #D49A2A 55%, #E58A17 100%); display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 5% 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E"); }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .18; pointer-events: none; }
.blob-1 { width: 400px; height: 400px; background: #E58A17; top: -80px; right: 5%; }
.blob-2 { width: 300px; height: 300px; background: #D49A2A; bottom: -60px; left: 5%; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 6px 18px; margin-bottom: 20px; color: #FFD97A; font-size: .8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.page-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: #fff; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* BREADCRUMB */
.breadcrumb { background: #fff; padding: 14px 5%; border-bottom: 1px solid var(--border); }
.breadcrumb ul { display: flex; align-items: center; gap: 8px; list-style: none; font-size: .82rem; color: var(--text-light); }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb li::after { content: '›'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }

/* SECTIONS */
section { padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 5vw, 5%); }
.section-label { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--primary); }
h2.section-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
h2.section-title span { color: var(--primary); }
.section-sub { font-size: 1rem; color: var(--text-light); line-height: 1.75; max-width: 580px; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::before { display: none; }
.section-head.center .section-sub { margin: 0 auto; }

/* CONTACT MAIN */
.contact-main { background: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }

/* INFO CARDS */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--bg); border-radius: 16px; padding: 24px 22px; border: 1.5px solid var(--border); display: flex; align-items: flex-start; gap: 16px; transition: all .3s; }
.info-card:hover { background: #fff; box-shadow: var(--shadow); border-color: var(--primary); transform: translateX(6px); }
.info-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, #D49A2A, #E58A17); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.info-card h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.info-card p, .info-card a { font-size: .88rem; color: var(--text-light); text-decoration: none; display: block; line-height: 1.6; }
.info-card a:hover { color: var(--primary); }
.phone-list { display: flex; flex-direction: column; gap: 6px; width: 100%; margin-top: 4px; }
.phone-list a { display: flex !important; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border); padding-bottom: 6px; }
.phone-list a:last-child { border-bottom: none; padding-bottom: 0; }
.phone-list span { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-mid); font-weight: 600; opacity: .7; margin-right: 12px; }
.hours-card { background: linear-gradient(135deg, #C17E14 0%, #E58A17 60%, #D49A2A 100%); border-radius: 16px; padding: 24px 22px; color: #fff; }
.hours-card h4 { font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { opacity: .8; }
.hour-row .time { font-weight: 600; }

/* CONTACT FORM */
.contact-form-wrap { background: var(--bg); border-radius: 24px; padding: 44px 40px; border: 1.5px solid var(--border); }
.contact-form-wrap h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .9rem; font-family: 'Inter', sans-serif;
  background: #fff; color: var(--text-dark); transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(212,154,42,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; background: var(--grad1); color: #fff; border: none;
  padding: 16px; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .3s; font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212,154,42,.45); }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: #DCFCE7; border-radius: 12px; color: #15803D;
}
.form-success .ico { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: .9rem; }

/* MAP */
.map-section { background: var(--bg); }
.map-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-container:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.map-container iframe {
  display: block;
  border-radius: 16px;
}

/* FAQ */
.faq-section { background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--primary); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; user-select: none; gap: 16px;
}
.faq-q h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a p { padding: 0 24px 20px; font-size: .9rem; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; }

/* FOOTER — base mobile-first from components.css */
footer { background: #0D0D0D; color: rgba(255,255,255,.75); padding: clamp(2rem,5vw,2.5rem) clamp(1rem,5vw,5%) clamp(1rem,3vw,1.5rem); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem,4vw,2rem); margin-bottom: clamp(1.75rem,4vw,3rem); }
.footer-brand p { font-size: clamp(.78rem,1.5vw,.88rem); line-height: 1.75; margin-top: 14px; max-width: 360px; }
.footer-col h4 { color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: clamp(.82rem,1.5vw,.95rem); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: clamp(.76rem,1.3vw,.85rem); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: clamp(1rem,2.5vw,1.75rem); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; font-size: clamp(.7rem,1.2vw,.82rem); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   CONTACT — RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* ── Mobile base ── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3.75rem); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.contact-form-wrap { padding: clamp(22px,4vw,44px) clamp(16px,4vw,40px); }

/* ── 768px: tablet ── */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
  .nav-mobile-drawer { display: none !important; }

  .form-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── 1024px: laptop ── */
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; gap: 60px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(2rem,3vw,3rem); }
}

/* ── 1440px ── */
@media (min-width: 1440px) {
  :root { --pad-x: clamp(4%,6vw,7%); }
}

/* ── 1920px ── */
@media (min-width: 1920px) {
  :root { --pad-x: clamp(6%,10vw,10%); }
}

/* ── 2560px ── */
@media (min-width: 2560px) {
  :root { --pad-x: clamp(10%,15vw,15%); }
}
