:root {
  --ivory: #fbf8f1;
  --warm-white: #fffdf9;
  --blush: #f3d9d7;
  --petal: #f8ecea;
  --powder: #ead1d6;
  --champagne: #d7b77f;
  --soft-gold: #c8a866;
  --charcoal: #292522;
  --graphite: #5e5752;
  --muted: #887d75;
  --line: rgba(91, 73, 55, 0.13);
  --hairline: rgba(205, 168, 95, 0.34);
  --shadow: 0 28px 90px rgba(84, 61, 49, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--warm-white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(420px, 1fr) minmax(350px, 1.1fr);
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 10px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(200, 168, 102, 0.62);
  border-radius: 50%;
  color: var(--soft-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav,
.header-actions,
.language-switch,
.hero-actions,
.product-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 650;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--soft-gold);
}

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

.language-switch {
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(91, 73, 55, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  padding: 6px 8px;
  white-space: nowrap;
}

.language-switch button:first-child {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

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

.btn-dark {
  background: var(--charcoal);
  color: var(--warm-white);
  box-shadow: 0 14px 26px rgba(39, 35, 33, 0.18);
}

.btn-light {
  border-color: rgba(205, 168, 95, 0.42);
  background: rgba(255, 253, 248, 0.82);
  color: var(--charcoal);
}

.btn-small {
  min-height: 36px;
  padding-inline: 16px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--warm-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--charcoal);
}

.section-band,
.section-shell {
  padding-inline: clamp(20px, 5vw, 72px);
}

.section-shell {
  padding-block: clamp(82px, 8.5vw, 128px);
}

.section-band {
  background: var(--ivory);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 65px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.84fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(58px, 8vw, 108px) clamp(42px, 6vw, 70px);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(116deg, rgba(251, 248, 241, 0.36), rgba(255, 253, 249, 0.9) 42%, rgba(248, 236, 234, 0.7)),
    radial-gradient(circle at 78% 16%, rgba(215, 183, 127, 0.2), transparent 29%),
    radial-gradient(circle at 10% 72%, rgba(243, 217, 215, 0.42), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--soft-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
}

h3 {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--graphite);
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip span::before {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(200, 168, 102, 0.72);
  border-radius: 50%;
  background: rgba(215, 183, 127, 0.22);
  content: "";
}

.hero-visual {
  display: grid;
  min-height: 650px;
  border: 1px solid rgba(205, 168, 95, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 249, 0.28), rgba(255, 253, 249, 0.7)),
    linear-gradient(135deg, #f5dcda 0%, #fff7ef 36%, #e3cda7 68%, #7a6660 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 253, 249, 0.56);
  content: "";
  z-index: 0;
}

.hero-visual::after {
  position: absolute;
  right: -18%;
  bottom: -16%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 249, 0.48);
  border-radius: 50%;
  content: "";
  z-index: 0;
}

.editorial-frame,
.product-still,
.hero-card {
  position: absolute;
  z-index: 1;
}

.editorial-frame {
  inset: 34px 30% 34px 34px;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.2), rgba(41, 37, 34, 0.13)),
    linear-gradient(145deg, rgba(255, 246, 242, 0.9), rgba(236, 190, 194, 0.44) 52%, rgba(154, 127, 113, 0.5));
  overflow: hidden;
}

.editorial-frame::before {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 253, 249, 0.48);
  content: "";
}

.editorial-frame p {
  position: absolute;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-line-art {
  position: absolute;
  inset: 17% 18% 12%;
}

.model-line-art span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 253, 249, 0.72);
}

.shoulder-line {
  left: 5%;
  right: 5%;
  bottom: 22%;
  height: 44%;
  border-top: 0;
  border-radius: 0 0 46% 46%;
}

.neck-line {
  top: 0;
  left: 38%;
  width: 24%;
  height: 28%;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.silhouette-line {
  top: 24%;
  left: 22%;
  width: 56%;
  height: 54%;
  border-top: 0;
  border-radius: 0 0 42% 42%;
}

.waist-line {
  left: 30%;
  right: 30%;
  bottom: 5%;
  height: 34%;
  border-top: 0;
  border-radius: 0 0 40% 40%;
}

.product-still {
  border: 1px solid rgba(255, 253, 249, 0.64);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(84, 61, 49, 0.13);
}

.product-still strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--graphite);
  font-size: 11px;
  text-transform: uppercase;
}

.product-still-main {
  top: 13%;
  right: 34px;
  width: 46%;
  min-width: 240px;
  height: 210px;
}

.product-strap {
  position: absolute;
  top: 44px;
  left: 18%;
  width: 64%;
  height: 60px;
  border-top: 1px solid rgba(122, 99, 84, 0.42);
  border-radius: 50%;
}

.product-cup {
  position: absolute;
  top: 74px;
  width: 34%;
  height: 66px;
  border: 1px solid rgba(200, 168, 102, 0.5);
  background: linear-gradient(135deg, rgba(243, 217, 215, 0.5), rgba(255, 253, 249, 0.72));
}

.product-cup-left {
  left: 20%;
  border-radius: 60% 38% 58% 42%;
}

.product-cup-right {
  right: 20%;
  border-radius: 38% 60% 42% 58%;
}

.fabric-detail {
  right: 52px;
  bottom: 32%;
  width: 34%;
  min-width: 190px;
  height: 132px;
  overflow: hidden;
}

.fabric-detail span {
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(200, 168, 102, 0.18) 0 1px, transparent 1px 11px),
    linear-gradient(135deg, rgba(248, 236, 234, 0.9), rgba(216, 183, 180, 0.55));
}

.hero-card {
  right: clamp(18px, 4vw, 50px);
  bottom: clamp(18px, 4vw, 50px);
  width: min(305px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(16px);
}

.hero-card span,
.atelier-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong,
.atelier-panel strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.08;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.wide {
  max-width: 890px;
}

.section-heading p,
.service-intro p,
.about-copy p,
.inquiry-panel p,
.footer-brand p {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.product-card,
.advantage-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.7);
}

.category-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 176px;
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.category-card:hover {
  border-color: rgba(200, 168, 102, 0.42);
  background: rgba(255, 253, 249, 0.92);
  transform: translateY(-2px);
}

.visual-tile {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 120px;
  overflow: hidden;
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.88);
  isolation: isolate;
}

.visual-tile::before,
.visual-tile::after {
  position: absolute;
  content: "";
}

.visual-tile::before {
  inset: 16%;
  border: 1px solid rgba(255, 253, 248, 0.5);
}

.visual-tile::after {
  right: -20%;
  bottom: -22%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 50%;
}

.visual-tile span {
  position: relative;
  z-index: 1;
  max-width: 80%;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.tone-rose {
  background: linear-gradient(135deg, #e9b8bd, #7a5c5a);
}

.tone-champagne {
  background: linear-gradient(135deg, #e7d1a4, #8c704d);
}

.tone-pearl {
  background: linear-gradient(135deg, #f3ede3, #b7a797);
}

.tone-mauve {
  background: linear-gradient(135deg, #d3a4b4, #55444e);
}

.tone-graphite {
  background: linear-gradient(135deg, #8e8982, #272321);
}

.tone-blush {
  background: linear-gradient(135deg, #f0c9c5, #d7b77f);
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured {
  padding-block: clamp(84px, 8.5vw, 128px);
}

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

.product-card {
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(84, 61, 49, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  border-color: rgba(200, 168, 102, 0.4);
  box-shadow: 0 26px 70px rgba(84, 61, 49, 0.1);
  transform: translateY(-3px);
}

.product-image {
  min-height: 286px;
  border-radius: 0;
  border-bottom: 1px solid rgba(91, 73, 55, 0.1);
}

.product-body {
  padding: 22px;
}

.product-category,
.product-material {
  color: var(--muted);
  font-size: 13px;
}

.product-category {
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-material {
  margin-bottom: 16px;
}

.tag-row {
  display: flex;
  min-height: 54px;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  margin-bottom: 18px;
}

.tag-row span {
  border: 1px solid rgba(205, 168, 95, 0.28);
  border-radius: 999px;
  color: #6f6258;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  background: rgba(251, 248, 241, 0.65);
}

.product-actions {
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-actions a:last-child {
  color: var(--soft-gold);
}

.listing-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 132px);
}

.listing-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, rgba(251, 248, 241, 0.4), rgba(255, 253, 249, 0.94) 46%, rgba(248, 236, 234, 0.68)),
    radial-gradient(circle at 82% 20%, rgba(215, 183, 127, 0.22), transparent 32%);
  content: "";
}

.listing-hero > * {
  position: relative;
}

.listing-hero h1 {
  max-width: 900px;
}

.listing-hero p:not(.eyebrow) {
  max-width: 690px;
  color: var(--graphite);
  font-size: clamp(17px, 1.5vw, 21px);
}

.listing-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(205, 168, 95, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.26), rgba(41, 37, 34, 0.08)),
    linear-gradient(135deg, #f5dcda, #fff7ef 42%, #d6b77f);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.listing-visual::before,
.listing-visual::after,
.listing-visual span {
  position: absolute;
  content: "";
}

.listing-visual::before {
  inset: 30px;
  border: 1px solid rgba(255, 253, 249, 0.58);
}

.listing-visual::after {
  right: -18%;
  bottom: -22%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 249, 0.52);
  border-radius: 50%;
}

.listing-visual span {
  top: 58px;
  left: 58px;
  width: 48%;
  height: 54%;
  border: 1px solid rgba(255, 253, 249, 0.62);
  border-radius: 8px;
}

.listing-visual strong {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 249, 0.62);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
}

.products-listing {
  background: var(--warm-white);
}

.listing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.listing-toolbar h2 {
  margin-bottom: 0;
}

.product-count {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.filter-bar button {
  min-height: 38px;
  border: 1px solid rgba(91, 73, 55, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--graphite);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0 15px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-bar button.active,
.filter-bar button:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--warm-white);
}

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

.catalog-card .product-image {
  display: grid;
  min-height: 320px;
}

.catalog-card h3 {
  min-height: 46px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--soft-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 65px);
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 0.9fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(62px, 8vw, 112px);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(251, 248, 241, 0.5), rgba(255, 253, 249, 0.9) 48%, rgba(248, 236, 234, 0.68)),
    radial-gradient(circle at 22% 22%, rgba(215, 183, 127, 0.16), transparent 34%);
  content: "";
}

.detail-gallery,
.detail-summary {
  position: relative;
}

.detail-main-image {
  min-height: 620px;
  border: 1px solid rgba(205, 168, 95, 0.22);
  box-shadow: var(--shadow);
}

.detail-main-image span {
  font-size: 13px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.detail-thumbs .visual-tile {
  min-height: 116px;
}

.detail-summary h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.8vw, 76px);
}

.detail-summary > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--graphite);
  font-size: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-tags span {
  border: 1px solid rgba(205, 168, 95, 0.3);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.68);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 11px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
}

.detail-copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.detail-copy p:not(.eyebrow) {
  color: var(--muted);
}

.detail-specs {
  border-top: 1px solid var(--line);
}

.detail-spec-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-spec-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-spec-row strong {
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.55;
}

.detail-features {
  grid-column: 2;
  margin-top: 6px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.62);
}

.detail-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-features li {
  position: relative;
  padding-left: 18px;
  color: var(--graphite);
  font-weight: 700;
}

.detail-features li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(200, 168, 102, 0.7);
  border-radius: 50%;
  content: "";
}

.page-hero,
.contact-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 132px);
}

.page-hero::before,
.contact-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, rgba(251, 248, 241, 0.38), rgba(255, 253, 249, 0.94) 45%, rgba(248, 236, 234, 0.7)),
    radial-gradient(circle at 80% 18%, rgba(215, 183, 127, 0.22), transparent 32%);
  content: "";
}

.page-hero > *,
.contact-hero > * {
  position: relative;
}

.page-hero h1,
.contact-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow),
.contact-copy p {
  max-width: 720px;
  color: var(--graphite);
  font-size: clamp(17px, 1.5vw, 21px);
}

.page-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(205, 168, 95, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.24), rgba(41, 37, 34, 0.08)),
    linear-gradient(135deg, #f5dcda, #fff7ef 42%, #d6b77f);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-page-visual {
  background:
    linear-gradient(160deg, rgba(255, 253, 249, 0.24), rgba(41, 37, 34, 0.1)),
    linear-gradient(135deg, #f0c9c5, #fff7ef 45%, #8e8982);
}

.page-visual::before,
.page-visual::after,
.page-visual span {
  position: absolute;
  content: "";
}

.page-visual::before {
  inset: 30px;
  border: 1px solid rgba(255, 253, 249, 0.58);
}

.page-visual::after {
  right: -18%;
  bottom: -22%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 249, 0.5);
  border-radius: 50%;
}

.page-visual span {
  top: 58px;
  left: 58px;
  width: 48%;
  height: 54%;
  border: 1px solid rgba(255, 253, 249, 0.62);
  border-radius: 8px;
}

.page-visual strong {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 249, 0.62);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
}

.page-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-flow li {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  padding: 22px;
}

.capabilities {
  padding-block: clamp(84px, 8.5vw, 128px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.capability-grid article:hover {
  border-color: rgba(200, 168, 102, 0.42);
  background: rgba(255, 253, 249, 0.92);
  transform: translateY(-2px);
}

.capability-grid span {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  border: 1px solid rgba(205, 168, 95, 0.65);
  border-radius: 50%;
  background: rgba(215, 183, 127, 0.18);
}

.capability-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.about-story .about-copy p {
  max-width: 820px;
}

.compact-visual {
  min-height: 420px;
}

.contact-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(205, 168, 95, 0.3);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card p:first-child {
  padding-top: 0;
}

.contact-card p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-card span {
  margin-right: 6px;
  color: var(--soft-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 248, 241, 0.72);
  box-shadow: 0 18px 54px rgba(84, 61, 49, 0.06);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(91, 73, 55, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--charcoal);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(200, 168, 102, 0.72);
  box-shadow: 0 0 0 3px rgba(215, 183, 127, 0.16);
}

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

.form-notice {
  min-height: 24px;
  margin: 0;
  color: var(--soft-gold);
  font-weight: 800;
}

.service {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.service-flow span {
  color: var(--soft-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.why {
  padding-block: clamp(70px, 8vw, 108px);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.advantage-grid article {
  min-height: 150px;
  padding: 20px;
}

.advantage-grid span {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 26px;
  border: 1px solid rgba(205, 168, 95, 0.65);
  border-radius: 50%;
  background: rgba(215, 183, 127, 0.18);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(39, 35, 33, 0.08), rgba(255, 253, 248, 0.42)),
    linear-gradient(135deg, #f5dfda, #f8f0e8 38%, #d6b77f 100%);
  overflow: hidden;
}

.atelier-line {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 253, 248, 0.55);
}

.atelier-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.about-copy p {
  max-width: 780px;
  font-size: 18px;
}

.inquiry {
  padding-top: 0;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(205, 168, 95, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(251, 247, 239, 0.94), rgba(243, 217, 215, 0.62));
  box-shadow: var(--shadow);
}

.inquiry-panel h2 {
  margin-bottom: 14px;
}

.inquiry-panel p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 30px;
  padding: 44px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #272321;
  color: var(--warm-white);
}

.footer-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.68);
}

.footer-contact span {
  color: var(--champagne);
  font-weight: 800;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .nav-open .main-nav,
  .nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .nav-open .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 8px;
  }

  .nav-open .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .hero,
  .service,
  .about,
  .listing-hero,
  .detail-hero,
  .detail-content,
  .page-hero,
  .contact-hero,
  .about-story,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .page-flow,
  .capability-grid,
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-visual {
    min-height: 330px;
  }

  .listing-visual {
    min-height: 330px;
  }

  .detail-copy {
    position: static;
  }

  .detail-features {
    grid-column: auto;
  }

  .detail-main-image {
    min-height: 520px;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 10px 18px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 19px;
  }

  .language-switch {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 8px;
    background: rgba(255, 253, 249, 0.72);
  }

  .hero {
    gap: 32px;
    padding-top: 44px;
  }

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

  .editorial-frame {
    inset: 22px 18% 112px 22px;
  }

  .product-still-main {
    top: 24%;
    right: 18px;
    width: 44%;
    min-width: 168px;
    height: 156px;
  }

  .product-cup {
    top: 58px;
    height: 44px;
  }

  .product-strap {
    top: 32px;
    height: 44px;
  }

  .fabric-detail {
    right: 22px;
    bottom: 108px;
    width: 38%;
    min-width: 150px;
    height: 104px;
  }

  .hero-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
    width: auto;
  }

  .category-grid,
  .product-grid,
  .catalog-grid,
  .service-flow,
  .advantage-grid,
  .page-flow,
  .capability-grid,
  .focus-grid,
  .site-footer,
  .inquiry-panel,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .listing-toolbar {
    display: block;
  }

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

  .product-count {
    margin-top: 12px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    margin-inline: -18px;
    overflow-x: auto;
    padding-inline: 18px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-bar button {
    flex: 0 0 auto;
  }

  .category-card {
    grid-template-columns: 96px 1fr;
  }

  .product-image {
    min-height: 230px;
  }

  .catalog-card .product-image {
    min-height: 280px;
  }

  .detail-hero {
    padding-top: 38px;
  }

  .detail-main-image {
    min-height: 420px;
  }

  .detail-spec-row,
  .detail-features ul,
  .detail-thumbs {
    grid-template-columns: 1fr;
  }

  .detail-spec-row {
    gap: 8px;
  }

  .inquiry-panel .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .listing-hero {
    min-height: auto;
    padding-block: 56px;
  }

  .page-hero,
  .contact-hero {
    min-height: auto;
    padding-block: 56px;
  }

  .listing-visual {
    min-height: 280px;
  }

  .page-visual {
    min-height: 280px;
  }

  .listing-visual strong,
  .page-visual strong {
    font-size: 24px;
  }

  .detail-summary h1 {
    font-size: 38px;
  }

  .detail-actions,
  .detail-actions .btn {
    width: 100%;
  }

  .trust-strip {
    display: grid;
    gap: 10px;
  }

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

  .editorial-frame {
    inset: 18px 16% 116px 18px;
  }

  .editorial-frame p,
  .product-still strong {
    font-size: 9px;
  }

  .product-still-main {
    min-width: 145px;
    height: 138px;
  }

  .fabric-detail {
    min-width: 132px;
    height: 92px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong,
  .atelier-panel strong {
    font-size: 24px;
  }
}
