:root {
  --ink: #2e2825;
  --muted: #756a64;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --blush: #eecfc4;
  --blush-soft: #f7e7df;
  --rose: #b85c62;
  --wine: #623139;
  --sage: #acb9a0;
  --sage-dark: #687461;
  --line: rgba(46, 40, 37, 0.14);
  --shadow: 0 24px 70px rgba(75, 48, 42, 0.13);
  --font-display: "Gloock", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--wine);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  position: relative;
  z-index: 81;
  color: #fff;
  background: var(--wine);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 3px rgba(238, 207, 196, 0.15);
}

.utility-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.utility-phone:hover {
  color: var(--blush);
}

.utility-phone svg {
  width: 13px;
  height: 13px;
}

.utility-phone strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(46, 40, 37, 0.08);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 122px;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.primary-nav > a:not(.nav-call) {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav > a:not(.nav-call):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-call {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher span {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.language-switcher button {
  padding: 4px 2px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--rose);
}

.header-call {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.header-call svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  position: relative;
  z-index: 72;
  display: none;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-scrim {
  visibility: hidden;
  position: fixed;
  z-index: 69;
  inset: 0;
  border: 0;
  opacity: 0;
  background: rgba(46, 40, 37, 0.36);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hero {
  overflow: hidden;
  position: relative;
  min-height: 690px;
  background:
    radial-gradient(circle at 10% 18%, rgba(238, 207, 196, 0.52), transparent 24%),
    linear-gradient(106deg, #fbf0e9 0%, #f9eee8 54%, #f1dcd3 54%, #f1dcd3 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(98, 49, 57, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.11), 0 0 0 110px rgba(255, 255, 255, 0.08);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
  padding-block: 68px 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 14px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 35px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.order-intro h2,
.store-card h3,
.payment-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(56px, 6vw, 88px);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--rose);
  font-style: normal;
}

.hero-description {
  max-width: 475px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 0.25s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #fff;
  background: var(--wine);
}

.button-primary:hover {
  background: var(--rose);
}

.text-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 2px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.hero-note {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 13px;
}

.hero-note-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(98, 49, 57, 0.16);
  border-radius: 50%;
  color: var(--rose);
  place-items: center;
}

.hero-note-icon svg {
  width: 18px;
  height: 18px;
}

.hero-note p {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.5;
}

.hero-note strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-note span {
  color: var(--muted);
}

.hero-gallery {
  position: relative;
  z-index: 2;
  min-height: 555px;
}

.hero-image {
  overflow: hidden;
  position: absolute;
  background: #e9dcd3;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.hero-image:hover img {
  transform: scale(1.035);
}

.hero-image-main {
  z-index: 2;
  top: 0;
  right: 14%;
  width: 57%;
  height: 94%;
  transform: rotate(1.5deg);
}

.hero-image-top {
  z-index: 1;
  top: 4%;
  left: 0;
  width: 37%;
  height: 42%;
  transform: rotate(-4deg);
}

.hero-image-bottom {
  z-index: 3;
  right: 0;
  bottom: 1%;
  width: 34%;
  height: 39%;
  border: 8px solid var(--paper);
  transform: rotate(4.5deg);
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  top: 4%;
  right: -3%;
  display: grid;
  width: 126px;
  height: 126px;
  padding: 15px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage-dark);
  place-content: center;
  text-align: center;
  transform: rotate(7deg);
}

.hero-sticker svg {
  width: 24px;
  height: 24px;
  margin: 0 auto 4px;
  fill: currentColor;
  stroke: none;
}

.hero-sticker span {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.25;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  bottom: -8px;
  left: 3%;
  display: flex;
  margin: 0;
  align-items: center;
  gap: 11px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero-caption span:first-child {
  color: var(--rose);
}

.hero-flower {
  position: absolute;
  z-index: 1;
  color: rgba(184, 92, 98, 0.25);
  font-family: Georgia, serif;
}

.hero-flower-one {
  top: 70px;
  left: 3%;
  font-size: 42px;
  transform: rotate(18deg);
}

.hero-flower-two {
  bottom: 68px;
  left: 47%;
  font-size: 27px;
}

.ribbon {
  overflow: hidden;
  color: #fff;
  background: var(--rose);
}

.ribbon-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 47px;
  align-items: center;
  justify-content: space-around;
  gap: 42px;
  white-space: nowrap;
}

.ribbon-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ribbon-track i {
  color: var(--blush);
  font-style: normal;
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: flex;
  margin-bottom: 48px;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
}

.collection {
  background: var(--paper);
}

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

.product-card:nth-child(even) {
  margin-top: 34px;
}

.product-image-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.86;
  background: #f2ede8;
}

.product-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(46, 40, 37, 0.06);
  content: "";
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

.product-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 6px 10px;
  color: var(--wine);
  background: rgba(255, 253, 249, 0.91);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-call {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  background: var(--wine);
  place-items: center;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.product-call:hover {
  background: var(--rose);
}

.product-call svg {
  width: 17px;
  height: 17px;
}

.product-card:hover .product-call,
.product-call:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  display: flex;
  padding-top: 16px;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.product-meta h3 {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.product-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta strong {
  flex: 0 0 auto;
  color: var(--rose);
  font-size: 13px;
  font-weight: 600;
}

.availability-note {
  display: flex;
  margin-top: 70px;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 14px;
}

.availability-note > span {
  color: var(--rose);
}

.availability-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.availability-note p strong {
  color: var(--ink);
}

.availability-note a {
  margin-left: auto;
  color: var(--wine);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.order-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--wine);
}

.order-section::before {
  position: absolute;
  top: -150px;
  left: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.018);
  content: "";
}

.order-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(65px, 10vw, 150px);
}

.order-intro {
  position: relative;
  z-index: 1;
}

.eyebrow.light {
  color: var(--blush);
}

.order-intro h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.order-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.69);
}

.button-light {
  color: var(--wine);
  background: var(--blush);
}

.button-light:hover {
  background: #fff;
}

.button-light svg {
  width: 17px;
  height: 17px;
}

.order-steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.order-steps li {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 50px 1fr;
  gap: 16px;
}

.order-steps li > span {
  color: var(--blush);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.order-steps h3 {
  margin: -4px 0 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.order-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.store-section {
  background:
    linear-gradient(rgba(46, 40, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 40, 37, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 32px 32px;
}

.store-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.store-card,
.payment-card {
  position: relative;
  padding: clamp(34px, 5vw, 60px);
}

.store-card {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 25px 70px rgba(63, 76, 58, 0.15);
}

.store-card::after {
  position: absolute;
  top: 100px;
  right: 42px;
  color: rgba(255, 255, 255, 0.11);
  content: "✽";
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  transform: rotate(14deg);
}

.store-card-top {
  display: flex;
  margin-bottom: 35px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.store-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.open-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.open-mark i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

.store-card h3 {
  position: relative;
  z-index: 1;
  max-width: 450px;
  font-size: clamp(40px, 4.5vw, 60px);
}

.store-card address {
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.store-line {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
}

.store-line-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  place-items: center;
}

.store-line-icon svg {
  width: 16px;
  height: 16px;
}

.store-line > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.store-line small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-line strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
}

.store-phone-line strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
}

.store-line b {
  font-weight: 400;
  transition: transform 0.2s ease;
}

.store-line:hover b {
  transform: translate(2px, -2px);
}

.map-link {
  display: inline-flex;
  margin-top: 26px;
  padding-bottom: 3px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-link svg {
  width: 18px;
  height: 18px;
}

.payment-card {
  overflow: hidden;
  border: 1px solid rgba(98, 49, 57, 0.12);
  background: var(--blush-soft);
}

.payment-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(184, 92, 98, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(184, 92, 98, 0.04), 0 0 0 70px rgba(184, 92, 98, 0.025);
  content: "";
}

.payment-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border: 1px solid rgba(98, 49, 57, 0.18);
  border-radius: 50%;
  color: var(--rose);
  place-items: center;
}

.payment-icon svg {
  width: 21px;
  height: 21px;
}

.payment-card .store-kicker {
  color: var(--rose);
}

.payment-card h3 {
  margin-top: 15px;
  font-size: clamp(38px, 4vw, 54px);
}

.payment-description {
  max-width: 430px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.payment-card dl {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
}

.payment-card dl > div {
  padding: 15px 0;
  border-top: 1px solid rgba(98, 49, 57, 0.13);
}

.payment-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.payment-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.iban-row dd {
  overflow-wrap: anywhere;
  color: var(--wine);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.copy-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--wine);
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--wine);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.copy-button:hover {
  color: var(--wine);
  background: transparent;
}

.copy-button svg {
  width: 16px;
  height: 16px;
}

.payment-source {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 25px 0 0;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.payment-source span:first-child {
  color: var(--rose);
}

.contact-banner {
  color: var(--wine);
  background: var(--blush);
}

.contact-banner-inner {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-banner p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.contact-banner p span {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-banner p strong {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.contact-banner a {
  display: grid;
  min-width: 355px;
  padding: 21px 0;
  border-top: 1px solid rgba(98, 49, 57, 0.27);
  border-bottom: 1px solid rgba(98, 49, 57, 0.27);
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 13px;
}

.contact-banner a > span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-banner a strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.site-footer {
  color: rgba(255, 255, 255, 0.71);
  background: #292321;
}

.footer-main {
  display: grid;
  padding-block: 70px 60px;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  width: 130px;
  padding: 4px;
  filter: invert(1);
  opacity: 0.71;
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 300px;
  margin: 21px 0 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: var(--blush);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span,
.footer-address {
  font-size: 12px;
}

.footer-address {
  margin: 0;
  color: inherit;
  font-style: normal;
  line-height: 1.65;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-bottom p {
  margin: 0;
}

.floating-call {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 54px;
  padding: 8px 18px 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 10px 35px rgba(46, 40, 37, 0.25);
  align-items: center;
  gap: 11px;
}

.floating-call > svg {
  width: 20px;
  height: 20px;
}

.floating-call > span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-call small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-call strong {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 140px 1fr auto;
  }

  .primary-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 630px;
    gap: 45px;
  }

  .hero-gallery {
    min-height: 495px;
  }

  .hero-sticker {
    right: -1%;
    width: 110px;
    height: 110px;
  }

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

  .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-card:nth-child(3n + 2) {
    margin-top: 28px;
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(100% - 34px, 680px);
  }

  .utility-location {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 104px;
  }

  .primary-nav {
    visibility: hidden;
    position: fixed;
    z-index: 71;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 360px);
    height: 100dvh;
    padding: 120px 36px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    opacity: 0;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .primary-nav > a:not(.nav-call) {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-nav .nav-call {
    display: flex;
    width: 100%;
    margin-top: 18px;
    padding: 17px 18px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--wine);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-call svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    display: block;
  }

  body.menu-open .primary-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  body.menu-open .menu-scrim {
    visibility: visible;
    opacity: 1;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    background:
      radial-gradient(circle at 10% 10%, rgba(238, 207, 196, 0.5), transparent 26%),
      linear-gradient(180deg, #fbf0e9 0%, #fbf0e9 55%, #f1dcd3 55%, #f1dcd3 100%);
  }

  .hero-grid {
    min-height: auto;
    padding-block: 62px 70px;
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-gallery {
    width: min(100%, 610px);
    min-height: 570px;
    margin-inline: auto;
  }

  .hero-image-main {
    right: 16%;
  }

  .hero-caption {
    left: 4%;
  }

  .hero-flower-two {
    display: none;
  }

  .section {
    padding-block: 85px;
  }

  .section-heading {
    margin-bottom: 38px;
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading > p {
    max-width: 540px;
  }

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

  .product-card:nth-child(3n + 2) {
    margin-top: 0;
  }

  .product-card:nth-child(even) {
    margin-top: 28px;
  }

  .product-call {
    opacity: 1;
    transform: none;
  }

  .order-grid,
  .store-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .order-grid {
    gap: 70px;
  }

  .store-layout {
    gap: 18px;
  }

  .contact-banner-inner {
    padding-block: 55px;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .contact-banner a {
    width: 100%;
  }

  .footer-main {
    gap: 55px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 30px);
  }

  .utility-inner {
    min-height: 34px;
  }

  .utility-phone span {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    width: 91px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-call {
    display: none;
  }

  .hero-grid {
    padding-block: 52px 57px;
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 65px);
  }

  .hero-description {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 28px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 31px;
  }

  .hero-gallery {
    min-height: 410px;
  }

  .hero-image-main {
    right: 10%;
    width: 66%;
    height: 91%;
  }

  .hero-image-top {
    top: 6%;
    width: 39%;
    height: 36%;
  }

  .hero-image-bottom {
    width: 39%;
    height: 35%;
    border-width: 5px;
  }

  .hero-sticker {
    top: -4%;
    right: -2%;
    width: 92px;
    height: 92px;
    padding: 10px;
  }

  .hero-sticker svg {
    width: 18px;
    height: 18px;
  }

  .hero-sticker span {
    font-size: 10px;
  }

  .hero-caption {
    display: none;
  }

  .ribbon-track {
    min-height: 42px;
    justify-content: flex-start;
    gap: 24px;
    animation: ribbonScroll 18s linear infinite;
  }

  .section {
    padding-block: 72px;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-card:nth-child(even) {
    margin-top: 0;
  }

  .product-image-wrap {
    aspect-ratio: 1;
  }

  .product-meta h3 {
    font-size: 19px;
  }

  .availability-note {
    margin-top: 48px;
    padding-inline: 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .availability-note a {
    width: 100%;
    margin: 0 0 0 28px;
  }

  .order-intro h2 {
    font-size: 47px;
  }

  .store-card,
  .payment-card {
    padding: 33px 25px;
  }

  .store-card::after {
    top: 95px;
    right: 18px;
    font-size: 62px;
  }

  .store-card h3 {
    font-size: 40px;
  }

  .store-phone-line strong {
    font-size: 21px;
  }

  .store-line {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .store-line strong {
    font-size: 11px;
  }

  .store-phone-line strong {
    font-size: 20px;
  }

  .payment-card h3 {
    font-size: 39px;
  }

  .iban-row dd {
    font-size: 14px;
  }

  .contact-banner a {
    min-width: 0;
    grid-template-columns: 1fr auto;
  }

  .contact-banner a > span:last-child {
    display: none;
  }

  .contact-banner a strong {
    font-size: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .floating-call {
    display: flex;
  }
}

@keyframes ribbonScroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
