@font-face {
  font-family: Pretendard;
  src: local("Pretendard"), local("Pretendard Variable");
  font-display: swap;
}
:root {
  --ink: #252923;
  --green: #304c3c;
  --paper: #faf9f6;
  --muted: #74786f;
  --line: #dddfd5;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Malgun Gothic", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #ad9c6d;
  outline-offset: 6px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 16px;
}
.skip:focus {
  top: 15px;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  height: 102px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5%;
  color: white;
  border-bottom: 1px solid #ffffff30;
  transition:
    background 0.3s,
    color 0.3s,
    height 0.3s;
}
.header.scrolled,
.header.menu-open {
  height: 84px;
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.logo {
  font: 32px var(--serif);
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}
.logo span {
  display: block;
  font:
    8px Arial,
    sans-serif;
  letter-spacing: 3.8px;
  margin-top: 10px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  padding: 20px 0;
  position: relative;
}
.nav a:after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 100%;
  transition: right 0.3s;
}
.nav a:hover:after {
  right: 0;
}
.header-contact {
  border-radius: 30px;
  background: #25362cea;
  padding: 13px 24px;
  color: white;
  font-size: 13px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.header-contact span {
  font-size: 19px;
}
.menu-button {
  display: none;
}
.hero {
  height: 100svh;
  min-height: 740px;
  max-height: 1100px;
  position: relative;
  isolation: isolate;
  color: white;
  background: #4c4e40;
}
.hero-images,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s;
  object-position: center 58%;
}
.hero-image.active {
  opacity: 1;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(18, 27, 21, 0.57),
      rgba(18, 27, 21, 0.2) 62%,
      rgba(18, 27, 21, 0.12)
    ),
    linear-gradient(0deg, #1622194f, transparent 45%, #16221920);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 8.2%;
  transform: translateY(-41%);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.8;
  font-weight: 500;
}
.hero .eyebrow {
  letter-spacing: 3.5px;
  margin-bottom: 28px;
  font-size: 11px;
}
.hero h1 {
  font-size: clamp(48px, 4.8vw, 82px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -3px;
}
.hero-description {
  font-size: 16px;
  line-height: 1.9;
  margin: 28px 0 32px;
  color: #fffdf4e6;
}
.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-bottom: 1px solid #ffffff90;
  padding: 12px 0;
  font-size: 13px;
  background: none;
  text-align: left;
}
.line-link span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s;
}
.line-link:hover span {
  transform: translate(3px, -3px);
}
.line-link.dark {
  border-color: #8b9288;
}
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 8.2%;
  right: 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.slide-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  letter-spacing: 0;
}
.slide-controls > button {
  background: transparent;
  color: white;
  padding: 8px;
  font-size: 18px;
}
.slide-controls > span {
  font-size: 12px;
}
.slide-controls .total {
  opacity: 0.55;
}
.slide-dots {
  display: flex;
  gap: 0;
}
.slide-dots button {
  position: relative;
  width: 40px;
  height: 32px;
  padding: 0;
  background: none;
}
.slide-dots button:after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  background: #ffffff40;
}
.slide-dots button.active:after {
  background: white;
}
.scroll-cue {
  display: flex;
  gap: 24px;
  align-items: center;
}
.scroll-cue span {
  font-size: 22px;
}
.quick {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 25;
  background: #27352bef;
  color: white;
  border-radius: 10px 0 0 10px;
  width: 72px;
  padding: 10px 12px;
  box-shadow: 0 3px 15px #0001;
}
.quick a,
.quick button {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 0;
  font-size: 9px;
  background: none;
  color: white;
}
.quick > * + * {
  border-top: 1px solid #ffffff2b;
}
.quick span {
  font-size: 24px;
  line-height: 1;
}
.section {
  padding: 65px 8.2% 110px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.3px;
  color: var(--muted);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.about {
  padding-bottom: 90px;
}
.about-heading {
  text-align: center;
  margin: 84px auto 0;
}
.about-heading .eyebrow {
  letter-spacing: 1px;
  color: var(--green);
  font-size: 13px;
}
.about h2 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -1.8px;
  margin: 20px 0 26px;
}
.about h2 em {
  font-style: normal;
  color: var(--green);
}
.about-heading > p:last-child {
  font-size: 14px;
  line-height: 1.95;
  color: var(--muted);
}
.brand-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 55px 0 65px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: 1px;
}
.brand-signature i {
  font-family: Arial;
  font-size: 28px;
  font-weight: 200;
  color: #b5baac;
  margin: 0 8px;
}
.signature-serif {
  font-style: italic;
  color: var(--green);
}
.window-mark {
  display: block;
  width: 32px;
  height: 43px;
  border: 1.5px solid var(--green);
  background:
    linear-gradient(
      90deg,
      transparent 48%,
      var(--green) 49%,
      var(--green) 52%,
      transparent 53%
    ),
    linear-gradient(
      0deg,
      transparent 48%,
      var(--green) 49%,
      var(--green) 52%,
      transparent 53%
    );
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.principle {
  padding: 0 30px;
}
.principle:first-child {
  padding-left: 0;
}
.principle + .principle {
  border-left: 1px solid var(--line);
}
.principle > span {
  font: italic 16px var(--serif);
  color: #989f8f;
}
.principle h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 19px 0 13px;
  letter-spacing: -0.7px;
}
.principle p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.collection {
  background: #eeeee6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 65px 0 44px;
  gap: 30px;
}
.section-heading h2,
.process h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -1.6px;
  line-height: 1.5;
}
.section-heading .eyebrow,
.process .eyebrow {
  color: var(--green);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 17px;
}
.section-heading > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  padding-bottom: 8px;
}
.collection-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #c5cabb;
  margin-bottom: 30px;
}
.collection-tabs button {
  padding: 22px 18px;
  background: transparent;
  color: #747a6d;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  font-size: 11px;
  border-bottom: 2px solid transparent;
}
.collection-tabs button:first-child {
  padding-left: 0;
}
.collection-tabs button[aria-selected="true"] {
  color: var(--green);
  border-bottom-color: var(--green);
}
.collection-tabs span {
  font-size: 16px;
}
.collection-tabs small {
  font-size: 9px;
  margin-left: auto;
  letter-spacing: 1.2px;
}
.collection-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 55px;
  align-items: center;
}
.collection-photo {
  position: relative;
  overflow: hidden;
  height: 475px;
}
.collection-photo img {
  width: 100%;
  height: 100%;
}
.collection-photo > span {
  position: absolute;
  left: 25px;
  bottom: 24px;
  font-size: 10px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 1px 8px #000;
}
.collection-copy .eyebrow {
  color: var(--green);
  font-size: 9px;
}
.collection-copy h3 {
  font-size: 31px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1px;
  margin: 20px 0;
}
.collection-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 340px;
}
.collection-copy dl {
  margin: 28px 0 18px;
  font-size: 11px;
  border-top: 1px solid #cbd0c1;
}
.collection-copy dl > div {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid #d6dacd;
  gap: 15px;
}
.collection-copy dt {
  min-width: 75px;
  color: var(--muted);
}
.collection-copy dd {
  margin: 0;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.swatch {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.sand {
  background: #bcab8f;
}
.gray {
  background: #92978b;
}
.black {
  background: #303833;
  margin-right: 4px;
}
.difference {
  padding-bottom: 100px;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
}
.difference-grid article {
  border-left: 1px solid var(--line);
  padding: 0 30px;
}
.difference-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}
.feature-symbol {
  height: 65px;
  display: block;
  font: 48px var(--serif);
  color: #74836b;
  line-height: 1;
}
.difference-grid article > p {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 20px 0 15px;
}
.difference-grid h3 {
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 18px;
}
.difference-grid article > span:last-child {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.spaces {
  background: #f0f1ec;
}
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.space-card {
  text-align: left;
  background: none;
  padding: 0;
}
.space-card > div {
  height: 360px;
  position: relative;
  overflow: hidden;
}
.space-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
}
.space-card:hover img {
  transform: scale(1.035);
}
.space-card:nth-child(2) {
  margin-top: 55px;
}
.space-card:nth-child(3) {
  margin-top: 110px;
}
.round-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid #ffffff80;
  border-radius: 50%;
  color: white;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #0002;
  font-size: 23px;
}
.space-card > p {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 23px 0 12px;
}
.space-card h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.space-card > span {
  font-size: 12px;
  color: var(--muted);
}
.image-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 35px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 70px;
  margin-top: 70px;
}
.muted {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin: 24px 0;
}
.process-steps article {
  display: flex;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.process-steps article:first-child {
  padding-top: 0;
}
.process-steps article > span {
  font: italic 22px var(--serif);
  color: #8d9985;
  width: 28px;
}
.process-steps article > div {
  flex: 1;
}
.process-steps article p:first-child {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin: 2px 0 12px;
}
.process-steps h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.7px;
}
.process-steps article p:last-child {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
}
.process-steps b {
  font-size: 21px;
  font-weight: 400;
  color: #909b86;
}
.contact {
  position: relative;
  text-align: center;
  color: white;
  background: #23362b;
  isolation: isolate;
  overflow: hidden;
  padding: 95px 25px;
}
.contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-position: center 70%;
}
.contact:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1d312bcc;
  z-index: -1;
}
.contact .eyebrow {
  font-size: 9px;
  letter-spacing: 3px;
  color: #d8d9be;
}
.contact h2 {
  font-size: clamp(32px, 3.3vw, 50px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.5;
  margin: 23px 0;
}
.contact p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #d6d9cd;
}
.contact-cta {
  display: inline-flex;
  gap: 60px;
  align-items: center;
  background: #eeeee1;
  padding: 19px 26px;
  margin-top: 30px;
  font-size: 13px;
  color: var(--green);
}
.contact-cta span {
  font-size: 21px;
}
.journal {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.journal .eyebrow {
  font: italic 16px var(--serif);
  letter-spacing: 0.3px;
  color: var(--green);
}
.journal h2 {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -1px;
  margin-top: 18px;
}
.journal-list details {
  border-bottom: 1px solid var(--line);
}
.journal-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
  list-style: none;
  padding: 25px 0;
  line-height: 1.6;
}
.journal-list summary::-webkit-details-marker {
  display: none;
}
.journal-list summary span {
  font-size: 8px;
  letter-spacing: 1px;
  min-width: 85px;
  color: var(--muted);
}
.journal-list summary b {
  margin-left: auto;
  font-size: 20px;
  font-weight: 300;
}
.journal-list details[open] summary b {
  transform: rotate(45deg);
}
.journal-list details > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 20px 25px 105px;
}
.footer {
  padding: 55px 8.2% 30px;
  background: #263a30;
  color: #eeeee1;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffffff20;
}
.footer-top p {
  font-size: 12px;
  color: #c7cdbf;
}
.footer-top > a:last-child {
  font-size: 9px;
  letter-spacing: 1px;
}
.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  line-height: 1.9;
  color: #b9c2b4;
}
.footer-bottom a {
  align-self: end;
  border-bottom: 1px solid #ffffff50;
}
.reveal {
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.js .reveal.pending {
  opacity: 0;
  transform: translateY(22px);
}
dialog {
  border: 0;
  padding: 48px;
  background: var(--paper);
  color: var(--ink);
  max-width: min(570px, calc(100vw - 32px));
  width: 570px;
  max-height: 88svh;
  overflow: auto;
}
dialog::backdrop {
  background: #102219b3;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 12px;
  font: 30px Arial;
  background: none;
  padding: 5px 10px;
}
dialog h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 20px 0;
}
dialog .eyebrow {
  color: var(--green);
  font-size: 9px;
}
.dialog-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
form {
  margin-top: 25px;
}
form label {
  display: block;
  font-size: 12px;
  margin: 19px 0;
}
select,
textarea {
  display: block;
  width: 100%;
  padding: 13px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  margin-top: 9px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
textarea {
  resize: vertical;
  line-height: 1.8;
}
.submit {
  padding: 16px 20px;
  background: var(--green);
  color: white;
  width: 100%;
  text-align: center;
  font-size: 13px;
}
.submit span {
  float: right;
}
#consult-result {
  margin-top: 30px;
}
#consult-result h3 {
  font-size: 19px;
  font-weight: 500;
}
#result-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.9;
  padding: 22px 0;
}
#consult-result .submit {
  margin-top: 20px;
}
#consult-result .line-link {
  margin-top: 10px;
  gap: 10px;
  font-size: 12px;
}
#story-dialog {
  width: 800px;
  max-width: min(800px, calc(100vw - 32px));
  padding: 0;
}
#story-dialog > .dialog-close {
  background: var(--paper);
  border-radius: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  line-height: 1;
}
#story-image {
  width: 100%;
  height: 330px;
}
.story-body {
  padding: 35px 40px;
}
.story-body > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.story-body .dialog-note {
  margin-top: 20px;
  font-size: 11px;
}
.story-body .line-link {
  margin-top: 18px;
}
@media (min-width: 1700px) {
  .section {
    padding-left: max(8.2%, calc((100% - 1500px) / 2));
    padding-right: max(8.2%, calc((100% - 1500px) / 2));
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 24px;
    font-size: 12px;
  }
  .header {
    padding: 0 4%;
  }
  .logo {
    font-size: 28px;
  }
  .hero-content,
  .hero-bottom {
    left: 6%;
  }
  .section {
    padding-left: 6%;
    padding-right: 6%;
  }
  .quick {
    width: 57px;
    padding: 6px 9px;
  }
  .collection-panel {
    gap: 30px;
  }
  .collection-photo {
    height: 440px;
  }
  .collection-tabs small {
    display: none;
  }
  .space-card > div {
    height: 300px;
  }
  .process-layout {
    gap: 35px;
  }
  .difference-grid article {
    padding: 0 20px;
  }
  .journal {
    gap: 30px;
  }
  .journal-list summary {
    gap: 12px;
  }
  .journal-list summary span {
    min-width: 70px;
  }
  .journal-list details > p {
    padding-left: 82px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .header,
  .header.scrolled,
  .header.menu-open {
    height: 76px;
    padding: 0 22px;
  }
  .logo {
    font-size: 25px;
    letter-spacing: 1.3px;
  }
  .logo span {
    font-size: 6px;
    letter-spacing: 3px;
    margin-top: 7px;
  }
  .header-contact {
    margin-left: auto;
    margin-right: 18px;
    font-size: 10px;
    padding: 10px 15px;
    gap: 13px;
  }
  .header-contact span {
    font-size: 16px;
  }
  .menu-button {
    display: flex;
    width: 25px;
    height: 35px;
    padding: 7px 0;
    background: none;
    flex-direction: column;
    justify-content: space-around;
  }
  .menu-button span {
    height: 1px;
    width: 25px;
    background: currentColor;
    transition: transform 0.3s;
  }
  .menu-open .menu-button span:first-child {
    transform: translateY(5px) rotate(45deg);
  }
  .menu-open .menu-button span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 30px 30px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .menu-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 18px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: 690px;
    max-height: 1000px;
  }
  .hero-image {
    object-position: 57% center;
  }
  .hero-content {
    left: 7%;
    right: 7%;
    transform: translateY(-37%);
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: clamp(36px, 8.3vw, 56px);
    letter-spacing: -1.8px;
    line-height: 1.42;
  }
  .hero-description {
    font-size: 12px;
    margin: 22px 0 24px;
    line-height: 1.9;
  }
  .line-link {
    font-size: 12px;
    gap: 45px;
  }
  .hero-bottom {
    left: 7%;
    right: 7%;
    bottom: 27px;
  }
  .hero-caption,
  .scroll-cue {
    display: none;
  }
  .slide-controls {
    gap: 12px;
  }
  .slide-dots button {
    width: 32px;
  }
  .quick {
    top: auto;
    bottom: 20px;
    right: 18px;
    width: auto;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 2px 15px #0003;
  }
  .quick button {
    width: 54px;
    height: 54px;
    padding: 0;
    font-size: 9px;
    gap: 1px;
  }
  .quick button span {
    font-size: 20px;
  }
  .quick a {
    display: none;
  }
  .section {
    padding: 40px 7% 60px;
  }
  .section-label {
    font-size: 8px;
    letter-spacing: 0.8px;
    padding-bottom: 17px;
  }
  .section-label > span:last-child {
    display: none;
  }
  .about-heading {
    margin-top: 48px;
  }
  .about-heading .eyebrow {
    font-size: 11px;
  }
  .about h2 {
    font-size: 27px;
    letter-spacing: -1.4px;
    line-height: 1.5;
    margin: 17px 0;
  }
  .about-heading > p:last-child {
    font-size: 11px;
    line-height: 2;
  }
  .brand-signature {
    gap: 12px;
    font-size: 25px;
    letter-spacing: 0;
    margin: 37px 0 42px;
    flex-wrap: wrap;
  }
  .brand-signature i {
    font-size: 20px;
    margin: 0 3px;
  }
  .window-mark {
    width: 20px;
    height: 28px;
  }
  .principles {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .principle,
  .principle:first-child {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
  }
  .principle + .principle {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .principle h3 {
    font-size: 17px;
    margin: 0 0 10px;
  }
  .principle > span {
    padding-top: 2px;
  }
  .principle p {
    grid-column: 2;
    font-size: 12px;
  }
  .principle p br {
    display: none;
  }
  .section-heading {
    display: block;
    margin: 40px 0 30px;
  }
  .section-heading h2,
  .process h2 {
    font-size: 32px;
    line-height: 1.45;
    letter-spacing: -1.4px;
  }
  .section-heading .eyebrow,
  .process .eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .section-heading > p {
    font-size: 12px;
    margin-top: 22px;
  }
  .collection-tabs {
    margin-bottom: 22px;
  }
  .collection-tabs button,
  .collection-tabs button:first-child {
    font-size: 8px;
    gap: 6px;
    padding: 17px 5px;
  }
  .collection-tabs span {
    font-size: 12px;
    white-space: nowrap;
  }
  .collection-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .collection-photo {
    height: 300px;
  }
  .collection-copy h3 {
    font-size: 27px;
    margin: 12px 0 17px;
  }
  .collection-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 12px;
  }
  .collection-copy dl {
    font-size: 11px;
    margin-top: 23px;
  }
  .difference-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
    margin-top: 40px;
  }
  .difference-grid article,
  .difference-grid article:first-child {
    padding: 0 15px;
  }
  .difference-grid article:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .feature-symbol {
    font-size: 40px;
    height: 50px;
  }
  .difference-grid h3 {
    font-size: 22px;
    margin-bottom: 13px;
  }
  .difference-grid article > p {
    font-size: 8px;
    margin: 12px 0;
  }
  .difference-grid article > span:last-child {
    font-size: 11px;
  }
  .space-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .space-card:nth-child(2),
  .space-card:nth-child(3) {
    margin: 0;
  }
  .space-card > div {
    height: 360px;
  }
  .space-card > p {
    margin-top: 18px;
  }
  .space-card h3 {
    font-size: 22px;
  }
  .space-card > span {
    font-size: 11px;
  }
  .image-note {
    line-height: 1.8;
    font-size: 9px;
  }
  .process-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .process-steps article {
    gap: 15px;
    padding: 25px 0;
  }
  .process-steps h3 {
    font-size: 18px;
  }
  .process-steps article p:last-child {
    font-size: 11px;
  }
  .process-steps b {
    font-size: 18px;
  }
  .contact {
    padding: 70px 7%;
  }
  .contact h2 {
    font-size: 32px;
    line-height: 1.5;
  }
  .contact .eyebrow {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
  .contact p:not(.eyebrow) {
    font-size: 12px;
  }
  .contact-cta {
    font-size: 12px;
    padding: 15px 22px;
    gap: 40px;
  }
  .journal {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .journal h2 {
    font-size: 26px;
  }
  .journal-list summary {
    font-size: 12px;
    gap: 10px;
    padding: 22px 0;
  }
  .journal-list summary span {
    min-width: 55px;
    font-size: 6px;
    letter-spacing: 0.3px;
  }
  .journal-list details > p {
    padding: 0 0 22px 65px;
    font-size: 12px;
  }
  .footer {
    padding: 40px 7% 85px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 30px;
  }
  .footer-top p {
    width: 100%;
    order: 3;
    font-size: 10px;
  }
  .footer-top > a:last-child {
    font-size: 8px;
  }
  .footer-bottom {
    display: block;
    font-size: 9px;
  }
  .footer-bottom a {
    display: inline-block;
    margin-top: 18px;
  }
  dialog {
    padding: 35px 24px;
    max-height: 85svh;
  }
  dialog h2 {
    font-size: 24px;
    margin-top: 17px;
  }
  .dialog-note {
    font-size: 10px;
  }
  #story-image {
    height: 245px;
  }
  .story-body {
    padding: 25px;
  }
  .story-body > p:not(.eyebrow) {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .header {
    padding: 0 15px;
  }
  .header-contact {
    padding: 9px 11px;
    margin-right: 12px;
  }
  .logo {
    font-size: 23px;
  }
  .hero {
    min-height: 630px;
  }
  .brand-signature {
    gap: 9px;
    font-size: 22px;
  }
  .brand-signature .window-mark {
    display: none;
  }
  .about h2 {
    font-size: 24px;
  }
  .collection-tabs span {
    font-size: 10px;
  }
  .collection-tabs button {
    gap: 4px;
  }
  .space-card > div {
    height: 300px;
  }
  .journal-list summary span {
    display: none;
  }
  .journal-list details > p {
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal.pending {
    opacity: 1;
    transform: none;
  }
}
