@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-normal-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/jost-normal-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f2e9e4;
  --white: #fdfbf9;
  --ink: #3b2c28;
  --muted: #6b564f;
  --green: #5e6853;
  --rose: #8a7268;
  --line: #e0d3cc;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ink);
}

a:hover {
  color: var(--green);
}

::selection {
  background: var(--rose);
  color: var(--white);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.hero {
  min-height: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: clamp(52px, 6vw, 72px) 24px clamp(18px, 2vw, 24px);
  position: relative;
  animation: fade-up 1.2s ease both;
}

.hero h1 {
  margin: 22px 0 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 5.2vw, 48px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero__catalog-title {
  margin: clamp(26px, 3vw, 36px) auto 0;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.3;
  text-wrap: balance;
}

.hero__category-select {
  width: min(100%, 360px);
  margin: clamp(16px, 2vw, 22px) auto 0;
  position: relative;
}

.hero__category-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.hero__category-select select {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(59, 44, 40, 0.45);
  border-radius: 2px;
  padding: 14px 52px 14px 20px;
  background: rgba(253, 251, 249, 0.42);
  color: var(--ink);
  cursor: pointer;
  font: 500 13px/1.4 "Jost", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__category-select select:hover {
  border-color: var(--ink);
}

.hero__category-select select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.hero__kicker {
  max-width: 760px;
  margin-top: clamp(16px, 2vw, 22px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: balance;
}

.story-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 48px);
}

.story-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(44px, 6vw, 88px);
  align-items: flex-start;
}

.founder__photo {
  flex: 1 1 300px;
  max-width: 420px;
  margin: 13px auto 0;
  position: static;
  top: 60px;
}

.founder__photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: #e4d6cf;
  box-shadow: 0 0 0 1px var(--line), 0 0 0 12px var(--white),
    0 0 0 13px var(--line), 0 18px 40px rgba(59, 44, 40, 0.1);
}

.founder__photo img,
.house__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-copy {
  flex: 1.35 1 340px;
}

.story-section h2,
.visit h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
}

.section-kicker {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.section-kicker--green {
  color: var(--green);
  opacity: 1;
}

.founder__card,
.house__card {
  margin-top: 34px;
  padding: clamp(28px, 4vw, 46px);
  font-size: clamp(16px, 1.3vw, 17px);
  font-weight: 400;
  line-height: 1.8;
  text-wrap: pretty;
}

.founder__card {
  background: var(--white);
  color: var(--ink);
}

.founder__card p,
.house__card p {
  margin: 18px 0 0;
}

.founder__card .story-lead + p,
.house__card .story-lead + p {
  margin-top: 22px;
}

.founder__card .story-lead,
.house__card .story-lead {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
}

.story-closing {
  margin-top: 26px !important;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.45;
}

.story-welcome {
  margin-top: 20px !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.house {
  background: var(--rose);
  color: var(--white);
}

.house__copy {
  flex: 1.2 1 340px;
}

.house h2,
.house .story-lead,
.house .story-closing {
  color: #fff;
}

.house__card {
  border: 1px solid rgba(253, 251, 249, 0.35);
}

.house__photo {
  flex: 1 1 320px;
  position: sticky;
  top: 48px;
  align-self: flex-start;
}

.house__photo > div {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: #7a655c;
}

.manifest {
  padding: clamp(72px, 9vw, 112px) 24px;
  text-align: center;
}

.manifest p {
  max-width: 820px;
  margin: 34px auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.45;
  text-wrap: balance;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ornament span {
  display: block;
  width: 64px;
  height: 1px;
  background: rgba(59, 44, 40, 0.35);
}

.catalog {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 48px) clamp(96px, 11vw, 150px);
  border-block: 1px solid var(--line);
}

.catalog__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.catalog__heading {
  text-align: center;
}

.catalog__heading > p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.product-grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 64px 44px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(59, 44, 40, 0.06);
  animation: fade-up 0.7s ease both;
}

.product-card:nth-child(3n + 2) {
  animation-delay: 0.08s;
}

.product-card:nth-child(3n) {
  animation-delay: 0.16s;
}

.product-card.is-restarting-animation {
  animation-name: none;
}

.product-card[hidden] {
  display: none;
}

.product-card__image {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__content {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.product-card h3 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
}

.product-card__price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Cormorant Garamond", serif;
}

.product-card__price span {
  font-size: 15px;
  color: var(--muted);
}

.product-card__price strong {
  font-weight: 500;
  font-size: 27px;
  line-height: 1;
  color: var(--ink);
}

.product-card__content > p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
  text-wrap: pretty;
}

.product-card__content > a,
.catalog-empty > a,
.visit__copy > a {
  margin-top: 26px;
  align-self: flex-start;
  padding: 15px 28px;
  border: 2px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease;
}

.product-card__content > a:hover,
.catalog-empty > a:hover {
  background: transparent;
  color: var(--ink);
}

.catalog-empty {
  text-align: center;
  padding: 24px 24px 0;
}

.catalog-empty > p {
  max-width: 560px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  text-wrap: balance;
}

.catalog-empty > div {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.catalog-empty > a {
  display: inline-block;
  margin-top: 30px;
}

.visit {
  background: var(--rose);
  color: var(--white);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 48px);
}

.visit__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.visit__copy {
  flex: 1 1 320px;
}

.visit h2 {
  color: #fff;
}

.visit__address {
  margin-top: 34px;
  font-size: 16.5px;
  line-height: 1.7;
}

.visit__hours {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.9;
}

.visit__copy > a {
  display: inline-block;
  margin-top: 38px;
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.visit__copy > a:hover {
  background: transparent;
  color: var(--white);
}

.visit__map {
  flex: 1.2 1 360px;
}

.visit__map > div {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #7a655c;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) sepia(0.22) brightness(1.05) contrast(0.9);
}

.footer {
  padding: clamp(64px, 8vw, 100px) 24px;
  text-align: center;
}

.footer__brand {
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer__instagram {
  margin-top: 22px;
}

.footer__instagram a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--green);
}

.footer__location {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.reveal {
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(26px);
}

@media (min-width: 860px) {
  .founder__photo {
    position: sticky;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
