:root {
  --cream: #faf7f2;
  --ink: #78350f;
  --body: #706054;
  --green: #14532d;
  --green-dark: #0d3b20;
  --line: #e2d9cb;
  --sand: #eee7db;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}
em {
  font-weight: 400;
}
p {
  color: var(--body);
}
.container {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.announcement {
  background: var(--green);
  color: #fffaf0;
  text-align: center;
  padding: 8px 24px;
  font-size: 12px;
  letter-spacing: 1.1px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 103px;
  gap: 35px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 52px;
  border: 1px solid #a57c4d;
  border-radius: 50% 50% 40% 40%;
  font: 36px var(--serif);
}
.brand-mark span {
  position: absolute;
  right: -5px;
  top: -9px;
  font-size: 23px;
  background: var(--cream);
  line-height: 1;
}
.brand-name {
  font: 30px/1 var(--serif);
}
.brand-name > span {
  display: block;
  letter-spacing: 5.7px;
  font: 10px/1 var(--sans);
  margin-top: 9px;
  text-align: center;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: #5c5144;
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
}
.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fffaf3;
  min-height: 58px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: scale(1.025);
  background: var(--green-dark);
  box-shadow: 0 5px 18px #14532d15;
}
.button:active {
  transform: scale(0.99);
}
.button span {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button-small {
  min-height: 46px;
  padding: 11px 21px;
  gap: 20px;
}
.menu-toggle {
  display: none;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 5.7%;
  padding-block: 70px 51px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: var(--green);
  font-weight: 600;
}
.small-line {
  width: 26px;
  height: 1px;
  background: var(--green);
}
h1 {
  font-size: clamp(48px, 4.8vw, 72px);
  letter-spacing: -1.8px;
  margin-top: 25px;
  line-height: 1.035;
}
h1 em {
  color: var(--green);
}
.hero-description {
  max-width: 430px;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.text-link {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  font-size: 13px;
  white-space: nowrap;
}
.text-link::after {
  transform: scaleX(1);
  opacity: 0.4;
  bottom: 4px;
}
.text-link:hover::after {
  opacity: 1;
}
.hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #776a5b;
  font-size: 12px;
  margin-top: 28px;
}
.hero-note > span {
  font-size: 22px;
  color: #927a50;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-photo {
  height: 530px;
  overflow: hidden;
  background: #e8dfcf;
  border-radius: 2px;
}
.hero-photo img {
  height: 100%;
  object-position: 51% 50%;
}
.image-placeholder {
  display: grid;
  place-items: center;
  font: 48px/1.1 var(--serif);
  color: #9a754f;
}
.origin-seal {
  position: absolute;
  right: -12px;
  top: 28px;
  border-radius: 50%;
  width: 116px;
  height: 116px;
  background: var(--cream);
  border: 1px solid #b7a384;
  outline: 6px solid var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(11deg);
  gap: 7px;
}
.origin-seal span {
  font-size: 8px;
  letter-spacing: 1.8px;
}
.origin-seal strong {
  font: italic 26px/1 var(--serif);
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 13px;
  font-size: 10px;
  color: #7b6a57;
}
figcaption > span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
figcaption > span:last-child {
  font-size: 9px;
  letter-spacing: 1.5px;
  align-self: center;
}
.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 26px;
}
.promise-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.promise-strip > div + div {
  border-left: 1px solid var(--line);
}
.promise-strip > div > span {
  font-size: 30px;
  color: #8f754c;
  line-height: 1;
}
.promise-strip strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}
.promise-strip p > span {
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--green);
  color: white;
  z-index: 100;
  padding: 12px;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid #ac711f;
  outline-offset: 5px;
}
@media (min-width: 1500px) {
  .hero {
    gap: 8%;
  }
  .hero-photo {
    height: 570px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 19px;
  }
  .hero {
    gap: 5%;
    padding-top: 48px;
  }
  h1 {
    font-size: 59px;
  }
  .hero-photo {
    height: 500px;
  }
  .hero-actions {
    gap: 13px;
  }
  .text-link {
    font-size: 12px;
  }
  .promise-strip {
    gap: 14px;
  }
  .promise-strip > div {
    gap: 12px;
  }
  .promise-strip p > span {
    font-size: 10px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 91px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement {
    font-size: 10px;
    padding: 7px 12px;
    letter-spacing: 0.7px;
  }
  .nav-wrap {
    min-height: 82px;
    gap: 14px;
  }
  .brand-mark {
    width: 36px;
    height: 42px;
    font-size: 30px;
  }
  .brand-name {
    font-size: 26px;
  }
  .brand-name > span {
    font-size: 8px;
    letter-spacing: 4.9px;
    margin-top: 7px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 11px;
  }
  .menu-toggle span {
    height: 1px;
    width: 100%;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 20px 20px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    padding: 12px;
    font-size: 16px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 40px 35px;
    gap: 36px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.8px;
  }
  h1 {
    font-size: clamp(47px, 8vw, 66px);
    letter-spacing: -1px;
    margin-top: 21px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 530px;
    margin-top: 21px;
  }
  .hero-actions {
    margin-top: 26px;
    gap: 20px;
  }
  .hero-note {
    margin-top: 20px;
  }
  .hero-photo {
    height: 440px;
  }
  .origin-seal {
    right: 10px;
    top: 18px;
    width: 97px;
    height: 97px;
    gap: 6px;
  }
  .origin-seal strong {
    font-size: 23px;
  }
  .origin-seal span {
    font-size: 7px;
  }
  .promise-strip {
    grid-template-columns: 1fr;
    padding-block: 9px;
    gap: 0;
  }
  .promise-strip > div {
    justify-content: flex-start;
    padding: 18px 8px;
    gap: 20px;
  }
  .promise-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .promise-strip p > span {
    font-size: 12px;
  }
  .promise-strip > div > span {
    width: 30px;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .hero-photo {
    height: 365px;
  }
  .hero-actions {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-note {
    font-size: 11px;
  }
  figcaption > span:last-child {
    font-size: 8px;
    letter-spacing: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Collection and editorial sections */
.section {
  padding-block: 95px;
}
h2 {
  font-size: clamp(43px, 4vw, 58px);
  letter-spacing: -1.2px;
}
h2 em {
  color: var(--green);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 36px;
}
.section-heading h2,
.center-heading h2,
.story-copy h2,
.faq-intro h2,
.inquiry-copy h2 {
  margin-top: 19px;
}
.section-heading > p {
  max-width: 340px;
  font-size: 15px;
  padding-bottom: 5px;
}
.collection-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.collection-grid {
  border: 1px solid var(--line);
}
.collection-card {
  display: flex;
  flex-direction: column;
  padding: 33px 31px 29px;
  background: #f4efe6;
  transition: background 0.25s;
}
.collection-card:nth-child(2) {
  background: #f7f3eb;
}
.collection-card:nth-child(3) {
  background: #eeede3;
}
.collection-card + .collection-card {
  border-left: 1px solid var(--line);
}
.collection-card:hover {
  background: #e9e7da;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.card-number {
  font: italic 22px var(--serif);
  color: #8d7b61;
}
.card-top svg {
  width: 47px;
  height: 47px;
  color: var(--green);
}
.card-kicker {
  color: #806c51;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.collection-card h3 {
  font-size: 34px;
  margin-bottom: 19px;
}
.collection-card > p:not(.card-kicker) {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 33px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  padding-top: 19px;
  border-top: 1px solid #d9d1c1;
  margin-top: auto;
}
.card-link span {
  font-size: 21px;
  transition: transform 0.2s;
}
.card-link:hover span {
  transform: translate(3px, -3px);
}
.collection-footnote {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}
.story {
  padding-block: 78px;
  background: var(--sand);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.story-image {
  position: relative;
}
.story-image img {
  height: 500px;
  object-position: center;
}
.story-image figcaption {
  font: italic 22px var(--serif);
  margin: 0;
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: white;
  text-shadow: 0 1px 5px #000;
}
.story-copy h2 {
  margin-bottom: 28px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 15px;
  margin-bottom: 17px;
  line-height: 1.9;
}
.story-copy > p.story-emphasis {
  font: italic 24px/1.35 var(--serif);
  color: var(--ink);
  margin-top: 23px;
  max-width: 390px;
}
.story-copy .text-link {
  margin-top: 9px;
}
.center-heading {
  text-align: center;
}
.center-heading .eyebrow {
  justify-content: center;
}
.sample-label {
  font-size: 12px;
  margin-top: 20px;
  color: #75695b;
}
.testimonial-grid {
  margin-top: 44px;
}
.testimonial {
  padding: 9px 32px;
}
.testimonial:first-child {
  padding-left: 0;
}
.testimonial:last-child {
  padding-right: 0;
}
.testimonial + .testimonial {
  border-left: 1px solid var(--line);
}
.stars {
  color: #98722e;
  font-size: 14px;
  letter-spacing: 3px;
}
blockquote {
  font: 25px/1.4 var(--serif);
  margin: 22px 0 28px;
}
.testimonial figcaption {
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.testimonial .avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  font: 17px var(--serif);
  color: var(--ink);
}
.testimonial figcaption > span:last-child {
  font: 12px var(--sans);
  letter-spacing: 0;
}
.testimonial figcaption strong {
  display: block;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink);
  margin-bottom: 5px;
}
.testimonial figcaption > span > span {
  display: block;
}

/* Native, keyboard-accessible accordion */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10%;
  border-top: 1px solid var(--line);
  padding-block: 80px 100px;
}
.faq-intro h2 {
  margin-bottom: 21px;
}
.faq-intro > p:not(.eyebrow) {
  font-size: 14px;
  max-width: 310px;
}
.faq-intro .text-link {
  margin-top: 22px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 23px 0;
  font-size: 14px;
  font-weight: 550;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  position: relative;
}
.faq-list summary > span::before,
.faq-list summary > span::after {
  content: "";
  position: absolute;
  background: var(--green);
  width: 13px;
  height: 1px;
  top: 7px;
  left: 1px;
}
.faq-list summary > span::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.faq-list details[open] summary > span::after {
  transform: rotate(0);
}
.faq-answer {
  padding: 0 30px 25px 0;
  font-size: 14px;
  line-height: 1.8;
}

/* Contact and inquiry draft */
.inquiry-section {
  background: var(--green);
  padding-block: 85px;
}
.inquiry-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 9%;
  align-items: center;
}
.inquiry-copy .eyebrow {
  color: #d0d5b5;
}
.inquiry-copy h2 {
  color: #fff9ec;
  font-size: clamp(47px, 4.1vw, 61px);
}
.inquiry-copy h2 em {
  color: #dadfbb;
}
.inquiry-copy > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 385px;
  color: #e0e4d6;
  font-size: 15px;
  line-height: 1.9;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  color: #f5f3e4;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 1.7px;
  color: #c9d3b5;
}
.contact-direct a {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  overflow-wrap: anywhere;
}
.contact-direct a span {
  margin-left: 8px;
  font: 18px var(--sans);
}
.contact-direct > span:last-child {
  font-size: 12px;
  color: #d0d7c5;
}
.inquiry-form {
  background: var(--cream);
  padding: 37px;
  border-radius: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  min-width: 0;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 550;
  color: #594c3b;
}
label > span {
  color: #8b795d;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7cbbb;
  background: #fffdfa;
  color: #594c3b;
  border-radius: 0;
  padding: 12px 13px;
  font-size: 14px;
  min-height: 48px;
}
textarea {
  resize: vertical;
  line-height: 1.6;
}
input::placeholder,
textarea::placeholder {
  color: #8a8072;
  opacity: 1;
}
select {
  cursor: pointer;
  padding-right: 26px;
}
.form-helper {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}
.form-privacy {
  font-size: 10px;
  text-align: center;
  line-height: 1.6;
  margin-top: 14px;
}
.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-dialog {
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 36px;
}
.site-dialog::backdrop {
  background: #172715a8;
  backdrop-filter: blur(4px);
}
.site-dialog h2 {
  font-size: 42px;
  margin: 20px 0 18px;
}
.site-dialog > p:not(.eyebrow) {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.dialog-close {
  position: absolute;
  top: 6px;
  right: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  width: 44px;
  height: 44px;
}
.site-dialog label {
  margin-top: 20px;
  margin-bottom: 8px;
}
.site-dialog textarea {
  font-size: 13px;
}
.dialog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-block: 20px;
}
.button-outline {
  color: var(--green);
  background: transparent;
}
.button-outline:hover {
  background: #e6eadc;
}
.copy-status {
  font-size: 12px !important;
}
.privacy-dialog h3 {
  font-size: 25px;
  margin: 25px 0 10px;
}
.privacy-dialog a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 50px;
  padding-block: 55px 43px;
}
.footer-brand {
  margin-bottom: 21px;
}
.footer-main p {
  font-size: 13px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer-main h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  margin: 6px 0 13px;
}
.footer-main a:not(.brand) {
  font-size: 12px;
}
.footer-main a:not(.brand):hover,
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact > a {
  overflow-wrap: anywhere;
  max-width: 100%;
}
.footer-contact .text-link {
  margin-top: 5px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  font-size: 10px;
  color: #756656;
}
.footer-bottom > span {
  margin-left: auto;
  font: italic 16px var(--serif);
}
.demo-note {
  font-size: 10px;
  color: #897d6d;
  padding-block: 15px 25px;
}

/* Responsive layouts and comfortable touch targets */
@media (min-width: 801px) and (max-width: 1100px) {
  .collection-card {
    padding: 26px 22px;
  }
  .collection-card h3 {
    font-size: 29px;
  }
  .card-kicker {
    min-height: 32px;
  }
  .card-link {
    font-size: 11px;
    gap: 12px;
  }
  .story-layout,
  .inquiry-layout {
    gap: 5%;
  }
  .story-image img {
    height: 540px;
  }
  .inquiry-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 800px) {
  .section {
    padding-block: 60px;
  }
  h2 {
    font-size: 44px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .collection-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .collection-card {
    padding: 28px;
  }
  .collection-card + .collection-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .card-top {
    margin-bottom: 22px;
  }
  .collection-card h3 {
    font-size: 35px;
  }
  .collection-card > p:not(.card-kicker) {
    font-size: 16px;
    margin-bottom: 23px;
  }
  .card-link {
    font-size: 14px;
    min-height: 48px;
  }
  .collection-footnote {
    text-align: left;
    font-size: 12px;
  }
  .story {
    padding-block: 40px 52px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .story-image img {
    height: 360px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .story-copy > p.story-emphasis {
    font-size: 25px;
  }
  .testimonial-grid {
    margin-top: 28px;
  }
  .testimonial,
  .testimonial:first-child,
  .testimonial:last-child {
    padding: 27px 5px;
  }
  .testimonial + .testimonial {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  blockquote {
    font-size: 27px;
    margin-top: 16px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 53px 60px;
  }
  .faq-intro > p:not(.eyebrow) {
    max-width: 450px;
    font-size: 16px;
  }
  .faq-list summary {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 16px;
  }
  .inquiry-section {
    padding-block: 53px;
  }
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .inquiry-copy h2 {
    font-size: 51px;
  }
  .inquiry-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-direct {
    margin-top: 29px;
  }
  .contact-direct a {
    font-size: 25px;
  }
  .inquiry-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  label {
    font-size: 14px;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .form-privacy {
    font-size: 12px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 42px 32px;
  }
  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-contact {
    min-width: 0;
  }
  .footer-main a:not(.brand) {
    font-size: 14px;
    padding-block: 3px;
  }
  .footer-main p {
    font-size: 14px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 12px;
  }
  .footer-bottom > span {
    margin: 0;
    width: 100%;
  }
  .demo-note {
    font-size: 11px;
  }
  .site-dialog {
    padding: 28px 22px;
  }
  .site-dialog h2 {
    font-size: 36px;
  }
  .site-dialog textarea {
    font-size: 16px;
  }
  .site-dialog .eyebrow {
    max-width: 85%;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 42px;
  }
  .inquiry-form {
    padding: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-main > div:first-child {
    grid-column: auto;
  }
}

/* Readable type at every viewport. */
.eyebrow,
.card-kicker,
.contact-label {
  font-size: 0.75rem;
}
.brand-name > span {
  font-size: 0.75rem;
  letter-spacing: 4px;
}
.origin-seal span {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.origin-seal {
  width: 130px;
  height: 130px;
}
figcaption > span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.6px;
}
.hero-note,
.promise-strip p > span {
  font-size: 0.75rem;
}
.text-link,
.card-link,
label,
.footer-main a:not(.brand),
.footer-main h3 {
  font-size: 0.875rem;
}
.section-heading > p,
.collection-card > p:not(.card-kicker),
.story-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.faq-answer,
.inquiry-copy > p:not(.eyebrow) {
  font-size: 1rem;
}
.story-copy > p.story-emphasis {
  font-size: 1.5rem;
}
.form-helper,
.form-privacy,
.footer-bottom,
.demo-note {
  font-size: 0.75rem;
}
@media (max-width: 800px) {
  .announcement {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .eyebrow {
    letter-spacing: 1.3px;
  }
  .origin-seal {
    width: 117px;
    height: 117px;
  }
  .origin-seal span {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .hero-visual figcaption {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .hero-visual figcaption > span:last-child {
    font-size: 0.75rem;
  }
}

/* Original product photography and the family's legacy About copy. */
.hero-photo {
  background: #fff;
}
.hero-photo img {
  object-fit: contain;
  object-position: center;
}
.collection-card {
  padding: 0 28px 28px;
}
.collection-photo {
  margin: 0 -28px 26px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.collection-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-top {
  display: none;
}
.story-copy .legacy-title {
  margin: 0 0 28px;
}
.legacy-title {
  font-size: clamp(29px, 2.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  overflow-wrap: anywhere;
}
.story-image img {
  height: 530px;
  object-position: 47% center;
}
.story-image figcaption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 22px 22px;
  background: linear-gradient(transparent, #162214bd);
}
.heritage-difference {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 9%;
  margin-top: 64px;
  padding-top: 55px;
  border-top: 1px solid #d1c6b3;
}
.heritage-intro {
  max-width: 360px;
}
.heritage-accordion details {
  border-bottom: 1px solid #d1c6b3;
}
.heritage-accordion details:first-child {
  border-top: 1px solid #d1c6b3;
}
.heritage-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  color: var(--green);
  font-size: 16px;
  font-weight: 550;
  line-height: 1.6;
}
.heritage-accordion summary::-webkit-details-marker {
  display: none;
}
.heritage-accordion summary > span {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}
.heritage-accordion summary > span::before,
.heritage-accordion summary > span::after {
  content: "";
  position: absolute;
  background: var(--green);
  width: 13px;
  height: 1px;
  top: 7px;
  left: 1px;
}
.heritage-accordion summary > span::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.heritage-accordion details[open] summary > span::after {
  transform: rotate(0);
}
.heritage-answer {
  padding: 0 28px 24px 0;
  font-size: 16px;
  line-height: 1.85;
}
.heritage-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 55px;
  padding-top: 45px;
  border-top: 1px solid #d1c6b3;
}
.heritage-value + .heritage-value {
  border-left: 1px solid #d1c6b3;
  padding-left: 32px;
}
.heritage-value .legacy-title {
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.heritage-value p {
  font-size: 16px;
  line-height: 1.85;
}
@media (max-width: 800px) {
  .collection-photo {
    max-height: 450px;
  }
  .story-image img {
    height: 350px;
  }
  .heritage-difference {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 40px;
    padding-top: 34px;
  }
  .heritage-intro {
    max-width: 500px;
  }
  .heritage-values {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 32px;
    padding-top: 32px;
  }
  .heritage-value + .heritage-value {
    border-left: 0;
    border-top: 1px solid #d1c6b3;
    padding-left: 0;
    padding-top: 26px;
  }
  .heritage-value .legacy-title {
    margin-bottom: 15px;
  }
}
