@font-face {
  font-family: 'Biennale';
  src: url('../fonts/biennale-medium.otf') format('opentype');
}

/* ==========================================================================
   COPPERLINE — Design Tokens
   ========================================================================== */
:root {
  /* Color */
  --canvas: #F7F5F0;
  --canvas-alt: #EFEBE0;
  --ink: #14140F;
  --ink-soft: #45463F;
  --forest-deep: #1C3B2E;
  --forest-mid: #2F5943;
  --forest-line: #24493A;
  --copper: #B87333;
  --copper-light: #E3B778;
  --line: #DDD8CB;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Biennale';
  --font-body: 'Biennale';
  --font-mono: 'Biennale';

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(20, 20, 15, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 20, 15, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 20, 15, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--ink); }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest-deep);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

/* ==========================================================================
   Utility text
   ========================================================================== */
.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.section-sub.center { text-align: center; margin: 0 auto 56px; }

.section { padding: 100px 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}
.btn-outline:hover { background: var(--forest-deep); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(221, 216, 203, 0.7);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 30px; justify-content: center; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.95rem; color: var(--forest-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: var(--canvas);
  border-top: 1px solid var(--line);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav a { font-size: 1.05rem; font-weight: 500; }
.mobile-nav.open { display: flex; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--canvas);
  padding-top: 70px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 12px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta-row.center { justify-content: center; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-badges svg { color: var(--copper); flex-shrink: 0; }

.hero-visual { position: relative; }
.topo { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 6s ease-in-out infinite;
}
.card-1 { top: 8%; left: -8%; }
.card-2 { bottom: 10%; right: -6%; animation-delay: 1.5s; }
.fc-label { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.fc-value { font-weight: 700; font-size: 1rem; color: var(--forest-deep); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-divider { line-height: 0; margin-top: -2px; }
.section-divider svg { width: 100%; height: 60px; display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Locator bar (hero) */
.locator-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  max-width: 480px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.locator-bar svg { color: var(--copper); flex-shrink: 0; }
.locator-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.locator-bar input::placeholder { color: var(--ink-soft); }
.locator-bar .btn { padding: 12px 22px; font-size: 0.9rem; flex-shrink: 0; }
.locator-result {
  min-height: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-mid);
  margin-bottom: 28px;
}

/* ==========================================================================
   Why / Feature cards
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--canvas-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.feature-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ==========================================================================
   Categories
   ========================================================================== */
.categories { background: var(--canvas-alt); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.category-media {
  height: 160px;
  position: relative;
  background-size: 200% 200%;
  overflow: hidden;
  transition: background-size 0.6s var(--ease);
}
.category-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,15,0) 40%, rgba(20,20,15,0.15) 100%);
  transition: background 0.35s var(--ease);
}
.category-card:hover .category-media { background-size: 230% 230%; }
.category-card:hover .category-media::after { background: rgba(20, 20, 15, 0.38); }

.category-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.category-card:hover .category-overlay { opacity: 1; transform: translateY(0); }
.cat-1 { background-image: linear-gradient(135deg, #1C3B2E, #2F5943); }
.cat-2 { background-image: linear-gradient(135deg, #2F5943, #B87333); }
.cat-3 { background-image: linear-gradient(135deg, #14140F, #1C3B2E); }
.cat-4 { background-image: linear-gradient(135deg, #B87333, #E3B778); }
.cat-5 { background-image: linear-gradient(135deg, #24493A, #45463F); }
.cat-6 { background-image: linear-gradient(135deg, #2F5943, #14140F); }
.category-body { padding: 24px; }
.category-body h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.category-body p { color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   Arizona
   ========================================================================== */
.arizona-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.arizona-list { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.arizona-list li { display: flex; flex-direction: column; gap: 4px; padding-left: 26px; position: relative; }
.arizona-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--copper);
}
.arizona-list strong { font-size: 1.05rem; }
.arizona-list span { color: var(--ink-soft); font-size: 0.95rem; }

.arizona-map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-visual { background: var(--canvas-alt); }
.map-info { padding: 30px; }
.map-info h3 { font-size: 1.25rem; margin-bottom: 8px; }
.map-info p { color: var(--ink-soft); margin-bottom: 20px; }

/* ==========================================================================
   Offers
   ========================================================================== */
.offers { background: var(--forest-deep); color: var(--white); }
.offers .eyebrow { color: var(--copper-light); }
.offers .section-title { color: var(--white); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.offer-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.offer-card.featured { border-color: var(--copper); background: rgba(184, 115, 51, 0.12); }
.offer-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.offer-tag.gold { background: var(--copper); color: var(--forest-deep); }
.offer-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.offer-card p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 0.97rem; }
.offer-link { font-weight: 600; color: var(--copper-light); }
.offer-link:hover { text-decoration: underline; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--copper); font-size: 0.95rem; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.review-author { display: flex; flex-direction: column; }
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-loc { font-size: 0.82rem; color: var(--ink-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--forest-deep);
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 0 24px;
}
.faq-answer p { color: var(--ink-soft); padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--forest-deep), #0f261c);
  color: var(--white);
  text-align: center;
}
.final-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
} 

.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--copper-light); }

.footer-bottom {
  padding: 26px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}
.compliance-notice { max-width: 640px; color: rgba(255,255,255,0.5); }
.copyright { white-space: nowrap; color: rgba(255,255,255,0.5); }

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(20,20,15,0.08);
}
@media (max-width: 720px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 0px; }
  .back-to-top { bottom: 92px; }
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  z-index: 400;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--forest-mid); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .main-nav, .header-actions .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 80px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .arizona-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .header-actions .btn { padding: 10px 16px; font-size: 0.85rem; }
  .feature-grid, .category-grid, .review-grid { grid-template-columns: 1fr; }
  .card-1, .card-2 { position: static; margin-top: 16px; display: inline-flex; }
  .hero-visual { display: flex; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-cta-row, .hero-cta-row.center { flex-direction: column; }
  .hero-cta-row .btn, .hero-cta-row.center .btn { width: 100%; }
  
  .topo {
    display: none;
}

.hero {
    padding-top: 20px;
}

    .hero-visual {
        display: flex;
         flex-direction: row; 
        gap: 11px;
    }
}