/* ============================================================
   Jack Wills Home & Outdoor Living — Moving Sale Landing Page
   Design tokens
   ============================================================ */
:root {
  --color-black: #111111;
  --color-ink: #1c1d1e;
  --color-white: #ffffff;
  --color-ivory: #f6f2ec;
  --color-ivory-2: #f2ede5;
  --color-line: #e6e0d6;
  --color-line-2: #ececec;
  --color-muted: #6b6b6b;
  --color-muted-2: #8a8a8a;
  --color-red: #d84a44;
  --color-red-dark: #c23a34;
  --color-red-soft: #fbeceb;

  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1280px;
  --gutter: 40px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(20, 20, 20, 0.03), 0 8px 24px rgba(20, 20, 20, 0.04);
  --shadow-card-hover: 0 6px 12px rgba(20, 20, 20, 0.05), 0 20px 40px rgba(20, 20, 20, 0.08);

  --tr: 260ms cubic-bezier(.22,.61,.36,1);
  --tr-slow: 500ms cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--color-red); }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  cursor: pointer;
  white-space: nowrap;
}
.btn--dark { background: var(--color-black); color: var(--color-white); }
.btn--dark:hover { background: var(--color-red); color: var(--color-white); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn--outline:hover { background: var(--color-black); color: var(--color-white); }
.btn--red { background: var(--color-red); color: var(--color-white); border-radius: var(--radius-sm); }
.btn--red:hover { background: var(--color-red-dark); color: var(--color-white); transform: translateY(-1px); }
.btn--pill { border-radius: var(--radius-pill); padding: 14px 26px; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.22,.61,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line-2);
  transition: box-shadow var(--tr);
}
.site-header.is-scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.04); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 84px;
  padding: 12px var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.brand--invert img,
.footer-brand--invert img { filter: invert(1) hue-rotate(180deg); }

.header-cta { display: inline-flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; font-size: 11.5px; letter-spacing: 0.16em; border-radius: var(--radius-pill); }
.header-cta .btn svg { width: 14px; height: 14px; }
.header-phone {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-ink);
}
.header-phone:hover { color: var(--color-red); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(246, 242, 236, 0.95) 0%,
      rgba(246, 242, 236, 0.75) 30%,
      rgba(246, 242, 236, 0.2) 55%,
      rgba(246, 242, 236, 0) 70%),
    linear-gradient(270deg,
      rgba(20, 20, 20, 0.25) 0%,
      rgba(20, 20, 20, 0) 40%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px var(--gutter) 90px;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content { max-width: 620px; flex: 1 1 auto; }
.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-subhead {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-red);
  margin-bottom: 24px;
}
.hero-location {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 10px;
}
.hero-dates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
}
.hero-dates .icon {
  color: var(--color-red);
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-copy {
  color: var(--color-ink);
  font-size: 15.5px;
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-cta-row .btn-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
  padding: 15px 4px;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--tr), color var(--tr);
}
.hero-cta-row .btn-link:hover { color: var(--color-red); border-color: var(--color-red); }

/* ============================================================
   Hero form card
   ============================================================ */
.hero-form-card {
  flex: 0 0 400px;
  max-width: 400px;
  background: var(--color-white);
  padding: 34px 32px 28px;
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(20,20,20,0.04),
    0 20px 60px rgba(20,20,20,0.18);
  border: 1px solid rgba(20,20,20,0.05);
}
.hero-form-card .eyebrow { margin-bottom: 10px; }
.hero-form-card .form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero-form-card .form-sub {
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.lead-form { position: relative; }
.lead-form .field { display: block; margin-bottom: 12px; }
.lead-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.lead-form .field-row .field { margin-bottom: 0; }
.lead-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 6px;
}
.lead-form label .optional {
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 11px;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  color: var(--color-ink);
  background: #fafafa;
  border: 1px solid var(--color-line);
  border-radius: 3px;
  padding: 10px 12px;
  transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
  -webkit-appearance: none;
  appearance: none;
}
.lead-form textarea { resize: vertical; min-height: 60px; font-family: inherit; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--color-muted-2); }
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--color-red);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(216, 74, 68, 0.12);
}
.lead-form input.is-invalid,
.lead-form textarea.is-invalid {
  border-color: var(--color-red);
  background: rgba(216, 74, 68, 0.04);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  position: relative;
}
.form-submit[data-loading="true"] .btn-label { visibility: hidden; }
.form-submit[data-loading="true"] .btn-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: form-spin 700ms linear infinite;
}
.btn-spinner { display: none; }
.form-submit[data-loading="true"] .btn-spinner { display: block; }
@keyframes form-spin { to { transform: rotate(360deg); } }

.form-note {
  margin-top: 12px;
  color: var(--color-muted-2);
  font-size: 11.5px;
  line-height: 1.5;
  text-align: center;
}
.form-status {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 1em;
}
.form-status.is-success {
  color: #146c43;
  background: #e7f4ed;
  border: 1px solid #b7dfc7;
  padding: 10px 12px;
  border-radius: 3px;
}
.form-status.is-error {
  color: #98241f;
  background: #fbeceb;
  border: 1px solid #f3c4c1;
  padding: 10px 12px;
  border-radius: 3px;
}

/* ============================================================
   Sale intro + Offers
   ============================================================ */
.sale-section {
  background: var(--color-ivory);
  padding: 90px 0 100px;
}
.sale-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.sale-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.sale-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 46px;
  height: 2px;
  background: var(--color-red);
}
.sale-intro p {
  color: var(--color-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  padding: 44px 30px 38px;
  text-align: center;
  border-radius: 2px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.offer-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.offer-icon svg { width: 30px; height: 30px; }
.offer-number {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.offer-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 14px;
  letter-spacing: 0;
  line-height: 1.3;
}
.offer-desc {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 26px;
  min-height: 68px;
}
.offer-card .btn { width: 78%; }

/* ============================================================
   Lifestyle / Collage
   ============================================================ */
.lifestyle {
  padding: 100px 0;
  background: var(--color-white);
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  align-items: center;
}
.lifestyle-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.lifestyle-copy p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}
.collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}
.collage .c-main {
  grid-row: 1 / span 2;
  overflow: hidden;
}
.collage .c-a, .collage .c-b { overflow: hidden; }
.collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.collage > *:hover img { transform: scale(1.04); }

/* ============================================================
   Why Jack Wills
   ============================================================ */
.why {
  background: var(--color-ivory);
  padding: 90px 0 100px;
}
.why-heading {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 70px;
}
.why-heading::before,
.why-heading::after {
  content: "";
  width: 50px; height: 1.5px;
  background: var(--color-red);
  display: inline-block;
}
.why-heading h2 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-black);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
}
.why-item {
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid var(--color-line);
}
.why-item:last-child { border-right: 0; }
.why-icon {
  color: var(--color-red);
  margin-bottom: 22px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 40px; height: 40px; }
.why-item h3 {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 14px;
}
.why-item p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   Showroom
   ============================================================ */
.showroom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
}
.showroom-media {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}
.showroom-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.showroom-media:hover img { transform: scale(1.03); }
.showroom-content {
  padding: 90px 8vw 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.showroom-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 32px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.info-row .info-icon {
  color: var(--color-red);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-row .info-icon svg { width: 20px; height: 20px; }
.info-row .info-text {
  font-size: 14.5px;
  color: var(--color-ink);
  line-height: 1.55;
}
.showroom-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.showroom-cta-row .btn { align-self: flex-start; }
.showroom-cta-row .btn svg { width: 14px; height: 14px; }

/* ============================================================
   Final CTA banner
   ============================================================ */
.final-cta {
  position: relative;
  background: #0d0d0d;
  overflow: hidden;
  color: var(--color-white);
}
.final-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.final-cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13,13,13,0.98) 0%,
      rgba(13,13,13,0.9) 32%,
      rgba(13,13,13,0.6) 55%,
      rgba(13,13,13,0.2) 80%,
      rgba(13,13,13,0.05) 100%);
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px var(--gutter);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.final-cta-content { max-width: 560px; }
.final-cta-content h2 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.final-cta-content p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}
.final-cta-content .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-ivory);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
  align-items: center;
}
.footer-brand img { height: 60px; width: auto; }

.footer-social-block h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0 0 14px;
  text-align: right;
}
.social-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-list a {
  width: 36px; height: 36px;
  border: 1.5px solid var(--color-black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.social-list a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}
.social-list svg { width: 15px; height: 15px; }

.footer-bottom {
  background: var(--color-black);
  color: rgba(255,255,255,0.8);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 28px; }
  .hero-inner { min-height: 560px; padding: 70px var(--gutter) 80px; gap: 40px; }
  .hero-form-card { flex: 0 0 360px; max-width: 360px; padding: 28px 26px 24px; }
  .hero-form-card .form-title { font-size: 24px; }
  .hero-title { font-size: clamp(2.2rem, 4vw, 3.4rem); }
  .lifestyle-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .header-cta .btn { padding: 10px 16px; font-size: 10.5px; }
  .header-cta .btn span.lead { display: none; }
  .header-phone { display: none; }

  .hero-media img { object-position: 70% center; }
  .hero-media::after {
    background:
      linear-gradient(180deg,
        rgba(246,242,236,0.92) 0%,
        rgba(246,242,236,0.85) 45%,
        rgba(246,242,236,0.65) 65%,
        rgba(246,242,236,0.35) 100%),
      linear-gradient(90deg,
        rgba(246,242,236,0.9) 0%,
        rgba(246,242,236,0.5) 60%,
        rgba(246,242,236,0.1) 100%);
  }
  .hero-inner {
    min-height: 0;
    align-items: flex-start;
    padding-top: 50px;
    flex-direction: column;
    gap: 30px;
  }
  .hero-content { max-width: 100%; }
  .hero-form-card {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    padding: 26px 22px 22px;
  }
  .hero-form-card .form-title { font-size: 22px; }

  .offers { grid-template-columns: 1fr; gap: 22px; }
  .offer-desc { min-height: 0; }
  .offer-card .btn { width: auto; padding-left: 40px; padding-right: 40px; }

  .lifestyle { padding: 70px 0; }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .collage { height: 420px; }

  .why-heading { gap: 12px; }
  .why-heading::before, .why-heading::after { width: 32px; }
  .why-heading h2 { font-size: 13px; letter-spacing: 0.2em; white-space: nowrap; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .why-item { border-right: 0; padding: 0 20px; }
  .why-item:nth-child(odd) { border-right: 1px solid var(--color-line); }
  .why-item:nth-child(3),
  .why-item:nth-child(4) { padding-top: 20px; }

  .showroom { grid-template-columns: 1fr; }
  .showroom-media { min-height: 320px; }
  .showroom-content { padding: 60px var(--gutter); max-width: 100%; }

  .final-cta-media::after {
    background:
      linear-gradient(180deg,
        rgba(13,13,13,0.5) 0%,
        rgba(13,13,13,0.85) 60%,
        rgba(13,13,13,0.95) 100%);
  }
  .final-cta-inner { padding: 60px var(--gutter); min-height: 380px; align-items: flex-end; }
  .final-cta-content { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 26px; }
  .footer-social-block h4 { text-align: center; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .header-inner { min-height: 72px; gap: 14px; }
  .brand img { height: 42px; }
  .header-cta .btn { padding: 9px 14px; font-size: 10px; letter-spacing: 0.1em; }

  .hero-inner { padding: 44px var(--gutter) 60px; min-height: 560px; }
  .hero-title { font-size: 2.4rem; }
  .hero-subhead { font-size: 1.15rem; }

  .sale-section { padding: 70px 0 80px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item, .why-item:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--color-line); padding: 30px 0; }
  .why-item:last-child { border-bottom: 0; }
  .why-item:nth-child(3), .why-item:nth-child(4) { padding-top: 30px; }

  .btn { padding: 13px 22px; font-size: 11px; }
  .offer-card .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
