/* =========================================================
   Embroidery Byron Bay — Stylesheet
   Mobile-first, responsive
   ========================================================= */

:root {
  --color-cream: #FBF7EE;
  --color-cream-deep: #F4EDDC;
  --color-navy: #0B2338;
  --color-navy-deep: #122739;
  --color-teal: #2F818A;
  --color-teal-dark: #256B73;
  --color-teal-light: #7FBFC2;
  --color-orange: #F0B157;
  --color-text: #3D4A52;
  --color-text-soft: #5C6B73;
  --color-border: #E7DFCC;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(11, 35, 56, 0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  font-size: 0.78rem;
  margin: 0 0 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-arrow { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-teal);
  color: #fff;
}
.btn-primary:hover { background: var(--color-teal-dark); box-shadow: var(--shadow-soft); }

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* .logo-mark { width: 38px; height: 38px; } */
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}
.logo-text-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  color: var(--color-teal);
  letter-spacing: 0.12em;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--color-navy);
  position: relative;
}
.main-nav a:hover { color: var(--color-teal); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s 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); }

/* ---------- Hero ---------- */
.hero {
  padding-block: 40px 30px;
  padding-top: 0;
}
.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}
.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 2.9rem);
  letter-spacing: -0.01em;
}
.highlight {
  color: var(--color-teal);
  position: relative;
}
.hero-lead {
  font-size: 1.02rem;
  color: var(--color-text-soft);
  max-width: 40ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.hero-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
}

/* ---------- Feature strip ---------- */
.feature-strip { padding-block: 8px 40px; }
.feature-list {
  background: #f8f1e3;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-item img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
}
.feature-title {
  font-size: 1rem;
  margin-bottom: 2px;
}
.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* ---------- About / mascot band ---------- */
.about-band { padding-block: 40px; }
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.about-media img { max-width: min(340px, 100%); margin-inline: auto; }
.about-copy h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }
.about-copy p { color: var(--color-text-soft); }
.about-copy { text-align: left; }

/* ---------- Categories ---------- */
.categories { padding-block: 40px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.section-head h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.category-card {
  background: #faf3e7;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  position: relative;
  min-width: 0;
}
.category-card img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
  background: var(--color-cream-deep);
}
.category-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  overflow-wrap: break-word;
}
.category-card p {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  margin-bottom: 30px;
  min-height: 44px;
}
.card-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.card-link svg { width: 14px; height: 14px; }
.card-link:hover { background: var(--color-teal); border-color: var(--color-teal); color: #fff; }

/* ---------- Gallery ---------- */
.gallery-section { padding-block: 44px; }
.gallery-lead { color: var(--color-text-soft); max-width: 52ch; margin-inline: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
}
.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery-caption {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

/* ---------- Suppliers ---------- */
.suppliers-section { padding-block: 44px; background: var(--color-cream-deep); }
.suppliers-lead { color: var(--color-text-soft); max-width: 58ch; margin-inline: auto; }
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.supplier-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.supplier-card:hover { border-color: var(--color-teal); box-shadow: var(--shadow-soft); }
.supplier-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.supplier-logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.supplier-logo-wrap img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.supplier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--color-navy);
}
.supplier-external-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  color: var(--color-text-soft);
}
.suppliers-note {
  max-width: 58ch;
  margin: 30px auto 0;
  text-align: center;
}
.suppliers-note p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}
.suppliers-help { color: var(--color-navy); font-weight: 600; }

/* ---------- Process ---------- */
.process { padding-block: 44px 10px; background: #faf3e7; }
.process-head h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;
  text-align: center;
}
.process-step {
  position: relative;
  padding-left: 4px;
  min-width: 0;
}
.process-arrow { display: none; }
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.process-step img {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}
.process-step h3 { font-size: 1.05rem; }
.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  max-width: 26ch;
}

.process-arrow {
  position:relative;
  width:1px;
}
.process-arrow > div {
  position: absolute;
  top: 70px;
  width: 75px;
  left: -38px;
}

/* ---------- Testimonials ---------- */
.testimonials { padding-block: 50px 44px; }
.testimonials-eyebrow { text-align: center; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.testimonial-card {
  background: #f4eddc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.stars {
  color: var(--color-orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.stars .star { color: var(--color-border); }
.stars .star.is-filled { color: var(--color-orange); }
.testimonial-body blockquote {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--color-navy);
}
.testimonial-body cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

/* ---------- Backyard band ---------- */
.backyard-band { background: var(--color-cream-deep); }
.backyard-inner {
  background: var(--color-cream-deep);
  /* border-radius: var(--radius-lg); */
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
}
.backyard-copy {
  padding: 34px 26px;
}
.backyard-copy h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); }
.backyard-copy p { color: var(--color-text-soft); }
.backyard-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---------- FAQ ---------- */
.faq-section { padding-block: 50px; }
.faq-list {
  max-width: 760px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px 20px;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-teal);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  margin: 0;
  padding-bottom: 18px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  max-width: 65ch;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-navy-deep);
  padding-block: 44px;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 6vw, 2.3rem);
  margin: 0;
}
.highlight-light { color: var(--color-teal-light); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-note {
  color: #C9D2D8;
  font-size: 0.9rem;
}

/* ---------- Quote form ---------- */
.quote-form { padding-block: 50px 60px; }
.quote-form-inner { max-width: 720px; margin-inline: auto; }
.quote-form-head { text-align: center; margin-bottom: 26px; }
.quote-form-head h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
.quote-form-lead { color: var(--color-text-soft); max-width: 48ch; margin-inline: auto; }

.form-alert {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 22px;
  text-align: center;
}
.form-alert-success {
  background: #E4F2E9;
  color: #1F6B41;
  border: 1px solid #BFE2CC;
}
.form-alert-error {
  background: #FBEAEA;
  color: #A23131;
  border: 1px solid #F1C6C6;
}

.quote-form-fields {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 11px 13px;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(47, 129, 138, 0.15);
}
.form-field input[type="file"] {
  padding: 9px 10px;
  background: var(--color-cream);
  cursor: pointer;
}
.form-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-text-soft);
}
.quote-form-fields button[type="submit"] {
  align-self: flex-start;
  border: none;
  margin-top: 4px;
}

.quote-form-alt {
  text-align: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.quote-form-alt p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  max-width: 46ch;
  margin-inline: auto;
  margin-bottom: 14px;
}
.quote-form-alt strong { color: var(--color-navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: #faf5eb;
  padding-top: 44px;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 30px;
}
.footer-brand p {
  color: var(--color-text-soft);
  font-size: 0.9rem;
  max-width: 32ch;
  margin-top: 12px;
}
.footer-nav h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { font-size: 0.88rem; color: var(--color-text-soft); }
.footer-nav a:hover { color: var(--color-teal); }

.footer-contact h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.social-list { display: flex; gap: 12px; margin-bottom: 14px; }
.social-list a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}
.social-list svg { width: 16px; height: 16px; }
.social-list a:hover { background: var(--color-navy); color: #fff; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--color-teal); }

.footer-art { display: none; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 18px;
}
.footer-bottom div {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-soft);
  text-align: center;
}

.footer-bottom .footer-seperator {
  display: none;
}
.footer-admin-link {
  color: var(--color-text-soft);
}
.footer-admin-link:hover {
  color: var(--color-teal);
}

/* ---------- Mobile CTA bar ---------- */
/* Hidden on desktop (>=900px, see media query below) - the header
   already has a persistent "Get a Quote" button there. */
body { padding-bottom: 88px; }

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  box-shadow: 0 -10px 30px rgba(11, 35, 56, 0.22);
  transition: transform 0.3s ease;
}
.mobile-cta-bar.is-collapsed {
  transform: translateY(calc(100% - 20px - env(safe-area-inset-bottom, 0px)));
}

.mobile-cta-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px calc(16px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: center;
}
.mobile-cta-half svg { width: 22px; height: 22px; flex-shrink: 0; }

.mobile-cta-quote {
  background: var(--color-teal);
  color: #fff;
}
.mobile-cta-quote:active { background: var(--color-teal-dark); }

.mobile-cta-call {
  background: var(--color-orange);
  color: var(--color-navy);
}
.mobile-cta-call:active { background: #e6a147; }

.mobile-cta-call-full { display: none; }

.mobile-cta-toggle {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 38px;
  background: var(--color-navy);
  border: none;
  border-radius: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 -4px 10px rgba(11, 35, 56, 0.15);
}
.mobile-cta-toggle svg { width: 16px; height: 16px; }
.mobile-cta-toggle .icon-chevron { display: none; }
.mobile-cta-bar.is-collapsed .mobile-cta-toggle .icon-close { display: none; }
.mobile-cta-bar.is-collapsed .mobile-cta-toggle .icon-chevron { display: block; }

@media (min-width: 360px) {
  .mobile-cta-half { font-size: 0.98rem; gap: 12px; }
  .mobile-cta-call-short { display: none; }
  .mobile-cta-call-full { display: inline; }
}




/* =========================================================
   Tablet — 640px+
   ========================================================= */
@media (min-width: 640px) {
  .hero-actions { gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .suppliers-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cta-actions { flex-direction: row; align-items: center; }

  .form-row { flex-direction: row; }
  .quote-form-fields { padding: 34px; }

  .footer-bottom {
    display: flex;
    justify-content: center
  }

  .footer-bottom .footer-seperator {
    display: block;
  }
}

/* =========================================================
   Desktop — 900px+
   ========================================================= */
@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }

  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }

  .hero {
    padding-top: 40px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }
  .hero-copy { flex: 0 0 44%; }
  .hero-media { flex: 1; }

  .feature-list { flex-direction: row; padding: 30px 36px; }
  .feature-item { flex: 1; }

  .about-inner { flex-direction: row; align-items: center; gap: 60px; }
  .about-media { flex: 0 0 38%; }
  .about-copy { flex: 1; }
  .about-media img { max-width: none; }

  .category-grid { grid-template-columns: repeat(5, 1fr); }
  .category-card h3 { font-size: 1.05rem; }
  .category-card p { min-height: 58px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .suppliers-grid { grid-template-columns: repeat(5, 1fr); }

  .process-inner { display: flex; gap: 60px; align-items: flex-start; }
  .process-head { flex: 0 0 260px; position: sticky; top: 100px; }
  .process-steps { display: flex; flex: 1; gap: 24px; }
  .process-step { flex: 1; }
  .process-arrow { display: block; }

  .testimonial-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

  .backyard-inner { flex-direction: row; align-items: stretch; }
  .backyard-copy { flex: 0 0 38%; align-self: center; padding: 40px 44px; }
  .backyard-media { flex: 1; }
  .backyard-media img { height: 100%; min-height: 320px; }

  .footer-inner { grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr auto; align-items: start; }
  .footer-art { display: block; align-self: end; }
}

/* =========================================================
   Mobile nav (below 900px)
   ========================================================= */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    padding: 10px 20px 22px;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--color-border);
  }
  .header-cta { display: none; }
}

/* =========================================================
   Wide desktop polish — 1180px+
   ========================================================= */
@media (min-width: 1180px) {
  .hero-lead { font-size: 1.1rem; }
}
