:root {
  --ivory: #fbf7f0;
  --paper: #fffdf9;
  --cream: #eee5d8;
  --border: #d8ccbc;
  --border-soft: #ded2c3;
  --ink: #221b15;
  --muted: #6f6255;
  --taupe: #8a7b6b;
  --champagne: #c9bba9;
  --shadow: 0 24px 80px rgba(35, 27, 20, 0.07);
  --shadow-strong: 0 36px 110px rgba(35, 27, 20, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e6ddd0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  color: var(--ink);
}

.brand-main {
  display: block;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--taupe);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.mobile-link,
.footer button {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0;
  transition: color .25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link.active,
.footer button:hover {
  color: var(--ink);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.cart-button,
.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.menu-button {
  display: none;
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  font-size: 22px;
}

.cart-count {
  position: absolute;
  right: -8px;
  top: -8px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.mobile-menu,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity .32s ease;
}

.mobile-menu.open,
.cart-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu {
  background: rgba(34, 27, 21, .35);
  backdrop-filter: blur(12px);
}

.mobile-panel {
  margin-left: auto;
  height: 100%;
  width: min(84%, 380px);
  background: var(--ivory);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
}

.mobile-top,
.cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-top button,
.cart-top button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
}

.mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid #e6ddd0;
}

.page {
  animation: pageIn .55s var(--ease);
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  padding: 96px 0;
}

.kicker {
  color: var(--taupe);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
}

.button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--ink);
  padding: 14px 24px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .28s ease, background .28s ease;
}

.button.light {
  background: var(--ivory);
  color: var(--ink);
  border-color: #cfc2b2;
}

.button.full {
  width: 100%;
}

.button::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -55%;
  width: 50%;
  transform: skewX(-18deg);
  background: rgba(255,255,255,.25);
  opacity: 0;
  transition: left .75s ease, opacity .75s ease;
}

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

.button:hover::before {
  left: 125%;
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding: 48px 0 64px;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,170,151,.38), transparent 62%);
  filter: blur(48px);
  opacity: .45;
  transform: translate(-50%, -50%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-line {
  width: 64px;
  height: 1px;
  background: var(--ink);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.1vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero-copy {
  margin-top: 36px;
  max-width: 660px;
  padding-left: 28px;
  border-left: 1px solid var(--champagne);
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.hero-main-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 76%;
  height: 80%;
}

.hero-small-frame {
  position: absolute;
  right: 0;
  top: 10%;
  width: 52%;
  height: 42%;
  border: 10px solid var(--ivory);
  box-shadow: 0 40px 90px rgba(35,27,20,.16);
}

.hero-text-card {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 64%;
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(35,27,20,.08);
  transition: transform .35s var(--ease);
}

.hero-text-card:hover {
  transform: translateY(-4px);
}

.hero-text-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-text-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.carousel-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e8ded0;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  transform-style: preserve-3d;
}

.carousel-card:hover {
  box-shadow: 0 48px 100px rgba(35,27,20,.18);
}

.carousel-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 1px solid transparent;
  transition: border-color .45s ease, box-shadow .45s ease;
}

.carousel-card:hover::after {
  border-color: var(--champagne);
  box-shadow: inset 0 0 70px rgba(251,247,240,.10);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(34px) scale(1.03);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.carousel-card.fade .carousel-slide {
  transform: scale(1.03);
}

.carousel-card.fade .carousel-slide.active {
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(7%);
  transition: transform .7s ease;
}

.carousel-card:hover .carousel-slide.active img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  z-index: 8;
  left: 16px;
  right: 16px;
  bottom: 16px;
  transform: translateY(12px);
  opacity: 0;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(34,27,21,.55);
  color: var(--ivory);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  transition: opacity .45s ease, transform .45s ease;
}

.carousel-card:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption small {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.caption strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.dark-section {
  background: var(--ink);
  color: var(--ivory);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.10);
}

.tilt-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--paper);
  color: var(--ink);
  padding: 36px;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), border-color .42s ease;
  transform-style: preserve-3d;
}

.tilt-card.dark {
  border-color: rgba(255,255,255,.10);
  background: var(--ink);
  color: var(--ivory);
}

.tilt-card:hover {
  transform: translateY(-6px);
  border-color: #b9aa97;
  box-shadow: 0 34px 100px rgba(35,27,20,.12);
}

.tilt-card.dark:hover {
  border-color: rgba(201,187,169,.70);
}

.tilt-card .icon {
  font-size: 28px;
  color: var(--champagne);
}

.tilt-card h3 {
  margin: 36px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.tilt-card p {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.tilt-card.dark p {
  color: rgba(255,255,255,.62);
}

.editorial-grid,
.page-hero-grid,
.contact-grid,
.checkout-grid {
  display: grid;
  gap: 64px;
}

.editorial-grid {
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
}

.editorial-image-wrap {
  position: relative;
}

.editorial-image {
  height: 580px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(35,27,20,.12);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(6%);
  transition: transform .7s ease;
}

.editorial-image-wrap:hover img {
  transform: scale(1.025);
}

.editorial-note {
  position: absolute;
  right: -28px;
  bottom: -28px;
  display: none;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 28px;
}

.editorial-note p:last-child {
  margin: 10px 0 0;
  max-width: 220px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.section-title {
  max-width: 900px;
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.9vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.body-copy {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  font-weight: 650;
}

.service-section,
.gallery-muted,
.process-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: var(--shadow-strong);
  border: 1px solid transparent;
  transition: transform .42s var(--ease), border-color .42s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,187,169,.70);
}

.service-card img,
.video-card img,
.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(6%);
  opacity: .8;
  transition: transform .7s ease;
}

.service-card:hover img,
.video-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}

.service-card::after,
.video-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink), rgba(34,27,21,.35), transparent);
}

.service-meta {
  position: absolute;
  z-index: 2;
  inset: 32px 32px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-meta span:first-child {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.service-meta span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  color: rgba(255,255,255,.45);
}

.service-content {
  position: absolute;
  z-index: 3;
  inset: auto 32px 32px;
}

.service-content .rule {
  width: 112px;
  height: 1px;
  background: rgba(251,247,240,.55);
  margin-bottom: 32px;
  transition: width .45s ease;
}

.service-card:hover .rule {
  width: 190px;
}

.service-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
}

.service-content p {
  max-width: 560px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform .42s var(--ease), border-color .42s ease, box-shadow .42s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #b9aa97;
  box-shadow: 0 34px 100px rgba(35,27,20,.12);
}

.product-image {
  position: relative;
  height: 370px;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%);
  transition: transform .7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(251,247,240,.92);
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.price-row {
  display: flex;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.old-price {
  color: #9d9184;
  font-size: 14px;
  text-decoration: line-through;
}

.add-button {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  margin-top: 24px;
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: opacity .42s ease, transform .42s ease, background .25s ease;
}

.add-button:hover {
  background: #332a22;
}

.testimonials-title {
  max-width: 820px;
  margin: 20px auto 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.testimonial-grid,
.card-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.10);
}

.card-grid,
.process-grid {
  border-color: var(--border-soft);
  background: var(--border-soft);
}

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

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-block: 1px solid var(--border);
  padding: 64px 0;
}

.page-hero-grid {
  grid-template-columns: 1fr .82fr;
  align-items: center;
}

.page-hero h1 {
  max-width: 960px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.page-hero p {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.page-hero-image {
  position: relative;
  min-height: 520px;
  overflow: visible;
}

.page-hero-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(6%);
  box-shadow: 0 30px 90px rgba(35,27,20,.13);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.video-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 390px;
  border: 1px solid transparent;
  box-shadow: 0 24px 80px rgba(35,27,20,.12);
  transition: transform .42s var(--ease), border-color .42s ease;
}

.video-card:hover,
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--champagne);
}

.video-duration {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  background: rgba(251,247,240,.92);
  color: var(--ink);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 650;
}

.play-button {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

.video-card h3,
.gallery-caption h3 {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 28px;
  max-width: 300px;
  margin: 0;
  color: var(--ivory);
  font-size: 1.25rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  margin-top: 48px;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  padding: 28px;
  color: var(--ivory);
  transform: translateY(20px);
  opacity: .78;
  transition: transform .42s ease, opacity .42s ease;
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption small {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.filter-row,
.shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--ivory);
}

.filter-pills button,
.category-row button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.filter-pills button.active,
.category-row button.active {
  background: var(--ink);
  color: var(--ivory);
}

.search-box,
.sort-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 16px 20px;
}

.search-box {
  flex: 1;
}

.search-box input,
.sort-box select {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.category-row button {
  border: 1px solid var(--border);
  background: var(--paper);
}

.checkout-grid {
  grid-template-columns: 1fr 420px;
}

.form-card {
  border: 1px solid var(--border-soft);
  background: var(--paper);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.form-card h2 {
  margin: 0 0 24px;
  font-size: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 16px;
  outline: 0;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.payment-card {
  border: 1px solid var(--border);
  background: var(--paper);
  text-align: left;
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease;
}

.payment-card:hover {
  transform: translateY(-3px);
}

.payment-card.active {
  border-color: var(--ink);
  background: var(--ivory);
}

.order-summary {
  position: sticky;
  top: 112px;
  height: fit-content;
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 24px;
  box-shadow: var(--shadow);
}

.order-summary h2 {
  margin: 0;
  font-size: 1.25rem;
}

.order-item,
.cart-item {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.order-item img,
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
}

.summary-line.total {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-grid {
  grid-template-columns: 1fr .75fr;
}

.contact-side {
  display: grid;
  gap: 24px;
}

.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 40px;
}

.footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
}

.footer h3 {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.footer p,
.footer small,
.footer button {
  color: rgba(255,255,255,.62);
}

.footer button {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.62);
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,27,21,.35);
  backdrop-filter: blur(12px);
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%, 430px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-top {
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.cart-top h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.cart-item {
  border: 1px solid var(--border);
  background: var(--paper);
  padding: 12px;
}

.cart-item h3 {
  margin: 0;
  font-size: 1rem;
}

.quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.quantity button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
}

.remove {
  margin-left: auto;
  color: #a83232;
}

.cart-summary {
  border-top: 1px solid var(--border);
  padding: 24px;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
}

.cart-summary .total-row {
  color: var(--ink);
  font-size: 1.1rem;
}

.empty-cart {
  border: 1px dashed #c4b7a6;
  background: var(--paper);
  padding: 40px;
  text-align: center;
}

.scroll-top {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 15px 40px rgba(35,27,20,.15);
}

@media (min-width: 1024px) {
  .editorial-note {
    display: block;
  }

  .product-card .add-button {
    opacity: 0;
    transform: translateY(12px);
  }

  .product-card:hover .add-button {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .editorial-grid,
  .page-hero-grid,
  .checkout-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 720px;
  }

  .feature-grid,
  .service-grid,
  .product-grid,
  .shop-grid,
  .testimonial-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 30px, 1440px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-kicker {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 13vw, 3.2rem);
  }

  .hero-copy {
    padding-left: 18px;
  }

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

  .hero-visual {
    min-height: 700px;
  }

  .hero-main-frame {
    width: 86%;
    height: 55%;
  }

  .hero-small-frame {
    top: 22%;
    width: 60%;
    height: 30%;
    border-width: 8px;
  }

  .hero-text-card {
    width: 86%;
    right: 0;
    padding: 20px;
  }

  .feature-grid,
  .service-grid,
  .product-grid,
  .shop-grid,
  .testimonial-grid,
  .video-grid,
  .process-grid,
  .card-grid,
  .payment-grid,
  .form-grid,
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .filter-row,
  .shop-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-pills {
    overflow-x: auto;
  }

  .service-card {
    min-height: 520px;
  }

  .product-image {
    height: 330px;
  }

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