:root {
  --cream: #f4efe5;
  --paper: #fbf9f4;
  --white: #fffefb;
  --olive: #657747;
  --olive-light: #93a172;
  --olive-dark: #34412c;
  --wine: #6d1638;
  --wine-light: #9a4e67;
  --ink: #20221c;
  --muted: #6b6c62;
  --line: rgba(32, 34, 28, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.announcement {
  align-items: center;
  background: var(--olive-dark);
  color: rgba(255,255,255,.82);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .14em;
  min-height: 34px;
  padding: 8px clamp(20px, 5vw, 76px);
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement a { color: #fff; }

.site-header {
  align-items: center;
  background: rgba(251, 249, 244, .94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 78px;
  padding: 12px clamp(20px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: inline-flex; width: 112px; }
.brand img { height: 48px; object-fit: cover; width: 108px; }
nav { display: flex; gap: 34px; }
nav a, .header-cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
nav a { position: relative; }
nav a::after {
  background: var(--wine);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { justify-self: end; }
.header-cta span, .button span { display: inline-block; margin-left: 8px; transition: transform 180ms ease; }
.header-cta:hover span, .button:hover span { transform: translate(3px, -3px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  min-height: 780px;
  overflow: hidden;
}
.hero-copy { align-self: center; padding: 86px clamp(28px, 6vw, 100px); }
.eyebrow {
  color: var(--olive);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  margin: 0 0 22px;
}
.hero h1, .catalog-heading h2, .families h2, .special-copy h2, .about h2, .order-heading h2, .contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.05em;
}
.hero h1 {
  font-size: clamp(62px, 6.3vw, 100px);
  line-height: .91;
  margin: 0;
  max-width: 700px;
}
.hero h1 em { color: var(--wine); display: block; font-weight: 400; }
.hero-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 34px 0 32px;
  max-width: 570px;
}
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 28px; }
.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: .14em;
  min-height: 56px;
  padding: 0 26px;
  text-transform: uppercase;
}
.button-primary { background: var(--olive-dark); color: #fff; }
.text-link {
  border-bottom: 1px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  padding-bottom: 6px;
}
.catalog-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  max-width: 640px;
  padding-top: 20px;
}
.catalog-stats div { display: flex; flex-direction: column; gap: 4px; }
.catalog-stats strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; }
.catalog-stats span { color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.hero-showcase { background: var(--olive); min-height: 780px; overflow: hidden; padding: clamp(26px, 4vw, 60px); position: relative; }
.hero-showcase::before {
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  content: "";
  height: 470px;
  position: absolute;
  right: -210px;
  top: -240px;
  width: 470px;
}
.hero-image-main { height: 88%; margin-left: 7%; overflow: hidden; position: relative; width: 68%; z-index: 2; }
.hero-image-main img { height: 100%; object-fit: cover; width: 100%; }
.image-caption {
  background: var(--paper);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: 0;
  min-width: 235px;
  padding: 19px 22px;
  position: absolute;
}
.image-caption span { color: var(--olive); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.image-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; }
.hero-image-side {
  background: var(--cream);
  bottom: 5%;
  padding: 10px;
  position: absolute;
  right: 4%;
  width: 31%;
  z-index: 3;
}
.hero-image-side img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.hero-image-side div { display: flex; flex-direction: column; gap: 4px; padding: 14px 8px 7px; }
.hero-image-side small { color: var(--olive); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.hero-image-side strong { font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-weight: 400; }
.hero-seal {
  align-items: center;
  background: var(--wine);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 128px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 17%;
  width: 128px;
  z-index: 4;
}
.hero-seal span { font-family: Georgia, "Times New Roman", serif; font-size: 38px; font-style: italic; }
.hero-seal small { font-size: 6px; font-weight: 800; letter-spacing: .13em; }

.shop-by-use { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
.shop-by-use > a {
  align-items: center;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  min-height: 118px;
  padding: 22px clamp(18px, 2.4vw, 38px);
  transition: background 180ms ease, color 180ms ease;
}
.shop-by-use > a:last-child { border-right: 0; }
.shop-by-use > a:hover, .shop-by-use > a:focus-visible { background: var(--olive-dark); color: #fff; }
.shop-by-use > a > span { color: var(--wine); font-size: 9px; font-weight: 800; }
.shop-by-use > a:hover > span { color: #d8ceaa; }
.shop-by-use div { display: flex; flex-direction: column; gap: 4px; }
.shop-by-use strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 400; }
.shop-by-use small { color: var(--muted); font-size: 9px; letter-spacing: .04em; }
.shop-by-use > a:hover small { color: rgba(255,255,255,.62); }
.shop-by-use b { font-size: 14px; font-weight: 400; }

.catalog { padding: 120px clamp(20px, 5vw, 78px) 140px; }
.catalog-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr minmax(280px, .42fr);
  margin: 0 auto 54px;
  max-width: 1500px;
}
.catalog-heading h2, .families h2, .special-copy h2, .about h2, .order-heading h2, .contact h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1;
  margin: 0;
}
.catalog-heading > p, .families-intro > p:not(.eyebrow), .special-copy > p:not(.eyebrow), .about-copy > p:not(.eyebrow), .contact > div > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.catalog-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1500px;
  padding: 16px 0;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-group button {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  min-height: 40px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.filter-group button:hover, .filter-group button.active { background: var(--olive-dark); border-color: var(--olive-dark); color: #fff; }
.catalog-search {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  gap: 10px;
  max-width: 310px;
  padding: 0 2px 8px;
  width: 100%;
}
.catalog-search > span:not(.sr-only) { font-size: 22px; }
.catalog-search input { background: transparent; border: 0; color: var(--ink); font-size: 12px; outline: 0; width: 100%; }
.catalog-search input::placeholder { color: #8c8d84; }
.catalog-result-line { color: var(--muted); display: flex; font-size: 8px; font-weight: 800; justify-content: space-between; letter-spacing: .15em; margin: 18px auto 28px; max-width: 1500px; text-transform: uppercase; }

.catalog-grid { display: grid; gap: 54px 22px; grid-template-columns: repeat(4, 1fr); margin: 0 auto; max-width: 1500px; }
.catalog-card-image { aspect-ratio: .84; background: var(--cream); overflow: hidden; position: relative; }
.catalog-card-image::after { background: linear-gradient(to top, rgba(24,24,18,.38), transparent 38%); content: ""; inset: 0; opacity: 0; position: absolute; transition: opacity 200ms ease; }
.catalog-card:hover .catalog-card-image::after { opacity: 1; }
.catalog-card-image img { height: 100%; object-fit: cover; transition: transform 420ms ease; width: 100%; }
.catalog-card:hover .catalog-card-image img { transform: scale(1.035); }
.catalog-card-image .focus-product { object-position: 60% center; }
.catalog-card-image .focus-fruits { object-position: 38% center; }
.catalog-card-image .focus-citrus { object-position: 70% center; transform: scale(1.12); }
.catalog-card:hover .catalog-card-image .focus-citrus { transform: scale(1.16); }
.catalog-card-image .focus-bottle { object-position: 28% center; }
.catalog-card-image .focus-brand { object-position: 76% center; }
.catalog-card-image .focus-detail { object-position: 76% center; transform: scale(1.1); }
.catalog-card:hover .catalog-card-image .focus-detail { transform: scale(1.14); }
.product-badge, .product-code { font-size: 8px; font-weight: 800; letter-spacing: .13em; position: absolute; text-transform: uppercase; z-index: 3; }
.product-badge { background: var(--wine); color: #fff; left: 12px; padding: 9px 11px; top: 12px; }
.product-code { background: rgba(251,249,244,.93); bottom: 12px; left: 12px; padding: 8px 10px; }
.image-action {
  bottom: 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  opacity: 0;
  position: absolute;
  right: 14px;
  text-transform: uppercase;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 3;
}
.catalog-card:hover .image-action { opacity: 1; transform: translateY(0); }
.catalog-card-body { padding: 20px 2px 0; }
.product-overline { color: var(--olive); display: flex; font-size: 8px; font-weight: 800; justify-content: space-between; letter-spacing: .12em; text-transform: uppercase; }
.product-overline span:last-child { color: var(--muted); text-align: right; }
.catalog-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2vw, 28px); font-weight: 400; line-height: 1.08; margin: 13px 0 10px; }
.catalog-card-body > p { color: var(--muted); font-size: 12px; line-height: 1.6; margin: 0; min-height: 58px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.product-tags span { border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 8px; letter-spacing: .08em; padding: 6px 9px; text-transform: uppercase; }
.catalog-card-body > a { align-items: center; border-top: 1px solid var(--line); display: flex; font-size: 9px; font-weight: 800; justify-content: space-between; letter-spacing: .12em; padding-top: 13px; text-transform: uppercase; }
.empty-state { border: 1px solid var(--line); margin: 20px auto 0; max-width: 1500px; padding: 80px 20px; text-align: center; }
.empty-state > span { color: var(--wine); font-size: 28px; }
.empty-state h3 { font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400; margin: 16px 0 8px; }
.empty-state p { color: var(--muted); }
.empty-state button { background: var(--olive-dark); border: 0; color: #fff; cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .12em; margin-top: 16px; padding: 14px 18px; text-transform: uppercase; }

.families { background: var(--cream); display: grid; gap: clamp(50px, 7vw, 110px); grid-template-columns: minmax(280px, .65fr) 1.35fr; padding: 120px clamp(20px, 6vw, 96px); }
.families-intro { align-self: center; }
.families-intro > p:not(.eyebrow) { font-size: 15px; margin: 28px 0 26px; max-width: 460px; }
.families-intro > a { border-bottom: 1px solid var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 16px; padding-bottom: 6px; }
.family-grid { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.family-card { min-height: 310px; overflow: hidden; padding: 26px; position: relative; }
.family-card > span { font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.family-card h3 { bottom: 58px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 400; left: 26px; margin: 0; position: absolute; }
.family-card p { bottom: 25px; font-size: 11px; left: 26px; margin: 0; opacity: .72; position: absolute; }
.family-orbit { border: 1px solid currentColor; border-radius: 50%; height: 180px; opacity: .35; position: absolute; right: -28px; top: -28px; width: 180px; }
.family-orbit::after { border: 1px solid currentColor; border-radius: 50%; content: ""; inset: 28px; position: absolute; }
.family-orbit i { background: currentColor; border-radius: 50%; height: 12px; left: 19px; position: absolute; top: 83px; width: 12px; }
.family-citrus { background: #d9bd57; color: #302e1e; }
.family-floral { background: #9a4e67; color: #fff; }
.family-green { background: #718253; color: #fff; }
.family-warm { background: #b6815c; color: #fff; }

.special-project { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.special-image { min-height: 680px; overflow: hidden; position: relative; }
.special-image::after { background: rgba(63,39,37,.12); content: ""; inset: 0; position: absolute; }
.special-image img { height: 100%; object-fit: cover; width: 100%; }
.special-image > span { background: var(--wine); bottom: 0; color: #fff; font-size: 8px; font-weight: 800; letter-spacing: .18em; padding: 20px 24px; position: absolute; right: 0; z-index: 2; }
.special-copy { align-self: center; padding: 80px clamp(36px, 7vw, 112px); }
.special-copy > p:not(.eyebrow) { font-size: 16px; margin: 30px 0 34px; max-width: 590px; }
.special-points { border-top: 1px solid var(--line); margin-bottom: 34px; }
.special-points > div { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 16px; grid-template-columns: 26px .7fr 1fr; padding: 16px 0; }
.special-points span { color: var(--wine); font-size: 8px; font-weight: 800; }
.special-points strong { font-family: Georgia, "Times New Roman", serif; font-size: 16px; font-weight: 400; }
.special-points small { color: var(--muted); }

.about { align-items: center; background: var(--olive-dark); color: #fff; display: grid; gap: clamp(32px, 6vw, 90px); grid-template-columns: auto 1fr .75fr; padding: 100px clamp(20px, 6vw, 96px); }
.about-mark { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; padding: 20px; }
.about-mark img { border-radius: 50%; height: 130px; object-fit: cover; width: 130px; }
.about .eyebrow { color: #d8ceaa; }
.about h2 { font-size: clamp(42px, 4.6vw, 70px); }
.about-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); margin-top: 22px; max-width: 650px; }
.about blockquote { border-left: 1px solid rgba(255,255,255,.3); font-family: Georgia, "Times New Roman", serif; font-size: clamp(24px, 2.5vw, 38px); font-style: italic; line-height: 1.25; margin: 0; padding-left: 38px; }

.how-to-order { padding: 120px clamp(20px, 6vw, 96px); }
.order-heading { align-items: end; display: flex; justify-content: space-between; margin: 0 auto 48px; max-width: 1450px; }
.order-heading h2 { max-width: 760px; }
.how-to-order ol { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0 auto; max-width: 1450px; padding: 0; }
.how-to-order li { border-right: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: auto 1fr; padding: 32px clamp(18px, 3vw, 42px); }
.how-to-order li:last-child { border-right: 0; }
.how-to-order li > span { color: var(--wine); font-size: 9px; font-weight: 800; }
.how-to-order strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; }
.how-to-order p { color: var(--muted); font-size: 12px; line-height: 1.6; margin: 10px 0 0; }

.contact { align-items: center; background: var(--wine); color: #fff; display: grid; gap: clamp(32px, 5vw, 78px); grid-template-columns: auto 1fr auto; padding: 88px clamp(20px, 6vw, 96px); }
.contact-orbit { align-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: flex; height: 124px; justify-content: center; position: relative; width: 124px; }
.contact-orbit::before { border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ""; inset: 12px; position: absolute; }
.contact-orbit span { font-family: Georgia, "Times New Roman", serif; font-size: 44px; font-style: italic; }
.contact .eyebrow { color: #d8ceaa; margin-bottom: 15px; }
.contact h2 { font-size: clamp(40px, 4vw, 62px); max-width: 830px; }
.contact > div > p:last-child { color: rgba(255,255,255,.7); margin-top: 17px; max-width: 640px; }
.button-light { background: #fff; color: var(--wine); white-space: nowrap; }

footer { align-items: center; background: #161914; color: rgba(255,255,255,.66); display: grid; font-size: 11px; grid-template-columns: 1fr auto 1fr; padding: 34px clamp(20px, 6vw, 96px); }
.footer-brand-group { align-items: center; display: flex; gap: 18px; }
.footer-brand { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-style: italic; font-weight: 700; }
.footer-brand-group span { border-left: 1px solid rgba(255,255,255,.2); padding-left: 18px; }
.footer-links { display: flex; gap: 26px; }
.footer-instagram { color: #fff; justify-self: end; letter-spacing: .1em; text-transform: uppercase; }

a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid #d8ceaa; outline-offset: 4px; }

@media (max-width: 1120px) {
  nav { gap: 20px; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-by-use { grid-template-columns: 1fr 1fr; }
  .shop-by-use > a:nth-child(2) { border-right: 0; }
  .shop-by-use > a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about { grid-template-columns: auto 1fr; }
  .about blockquote { grid-column: 2; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 720px; }
  .catalog-heading { align-items: start; gap: 24px; grid-template-columns: 1fr; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .catalog-search { max-width: none; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .families { grid-template-columns: 1fr; }
  .special-project { grid-template-columns: 1fr; }
  .special-image { min-height: 620px; }
  .contact { grid-template-columns: auto 1fr; }
  .contact .button { grid-column: 2; justify-self: start; }
  footer { grid-template-columns: 1fr auto; }
  .footer-links { display: none; }
}

@media (max-width: 640px) {
  .announcement { justify-content: center; min-height: 31px; text-align: center; }
  .announcement p { font-size: 7px; }
  .announcement a { display: none; }
  .site-header { min-height: 68px; padding: 9px 17px; }
  .brand, .brand img { width: 94px; }
  .brand img { height: 43px; }
  .header-cta { font-size: 8px; }
  .hero { min-height: 0; }
  .hero-copy { padding: 64px 20px 54px; }
  .hero h1 { font-size: clamp(51px, 16vw, 72px); }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .catalog-stats { grid-template-columns: 1fr 1fr; }
  .catalog-stats div:last-child { display: none; }
  .hero-showcase { min-height: 540px; padding: 20px; }
  .hero-image-main { height: 87%; margin-left: auto; width: 88%; }
  .hero-image-side { bottom: 3%; right: 2%; width: 39%; }
  .hero-image-side div { display: none; }
  .hero-seal { height: 92px; left: -8px; top: 12%; width: 92px; }
  .hero-seal span { font-size: 30px; }
  .hero-seal small { font-size: 4px; }
  .image-caption { min-width: 220px; }
  .shop-by-use { grid-template-columns: 1fr; }
  .shop-by-use > a { border-bottom: 1px solid var(--line); border-right: 0; min-height: 94px; }
  .catalog { padding: 86px 17px 100px; }
  .catalog-heading h2, .families h2, .special-copy h2, .about h2, .order-heading h2, .contact h2 { font-size: 43px; }
  .filter-group { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-group button:first-child { grid-column: 1 / -1; }
  .catalog-result-line span:last-child { display: none; }
  .catalog-grid { gap: 42px; grid-template-columns: 1fr; }
  .catalog-card-image { aspect-ratio: .92; }
  .catalog-card-body > p { min-height: 0; }
  .image-action { opacity: 1; transform: none; }
  .families { padding: 90px 17px; }
  .family-grid { grid-template-columns: 1fr; }
  .family-card { min-height: 250px; }
  .special-image { min-height: 480px; }
  .special-copy { padding: 76px 20px; }
  .special-points > div { grid-template-columns: 24px 1fr; }
  .special-points small { grid-column: 2; }
  .about { grid-template-columns: 1fr; padding: 76px 20px; }
  .about-mark { justify-self: start; }
  .about blockquote { border-left: 0; border-top: 1px solid rgba(255,255,255,.26); grid-column: auto; padding: 28px 0 0; }
  .how-to-order { padding: 86px 20px; }
  .how-to-order ol { grid-template-columns: 1fr; }
  .how-to-order li { border-bottom: 1px solid var(--line); border-right: 0; }
  .contact { grid-template-columns: 1fr; padding: 76px 20px; }
  .contact-orbit { height: 92px; width: 92px; }
  .contact .button { grid-column: auto; }
  footer { gap: 18px; grid-template-columns: 1fr auto; padding: 30px 20px; }
  .footer-brand-group span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
