:root {
  --ink: #111b1f;
  --forest: #173c36;
  --navy: #182d45;
  --cranberry: #8f2f45;
  --rose: #f3dce3;
  --sage: #dce9df;
  --cream: #fffaf3;
  --white: #ffffff;
  --line: #d9ddd7;
  --muted: #5f6b66;
  --gold: #b9874b;
  --shadow: 0 20px 50px rgba(17, 27, 31, 0.14);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 221, 215, 0.72);
}

.site-header.solid {
  background: var(--cream);
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: 230px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.request-link {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--forest);
  background: transparent;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a:hover,
.site-nav a:focus,
.request-link:hover,
.request-link:focus {
  border-color: var(--line);
  background: var(--white);
}

.request-link span {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  margin-left: 6px;
  place-items: center;
  border-radius: 6px;
  background: var(--cranberry);
  color: var(--white);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--forest);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 140px 48px 64px;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.84) 46%, rgba(255, 250, 243, 0.18) 78%),
    url("assets/lg-scotts-store.jpg") center right / cover no-repeat;
}

.hero-content {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cranberry);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #26353a;
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.secondary {
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.68);
  color: var(--forest);
}

.button.small {
  width: 100%;
  margin-top: auto;
  background: var(--navy);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 38px 0 0;
}

.hero-details div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-details dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 16px 24px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 84px 48px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.visit-copy h2,
.newsletter h2,
.page-shell h1 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.visit-copy p,
.newsletter p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section {
  background: var(--white);
}

.intro-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.service-card,
.product-card,
.visit-panel,
.policy-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 27, 31, 0.06);
}

.intro-grid article,
.service-card {
  padding: 28px;
}

.intro-grid h3,
.service-card h3,
.product-card h3,
.visit-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  letter-spacing: 0;
}

.intro-grid p,
.service-card p,
.product-card p,
.visit-panel p {
  margin: 0;
  color: var(--muted);
}

.shop-section {
  background: linear-gradient(180deg, var(--cream), #f7fbf7);
}

.service-section {
  background: var(--white);
}

.service-cta {
  margin-top: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  min-width: 86px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus {
  background: var(--sage);
  border-color: var(--forest);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  display: block;
  height: 7px;
  background: linear-gradient(90deg, var(--cranberry), var(--gold), var(--sage));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.product-label {
  width: max-content;
  margin: 6px 0 20px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--rose);
  color: var(--cranberry);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-card.is-hidden {
  display: none;
}

.gift-help-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--forest);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.gift-help-link:hover,
.gift-help-link:focus {
  color: var(--cranberry);
}

.brand-section {
  background: var(--forest);
  color: var(--white);
}

.brand-section .section-heading h2,
.brand-section .eyebrow {
  color: var(--white);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brand-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: start;
  background: var(--white);
}

.visit-copy {
  padding-top: 18px;
}

.visit-panel {
  padding: 28px;
}

address {
  font-style: normal;
  color: var(--ink);
  font-weight: 800;
}

.hours-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
}

.hours-table caption {
  padding-bottom: 10px;
  color: var(--forest);
  font-weight: 900;
  text-align: left;
}

.hours-table th,
.hours-table td {
  border-top: 1px solid var(--line);
  padding: 10px 0;
  text-align: left;
}

.hours-table td {
  text-align: right;
  color: var(--muted);
}

.policy-section {
  background: var(--sage);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.policy-grid a {
  min-height: 150px;
  padding: 22px;
  text-decoration: none;
  color: var(--muted);
}

.policy-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1.18rem;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 30px;
  align-items: center;
  padding: 70px 48px;
  color: var(--white);
  background: var(--cranberry);
}

.newsletter .eyebrow,
.newsletter h2,
.newsletter p {
  color: var(--white);
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form label {
  font-weight: 800;
}

.newsletter-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.newsletter-field {
  display: grid;
  gap: 7px;
}

.newsletter-field span {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.82;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="tel"],
.newsletter-form input[type="text"] {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 6px;
  padding: 0 14px;
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-copy {
  margin: 0;
  font-size: 0.92rem;
}

.newsletter-actions {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.form-note[data-tone="success"] {
  font-weight: 800;
}

.form-note[data-tone="error"] {
  color: #ffe4dd;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(190px, auto) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 48px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer .footer-guide-links {
  max-width: 260px;
}

.footer-nav-heading {
  width: 100%;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.request-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: flex-end;
  background: rgba(17, 27, 31, 0.44);
}

.request-drawer.is-open {
  display: flex;
}

.request-panel {
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.request-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.request-header h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.request-items {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.request-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.request-items button {
  min-height: 40px;
  border: 0;
  padding: 8px 0 8px 10px;
  background: transparent;
  color: var(--cranberry);
  font-weight: 900;
  cursor: pointer;
}

.request-note,
.request-empty {
  color: var(--muted);
}

.simple-page {
  background: var(--white);
}

.page-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
}

.content-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 4px;
}

.content-section h2 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 1.5rem;
}

.content-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 22px;
  }

  .brand {
    width: 190px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px 22px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(17, 27, 31, 0.08);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .request-link {
    width: 100%;
    text-align: left;
  }

  .hero {
    min-height: 90vh;
    padding: 124px 24px 52px;
    background:
      linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.86) 58%, rgba(255, 250, 243, 0.42) 100%),
      url("assets/lg-scotts-store.jpg") center center / cover no-repeat;
  }

  h1 {
    font-size: 3.4rem;
  }

  .section {
    padding: 64px 24px;
  }

  .section-heading h2,
  .visit-copy h2,
  .newsletter h2,
  .page-shell h1 {
    font-size: 2.35rem;
  }

  .intro-grid,
  .service-grid,
  .product-grid,
  .policy-grid,
  .newsletter,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding: 108px 24px 28px;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions,
  .contact-actions,
  .page-cta-row {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-actions .button,
  .page-cta-row .button {
    width: 100%;
  }

  .hero-details {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-details a,
  .announcement a,
  .visit-panel a,
  .content-section a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
  }

  .announcement {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
    font-size: 0.94rem;
  }

  .brand-list {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 54px 24px;
  }

  .newsletter-fields,
  .newsletter-actions {
    grid-template-columns: 1fr;
  }

  .page-shell {
    width: min(100% - 32px, 860px);
    padding: 64px 0;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 188px;
  }

  .hero {
    padding: 96px 24px 26px;
  }

  h1 {
    font-size: 2.24rem;
  }

  .hero-details {
    display: none;
  }

  .section-heading h2,
  .visit-copy h2,
  .newsletter h2,
  .page-shell h1 {
    font-size: 2.05rem;
  }
}
