:root {
  --bg: #f5f3ee;
  --surface: #faf8f3;
  --text: #111317;
  --muted: #666b73;
  --accent: #172230;
  --line: rgba(17, 19, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(245, 243, 238, 0.94);
  border-bottom: 1px solid var(--line);
}

.site-bar,
.page-shell,
.site-footer__inner {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.site-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand,
.footer-brand {
  display: grid;
  gap: 2px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__title,
.footer-brand__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand__logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  width: auto;
  height: 38px;
}

.brand__name {
  display: inline-block;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle__icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.menu-toggle__icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}

.site-header.nav-open .menu-toggle__icon {
  border-color: transparent;
}

.site-header.nav-open .menu-toggle__icon::before,
.site-header.nav-open .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid currentColor;
}

.site-header.nav-open .menu-toggle__icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.site-header.nav-open .menu-toggle__icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.footer-label {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.site-nav a,
.footer-nav a,
.inline-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 19, 23, 0.82);
  padding-bottom: 0.08rem;
}

.site-nav a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.18rem;
}

.site-nav a::after,
.footer-nav a::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.site-nav a::after {
  bottom: 0;
}

.footer-nav a {
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.18rem;
}

.footer-nav a::after {
  bottom: 0;
}

.site-nav a:hover::after,
.footer-nav a:hover::after,
.inline-link:hover::after,
.site-nav a[aria-current="page"]::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-shell {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.hero {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-media {
  position: relative;
  min-height: min(74vh, 860px);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #e5e4df;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 23, 0.06), rgba(17, 19, 23, 0.28));
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2400ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.hero-copy > :only-child {
  max-width: 42rem;
}

@media (min-width: 1100px) {
  .hero-copy {
    grid-template-columns: minmax(0, 1.72fr) minmax(220px, 0.48fr);
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 4.6vw, 4.7rem);
    white-space: nowrap;
  }

  .hero-copy .lead {
    max-width: 44rem;
    font-size: clamp(1.12rem, 1.5vw, 1.25rem);
    white-space: nowrap;
  }
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

.lead {
  max-width: 32rem;
  font-size: 1.25rem;
  color: var(--muted);
}

.divider {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.section {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.statement {
  max-width: 48rem;
}

@media (min-width: 1100px) {
  .statement {
    max-width: 56rem;
  }

  .statement h2 {
    font-size: clamp(1.75rem, 2.4vw, 2.55rem);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}

.card,
.panel,
.form-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(250, 248, 243, 0.62);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-switch--mobile {
  display: none;
}

.card-media--home-porcelain .image-switch {
  object-position: center;
}

.card-copy,
.panel,
.form-shell {
  padding: 1.6rem;
}

.card-copy p,
.panel p,
.muted {
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.feature-row + .feature-row {
  margin-top: 1.8rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  border-top: 1px solid var(--line);
  padding-top: 0.95rem;
}

.process-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.inquiry-layout {
  align-items: start;
}

.inquiry-work {
  gap: 0.7rem;
  align-content: start;
}

.inquiry-work .eyebrow {
  margin-bottom: 0.2rem;
}

.inquiry-work .process-step {
  padding-top: 0.7rem;
}

.collection-copy {
  max-width: 44rem;
}

.collection-copy h2 {
  margin-bottom: 0.75rem;
}

.collection-copy p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.68;
}

.about-bio {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.about-bio__media {
  max-width: 30rem;
}

.about-bio__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 14px;
}

.about-bio__copy {
  max-width: 42rem;
}

.about-bio__copy h2 {
  margin-bottom: 1rem;
}

.about-bio__copy p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.68;
}

.about-bio__copy p + p {
  margin-top: 1rem;
}

.feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 14px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.form-shell {
  padding: 1.6rem;
}

.form-status,
.field-error {
  display: none;
  color: var(--muted);
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
  line-height: 1.55;
}

.form-status--error,
.field-error[data-fs-active] {
  color: #7f3a36;
}

[data-fs-success][data-fs-active],
[data-fs-error=""][data-fs-active],
[data-fs-error]:not([data-fs-error=""])[data-fs-active] {
  display: block;
}

.field-error {
  margin-top: 0.35rem;
  font-size: 0.76rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

[data-fs-field][aria-invalid="true"] {
  border-bottom-color: #7f3a36;
}

.minimal-form {
  display: grid;
  gap: 1.2rem;
}

.minimal-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.minimal-form input,
.minimal-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 23, 0.22);
  border-radius: 0;
  background: transparent;
  padding: 0.8rem 0 0.7rem;
  color: var(--text);
  font: inherit;
}

.minimal-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-submit {
  width: fit-content;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.42;
  cursor: wait;
}

.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.2rem, 2vw, 2rem);
  padding: clamp(2rem, 4vw, 2.5rem) 0;
}

.footer-brand {
  gap: 0.18rem;
}

.footer-copy,
.footer-note {
  color: var(--muted);
}

.footer-copy {
  margin: 0.28rem 0 0;
}

.page-title {
  display: grid;
  gap: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    transition: none;
  }
}

@media (max-width: 900px) {
  .image-switch--desktop {
    display: none;
  }

  .image-switch--mobile {
    display: block;
  }

  .card-media--home-porcelain .image-switch {
    object-position: center;
  }

  .site-bar {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.9rem;
    padding: 16px 0;
  }

  .brand {
    flex: 1 1 calc(100% - 3.5rem);
    min-width: 0;
    gap: 10px;
  }

  .brand__title {
    font-size: clamp(1.2rem, 4vw, 1.45rem);
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0;
    align-self: center;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    width: fit-content;
    padding: 0.35rem 0 0.22rem;
  }

  .page-shell {
    padding: clamp(3.75rem, 8vw, 5rem) 0;
  }

  .section {
    padding-top: clamp(3rem, 7vw, 4.6rem);
  }

  .lead {
    max-width: 28rem;
    font-size: 1.1rem;
  }

  .feature-row {
    gap: 1.35rem;
  }

  .hero-copy,
  .grid-3,
  .grid-2,
  .feature-row,
  .site-footer__inner,
  .about-bio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 781px) {
  .site-header {
    position: relative;
  }

  .site-bar,
  .page-shell,
  .site-footer__inner {
    width: min(1360px, calc(100% - 32px));
  }

  .site-bar {
    row-gap: 0.8rem;
  }

  .brand__logo {
    height: 34px;
  }

  .brand__name {
    white-space: normal;
    line-height: 1.05;
  }

  .menu-toggle {
    width: 1.5rem;
    height: 1.5rem;
  }

  .site-nav,
  .footer-nav {
    gap: 14px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-nav a {
    padding-bottom: 0.18rem;
  }

  .hero-media {
    min-height: 58vh;
    border-radius: 14px;
  }

  .card-media {
    aspect-ratio: 5 / 4;
  }

  .feature-media {
    aspect-ratio: 4 / 3;
  }

  .page-title {
    gap: 0.65rem;
  }

  .footer-brand__title,
  .footer-label,
  .footer-copy {
    max-width: 18rem;
  }

  .card,
  .panel,
  .form-shell {
    border-radius: 10px;
  }
}
