:root {
  --ink: #403f3c;
  --muted: #79756f;
  --line: #ddd7cf;
  --paper: #ffffff;
  --soft: #e9e2da;
  --wash: #f7f6f2;
  --mist: #eef1ee;
  --sage: #6f7c6f;
  --clay: #a96f55;
  --clay-dark: #705845;
  --accent: #BA9B5E;
  --slate: #38413d;
  --shadow: 0 22px 60px rgb(50 44 38 / 0.13);
  --soft-shadow: 0 12px 36px rgb(56 65 61 / 0.08);
  --font-body: "Oswald", "Segoe UI", "Aptos", system-ui, -apple-system, sans-serif;
  --font-heading: "Oswald", "Segoe UI", "Aptos", system-ui, -apple-system, sans-serif;
  color-scheme: light;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
}

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

button,
input,
textarea,
select {
  font-family: var(--font-body);
}

:focus-visible {
  outline: 3px solid rgb(111 124 111 / 0.34);
  outline-offset: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(24px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgb(56 65 61 / 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #4d4a46;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: min(210px, 42vw);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 30px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px 18px 18px 2px;
  background: var(--accent);
  box-shadow: inset -7px 0 0 rgb(255 255 255 / 0.55);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #66625d;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 27px 0;
}

.main-nav a:hover {
  color: var(--clay-dark);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions button {
  width: 34px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-icon:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.header-actions button::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #68635d;
  font-size: 18px;
}

.header-actions button:nth-child(1)::before {
  content: "⌕";
}

.header-actions button:nth-child(2)::before {
  content: "♡";
}

.header-actions button:nth-child(3)::before {
  content: "⌑";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 740px;
  background: var(--soft);
}

.hero-slider {
  position: relative;
  display: block;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  min-height: 740px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 740px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px clamp(42px, 6vw, 82px) 92px clamp(42px, 11vw, 198px);
}

.section-kicker {
  display: none;
}

.hero h1 {
  max-width: 440px;
  margin: 0;
  color: #4f4d49;
  font-family: var(--font-heading);
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p:not(.section-kicker) {
  max-width: 470px;
  margin: 28px 0 24px;
  color: #67625d;
  font-size: 19px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  color: var(--slate);
  font-weight: 700;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-outline {
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgb(186 155 94 / 0.2);
}

.slider-dots {
  position: absolute;
  left: clamp(42px, 11vw, 198px);
  bottom: 58px;
  display: flex;
  z-index: 5;
  gap: 18px;
  align-items: center;
}

.slider-dots span,
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: #1f2421;
  box-shadow: 0 5px 13px rgb(31 36 33 / 0.32);
  cursor: pointer;
}

.slider-dots .is-active,
.slider-dots button.is-active {
  width: 18px;
  height: 18px;
  border: 4px solid #f7f3ed;
  background: #151a17;
  box-shadow: 0 8px 20px rgb(31 36 33 / 0.34), 0 0 0 1px rgb(31 36 33 / 0.18);
}

.hero-media {
  margin: 0;
  min-height: 100%;
}

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

.experience-grid,
.products,
.benefits,
.footer-grid,
.footer-bottom {
  width: min(100% - 48px, 1460px);
  margin-inline: auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px 42px;
  padding: 84px 0 48px;
}

.experience-card {
  position: relative;
  height: 280px;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd5ce;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.experience-card.tall {
  grid-row: span 2;
  height: 594px;
  min-height: 594px;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 700ms ease;
  will-change: transform;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(20 24 22 / 0.38);
}

.experience-card:hover img {
  transform: scale(1.035);
}

.experience-copy {
  position: absolute;
  z-index: 1;
  left: 48px;
  right: 40px;
  bottom: 38px;
  color: #fff;
}

.experience-copy h3 {
  max-width: 620px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.experience-copy p {
  max-width: 620px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.4;
}

.experience-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.experience-copy a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.products {
  padding: 28px 0 88px;
}

.locations {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 46px 0 104px;
}

.locations-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.locations-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.locations-heading h2 {
  max-width: 620px;
  margin: 0;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1.1;
}

.locations-heading p:not(.section-kicker) {
  max-width: 470px;
  margin: 0;
  color: #746f69;
  font-size: 19px;
  line-height: 1.55;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.locations-grid article {
  position: relative;
  min-height: 300px;
  padding: 34px 28px 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.locations-grid article:hover {
  background: rgb(238 241 238 / 0.72);
  transform: translateY(-2px);
}

.locations-grid article:last-child {
  border-right: 0;
}

.locations-grid article > span {
  display: block;
  margin-bottom: 54px;
  color: #8a9788;
  font-family: var(--font-heading);
  font-size: 28px;
}

.locations-grid a span {
  display: inline;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

.locations-grid h3 {
  margin: 0 0 14px;
  color: #5a5550;
  font-size: 18px;
}

.locations-grid p {
  min-height: 90px;
  margin: 0 0 24px;
  color: #817b75;
  font-size: 15px;
  line-height: 1.55;
}

.locations-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.locations-grid a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.button.button-outline,
.contact-method-card .button-outline,
.footer-grid a.footer-cta,
.footer-contact-panel a.footer-panel-link {
  color: var(--accent);
}

.button.button-outline:hover,
.contact-method-card .button-outline:hover,
.footer-grid a.footer-cta:hover,
.footer-contact-panel a.footer-panel-link:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto 84px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading h2 {
  text-align: right;
  color: #55524f;
}

.section-heading p {
  color: #98938e;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.product-card {
  position: relative;
  overflow: visible;
  border: 1px solid #ddd6cf;
  border-radius: 8px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgb(56 65 61 / 0.12);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  background: #dea066;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-actions {
  position: absolute;
  left: 50%;
  bottom: -18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.product-actions button {
  min-width: 38px;
  height: 34px;
  padding: 0 11px;
  color: #77716a;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #ded8d1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.14);
  cursor: pointer;
}

.product-actions a {
  display: grid;
  min-width: 38px;
  height: 34px;
  place-items: center;
  padding: 0 11px;
  color: #77716a;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #ded8d1;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.14);
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: end;
  min-height: 118px;
  padding: 42px 24px 22px;
}

.product-info h3 {
  margin: 0 0 10px;
  color: #8a8580;
  font-size: 14px;
  font-weight: 650;
}

.product-info p {
  margin: 0;
  color: #4d4945;
  font-size: 14px;
  font-weight: 700;
}

.swatch {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: inset 0 0 0 2px rgb(255 255 255 / 0.65);
}

.swatch.pale {
  background: #d6cab8;
}

.swatch.dark {
  background: #24211f;
}

.page-intro {
  width: min(100% - 48px, 1460px);
  margin: 0 auto;
  padding: 118px 40px 92px;
}

.page-intro h1 {
  max-width: 920px;
  margin: 0 0 28px;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.page-intro p {
  margin: 0;
  color: #74706c;
  font-size: 21px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  height: 740px;
  min-height: 740px;
  background: var(--soft);
  overflow: hidden;
}

.subpage-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 86px 70px 86px clamp(42px, 11vw, 198px);
}

.subpage-hero h1 {
  max-width: 620px;
  margin: 0;
  color: #4f4d49;
  font-family: var(--font-heading);
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.subpage-hero p:not(.section-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #6b6661;
  font-size: 20px;
  line-height: 1.55;
}

.subpage-hero figure {
  margin: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

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

.experience-list {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 98px 0 24px;
}

.experience-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: clamp(38px, 5vw, 68px);
  align-items: start;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.experience-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.experience-detail h2,
.narrative-band h2,
.video-recorrido h2 {
  max-width: 620px;
  margin: 0 0 22px;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.12;
}

.experience-detail p,
.narrative-band p,
.video-recorrido p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #69645f;
  font-size: 19px;
  line-height: 1.62;
}

.experience-detail aside {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.experience-detail strong {
  display: block;
  margin-bottom: 24px;
  color: var(--slate);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.18;
}

.experience-detail ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.experience-detail li {
  position: relative;
  padding-left: 22px;
  color: #77716c;
  font-size: 15px;
  line-height: 1.5;
}

.experience-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.narrative-band,
.video-recorrido {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 76px;
  width: min(100% - 48px, 1240px);
  margin: 0 auto 92px;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-recorrido {
  align-items: stretch;
  border-top: 0;
}

.video-frame {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 40px;
  color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ebe6df url("../unsplash/studio-tools-vase.webp") center / cover;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.video-frame span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--slate);
  font-weight: 700;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.78);
  backdrop-filter: blur(12px);
}

.about-board {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr 1fr;
  grid-template-rows: 340px 430px 250px;
  width: min(100% - 48px, 1460px);
  margin: 0 auto 112px;
  padding: 56px;
  background: #f6eee7;
}

.about-cell {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.about-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clay-cell {
  grid-column: 1 / 3;
  grid-row: 1;
  display: grid;
  place-items: center;
  padding: 50px;
  color: #fff;
  background: #daa369;
  text-align: center;
}

.clay-cell p,
.prayer-cell p,
.story-cell p {
  max-width: 440px;
  margin: 0;
  font-size: 22px;
  line-height: 1.38;
}

.image-cell.wide {
  grid-column: 3 / 5;
  grid-row: 1;
}

.vertical-title {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  place-items: center;
  background: #cec7bb;
}

.vertical-title h2 {
  margin: 0;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: 66px;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.story-cell {
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 48px;
  color: #62605d;
  background: #d8d8d8;
  text-align: center;
}

.story-cell p + p {
  margin-top: 22px;
}

.dog {
  grid-column: 4;
  grid-row: 2;
  background: #b7c7c9;
}

.lower-photo {
  grid-column: 1 / 3;
  grid-row: 3;
}

.prayer-cell {
  grid-column: 3 / 5;
  grid-row: 3;
  display: grid;
  place-items: center;
  padding: 46px;
  color: #fff;
  background: #7771d9;
  text-align: center;
}

.studio-story,
.collection-story,
.featured-product,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  width: min(100% - 48px, 1240px);
  margin: 0 auto 92px;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.studio-story h2,
.collection-story h2,
.featured-product h2,
.contact-layout h2 {
  margin: 0;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.12;
}

.studio-story p,
.collection-story p,
.featured-product p,
.contact-layout p {
  margin: 0 0 22px;
  color: #69645f;
  font-size: 20px;
  line-height: 1.62;
}

.contact-layout {
  align-items: start;
  grid-template-columns: minmax(0, 528px) minmax(0, 644px);
  justify-content: center;
  margin-top: 64px;
  padding: 62px 0 92px;
}

.contact-copy {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 34px;
  text-align: center;
}

.contact-copy > h2,
.contact-form-card > h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(34px, 2.8vw, 44px);
  line-height: 1.06;
  text-align: center;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: -12px auto 0;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.contact-form-card > p:not(.section-kicker) {
  max-width: 560px;
  margin: 18px auto 30px;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.contact-methods {
  display: grid;
  width: min(100%, 528px);
  gap: 18px;
}

.contact-method-card,
.contact-form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 58px rgb(44 39 34 / 0.06);
}

.contact-method-card {
  min-width: 0;
  width: 100%;
  padding: 52px 30px 30px;
  text-align: left;
}

.contact-form-card {
  position: sticky;
  top: 104px;
  width: min(100%, 644px);
  padding: 58px 30px 30px;
}

.contact-method-card span {
  display: none;
}

.contact-method-card h3 {
  margin: 0 0 10px;
  color: var(--slate);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-method-card p:last-child,
.contact-form-card p:last-child {
  margin-bottom: 0;
}

.contact-form-shell {
  margin-top: 0;
}

.contact-form-shell .wpcf7 {
  width: 100%;
}

.contact-form-shell .wpcf7 form {
  display: grid;
  gap: 16px;
}

.contact-form-shell .wpcf7 p {
  margin: 0;
}

.contact-form-shell .wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.contact-form-shell .wpcf7 label br {
  display: none;
}

.contact-form-shell .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-shell .wpcf7 input:not([type="submit"]),
.contact-form-shell .wpcf7 textarea,
.contact-form-shell .wpcf7 select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px;
  border: 1px solid #d8d2cb;
  border-radius: 6px;
  background: rgb(255 255 255 / 0.88);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form-shell .wpcf7 input::placeholder,
.contact-form-shell .wpcf7 textarea::placeholder {
  color: #8d8882;
}

.contact-form-shell .wpcf7 textarea {
  min-height: 206px;
  resize: vertical;
}

.contact-form-shell .wpcf7 input:focus,
.contact-form-shell .wpcf7 textarea:focus,
.contact-form-shell .wpcf7 select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgb(186 155 94 / 0.16);
}

.contact-form-shell .wpcf7-submit {
  display: inline-block;
  justify-self: center;
  min-height: 48px;
  min-width: 164px;
  margin-top: 0;
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form-shell .wpcf7-submit:hover {
  background: var(--accent);
  box-shadow: 0 14px 34px rgb(186 155 94 / 0.24);
  transform: translateY(-1px);
}

.contact-form-shell .wpcf7-spinner {
  margin: 12px 0 0;
}

.contact-form-shell .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 6px;
  background: #fff;
}

.contact-form-shell .wpcf7-not-valid-tip {
  color: #b13030;
  font-size: 13px;
  font-weight: 600;
}

.product-hero h1 {
  max-width: 540px;
}

.collection-story {
  align-items: center;
  margin-top: 90px;
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 62px;
}

.shop-heading h2 {
  max-width: 260px;
  margin: 0;
  color: #55524f;
  font-family: var(--font-heading);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.1;
}

.shop-controls {
  display: flex;
  gap: 18px;
}

.shop-controls button {
  height: 48px;
  padding: 0 22px;
  color: #706b65;
  font-weight: 700;
  border: 1px solid #e1dbd5;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-product {
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  margin-top: 24px;
  background: transparent;
}

.featured-product dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.featured-product div:has(> dt) {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.featured-product dt {
  color: #6f705f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-product dd {
  margin: 5px 0 0;
  color: #5f5a55;
  font-size: 17px;
}

.featured-product aside {
  max-width: 280px;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: var(--shadow);
}

.featured-product aside h3 {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-product aside p {
  margin: 0;
  color: rgb(255 255 255 / 0.86);
  font-size: 16px;
  line-height: 1.58;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px;
  padding: 52px 190px 110px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.benefits article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.benefit-icon {
  display: grid;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--slate);
  border: 1px solid #d9d7cf;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.benefit-icon svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits h3 {
  margin: 0 0 8px;
  color: #5a5550;
  font-size: 15px;
  font-weight: 700;
}

.benefits p {
  margin: 0;
  color: #9b958f;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  margin-top: 144px;
  padding: 70px 0 42px;
  background: #f1f2ef;
  border-top: 1px solid #dfe1dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1.05fr 1.45fr;
  gap: 74px;
}

.footer-grid h2 {
  margin: 0 0 24px;
  color: #2f2d2b;
  font-size: 17px;
}

.footer-grid p,
.footer-grid a {
  color: #77716c;
  font-size: 14px;
  line-height: 1.55;
}

.footer-grid section:not(.footer-brand):not(.footer-contact-panel) a {
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 8px 0;
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-cta:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.footer-contact-panel {
  padding: 28px;
  border: 1px solid #e1dbd5;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.footer-contact-panel p {
  max-width: 340px;
  margin: 0 0 22px;
}

.footer-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-panel-link:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 78px;
  padding-top: 34px;
  border-top: 1px solid #e6e2de;
}

.footer-bottom p,
.social-links a {
  margin: 0;
  color: #928c86;
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .main-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 16px;
  }

  .main-nav a {
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-slides,
  .hero-slide {
    min-height: 1120px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
    padding: 72px 48px 112px;
  }

  .slider-dots {
    left: 48px;
    bottom: 618px;
  }

  .hero-media {
    min-height: 560px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card.tall {
    grid-row: auto;
    height: 360px;
    min-height: 360px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-heading,
  .subpage-hero,
  .experience-detail,
  .narrative-band,
  .video-recorrido {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locations-grid article:nth-child(2) {
    border-right: 0;
  }

  .locations-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .subpage-hero {
    height: 1120px;
    min-height: 1120px;
  }

  .subpage-hero > div {
    min-height: 560px;
    padding: 72px 48px 112px;
  }

  .subpage-hero figure {
    min-height: 560px;
    height: 560px;
  }

  .contact-form-card {
    position: static;
  }

  .about-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .studio-story,
  .collection-story,
  .featured-product,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    justify-items: center;
    gap: 42px;
  }

  .contact-copy,
  .contact-form-card {
    width: min(100%, 644px);
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits {
    padding-inline: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    padding: 18px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 11px;
    overflow-x: auto;
    padding: 4px 0 0;
    font-size: 12.5px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-copy {
    min-height: 500px;
    padding: 62px 24px 98px;
  }

  .hero-slides,
  .hero-slide {
    min-height: 880px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 52px);
  }

  .hero p:not(.section-kicker) {
    font-size: 17px;
  }

  .slider-dots {
    left: 24px;
    bottom: 420px;
  }

  .hero-media {
    min-height: 380px;
  }

  .experience-grid,
  .products,
  .benefits,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1460px);
  }

  .experience-grid {
    gap: 22px;
    padding-top: 48px;
  }

  .locations {
    width: min(100% - 32px, 1320px);
    padding: 48px 0 62px;
  }

  .locations-heading {
    gap: 16px;
  }

  .locations-heading .section-kicker {
    margin-bottom: 0;
  }

  .locations-heading h2 {
    font-size: 42px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid article,
  .locations-grid article:nth-child(2) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .locations-grid article:last-child {
    border-bottom: 0;
  }

  .locations-grid span {
    margin-bottom: 20px;
  }

  .locations-grid p {
    min-height: 0;
  }

  .experience-card,
  .experience-card.tall {
    height: 320px;
    min-height: 320px;
  }

  .experience-copy {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .experience-copy h3 {
    font-size: 28px;
  }

  .experience-copy p {
    font-size: 16px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .section-heading p {
    text-align: left;
    font-size: 46px;
  }

  .product-grid,
  .benefits,
  .footer-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding: 62px 8px 44px;
  }

  .page-intro h1 {
    font-size: 50px;
  }

  .subpage-hero > div {
    min-height: 500px;
    padding: 62px 24px 98px;
  }

  .subpage-hero {
    height: 880px;
    min-height: 880px;
  }

  .subpage-hero h1 {
    font-size: clamp(42px, 12vw, 48px);
  }

  .subpage-hero p:not(.section-kicker) {
    font-size: 17px;
  }

  .subpage-hero figure {
    min-height: 380px;
    height: 380px;
  }

  .experience-list,
  .narrative-band,
  .video-recorrido {
    width: min(100% - 32px, 1240px);
  }

  .experience-list {
    padding: 46px 0 0;
  }

  .experience-detail {
    gap: 26px;
    padding: 42px 0;
  }

  .experience-detail h2,
  .narrative-band h2,
  .video-recorrido h2 {
    font-size: 38px;
  }

  .experience-detail p,
  .narrative-band p,
  .video-recorrido p {
    font-size: 17px;
  }

  .experience-detail aside {
    padding: 24px;
  }

  .narrative-band,
  .video-recorrido {
    gap: 26px;
    padding: 46px 0;
    margin-bottom: 54px;
  }

  .video-frame {
    min-height: 300px;
  }

  .about-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: min(100% - 32px, 1460px);
    padding: 18px;
    margin-bottom: 56px;
  }

  .clay-cell,
  .image-cell.wide,
  .story-cell,
  .lower-photo,
  .prayer-cell,
  .vertical-title,
  .dog {
    grid-column: auto;
    grid-row: auto;
  }

  .vertical-title h2 {
    writing-mode: initial;
    transform: none;
    font-size: 48px;
  }

  .clay-cell,
  .story-cell,
  .prayer-cell {
    padding: 30px 24px;
  }

  .clay-cell p,
  .prayer-cell p,
  .story-cell p {
    font-size: 18px;
  }

  .studio-story,
  .collection-story,
  .featured-product,
  .contact-layout {
    width: min(100% - 32px, 1240px);
    gap: 28px;
    padding: 46px 0;
  }

  .contact-layout {
    justify-items: stretch;
  }

  .contact-copy,
  .contact-methods,
  .contact-form-card {
    width: calc(100vw - 32px);
    max-width: 100%;
  }

  .featured-product aside {
    max-width: none;
  }

  .studio-story h2,
  .collection-story h2,
  .featured-product h2,
  .contact-layout h2 {
    font-size: 42px;
  }

  .studio-story p,
  .collection-story p,
  .featured-product p,
  .contact-layout p {
    font-size: 17px;
  }

  .contact-method-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-method-card {
    width: auto;
    max-width: 100%;
  }

  .contact-copy {
    justify-items: start;
    gap: 22px;
    text-align: left;
  }

  .contact-copy > h2,
  .contact-form-card > h2 {
    max-width: none;
    margin-inline: 0;
    font-size: 36px;
    line-height: 1.08;
    text-align: left;
  }

  .contact-copy > p,
  .contact-form-card > p {
    max-width: none;
    margin: 0;
    font-size: 17px;
    text-align: left;
  }

  .contact-form-card > p {
    margin-bottom: 24px;
  }

  .contact-method-card h3 {
    font-size: 24px;
  }

  .contact-form-shell {
    margin-top: 0;
  }

  .contact-form-shell .wpcf7 form {
    gap: 20px;
  }

  .contact-form-shell .wpcf7 textarea {
    min-height: 180px;
  }

  .shop-heading {
    align-items: start;
    flex-direction: column;
  }

  .shop-controls {
    width: 100%;
    justify-content: space-between;
  }

  .product-grid {
    gap: 22px;
  }

  .benefits {
    gap: 28px;
    padding: 26px 0 70px;
  }

  .site-footer {
    margin-top: 72px;
  }

  .footer-contact-panel {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
