/* New England Timber Frames Styles */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  size-adjust: 100%;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 600 700;
  font-display: optional;
  size-adjust: 100%;
}

:root {
  --bg: #f3ede2;
  --bg-soft: #eadfce;
  --surface: #fffaf1;
  --surface-elevated: #f7ead7;
  --surface-muted: #d8e0d0;
  --text: #17201e;
  --text-muted: #4a504c;
  --text-subtle: #81786c;
  --ink: #111817;
  --ink-muted: #e2dcd0;
  --sage: #becbb5;
  --sage-deep: #465f54;
  --clay: #ad6247;
  --ochre: #c08a3e;
  --accent: #ad6247;
  --accent-strong: #7d3f2f;
  --accent-muted: rgba(173, 98, 71, .14);
  --border: rgba(23, 32, 30, .13);
  --border-strong: rgba(23, 32, 30, .24);
  --shadow: 0 24px 70px rgba(47, 38, 25, .14);
  --radius: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
}

body {
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(190, 203, 181, .55), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(192, 138, 62, .18), transparent 26rem),
    linear-gradient(180deg, var(--bg) 0%, #f8f1e7 42%, var(--bg) 100%);
  min-height: 100vh;
}

body#home {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 24, 23, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 23, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 70%);
}

h1,
h2,
h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.045em;
  color: var(--text);
}

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

h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

p {
  color: var(--text-muted);
}

a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: var(--surface-muted);
}

::selection {
  background: rgba(173, 98, 71, .22);
  color: var(--text);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111817;
  border-bottom: 1px solid rgba(255, 250, 241, .12);
  box-shadow: 0 14px 34px rgba(17, 24, 23, .18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  height: 78px;
}

.header-logo {
  flex-shrink: 0;
  line-height: 0;
}

.header-logo a {
  display: block;
  color: transparent;
  transition: none;
  -webkit-tap-highlight-color: transparent;
}

.header-logo a:hover,
.header-logo a:focus,
.header-logo a:focus-visible,
.header-logo a:active {
  color: transparent;
}

.header-logo img {
  height: 54px;
  width: auto;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.header-nav .nav-item {
  display: flex;
  align-items: center;
}

.header-nav .nav-item > a,
.header-nav .folder-toggle,
.cart-link,
.inquiry-link {
  color: var(--ink-muted);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: none;
}

.header-nav .nav-item > a,
.header-actions .inquiry-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  line-height: 1.2;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
}

.header-nav .nav-item > a.active {
  color: var(--surface);
  background: rgba(255, 250, 241, .1);
  border-color: rgba(255, 250, 241, .16);
}

@media (hover: hover) {
  .header-nav .nav-item > a:hover,
  .header-nav .folder-toggle:hover,
  .cart-link:hover,
  .inquiry-link:hover {
    color: var(--surface);
  }
}

.nav-item--folder {
  position: relative;
}

.header-nav .folder-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 9px 14px;
  line-height: 1.2;
  white-space: nowrap;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
}

.header-nav .folder-toggle .arrow {
  flex-shrink: 0;
  font-size: 0.55em;
  line-height: 1;
  color: var(--accent);
}

.folder-content {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 20rem;
  background: rgba(255, 250, 241, .98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
}

.nav-item--folder.open .folder-content {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.header-nav .folder-content a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  padding: 0 1rem;
  margin: 0;
  box-sizing: border-box;
  color: var(--text-muted);
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.3;
  text-transform: none;
  border: 1px solid transparent;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.header-nav .folder-content a:hover {
  background: rgba(190, 203, 181, .38);
  border-color: rgba(173, 98, 71, .1);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--surface);
}

.mobile-nav {
  display: none;
  position: static;
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 241, .12);
  box-shadow: 0 28px 70px rgba(17, 24, 23, .24);
  padding: 0 4vw 22px;
}

.mobile-nav.open {
  display: none;
}

.mobile-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-nav .nav-item {
  width: 100%;
}

.mobile-nav .nav-item > a,
.mobile-nav .folder-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  margin: 0;
  font: inherit;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
  text-align: left;
}

.mobile-nav .nav-item > a.active,
.mobile-nav .nav-item > a:hover,
.mobile-nav .folder-toggle:hover,
.mobile-nav .nav-item--folder.open .folder-toggle {
  color: var(--surface);
}

.mobile-nav .folder-toggle .arrow {
  margin-left: .35rem;
  font-size: .55rem;
  color: inherit;
}

.mobile-nav .folder-content {
  position: static;
  width: 100%;
  box-shadow: none;
  border: 0;
  display: none;
  padding: 0 0 .5rem;
  gap: 0;
  background: transparent;
}

.mobile-nav .folder-content a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  padding: 0 0 0 1rem;
  box-sizing: border-box;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 0;
  border-radius: 0;
}

.mobile-nav .folder-content a:hover {
  color: var(--surface);
  background: transparent;
}

.mobile-nav .nav-item--folder.open .folder-content {
  display: flex;
  flex-direction: column;
}

/* Sections */
.section {
  padding: 90px 0;
}

.section-hero {
  padding: 76px 0 92px;
}

/* Full-width homepage hero */
.hero-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(28rem, 92vh, 52rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fffaf1;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(17, 24, 23, .82) 0%, rgba(17, 24, 23, .52) 42%, rgba(17, 24, 23, .28) 100%),
    linear-gradient(to top, rgba(17, 24, 23, .9) 0%, transparent 52%);
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  padding: clamp(7rem, 14vh, 11rem) 4vw clamp(3rem, 8vh, 5.5rem);
}

.hero-banner__eyebrow {
  margin-bottom: 1rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 250, 241, .9);
}

.hero-banner__content h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 6.8vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #fffaf1;
}

.hero-banner__lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 250, 241, .94);
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.section-intro {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.section-intro__inner {
  max-width: 52rem;
}

.section-intro__inner p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Homepage */
body#home .section-intro .container {
  max-width: 72rem;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: 0;
  list-style: none;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.intro-highlight {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
}

.intro-highlight strong {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
}

.intro-highlight span {
  font-size: .92rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.section-intro__text {
  max-width: 48rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

body#home .home-section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: var(--bg);
}

body#home .home-section--muted {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head__eyebrow {
  margin-bottom: .75rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-head h1,
.section-head h2 {
  margin-bottom: .85rem;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  letter-spacing: -.04em;
}

.section-head__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: .92rem;
  color: var(--text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: .5rem;
  color: var(--border);
}

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

.breadcrumb a:hover {
  color: var(--accent);
}

.shop-tagline {
  margin: 4rem auto 0;
  text-align: center;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--accent);
}

body#home .home-frame-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

body#home .product-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(17, 24, 23, .06);
}

body#home .product-card img {
  aspect-ratio: 5/4;
}

body#home .product-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

body#home .product-card-body h3 {
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

body#home .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

body#home .product-card:hover .card-link {
  color: var(--accent-strong);
}

.section-foot {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

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

a.pillar-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a.pillar-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(17, 24, 23, .08);
}

.pillar-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

a.pillar-card:hover .pillar-card__media img {
  transform: scale(1.04);
}

.pillar-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.pillar-card h3 {
  margin-bottom: .65rem;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}

.pillar-card p {
  flex: 1;
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.pillar-card .card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

a.pillar-card:hover .card-link {
  color: var(--accent-strong);
}

.home-cta {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--ink);
  color: #fffaf1;
}

.home-cta__inner {
  max-width: 40rem;
  text-align: center;
  margin: 0 auto;
}

.home-cta__eyebrow {
  margin-bottom: .75rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 250, 241, .88);
}

.home-cta h2.home-cta__title {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fffaf1;
}

.home-cta p {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 250, 241, .92);
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

.section-dark,
.section-light {
  background: linear-gradient(135deg, rgba(216, 224, 208, .68), rgba(247, 234, 215, .72));
  border-block: 1px solid var(--border);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--text);
}

.hero-content {
  max-width: 860px;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-content p {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* Two Column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.text-col h2 {
  margin-bottom: 24px;
}

.text-col p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.image-col img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(47, 38, 25, .18);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: linear-gradient(180deg, var(--surface), #f2eadf);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(47, 38, 25, .12);
  transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.product-card a {
  color: inherit;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.product-card-body {
  padding: 22px;
}

.product-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -.025em;
}

.price {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--accent-strong);
  margin-bottom: 10px;
}

.description {
  color: var(--text-muted);
  font-size: .95rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 3px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.btn-primary {
  background: var(--accent-strong);
  color: #fffaf1;
  border-color: var(--accent-strong);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fffaf1;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: rgba(70, 95, 84, .1);
  color: var(--text);
}

.btn-white {
  background: var(--text);
  color: #fffaf1;
  border-color: var(--text);
}

.btn-white:hover {
  background: transparent;
  color: #fffaf1;
}

.btn-outline-white {
  background: transparent;
  color: #fffaf1;
  border-color: rgba(255, 250, 241, .4);
}

.btn-outline-white:hover {
  background: var(--text);
  color: #fffaf1;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 250, 241, .72);
  border-radius: var(--radius);
}

.feature-card .feature-icon {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 2.5rem;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
}

/* Steps */
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.step-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fffaf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h3 {
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.portfolio-item:focus-visible {
  outline: 3px solid rgba(173, 98, 71, .42);
  outline-offset: 4px;
}

.portfolio-item:hover {
  transform: translateY(-2px);
  border-color: rgba(173, 98, 71, .38);
  box-shadow: 0 18px 45px rgba(58, 42, 33, .16);
}

.portfolio-item::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(36, 27, 22, .76);
  color: #fffaf1;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.portfolio-item:hover::after,
.portfolio-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.035);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  color: #fffaf1;
}

.portfolio-overlay h3 {
  color: #fffaf1;
  margin-bottom: 4px;
}

.has-portfolio-lightbox {
  overflow: hidden;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.portfolio-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(18, 14, 12, .86);
  cursor: zoom-out;
}

.portfolio-lightbox__frame {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: 92vh;
}

.portfolio-lightbox__figure {
  display: grid;
  gap: 12px;
  margin: 0;
}

.portfolio-lightbox__figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.portfolio-lightbox__figure figcaption {
  color: #fffaf1;
  text-align: center;
}

.portfolio-lightbox__close,
.portfolio-lightbox__nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 250, 241, .22);
  border-radius: 999px;
  background: rgba(36, 27, 22, .78);
  color: #fffaf1;
  cursor: pointer;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.portfolio-lightbox__close:hover,
.portfolio-lightbox__nav:hover,
.portfolio-lightbox__close:focus-visible,
.portfolio-lightbox__nav:focus-visible {
  background: rgba(173, 98, 71, .92);
  outline: 0;
  transform: translateY(-1px);
}

.portfolio-lightbox__close {
  top: -18px;
  right: 0;
  padding: 9px 14px;
}

.portfolio-lightbox__nav {
  top: 50%;
  padding: 10px 14px;
  transform: translateY(-50%);
}

.portfolio-lightbox__nav:hover,
.portfolio-lightbox__nav:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.portfolio-lightbox__nav--prev {
  left: 14px;
}

.portfolio-lightbox__nav--next {
  right: 14px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-size: 1rem;
  background: rgba(255, 250, 241, .72);
  color: var(--text);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-color: rgba(173, 98, 71, .68);
  box-shadow: 0 0 0 3px rgba(173, 98, 71, .13);
}

/* Newsletter (footer) */
.footer-col--newsletter {
  min-width: 0;
}

.footer-col--newsletter .footer-newsletter__note {
  font-size: .92rem;
  color: #c9c2b6;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.newsletter-widget {
  max-width: 24rem;
}

.newsletter-form {
  margin: 0;
}

.newsletter-form__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-form__row--email {
  width: 100%;
}

.newsletter-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 241, .28);
  border-radius: 4px;
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-size: .95rem;
  line-height: 1.4;
  background: rgba(255, 250, 241, .1);
  color: #fffaf1;
  transition: border-color .15s ease, background .15s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 250, 241, .45);
}

.newsletter-form input[type="email"]:focus {
  outline: 0;
  border-color: rgba(173, 98, 71, .75);
  background: rgba(255, 250, 241, .12);
}

.newsletter-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .78rem;
  line-height: 1.5;
  color: #b8b0a4;
  cursor: pointer;
}

.newsletter-consent span {
  flex: 1;
}

.newsletter-consent a {
  color: #e8c4b0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-consent a:hover {
  color: #fffaf1;
}

.newsletter-consent input {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: #ad6247;
}

.newsletter-form__submit {
  display: block;
  width: 100%;
  margin: 2px 0 0;
  padding: 14px 20px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #b86f52 0%, #9a563f 100%);
  color: #fffaf1;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .22);
  transition: filter .15s ease, transform .1s ease, opacity .15s ease;
}

.newsletter-form__submit:hover:not(:disabled) {
  filter: brightness(1.08);
}

.newsletter-form__submit:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .22);
}

.newsletter-form__submit:focus-visible {
  outline: 2px solid rgba(232, 196, 176, .85);
  outline-offset: 2px;
}

.newsletter-form__submit:disabled {
  opacity: .65;
  cursor: wait;
}

.newsletter-form.is-loading .newsletter-form__submit {
  opacity: .7;
}

.newsletter-form__status {
  display: none;
  font-size: .88rem;
  margin: .65rem 0 0;
  line-height: 1.45;
}

.newsletter-form__status.is-visible {
  display: block;
}

.newsletter-form__status[hidden]:not(.is-visible) {
  display: none !important;
}

.newsletter-form__status--success {
  color: #b8dcc4;
}

.newsletter-form__status--error {
  color: #e8b5a8;
}

.newsletter-form__success {
  padding: 1rem 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(184, 220, 196, .35);
  background: rgba(184, 220, 196, .1);
}

.newsletter-form__success-title {
  margin: 0 0 .35rem;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #d4eddc;
  letter-spacing: -.02em;
}

.newsletter-form__success-title::before {
  content: "✓ ";
  font-weight: 700;
}

.newsletter-form__success-text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: #c9c2b6;
}

.newsletter-widget.is-subscribed .newsletter-form__fields,
.newsletter-widget.is-subscribed .js-newsletter-note {
  display: none !important;
}

.newsletter-widget.is-subscribed .newsletter-form__success {
  display: block !important;
}

/* Page Header */
.page-header {
  padding: 68px 0 48px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
}

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonial blockquote {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.3rem;
  font-style: italic;
}

.testimonial cite {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--accent-strong);
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fffaf1;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 250, 241, .12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr minmax(240px, 1.35fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 72px;
  width: auto;
  background: transparent;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.footer-col__title {
  color: #fffaf1;
  margin-bottom: 20px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col p {
  color: #ebe6dc;
  font-size: .95rem;
}

.footer-col ul li a:hover {
  color: #fffaf1;
}

.footer-col p {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 250, 241, .12);
  padding-top: 24px;
  text-align: center;
  color: var(--ink-muted);
  font-size: .9rem;
}

.footer-bottom p {
  color: #ebe6dc;
}

/* Accordion */
.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-toggle {
  width: 100%;
  padding: 22px 0;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
  text-align: left;
}

.accordion-toggle .icon {
  color: var(--accent);
  font-size: 1.4rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}

.accordion-item.open .accordion-content {
  max-height: 1000px;
}

.accordion-content-inner {
  padding-bottom: 24px;
  color: var(--text-muted);
}

/* Homepage product listings */
.product-detail {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.product-detail:last-of-type {
  border-bottom: 0;
}

.product-detail-cols {
  align-items: flex-start;
}

/* Product page image gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height, 72px) + 1rem);
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-muted);
  box-shadow: 0 18px 44px rgba(17, 24, 23, .1);
}

.product-gallery__stage picture {
  position: absolute;
  inset: 0;
  display: block;
}

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

.product-gallery__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.product-gallery__image.is-active,
.product-gallery__stage > .product-gallery__image:only-child,
.product-gallery__stage picture:only-child .product-gallery__image {
  opacity: 1;
  pointer-events: auto;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 250, 241, .35);
  border-radius: 999px;
  background: rgba(17, 24, 23, .45);
  color: #fffaf1;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.product-gallery__nav:hover {
  background: rgba(17, 24, 23, .72);
  border-color: rgba(255, 250, 241, .55);
}

.product-gallery__nav--prev {
  left: .75rem;
}

.product-gallery__nav--next {
  right: .75rem;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
  opacity: .72;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.product-gallery__thumb:hover {
  opacity: 1;
}

.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail--reverse .image-col {
  order: 2;
}

.product-detail--reverse .text-col {
  order: 1;
}

.product-excerpt p,
.product-excerpt ul,
.product-inquiry-copy,
.form-help {
  color: var(--text-muted);
}

.product-excerpt p {
  margin-bottom: 12px;
}

.product-excerpt ul {
  margin: 12px 0 12px 24px;
}

.product-excerpt li {
  margin-bottom: 6px;
}

.product-action {
  margin-top: 24px;
}

.product-inquiry-copy {
  max-width: 520px;
  margin-top: 12px;
}

.inquiry-note {
  padding: 16px 20px;
  margin: 24px 0 0;
  background: var(--accent-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.inquiry-field input[readonly] {
  background: rgba(216, 224, 208, .38);
  color: var(--text-muted);
}

.form-help,
.form-status {
  margin-top: 12px;
  font-size: .95rem;
}

.form-status {
  color: var(--sage-deep);
}

.prose-content h1,
.prose-content h2,
.prose-content h3 {
  margin: 1.5em 0 .75em;
}

.prose-content p,
.prose-content li {
  margin-bottom: 1em;
  color: var(--text-muted);
}

.prose-content ul {
  margin: 0 0 1em 24px;
}

.prose-content a:not(.btn) {
  color: var(--accent-strong);
}

.prose-layout {
  max-width: 920px;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(17rem, 44vh, 24rem);
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 23, .15) 0%, rgba(17, 24, 23, .72) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 4vw, 2.75rem);
  color: #fffaf1;
}

.page-hero__eyebrow {
  margin: 0 0 .5rem;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 250, 241, .82);
}

.page-hero__content h1 {
  margin: 0 0 .75rem;
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -.03em;
  color: #fffaf1;
}

.page-hero__lead {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 250, 241, .9);
}

.prose-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.prose-gallery li {
  margin: 0;
}

.prose-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.prose-gallery--duo {
  grid-template-columns: 1fr 1fr;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin: 2.75rem 0;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}

.content-split:first-of-type {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.content-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 24, 23, .1);
}

.content-split__caption {
  margin: .55rem 0 0;
  font-size: .85rem;
  font-style: italic;
  color: var(--text-muted);
}

.content-split__text h3 {
  margin-top: 0;
}

.content-split--flip .content-split__media {
  order: 2;
}

.content-split--flip .content-split__text {
  order: 1;
}

.prose-figure {
  margin: 2.5rem 0;
}

.prose-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(17, 24, 23, .08);
}

.prose-figure figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
}

.prose-cta-band {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.prose-cta-band h2 {
  margin-top: 0;
}

.prose-cta-band .btn {
  margin-top: .5rem;
}

.accordion-toggle--sm {
  font-size: 1rem;
}

.shop-faq {
  max-width: 760px;
  margin: 0 auto 28px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fffaf1 !important;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 0 0 4px 0;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

.cart-state {
  max-width: 900px;
  margin: 0 auto;
}

.cart-empty {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cart-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 46px rgba(47, 38, 25, .12);
}

.cart-item img {
  width: 160px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-item h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

p[style*="color:#4a4a4a"] {
  color: var(--text-muted) !important;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body#home .home-frame-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .mobile-nav.open {
    display: block;
  }

  .header-actions .cart-link,
  .header-actions .inquiry-link {
    display: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-col,
  .product-detail--reverse .image-col,
  .product-detail--reverse .text-col {
    order: unset;
  }

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

  .section {
    padding: 56px 0;
  }

  .section-hero {
    padding: 52px 0 60px;
  }

  .hero-banner {
    min-height: clamp(24rem, 78vh, 36rem);
  }

  .hero-banner__content h1 {
    max-width: none;
  }

  .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-banner__actions .btn {
    width: 100%;
    text-align: center;
  }

  .intro-highlights,
  body#home .home-frame-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .prose-gallery,
  .prose-gallery--duo {
    grid-template-columns: 1fr;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .content-split--flip .content-split__media,
  .content-split--flip .content-split__text {
    order: unset;
  }

  .page-hero__content h1 {
    max-width: none;
  }

  .product-gallery {
    position: static;
  }

  .home-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-cta__actions .btn {
    width: 100%;
  }

  .product-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item img {
    width: 100%;
  }

  .cart-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  :root {
    --page-padding: 20px;
  }

  .container,
  .header-inner {
    padding-inline: var(--page-padding);
  }

  h1 {
    font-size: clamp(2.45rem, 17vw, 3.4rem);
  }

  .portfolio-lightbox__frame {
    padding-bottom: 52px;
  }

  .portfolio-lightbox__close {
    top: -44px;
  }

  .portfolio-lightbox__nav {
    top: auto;
    bottom: 0;
    transform: none;
  }

  .portfolio-lightbox__nav:hover,
  .portfolio-lightbox__nav:focus-visible {
    transform: translateY(-1px);
  }
}
