:root {
  --paper: #fafafa;
  --ink: #1e1e1e;
  --green: #0c6d08;
  --sage: #0c6d08;
  --brown: #5a380f;
  --line: #dedbd5;
  --accent: #5a380f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a,
button {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(42px, 4.7vw, 72px);
}
h2 {
  color: var(--brown);
}
h2 em {
  color: var(--sage);
  font-weight: 400;
}
p + p {
  margin-top: 19px;
}
address {
  font-style: normal;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
a:hover {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: 10px;
  transform: translateY(-160%);
  padding: 10px 20px;
  background: var(--paper);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px #18201412;
}
.header-inner {
  max-width: 1640px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 111px;

}
.brand {
  flex: none;
}
.brand img {
  width: 179px;
  height: auto;
}
.brand > span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 7px;
}
.site-header nav {
  display: flex;
  gap: 35px;
  align-items: center;
}
.site-header nav a {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.site-header nav a > span {
  font-size: 14px;
  vertical-align: super;
  margin-right: 6px;
  color: var(--sage);
}
.header-cta {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 27px;
  border-bottom: 1px solid var(--ink);
  padding: 7px 0;
}
.header-cta span {
  font-size: 23px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  background: #29281f;
  min-height: 680px;
  height: calc(100svh - 111px);
  max-height: 920px;
  padding: 0 3%;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  z-index: -2;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #10150ee0 0%, #11140c70 52%, #16180e29 100%),
    linear-gradient(0deg, #0d120da1, transparent 60%);
  z-index: -1;
}
.hero-frame {
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #fff3;
  border-right: 1px solid #fff3;
  padding: 0 3%;
}
.hero-top,
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: 0.16em;
  font-size: 14px;
  line-height: 1.5;
}
.hero-top {
  padding-top: 29px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 35px;
  align-items: end;
  margin-top: auto;
  padding: 140px 0 70px;
}
.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 26px;
}
.eyebrow.light {
  color: #e3e5d7;
}
.hero h1 {
  font-size: clamp(64px, 7.2vw, 114px);
  line-height: 1.03;
  letter-spacing: -0.054em;
}
.hero h1 em {
  font-weight: 400;
  color: #e6e1d2;
}
.hero-aside {
  max-width: 335px;
  justify-self: end;
  padding-bottom: 5px;
}
.hero-aside p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.button {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 55px;
  padding: 14px 24px;
  border: 1px solid;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.button span {
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
}
.button-light {
  border-color: #f8f7eeaa;
  color: var(--paper);
  background: transparent;
}
.button-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button-dark {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}
.button-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: white;
}
.hero-bottom {
  padding: 25px 0;
  border-top: 1px solid #fff4;
}
.hero-bottom a {
  letter-spacing: 0.03em;
  display: flex;
  gap: 25px;
  align-items: center;
}
.hero-bottom a:hover {
  color: white;
}
.hero-bottom a span {
  font-size: 24px;
}
.section-shell {
  max-width: 1410px;
  margin: auto;
  padding: 0 6%;
}
.section-index {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.15em;
}
.about {
  padding-top: 26px;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8%;
  padding: 75px 0 65px;
}
.about-copy {
  font-size: 16px;
  line-height: 1.75;
}
.about-copy .text-link {
  margin-top: 20px;
}
.about-dream {
  margin-top: 40px;
  padding: 24px;
  border-left: 3px solid var(--green);
  background: #f1eee9;
  max-width: 440px;
}
.about-dream h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--brown);
}
.about-dream p {
  font-size: 16px;
  line-height: 1.75;
}
.history-timeline {
  margin: 0 0 60px;
  padding: 0;
  list-style: none;
}
.history-step {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
  gap: 40px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.history-period {
  font-family: var(--serif);
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}
.history-step h3 {
  margin-bottom: 18px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.25;
}
.history-step > div {
  
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .history-step {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 28px 0;
  }
  .history-step h3 {
    font-size: 27px;
  }
  .about-dream {
    margin-top: 28px;
    padding: 20px;
  }
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 50px 0;
  }
}
.story {
  padding-top: 26px;
  padding-bottom: 110px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10%;
  padding: 90px 0 75px;
}
.story-copy {
  padding-top: 42px;
  font-size: 16px;
  max-width: 445px;
}
.lead {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  margin-bottom: 25px;
}
.since {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}
.since > span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}
.since strong {
  font-family: var(--serif);
  font-size: 61px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.since > span:last-child {
  font-size: 14px;
  line-height: 1.5;
  max-width: 130px;
  border-left: 1px solid var(--line);
  padding-left: 15px;
}
.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
}
.text-link span {
  font-size: 21px;
}
.story-copy .text-link {
  margin-top: 20px;
}
.story-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 50%;
}
.story-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  font-size: 14px;
}
.story-photo figcaption span:last-child {
  font-size: 14px;
  letter-spacing: 0.13em;
}
.services {
  padding-bottom: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  padding: 65px 0 55px;
}
.section-heading > p {
  font-size: 16px;
  max-width: 325px;
  padding-bottom: 6px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 39px 32px 37px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}
.service:first-child {
  padding-left: 0;
}
.service:last-child {
  border-right: 0;
  padding-right: 0;
}
.service-number {
  position: absolute;
  right: 30px;
  top: 42px;
  font-size: 14px;
  color: var(--sage);
}
.service svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.1;
  margin-bottom: 31px;
}
.service h3 {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.17;
  letter-spacing: -0.025em;
}
.service p {
  font-size: 14px;
  margin: 20px 0 23px;
}
.service .text-link {
  margin-top: auto;
  font-size: 13px;
  gap: 20px;
}
.craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brown);
  color: var(--paper);
}
.craft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 610px;
  max-height: 800px;
}
.craft-copy {
  padding: 80px clamp(35px, 6vw, 100px);
  align-self: center;
}
.craft-copy h2 {
  color: var(--paper);
  font-size: clamp(43px, 4.4vw, 68px);
}
.craft-copy h2 em {
  color: #eee0c9;
}
.craft-copy > p:not(.eyebrow) {
  font-size: 16px;
  margin-top: 30px;
  max-width: 400px;
}
.craft-values {
  display: flex;
  flex-direction: column;
  margin: 35px 0;
}
.craft-values span {
  border-bottom: 1px solid #fff3;
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.craft-values span:before {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: #e7e9dd;
}
.collection {
  padding-top: 65px;
  padding-bottom: 110px;
}
.collection .section-heading > p {
  max-width: 340px;
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.collection-item > img {
  width: 100%;
  height: 410px;
  object-fit: cover;
}
.collection-item:nth-child(2) {
  padding-top: 75px;
}
.collection-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 17px;
  border-bottom: 1px solid var(--line);
}
.collection-label span {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--sage);
  display: block;
  margin-bottom: 5px;
}
.collection-label h3 {
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.collection-label > a {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 23px;
  transition: background 0.3s;
}
.collection-label > a:hover {
  background: var(--green);
  color: var(--paper);
}
.collection-item > p {
  font-size: 14px;
  margin-top: 17px;
  max-width: 440px;
}
.invitation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 85px 24px;
  background: #f1eee9;
}
.invitation h2 {
  font-size: clamp(50px, 5.7vw, 86px);
  margin-bottom: 35px;
}
.ring {
  position: absolute;
  width: 430px;
  height: 620px;
  border: 1px solid #5a380f25;
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
}
.ring-one {
  left: -230px;
}
.ring-two {
  right: -230px;
  transform: translateY(-50%) rotate(25deg);
}
.contact {
  padding-top: 50px;
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding-top: 70px;
}
.contact-details h2 {
  font-size: clamp(43px, 4.4vw, 65px);
}
.contact-details > p:not(.eyebrow) {
  font-size: 16px;
  max-width: 375px;
  margin: 25px 0;
}
.contact-phone {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -0.03em;
  margin-top: 35px;
}
.contact-phone span {
  font-size: 23px;
  margin-left: 10px;
}
.contact-email {
  display: inline-block;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  overflow-wrap: anywhere;
}
.contact-address {
  margin-top: 33px;
}
.contact-details h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
}
.contact-details address,
.hours p {
  font-size: 14px;
}
.hours {
  margin-top: 27px;
}
.form-panel {
  padding-top: 5px;
}
.form-panel > h3 {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.form-intro {
  font-size: 14px;
  margin-top: 10px;
}
.form-notice {
  background: #eef4ec;
  border-left: 2px solid var(--sage);
  font-size: 14px;
  padding: 13px 15px;
  margin-top: 20px;
}
.form-notice a {
  text-decoration: underline;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 22px;
  margin-top: 30px;
}
.field {
  min-width: 0;
}
.field label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #959b85;
  border-radius: 0;
  padding: 9px 0;
  color: var(--ink);
  font-size: 16px;
  min-height: 43px;
}
.field textarea {
  resize: vertical;
  min-height: 105px;
}
.field-wide {
  grid-column: 1/-1;
}
.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 23px 0;
  font-size: 14px;
  cursor: pointer;
  min-height: 32px;
}
.privacy-check input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
  flex: none;
  margin: 0;
}
.privacy-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-submit {
  width: 100%;
}
.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.form-required {
  font-size: 14px;
  margin-top: 8px;
}
#form-status {
  font-size: 14px;
  margin-top: 14px;
}
#form-status:empty {
  display: none;
}
#form-status[data-state="error"] {
  border-left: 2px solid var(--accent);
  padding: 8px 14px;
}
#form-status[data-state="success"] {
  border-left: 2px solid var(--sage);
  padding: 8px 14px;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-footer {
  background: #5a380f;
  color: #eeeee1;
  padding: 60px 6% 0;
}
.footer-main {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 45px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 49px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
}
.footer-brand span {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.13em;
  line-height: 1.7;
  margin-top: 8px;
}
.footer-main p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  color: #d6dacc;
}
.footer-main h2 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 7px 0 23px;
}
.footer-main address {
  font-size: 14px;
}
.footer-main > div:last-child > a {
  display: block;
  font-size: 14px;
  margin: 7px 0;
  overflow-wrap: anywhere;
}
.footer-main > div:last-child > .footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 220px;
  border-bottom: 1px solid #fff4;
  margin-top: 27px;
  padding-bottom: 9px;
}
.site-footer a:hover {
  color: #dce8c7;
}
.footer-bottom {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
  border-top: 1px solid #fff3;
  font-size: 14px;
  letter-spacing: 0.025em;
}
.footer-bottom > span:last-child {
  letter-spacing: 0.13em;
}
.site-footer details {
  max-width: 1240px;
  margin: 0 auto 20px;
  font-size: 14px;
}
.site-footer summary {
  cursor: pointer;
  width: fit-content;
  padding: 8px 0;
}
.site-footer details p {
  max-width: 700px;
  padding: 8px 0;
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(16px);
}
.reveal {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
@media (min-width: 1500px) {
  .section-shell {
    padding-left: 65px;
    padding-right: 65px;
  }
  .hero-frame {
    padding: 0 4%;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
    padding-inline: 4%;
    min-height: 95px;
  }
  .brand img {
    width: 155px;
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header nav a {
    font-size: 14px;
  }
  .header-cta {
    gap: 14px;
  }
  .hero {
    height: calc(100svh - 95px);
    min-height: 610px;
  }
  .hero h1 {
    font-size: clamp(62px, 7.5vw, 84px);
  }
  .hero-content {
    gap: 25px;
    padding-bottom: 65px;
    grid-template-columns: 1.5fr 1fr;
  }
  .hero-aside p {
    font-size: 16px;
  }
  .hero-aside .button {
    padding: 14px 16px;
    gap: 17px;
  }
  .story-grid {
    gap: 7%;
  }
  .service {
    padding-inline: 23px;
  }
  .service h3 {
    font-size: 26px;
  }
  .craft-copy {
    padding: 60px 35px;
  }
  .collection-item > img {
    height: 350px;
  }
  .contact-grid {
    gap: 6%;
  }
  .contact-phone {
    font-size: 28px;
  }
  .footer-main {
    gap: 35px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 99px;
  }
  .site-header nav {
    gap: 15px;
  }
  .site-header nav a > span {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 90px;
    padding-bottom: 40px;
  }
  .hero-aside {
    justify-self: start;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .hero-aside p {
    margin: 0;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero {
    min-height: 690px;
    height: auto;
  }
  .hero-frame {
    min-height: 690px;
  }
  .story-grid {
    padding-top: 65px;
  }
  .story-copy {
    padding-top: 10px;
  }
  .story-photo img {
    height: 350px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 250px;
  }
  .service {
    padding-inline: 18px;
  }
  .service h3 {
    font-size: 24px;
  }
  .service p {
    font-size: 14px;
  }
  .service .text-link {
    font-size: 13px;
    gap: 10px;
  }
  .craft-copy {
    padding: 55px 28px;
  }
  .craft-copy h2 {
    color: var(--paper);
    font-size: 42px;
  }
  .craft-photo img {
    min-height: 580px;
  }
  .collection .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .collection .section-heading > p {
    max-width: 450px;
  }
  .collection-item > img {
    height: 280px;
  }
  .collection-label h3 {
    font-size: 27px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .contact-details {
    max-width: 550px;
  }
  .contact-details > p:not(.eyebrow) {
    max-width: 450px;
  }
  .form-panel {
    max-width: 650px;
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
  .footer-main p {
    margin-top: 15px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 114px;
  }
  .header-inner {
    min-height: 96px;
    padding: 13px 6%;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .brand img {
    width: 146px;
  }
  .brand > span {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-top: 5px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 0;
    background: transparent;
    color: var(--ink);
    padding: 13px 0 13px 13px;
    font-size: 14px;
  }
  .menu-lines {
    width: 23px;
    height: 14px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    position: relative;
  }
  .menu-lines:before {
    content: "";
    height: 1px;
    width: 23px;
    background: currentColor;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines {
    border-color: transparent;
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:before {
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-lines:after {
    content: "";
    height: 1px;
    width: 23px;
    background: currentColor;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(-45deg);
  }
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: auto;
    padding: 14px 6% 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 20px #18201418;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-header nav[hidden] {
    display: none;
  }
  .site-header nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .site-header nav a > span {
    display: inline;
    font-size: 14px;
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 114px;
  }
  .hero {
    min-height: 660px;
    padding: 0 5%;
    height: auto;
  }
  .hero-frame {
    min-height: 660px;
    padding: 0 6%;
  }
  .hero-image {
    object-position: 60% center;
  }
  .hero:before {
    background:
      linear-gradient(90deg, #11170cce, #0c130d60),
      linear-gradient(0deg, #10170de0, transparent 70%);
  }
  .hero-top {
    font-size: 14px;
    padding-top: 24px;
  }
  .hero-top > span:last-child {
    display: none;
  }
  .hero-content {
    padding-top: 110px;
    padding-bottom: 38px;
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.8vw, 64px);
    letter-spacing: -0.052em;
  }
  .hero .eyebrow {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero-aside {
    display: block;
  }
  .hero-aside p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 23px;
  }
  .hero-aside .button {
    font-size: 14px;
    padding: 13px 17px;
    gap: 35px;
    min-height: 50px;
  }
  .hero-bottom {
    font-size: 14px;
    padding: 19px 0;
  }
  .hero-bottom > span {
    display: none;
  }
  .hero-bottom > a {
    justify-content: space-between;
    width: 100%;
  }
  .section-shell {
    padding-inline: 7%;
  }
  .section-index {
    font-size: 14px;
    letter-spacing: 0.11em;
    padding: 24px 0;
  }
  .section-index > span:last-child {
    display: none;
  }
  .story {
    padding-top: 14px;
    padding-bottom: 65px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 48px 0 40px;
  }
  h2 {
    font-size: 44px;
  }
  .eyebrow {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .since {
    margin-top: 30px;
  }
  .since strong {
    font-size: 56px;
  }
  .story-copy {
    padding: 0;
    font-size: 16px;
  }
  .lead {
    font-size: 26px;
  }
  .story-copy .text-link {
    margin-top: 14px;
  }
  .story-photo img {
    height: 300px;
    object-position: 60% center;
  }
  .story-photo figcaption {
    font-size: 14px;
  }
  .story-photo figcaption span:last-child {
    display: none;
  }
  .section-heading {
    display: block;
    padding: 43px 0 35px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 25px;
    font-size: 14px;
  }
  .services {
    padding-bottom: 60px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service,
  .service:first-child,
  .service:last-child {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service:last-child {
    border-bottom: 0;
  }
  .service-number {
    right: 0;
    top: 32px;
  }
  .service svg {
    margin-bottom: 20px;
    width: 49px;
    height: 49px;
  }
  .service h3 {
    font-size: 30px;
  }
  .service h3 br {
    display: none;
  }
  .service p {
    font-size: 14px;
    margin: 17px 0;
  }
  .service .text-link {
    font-size: 13px;
    gap: 40px;
  }
  .craft {
    grid-template-columns: 1fr;
  }
  .craft-photo img {
    height: 350px;
    min-height: 0;
  }
  .craft-copy {
    padding: 50px 7% 55px;
  }
  .craft-copy h2 {
    color: var(--paper);
    font-size: 45px;
  }
  .craft-copy > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 22px;
  }
  .craft-values {
    margin: 25px 0;
  }
  .collection {
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .collection-item:nth-child(2) {
    padding: 0;
  }
  .collection-item > img {
    height: auto;
    aspect-ratio: 1.15;
    object-fit: cover;
  }
  .collection-label h3 {
    font-size: 30px;
  }
  .collection-item > p {
    font-size: 14px;
  }
  .invitation {
    padding: 60px 7%;
  }
  .invitation h2 {
    font-size: 46px;
  }
  .invitation .button {
    font-size: 14px;
    gap: 20px;
    padding-inline: 19px;
  }
  .ring {
    width: 280px;
    height: 470px;
  }
  .contact {
    padding-top: 24px;
    padding-bottom: 60px;
  }
  .contact-grid {
    padding-top: 46px;
    gap: 48px;
  }
  .contact-details h2 {
    font-size: 44px;
  }
  .contact-phone {
    font-size: 29px;
  }
  .contact-email {
    font-size: 14px;
  }
  .form-panel > h3 {
    font-size: 29px;
  }
  .form-grid {
    gap: 22px 16px;
  }
  .form-notice {
    font-size: 14px;
  }
  .site-footer {
    padding: 43px 7% 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-bottom: 33px;
  }
  .footer-main > div:first-child {
    grid-column: auto;
  }
  .footer-main h2 {
    margin-bottom: 14px;
  }
  .footer-brand {
    font-size: 44px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
  }
  .footer-bottom > span:first-child {
    width: 100%;
  }
  .footer-bottom > span:last-child {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
