/* Ohio Flooring Experts — cream, brown & white */

:root {
  --paper: #fcfbf9;
  --cream: #fff3e1;
  --cream-2: #f5efe4;
  --ink: #2b2118;
  --grey: #6f6557;
  --line: #e7dfd2;
  --amber: #d08a3c;
  --amber-dark: #b06f24;
  --wood: #8a5a2b;
  --wood-deep: #74481f;
  --wood-soft: #f1e9de;
}

html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
  margin: 0;
  padding-bottom: 32px;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

h1, h2, h3 { margin: 0 0 10px; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 32px; margin-bottom: 36px; }
a { color: var(--ink); }
p { margin: 0 0 12px; }

.section { max-width: 1060px; margin: 0 auto; padding: 88px 24px; }
.section.alt { max-width: none; background: var(--cream-2); }
.section.alt > * { max-width: 1060px; margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: linear-gradient(180deg, #f5a04f 0%, #ed7d2b 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(237, 125, 43, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(237, 125, 43, 0.5);
}

.btn-sub {
  display: block;
  margin-top: 5px;
  font-weight: 800;
  font-size: 1.15em;
  opacity: 1;
}

.btn-small { font-size: 16px; padding: 12px 24px; }

.btn-amber {
  background: linear-gradient(180deg, #f5a04f 0%, #ed7d2b 100%);
}

.btn-amber:hover {
  background: linear-gradient(180deg, #f7a957 0%, #ef8534 100%);
}

/* ===== Hero ===== */
.hero-wrap {
  background: linear-gradient(180deg, var(--cream) 0%, #fdf7ee 100%);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 88px;
  width: auto;
  display: block;
}

.serving-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background 0.12s ease;
  white-space: nowrap;
}

.serving-link:hover {
  background: var(--cream-2);
}

.discount-alert {
  max-width: 1060px;
  margin: 0 auto 10px;
  padding: 16px 24px;
  background: linear-gradient(180deg, #fff8e8 0%, #fff1d6 100%);
  border: 1px solid var(--line);
  border-left: 6px solid var(--amber);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(90, 60, 25, 0.08);
}

.season-icon {
  font-size: 34px;
  flex: 0 0 auto;
}

.discount-alert strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}

.discount-alert p {
  margin: 3px 0 0;
  color: var(--grey);
  font-size: 14px;
}

.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  text-align: center;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.02;
  margin-bottom: 10px;
  color: var(--ink);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 15px;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 22px;
}

.sub {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 30px;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--grey);
}

.hero-photo {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.hero-photo .photo-slot,
.hero-photo img {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(90, 60, 25, 0.18);
}

.photo-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background:
    repeating-linear-gradient(100deg,
      var(--wood-soft) 0 54px,
      #e8ddcd 54px 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
}

/* ===== Trust logos ===== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 56px;
  padding: 30px 24px;
}

.trust-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.services-4 {
  grid-template-columns: repeat(2, 1fr);
}

.service {
  background: #fff;
  padding: 30px;
  transition: background 0.15s ease;
}

.service:hover {
  background: var(--cream);
}

.service h3 {
  font-size: 18px;
}

.service p {
  margin: 0;
  color: var(--grey);
  font-size: 15px;
}

/* ===== Recent work ===== */
.featured-work img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(90, 60, 25, 0.14);
}

/* ===== Reviews ===== */
.reviews-section {
  text-align: center;
}

/* ===== FAQ ===== */
.faq {
  max-width: 720px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 18px 0;
}

.faq summary:hover {
  color: var(--amber-dark);
}

.faq details p {
  color: var(--grey);
  padding-bottom: 18px;
  margin: 0;
}

/* ===== Service area + map ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area-section h2 {
  text-align: left;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.area-more {
  color: var(--grey);
  font-size: 15px;
}

.area-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(90, 60, 25, 0.15);
}

/* ===== Footer ===== */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--grey);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-tagline {
  color: var(--amber-dark);
  font-style: italic;
}

.footer p {
  font-size: 15px;
}

.footer a {
  color: var(--wood);
  font-weight: 600;
}

.fine {
  max-width: 1060px;
  margin: 48px auto 0;
  font-size: 12px;
  color: #a4988a;
}

/* ===== Sticky mobile call bar ===== */
/* ===== Sticky mobile call bar ===== */
.sticky-call {
  display: none;
  position: fixed;

  left: 12px;
  right: 12px;
  bottom: 8px;

  z-index: 999;

  text-align: center;
  text-decoration: none;

  background: linear-gradient(180deg, #f5a04f 0%, #ed7d2b 100%);
  color: #fff;

  font-weight: 700;
  font-size: 15px;
  line-height: 1;

  padding: 12px 16px;

  border-radius: 999px;

  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

/* ===== Accessibility ===== */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .service {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .hero h1 {
    font-size: 42px;
  }

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

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

@media (max-width: 560px) {
  h2 {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .section {
    padding: 52px 18px;
  }

  .header {
    padding: 12px 16px;
  }

  .site-logo {
    height: 64px;
  }

  .serving-text {
    display: none;
  }

  .serving-link {
    padding: 9px 13px;
    font-size: 16px;
  }

  .discount-alert {
    margin: 0 16px 8px;
    padding: 14px 16px;
    align-items: flex-start;
  }

  .season-icon {
    font-size: 28px;
  }

  .discount-alert strong {
    font-size: 16px;
  }

  .discount-alert p {
    font-size: 13px;
  }

  .hero {
    padding: 28px 18px 56px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .sub {
    font-size: 16px;
  }

  .btn {
    font-size: 17px;
    padding: 16px 30px;
    width: 100%;
    max-width: 340px;
  }

  .hero-note {
    font-size: 13px;
    line-height: 2;
  }

  .hero-photo {
    margin-top: 34px;
  }

  .hero-photo .photo-slot,
  .hero-photo img {
    border-width: 6px;
  }

  .trust-strip {
    gap: 18px 30px;
    padding: 22px 18px;
  }

  .trust-logo {
    height: 40px;
  }

  .services,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
    text-align: center;
  }

  .footer {
    padding: 48px 20px 100px;
  }

  .area-map iframe {
    height: 300px;
  }

  .sticky-call {
    display: block;
  }
}

@media (min-width: 561px) {
  body {
    padding-bottom: 0;
  }
}

