@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");
:root {
  --paper: #faf7f0;
  --ink: #302c28;
  --wine: #722c3f;
  --muted: #706b64;
  --line: #dcd6cc;
  --blush: #e9d5cd;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.55;
}
button {
  background: none;
  border: 0;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #a05063;
  outline-offset: 5px;
}
button:hover,
a:hover {
  color: var(--wine);
}
.sr-only,
.skip:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.skip:focus {
  position: fixed;
  background: white;
  z-index: 30;
  padding: 15px;
}
.announcement {
  background: var(--wine);
  color: #fff6eb;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 9px 20px;
}
.announcement span {
  margin-left: 35px;
  opacity: 0.85;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 100px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 247, 240, 0.97);
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.brand {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -1.8px;
  white-space: nowrap;
  color: var(--wine);
}
.brand span {
  display: block;
  font: 10px var(--sans);
  letter-spacing: 0.28em;
  text-align: center;
  margin-top: 7px;
}
.header nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.header nav a {
  padding: 12px 0;
}
.header-actions {
  display: flex;
  gap: 21px;
  align-items: center;
}
.icon-button,
.bag-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 44px;
  padding: 0;
  gap: 8px;
}
.bag-button span {
  font-size: 12px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 670px;
  max-width: 1800px;
  margin: auto;
}
.hero-copy {
  padding: 65px 9% 40px 10%;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 23px;
  text-transform: uppercase;
  line-height: 1.7;
}
.eyebrow > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  margin-right: 8px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(58px, 6.2vw, 100px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
}
em {
  font-weight: 400;
  color: var(--wine);
}
.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 52px;
  padding: 14px 24px;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--wine);
  color: white;
}
.primary:hover {
  background: #55202e;
  color: white;
}
.text-link {
  font-size: 14px;
  border-bottom: 1px solid;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.hero-copy > .text-link {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: 13px;
}
.hero-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.stitch {
  font-size: 36px;
  color: var(--wine);
}
.hero-visual {
  position: relative;
  min-height: 670px;
  background: #c8b9a8;
  margin: 24px 24px 24px 0;
  overflow: visible;
}
.hero-visual > img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-position: 50% 43%;
}
.hero-label {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  background: rgba(250, 247, 240, 0.93);
  padding: 16px 22px;
}
.hero-label > span {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hero-label a {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 23px;
  margin-top: 3px;
}
.hero-label a span {
  font: 14px var(--sans);
  align-self: center;
}
.round-stamp {
  position: absolute;
  left: -52px;
  top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 107px;
  height: 107px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--wine);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.1;
  transform: rotate(-12deg);
  box-shadow:
    0 0 0 1px var(--wine),
    0 0 0 6px var(--paper);
}
.round-stamp b {
  font-size: 35px;
  line-height: 0.6;
}
.ribbon {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 24px;
  padding: 23px 3%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.ribbon b {
  color: var(--wine);
  font-size: 22px;
}
.section {
  padding: 95px 5%;
  max-width: 1800px;
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 5px;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.filters button {
  font-size: 13px;
  padding: 9px 17px;
  border: 1px solid transparent;
  border-radius: 30px;
}
.filters button[aria-pressed="true"] {
  border-color: var(--wine);
  background: var(--wine);
  color: white;
}
.sort-label select {
  border: 0;
  background: transparent;
  font-size: 13px;
  max-width: 180px;
}
.search-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 26px;
  font-size: 12px;
  color: var(--muted);
}
.search-line label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-line svg {
  width: 17px;
}
.search-line input {
  border: 0;
  background: transparent;
  font-size: 13px;
  width: 230px;
  padding: 8px 0;
}
.search-line p {
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 22px;
}
.product-card {
  min-width: 0;
}
.product-image {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e4ded4;
}
.product-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}
.product-image:hover img {
  transform: scale(1.04);
}
.product-media {
  display: block;
  position: absolute;
  inset: 0;
}
.product-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(calc(100% + 24px));
  transition: transform 0.2s;
}
.product-overlay .buy,
.product-overlay .view,
.product-overlay .quick-add {
  display: block;
  background: var(--paper);
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
}
.product-overlay .quick-add {
  border: 1px solid var(--wine);
  color: var(--wine);
}
.product-overlay .quick-add:hover {
  background: var(--blush);
}
.product-overlay .buy {
  background: var(--wine);
  color: #fff6eb;
}
.product-overlay .buy:hover {
  color: #fff6eb;
}
.product-image:hover .product-overlay,
.product-image:focus-within .product-overlay {
  transform: translateY(0);
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  align-items: baseline;
}
.product-meta h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.product-meta > span {
  white-space: nowrap;
  font-size: 14px;
}
.product-card > p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.catalog-note {
  font-size: 12px;
  color: var(--muted);
  margin: 35px 0 0;
}
.empty-state {
  grid-column: 1/-1;
  padding: 55px 20px;
  border: 1px solid var(--line);
  text-align: center;
}
.atelier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #eee8dc;
}
.atelier-image {
  position: relative;
  max-height: 720px;
  min-height: 550px;
}
.atelier-image img {
  height: 100%;
  object-position: center 35%;
}
.atelier-image > span {
  position: absolute;
  bottom: 25px;
  left: 30px;
  font-size: 10px;
  letter-spacing: 0.2em;
  background: var(--paper);
  padding: 10px 14px;
}
.atelier-copy {
  padding: 70px 12%;
}
.atelier-copy h2 {
  margin-bottom: 32px;
}
.atelier-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: #665f56;
  max-width: 460px;
}
.signature {
  display: block;
  color: var(--wine);
  font: italic 30px var(--serif);
  margin-top: 26px;
  transform: rotate(-5deg);
  width: max-content;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
}
.gallery-card {
  display: block;
  text-align: left;
  padding: 0;
  width: 100%;
}
.gallery-card img {
  aspect-ratio: 4/5;
  background: #e6dfd4;
}
.gallery-card:nth-child(3n + 2) {
  margin-top: 45px;
}
.gallery-caption {
  display: flex;
  justify-content: space-between;
  font: 24px var(--serif);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.gallery-card small {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 9px;
  color: var(--muted);
}
.custom {
  background: var(--wine);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.custom em {
  color: #e9c2b9;
}
.custom > div {
  position: relative;
  z-index: 1;
}
.custom > div + div {
  align-self: center;
}
.custom p:not(.eyebrow) {
  color: #eedce0;
  font-size: 16px;
}
.cream {
  background: var(--paper);
  color: var(--wine);
  margin-top: 15px;
}
.custom-flower {
  position: absolute;
  font: 450px Georgia;
  right: 15%;
  top: -170px;
  opacity: 0.07;
  pointer-events: none;
}
.practical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
.practical > div + div {
  border-left: 1px solid var(--line);
  padding-left: 13%;
}
.practical h2 {
  font-size: 43px;
  margin-bottom: 25px;
}
.practical p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}
.contact-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
}
.contact-links a,
.contact-links button {
  border-bottom: 1px solid;
  padding: 5px 0;
}
.location {
  margin-top: 20px;
}
.newsletter {
  padding: 48px 5%;
  background: var(--blush);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.newsletter .eyebrow {
  margin-bottom: 8px;
}
.newsletter h2 {
  font-size: 50px;
}
.newsletter p {
  font-size: 14px;
}
.outline {
  border-color: var(--wine);
  color: var(--wine);
  min-width: 300px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1fr;
  gap: 50px;
  padding: 60px 5%;
  font-size: 14px;
}
.footer-top .brand {
  width: max-content;
}
.footer-top p {
  color: var(--muted);
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom {
  margin: 0 5%;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.footer-bottom button {
  font-size: inherit;
  padding: 0;
}
dialog {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  width: min(1040px, 94vw);
  max-height: 90dvh;
  overflow: auto;
}
dialog::backdrop {
  background: rgba(35, 24, 27, 0.62);
  backdrop-filter: blur(4px);
}
.close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: var(--paper);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--line);
}
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.detail-photos {
  padding: 22px;
  background: #eee8df;
}
.detail-main {
  height: 520px;
  object-fit: contain;
}
.thumbnails {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin-top: 13px;
}
.thumbnails button {
  padding: 2px;
  border: 1px solid transparent;
  flex: 0 0 65px;
}
.thumbnails button[aria-pressed="true"] {
  border-color: var(--wine);
}
.thumbnails img {
  height: 78px;
}
.detail-copy {
  padding: 65px 35px 35px;
}
.detail-copy h2 {
  font-size: 43px;
  margin-bottom: 12px;
}
.detail-price {
  font-size: 24px;
  margin: 20px 0;
}
.detail-price small {
  font-size: 12px;
}
.description p {
  font-size: 14px;
  margin-bottom: 12px;
}
.detail-copy .button {
  width: 100%;
  margin-top: 20px;
}
.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.detail-actions .button {
  margin-top: 0;
  min-width: 0;
  justify-content: center;
  gap: 10px;
}
.detail-copy .availability {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 20px;
}
.cart-dialog {
  margin: 0 0 0 auto;
  height: 100dvh;
  max-height: 100dvh;
  width: min(470px, 100vw);
  padding: 65px 28px 28px;
}
.cart-dialog h2 {
  font-size: 48px;
}
.cart-notice {
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0;
}
.cart-row {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row img {
  height: 100px;
}
.cart-row h3 {
  font-size: 20px;
  margin: 0;
}
.cart-row p {
  font-size: 14px;
  margin: 4px 0;
}
.cart-row button {
  font-size: 12px;
  text-decoration: underline;
  padding: 0;
}
.qty {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  line-height: 1;
}
.qty span {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
}
.cart-row .remove {
  display: block;
  margin-top: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
  font-size: 20px;
}
#cart-footer .button {
  width: 100%;
}
#cart-footer > p {
  font-size: 12px;
  color: var(--muted);
}
.notice-dialog {
  max-width: 520px;
  padding: 55px 40px;
  text-align: center;
}
.notice-icon {
  font-size: 46px;
  color: var(--wine);
}
.notice-dialog h2 {
  font-size: 35px;
  margin-bottom: 24px;
}
.notice-dialog p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.notice-dialog .eyebrow {
  margin-top: 12px;
}
.notice-dialog .button {
  margin-top: 12px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: var(--wine);
  color: white;
  padding: 14px 25px;
  z-index: 40;
  pointer-events: none;
  transition: 0.2s;
  max-width: 90vw;
  font-size: 14px;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
#gallery-detail {
  padding: 60px 30px 30px;
}
.success {
  max-width: 640px;
  margin: 0 auto;
  padding: 90px 28px;
  text-align: center;
}
.success h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.success h1 em {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.15em;
}
.success > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
  margin: 24px auto;
}
.success-note {
  font-size: 12px !important;
}
.success .button {
  margin-top: 10px;
}
#gallery-detail h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.gallery-photos img {
  height: auto;
  max-height: 650px;
  object-fit: contain;
  background: #eee8df;
}
@media (min-width: 1500px) {
  .hero-copy {
    padding-top: 90px;
  }
  .hero-visual {
    min-height: 780px;
  }
}
@media (max-width: 1050px) {
  .header nav {
    gap: 18px;
  }
  .header {
    padding: 0 4%;
    gap: 20px;
  }
  .brand {
    font-size: 30px;
  }
  .hero-copy {
    padding: 55px 8%;
  }
  .hero-visual {
    min-height: 630px;
  }
  .hero-copy > p:not(.eyebrow) br {
    display: none;
  }
  .hero-note {
    margin-top: 24px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .product-grid {
    gap: 28px 18px;
  }
  .atelier-copy {
    padding: 55px 9%;
  }
  .footer-top {
    gap: 24px;
  }
  .practical h2 {
    font-size: 36px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }
  .announcement {
    font-size: 10px;
    padding: 8px;
  }
  .announcement span {
    display: none;
  }
  .header {
    height: 80px;
    padding: 0 5%;
  }
  .brand {
    font-size: 28px;
  }
  .header-actions {
    gap: 13px;
  }
  .menu-toggle {
    display: flex;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 6%;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 5px;
  }
  .header nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 42px 6% 35px;
  }
  .hero h1 {
    font-size: 68px;
    line-height: 1.01;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-note {
    display: none;
  }
  .hero-visual {
    margin: 0 5% 25px;
    min-height: 480px;
  }
  .round-stamp {
    left: auto;
    right: 14px;
    top: -49px;
    width: 88px;
    height: 88px;
    font-size: 8px;
  }
  .hero-label {
    bottom: 17px;
    left: 17px;
    right: 17px;
  }
  .ribbon {
    justify-content: center;
    gap: 15px;
    font-size: 10px;
    padding: 15px 10px;
  }
  .ribbon span:nth-last-child(-n + 3),
  .ribbon b:nth-last-child(-n + 2) {
    display: none;
  }
  .section {
    padding: 60px 5%;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  h2 {
    font-size: 44px;
  }
  .shop-toolbar {
    display: block;
  }
  .filters {
    gap: 5px;
  }
  .filters button {
    font-size: 12px;
    padding: 7px 12px;
  }
  .sort-label {
    display: block;
    margin-top: 15px;
  }
  .search-line {
    gap: 10px;
  }
  .search-line input {
    width: 190px;
    font-size: 12px;
  }
  .search-line p {
    font-size: 11px;
    white-space: nowrap;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 14px;
  }
  .product-meta {
    gap: 6px;
    display: block;
  }
  .product-meta h3 {
    font-size: 20px;
  }
  .product-meta > span {
    font-size: 13px;
  }
  .product-overlay {
    display: none;
  }
  .detail-actions {
    grid-template-columns: 1fr;
  }
  .product-card > p {
    font-size: 10px;
    margin-top: 4px;
  }
  .atelier {
    grid-template-columns: 1fr;
  }
  .atelier-image {
    min-height: 450px;
    max-height: 520px;
  }
  .atelier-copy {
    padding: 45px 7%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 16px;
  }
  .gallery-card img {
    aspect-ratio: 1/1;
  }
  .gallery-card:nth-child(3n + 2) {
    margin-top: 0;
  }
  .gallery-card:nth-child(even) {
    margin-top: 28px;
  }
  .gallery-caption {
    font-size: 19px;
  }
  .gallery-card small {
    font-size: 9px;
  }
  .custom {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .practical {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .practical > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 40px 0 0;
  }
  .newsletter {
    display: block;
    padding: 40px 6%;
  }
  .newsletter > div + div {
    margin-top: 25px;
  }
  .outline {
    min-width: 0;
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 45px 6%;
  }
  .footer-top .brand {
    font-size: 27px;
  }
  .footer-top p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 15px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .detail-main {
    height: 380px;
  }
  .detail-copy {
    padding: 35px 25px;
  }
  .detail-photos {
    padding-top: 60px;
  }
  .gallery-photos {
    grid-template-columns: 1fr;
  }
  .notice-dialog {
    padding: 55px 24px 35px;
  }
  .notice-dialog h2 {
    font-size: 30px;
  }
  .catalog-note {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
.legal {
  max-width: 1000px;
}
.legal h1 {
  font-size: clamp(40px, 6vw, 70px);
}
.legal-body {
  margin-top: 50px;
}
.legal-body h3 {
  font-size: 28px;
  margin: 35px 0 15px;
}
.legal-body p {
  line-height: 1.85;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 25px;
}
.breadcrumb a {
  border-bottom: 1px solid var(--line);
}
.notfound {
  text-align: center;
  max-width: 680px;
}
.notfound h1 {
  font-size: clamp(42px, 6vw, 66px);
}
.notfound p {
  color: var(--muted);
  font-size: 15px;
  margin: 25px auto;
  max-width: 480px;
}
.notfound .button {
  margin-bottom: 18px;
}
.filters button,
.sort-label select,
.search-line input,
.contact-links {
  font-size: 14px;
}
.hero-copy > p:not(.eyebrow),
.atelier-copy > p:not(.eyebrow),
.description p {
  font-size: 16px;
}
.site-menu {
  position: relative;
}
.site-menu summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
}
.site-menu summary::-webkit-details-marker {
  display: none;
}
.site-menu[open] summary {
  color: var(--wine);
}
.site-menu summary:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 5px;
}
.submenu {
  position: absolute;
  right: 0;
  top: 100%;
  width: 610px;
  max-height: calc(100dvh - 160px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 28px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px #302c281c;
}
.submenu p {
  font-size: 12px;
  color: var(--wine);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.header nav .submenu a,
.submenu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.5;
}
.submenu a:hover,
.submenu button:hover {
  text-decoration: underline;
}
.coordinates {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-style: normal;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  overflow-wrap: anywhere;
  scroll-margin-top: 120px;
}
.coordinates h3 {
  font-size: 27px;
  margin-bottom: 8px;
}
.coordinates a {
  width: fit-content;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1050px) and (min-width: 761px) {
  .header nav {
    gap: 14px;
  }
  .header-actions {
    gap: 12px;
  }
}
@media (max-width: 760px) {
  .header nav.open {
    max-height: calc(100dvh - 110px);
    overflow: auto;
  }
  .submenu {
    position: static;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 18px;
    gap: 24px;
  }
  .site-menu summary {
    justify-content: space-between;
  }
  .coordinates {
    scroll-margin-top: 100px;
  }
}
