/* 1. Design tokens and base */
:root {
  --forest: #1c2417;
  --gold: #9f8c50;
  --gold-light: #c8b778;
  --gold-ink: #78672e;
  --ivory: #f1efe7;
  --white: #fff;
  --ink: #1c2417;
  --muted: #5a6056;
  --line: #d3d2c5;
  --space: clamp(24px, 5.3vw, 88px);
  --section: clamp(72px, 9vw, 136px);
  --header: 104px;
  --ease: cubic-bezier(0.2, 0.65, 0.3, 1);
  --font:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
button[hidden],
[hidden] {
  display: none !important;
}
button {
  color: inherit;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
p {
  margin-bottom: 1.25em;
}
h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(38px, 4.1vw, 62px);
  margin-bottom: 0.7em;
}
h3 {
  font-size: 26px;
  letter-spacing: -0.025em;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold-ink);
  outline-offset: 5px;
}
.hero a:focus-visible,
.site-header :focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--gold-light);
}
.container {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: var(--space);
}
.section {
  padding-block: var(--section);
  scroll-margin-top: var(--header);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
}
.eyebrow > span {
  margin-inline: 12px;
  opacity: 0.55;
}
.gold-dot {
  color: var(--gold);
}
.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  padding: 14px 22px;
  background: var(--white);
  color: var(--forest);
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
address {
  font-style: normal;
}
::selection {
  background: var(--gold);
  color: var(--forest);
}
/* 2. Header and responsive navigation */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--ivory);
  border-bottom: 1px solid #ffffff1f;
}
.js .site-header {
  position: fixed;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: var(--forest);
  box-shadow: 0 1px 0 #ffffff1f;
}
.header-inner {
  max-width: 1600px;
  margin: auto;
  min-height: var(--header);
  padding: 14px var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-height: 44px;
  width: 220px;
}
.brand img {
  width: 220px;
  height: auto;
}
.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 28px);
}
.primary-navigation a {
  font-size: 12px;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.primary-navigation a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.primary-navigation a:hover,
.primary-navigation a[aria-current] {
  color: var(--gold-light);
}
.primary-navigation a:hover::after,
.primary-navigation a[aria-current]::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
/* 3. Cover */
.hero {
  position: relative;
  min-height: 850px;
  min-height: max(760px, 100svh);
  background: var(--forest);
  color: var(--ivory);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header) + 65px);
  padding-bottom: 95px;
}
.hero-content {
  z-index: 1;
  position: relative;
}
.hero .eyebrow {
  color: var(--gold-light);
  margin-bottom: 42px;
}
.hero h1 {
  font-size: clamp(56px, 6.6vw, 100px);
  line-height: 1.04;
  font-weight: 350;
  max-width: 1030px;
  letter-spacing: -0.055em;
  margin-bottom: 42px;
}
.hero h1 > span:not(.gold-dot) {
  color: var(--gold-light);
}
.hero-bottom {
  max-width: 760px;
}
.hero-bottom p {
  max-width: 410px;
  color: #cecfc5;
  font-size: 15px;
  margin: 0;
}
.round-link {
  display: flex;
  justify-self: center;
  color: var(--ivory);
  letter-spacing: normal;
  text-transform: none;
  gap: 14px;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border: 1px solid #9f8c5070;
  border-radius: 50%;
  font-size: 23px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.round-link:hover .round-arrow {
  transform: translateY(4px);
  background: #9f8c5020;
}
.hero-ribbon {
  position: absolute;
  right: -60px;
  bottom: 150px;
  width: clamp(400px, 40vw, 640px);
  object-fit: contain;
  object-position: bottom;
  z-index: 0;
  opacity: 0.24;
}
.hero-foot {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9cabe;
}
.hero-foot > span:last-child {
  justify-self: end;
  text-align: right;
}
.hero-enter {
  animation: rise-in 0.9s var(--ease) both;
}
.hero h1.hero-enter {
  animation-delay: 0.12s;
}
.hero-bottom.hero-enter {
  animation-delay: 0.24s;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 4. Story and principles */
.about {
  background: var(--gold);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.about h2 {
  max-width: 500px;
}
.about-copy .lead {
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.about-copy > p:not(.lead) {
  font-size: 15px;
  max-width: 590px;
}
.milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #1c241740;
  margin-top: 38px;
  padding-top: 30px;
  gap: 20px;
}
.milestones strong {
  font-weight: 350;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  display: block;
}
.milestones span {
  font-size: 11px;
  display: block;
  margin-top: 10px;
}
.principle {
  background: #faf9f4;
}
.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 10vw, 150px);
  align-items: center;
}
.framed-photo {
  position: relative;
  padding: 38px 0 0 38px;
  margin: 0 0 0 0;
}
.framed-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  background: var(--gold);
  z-index: 0;
}
.framed-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
}
.principle-copy .eyebrow {
  color: var(--gold-ink);
}
.principle-copy h2 {
  font-size: clamp(35px, 3.3vw, 51px);
}
.statement {
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
  border-left: 1px solid var(--gold);
  padding-left: 25px;
  max-width: 490px;
  margin-bottom: 0;
  margin-top: 34px;
  color: #50554b;
}
.principle-reverse {
  background: var(--ivory);
}
.principle-reverse .framed-photo {
  grid-column: 2;
  grid-row: 1;
}
.principle-reverse .principle-copy {
  grid-column: 1;
  grid-row: 1;
}
.principle-reverse .framed-photo {
  padding: 0 38px 38px 0;
}
.principle-reverse .framed-photo::before {
  inset: auto 0 0 auto;
}
.principle-reverse .framed-photo img {
  aspect-ratio: 1.1;
}
/* 5. Promise and values */
.promise {
  background: var(--forest);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 160px);
}
.promise .container {
  position: relative;
  z-index: 1;
}
.promise .eyebrow {
  color: var(--gold-light);
}
.promise h2 {
  font-size: clamp(56px, 7vw, 106px);
  line-height: 1.03;
  max-width: 800px;
}
.promise h2 span {
  color: var(--gold-light);
}
.promise-copy {
  max-width: 550px;
  font-size: 17px;
  color: #d1d2c8;
  margin: 35px 0 0;
}
.promise-ribbon {
  position: absolute;
  width: clamp(360px, 36vw, 550px);
  right: -50px;
  bottom: 85px;
  opacity: 0.24;
  transition: transform 1.4s var(--ease);
}
.promise:has(.is-visible) .promise-ribbon {
  transform: translateY(-20px);
}
.values {
  background: #faf9f4;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10vw;
}
.values-mark {
  width: 170px;
  height: auto;
  margin-top: 60px;
}
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.value-list li {
  display: flex;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.value-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.value-number {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 12px;
  display: grid;
  place-items: center;
}
.value-list h3 {
  font-size: 25px;
  margin: 3px 0 12px;
}
.value-list p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
  max-width: 440px;
}
/* 6. Business carousel; all content remains visible without JavaScript */
.business {
  background: var(--ivory);
}
.business-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 55px;
}
.business-heading h2 {
  margin: 0;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-count {
  margin: 0 25px 0 0;
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}
#slide-current {
  color: var(--ink);
}
.carousel-controls button {
  background: transparent;
  width: 50px;
  height: 50px;
  border: 1px solid #929784;
  border-radius: 50%;
  font-size: 24px;
  transition:
    background 0.2s,
    color 0.2s;
}
.carousel-controls button:hover {
  background: var(--forest);
  color: var(--ivory);
}
.business-slide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 90px);
  padding-block: 10px 35px;
}
.business-photo {
  position: relative;
  align-self: start;
  background: var(--gold);
  padding: 0 26px 26px 0;
}
.business-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 0.83;
  object-fit: cover;
  object-position: center;
}
.business-photo--marina img {
  aspect-ratio: 1.25;
  object-position: 48% center;
}
.photo-index {
  position: absolute;
  bottom: 2px;
  right: 32px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.business-copy {
  padding: 7px 0 12px;
}
.business-copy .eyebrow {
  color: var(--gold-ink);
  margin-bottom: 20px;
}
.business-copy h3 {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 25px;
}
.business-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5147;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  min-height: 48px;
  border-bottom: 1px solid var(--gold-ink);
  font-size: 13px;
  margin-top: 5px;
}
.text-link > span[aria-hidden] {
  font-size: 23px;
  transition: transform 0.2s;
}
.text-link:hover > span[aria-hidden] {
  transform: translate(3px, -3px);
}
.js .business-track {
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  gap: 40px;
}
.js .business-track::-webkit-scrollbar {
  display: none;
}
.js .business-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}
.business-track:focus-visible {
  outline-offset: 7px;
}
.business-carousel {
  padding: 6px;
  margin: -6px;
}
/* 7. Contact */
.contact {
  background: #e7e3d6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8vw;
}
.contact-intro {
  color: #4b5147;
  font-size: 16px;
  max-width: 350px;
}
.office {
  margin-top: 50px;
  border-left: 1px solid var(--gold-ink);
  padding-left: 25px;
}
.office h3 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.office address {
  font-size: 14px;
  color: #4b5147;
}
.form-note {
  font-size: 12px;
  color: #50554b;
  margin-bottom: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 25px;
}
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field-wide {
  grid-column: 1/-1;
}
label {
  font-size: 12px;
  margin-bottom: 7px;
  line-height: 1.5;
}
.optional {
  color: #565c50;
  font-size: 10px;
}
input,
textarea {
  border: 0;
  border-bottom: 1px solid #848777;
  border-radius: 0;
  width: 100%;
  background: #ffffff30;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  transition: background 0.2s;
}
textarea {
  resize: vertical;
  min-height: 126px;
}
input:hover,
textarea:hover {
  background: #ffffff60;
}
input:focus,
textarea:focus {
  background: #ffffff90;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #942c20;
}
.field-error {
  color: #942c20;
  font-size: 12px;
  min-height: 0;
}
.field-error:not(:empty) {
  margin-top: 6px;
}
.delivery-notice {
  font-size: 12px;
  line-height: 1.6;
  margin: 25px 0 18px;
  color: #50554b;
  max-width: 450px;
}
.submit-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  min-height: 53px;
  padding: 13px 24px;
  background: var(--forest);
  color: var(--ivory);
  border: 1px solid var(--forest);
  font-size: 13px;
  transition: background 0.2s;
}
.submit-button:hover {
  background: #33432b;
}
.submit-button > span:last-child {
  font-size: 22px;
}
.form-status {
  font-size: 14px;
  margin-top: 18px;
}
.form-status:empty {
  margin: 0;
}
.form-status[data-state="error"] {
  color: #942c20;
}
/* 8. Footer */
.site-footer {
  background: var(--forest);
  color: var(--ivory);
  padding: 70px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 1.2fr)
    minmax(0, 1.15fr);
  gap: clamp(22px, 3vw, 40px);
  padding-bottom: 50px;
}
.footer-location {
  min-width: 0;
}
.footer-brand img {
  width: 230px;
  height: auto;
}
.footer-brand p {
  max-width: 32ch;
  font-size: 14px;
  line-height: 1.7;
  color: #c1c5b7;
  margin: 28px 0 0;
}
.site-footer h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 8px 0 20px;
}
.footer-nav {
  display: grid;
}
.footer-nav a {
  font-size: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-businesses {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-businesses a {
  font-size: 12px;
  display: inline-block;
  min-height: 44px;
  padding: 4px 0;
}
.site-footer address {
  font-size: 12px;
  line-height: 1.8;
  color: #c1c5b7;
}
.footer-map {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 260 / 168;
  overflow: hidden;
  margin-top: 20px;
  background: #343a32;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.9) brightness(0.9);
}
.footer-map-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  background: var(--forest);
  color: var(--ivory);
  font-size: 12px;
  line-height: 1.2;
  pointer-events: none;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-footer a:hover {
  color: var(--gold-light);
}
.back-top {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 44px;
  margin-top: 24px;
  font-size: 12px;
}
.back-top span {
  font-size: 20px;
}
.footer-bottom {
  border-top: 1px solid #ffffff26;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #c1c5b7;
  font-size: 10px;
}
.footer-bottom p {
  margin: 0;
}
/* 9. Progressive motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.8s var(--ease),
      transform 0.8s var(--ease);
  }
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}
/* 10. Responsive layouts */
@media (min-width: 1600px) {
  .hero-ribbon {
    right: calc((100vw - 1600px) / 2);
    width: 620px;
  }
}
@media (max-width: 1100px) {
  :root {
    --header: 88px;
  }
  .brand,
  .brand img {
    width: 190px;
  }
  .header-inner {
    gap: 20px;
  }
  .primary-navigation {
    gap: 14px;
  }
  .primary-navigation a {
    font-size: 11px;
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-ribbon {
    right: -90px;
    opacity: 0.18;
  }
  .hero h1 {
    font-size: clamp(60px, 7.9vw, 88px);
  }
  .business-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .business-slide {
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    min-width: 86px;
    border: 0;
    background: transparent;
    color: var(--ivory);
    font-size: 12px;
  }
  .menu-icon {
    width: 22px;
    height: 12px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    position: relative;
  }
  .menu-open .menu-icon {
    border: 0;
  }
  .menu-open .menu-icon::before,
  .menu-open .menu-icon::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 22px;
    height: 1px;
    background: currentColor;
    transform: rotate(45deg);
  }
  .menu-open .menu-icon::after {
    transform: rotate(-45deg);
  }
  .primary-navigation {
    width: 100%;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .js .primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100dvh - var(--header));
    overflow: auto;
    background: var(--forest);
    padding: 20px var(--space) 30px;
    border-top: 1px solid #ffffff20;
  }
  .js .menu-open .primary-navigation {
    display: grid;
    animation: rise-in 0.22s var(--ease);
  }
  .primary-navigation a {
    font-size: 15px;
    min-height: 48px;
  }
  .primary-navigation a::after {
    right: auto;
    width: 35px;
  }
  .hero {
    padding-top: 175px;
  }
  .principle-grid {
    gap: 55px;
  }
  .principle-copy h2 {
    font-size: 34px;
  }
  .statement {
    font-size: 18px;
  }
  .contact-grid {
    gap: 45px;
  }
  .values-grid {
    gap: 55px;
  }
  .hero-foot {
    font-size: 9px;
  }
  .hero h1 {
    position: relative;
    z-index: 1;
  }
  .footer-nav a {
    min-height: 44px;
  }
}
@media (max-width: 700px) {
  :root {
    --header: 80px;
    --space: 24px;
    --section: 72px;
  }
  .brand,
  .brand img {
    width: 164px;
  }
  .header-inner {
    min-height: 80px;
    padding-block: 12px;
  }
  .hero {
    min-height: max(740px, 100svh);
    padding-top: 155px;
    padding-bottom: 95px;
    justify-content: flex-start;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 33px;
  }
  .hero .eyebrow > span {
    margin-inline: 7px;
  }
  .hero h1 {
    font-size: clamp(42px, 9.5vw, 66px);
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 33px;
  }
  .hero-bottom {
    display: block;
    max-width: 320px;
  }
  .hero-bottom p {
    font-size: 14px;
    max-width: 280px;
  }
  .round-link {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
  }
  .round-arrow {
    width: 44px;
    height: 44px;
  }
  .hero-ribbon {
    width: 370px;
    bottom: 135px;
    right: -135px;
    opacity: 0.2;
  }
  .hero-foot {
    font-size: 8px;
    letter-spacing: 0.08em;
    gap: 16px;
  }
  .about-grid,
  .principle-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-copy .lead {
    font-size: 24px;
  }
  .about h2 {
    margin-bottom: 0;
  }
  .eyebrow {
    margin-bottom: 23px;
    font-size: 10px;
  }
  .milestones strong {
    font-size: 46px;
  }
  .milestones span {
    font-size: 10px;
    max-width: 130px;
  }
  .principle-grid {
    gap: 38px;
  }
  .framed-photo {
    max-width: 520px;
    padding: 26px 0 0 26px;
  }
  .principle-copy h2 {
    font-size: 37px;
  }
  .principle-reverse .framed-photo,
  .principle-reverse .principle-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .principle-reverse .framed-photo {
    padding: 0 26px 26px 0;
  }
  .statement {
    margin-top: 25px;
    font-size: 19px;
    padding-left: 20px;
  }
  .promise h2 {
    font-size: clamp(48px, 11vw, 76px);
    margin-bottom: 0;
  }
  .promise-copy {
    font-size: 15px;
    max-width: 400px;
  }
  .promise-ribbon {
    width: 300px;
    right: -140px;
    bottom: 25px;
    opacity: 0.12;
  }
  .values-grid {
    gap: 20px;
  }
  .values-mark {
    display: none;
  }
  .value-list li {
    padding: 26px 0;
    gap: 20px;
  }
  .value-list h3 {
    font-size: 23px;
  }
  .value-list p {
    font-size: 14px;
  }
  .business-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 35px;
  }
  .carousel-controls {
    width: 100%;
  }
  .slide-count {
    margin-right: auto;
  }
  .business-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: start;
  }
  .business-photo {
    max-width: 500px;
    padding: 0 20px 20px 0;
  }
  .business-photo img {
    aspect-ratio: 1.25;
    object-position: center 35%;
  }
  .photo-index {
    right: 25px;
    font-size: 9px;
    bottom: 0;
  }
  .business-copy h3 {
    font-size: 32px;
  }
  .business-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .business-copy .eyebrow {
    font-size: 10px;
  }
  .business-copy {
    padding: 0;
  }
  .js .business-track {
    align-items: start;
  }
  .contact h2 {
    font-size: 42px;
  }
  .contact-intro {
    max-width: 390px;
  }
  .office {
    margin-top: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    gap: 45px;
  }
  .form-note {
    margin-bottom: 25px;
  }
  .submit-button {
    width: 100%;
  }
  .footer-top {
    gap: 38px 22px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .footer-businesses a {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 55px;
  }
  .text-link {
    margin-top: 0;
  }
  .business {
    padding-bottom: 45px;
  }
}
@media (max-width: 360px) {
  :root {
    --space: 20px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero {
    min-height: 710px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-foot {
    font-size: 7px;
  }
  .principle-copy h2 {
    font-size: 33px;
  }
  .contact h2 {
    font-size: 36px;
  }
  .value-list h3 {
    font-size: 21px;
  }
  .value-number {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .value-list li {
    gap: 15px;
  }
  .business-copy h3 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
  .promise:has(.is-visible) .promise-ribbon {
    transform: none;
  }
}
@media print {
  .site-header,
  .carousel-controls,
  .hero-foot,
  .menu-toggle,
  form,
  .back-top {
    display: none !important;
  }
  .hero {
    min-height: 0;
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-ribbon,
  .promise-ribbon {
    display: none;
  }
  .section {
    padding-block: 35px;
  }
  .js .business-track {
    display: block;
    overflow: visible;
  }
  .business-slide {
    break-inside: avoid;
  }
  .business-slide[inert] {
    display: grid;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
  .site-footer {
    padding: 25px 0;
  }
}
