:root {
  --ink: #18392f;
  --ink-soft: #315347;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #eef3ee;
  --sage: #cad8c5;
  --rose: #b64652;
  --coral: #e6795e;
  --marigold: #efa52f;
  --line: rgba(24, 57, 47, 0.14);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(25, 47, 40, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  position: relative;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 48px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement__close {
  position: absolute;
  right: 18px;
  display: grid;
  place-items: center;
  padding: 4px;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.announcement__close svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
}

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

.brand__logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 2px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0 25px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 1px;
  background: var(--rose);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

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

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button:hover {
  color: var(--rose);
}

.action-count {
  position: absolute;
  right: 2px;
  top: 1px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: var(--white);
  background: var(--rose);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.menu-trigger {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 109px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #7b8c77;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  background: linear-gradient(90deg, rgba(20, 42, 35, 0.78) 0%, rgba(20, 42, 35, 0.46) 43%, rgba(20, 42, 35, 0.05) 73%);
}


.hero__content {
  position: relative;
  z-index: 1;
  width: min(600px, calc(100% - 48px));
  margin-left: clamp(24px, 8vw, 128px);
  padding: 80px 0 105px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6c6b1;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 94px);
}

.hero__copy {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: var(--ink);
  background: var(--white);
}

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

.button--dark {
  color: var(--white);
  background: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 5px;
  color: inherit;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.hero__scroll {
  position: absolute;
  right: 44px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-strip {
  min-height: 115px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 20px clamp(24px, 5vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-strip > div {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--rose);
}

.service-strip span {
  display: flex;
  flex-direction: column;
}

.service-strip strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.service-strip small {
  margin-top: 2px;
  color: #73847d;
  font-size: 11px;
}

.section-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 88px);
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.custom-section h2,
.story h2,
.newsletter h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 66px);
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 22px auto 0;
  color: #65776f;
  line-height: 1.7;
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.occasion-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  border: 0;
  border-radius: 3px;
  background: var(--mist);
  text-align: left;
  cursor: pointer;
}

.occasion-card img,
.occasion-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.occasion-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.occasion-card:hover img {
  transform: scale(1.035);
}

.occasion-card__overlay {
  background: linear-gradient(180deg, transparent 45%, rgba(20, 42, 35, 0.78) 100%);
}

.occasion-card__label {
  position: absolute;
  left: 28px;
  right: 66px;
  bottom: 27px;
  display: flex;
  flex-direction: column;
}

.occasion-card__label strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.occasion-card__label small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.occasion-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 27px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.shop-section {
  padding: 118px 0 125px;
  background: var(--white);
}

.shop-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 88px);
}

.section-heading--left {
  max-width: 760px;
  margin: 0 0 42px;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

.shop-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
}

.filter-tab {
  position: relative;
  min-height: 57px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.filter-tab::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -1px;
  height: 2px;
  background: transparent;
}

.filter-tab.active {
  color: var(--rose);
}

.filter-tab.active::after {
  background: var(--rose);
}

.product-total {
  color: #7b8a84;
  font-size: 12px;
}

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

.product-card[hidden] {
  display: none;
}

.product-card__media {
  position: relative;
  aspect-ratio: 0.94;
  overflow: hidden;
  background: #eee8e4;
}

.product-card__media--ivory {
  background: #f1eee3;
}

.product-card__media--green {
  background: #e2eadf;
}

.product-card__media--sage {
  background: #d8e3d8;
}

.product-card__media--photo {
  background: #e8dfd8;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__media--ivory img {
  filter: saturate(0.66) brightness(1.08);
}

.product-card__media--green img {
  filter: hue-rotate(15deg) saturate(0.8);
}

.product-card__media--sage img {
  filter: saturate(0.7) contrast(0.94);
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--rose);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-badge--new {
  color: var(--ink);
  background: var(--marigold);
}

.favorite-button {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.favorite-button.active {
  color: var(--white);
  background: var(--rose);
}

.favorite-button.active svg {
  fill: currentColor;
}

.quick-add,
.product-quote {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  border: 0;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.quick-add:hover,
.product-quote:hover {
  background: var(--rose);
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.product-type {
  margin: 0 0 5px;
  color: #7d8c86;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.price {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #7d8c86;
  font-size: 10px;
}

.swatch {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(24, 57, 47, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--white);
}

.swatch--red { background: #aa2438; }
.swatch--white { background: #f9f7ed; }
.swatch--blush { background: #e6a7ae; }
.swatch--orange { background: #e7781b; }
.swatch--yellow { background: #f4bd2b; }
.swatch--green { background: #49724b; }
.swatch--sage { background: #97ad94; }

.custom-section {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--mist);
}

.custom-section__image {
  min-height: 580px;
  overflow: hidden;
}

.custom-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.custom-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(42px, 7vw, 115px);
}

.custom-section__content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  color: #5e726a;
  line-height: 1.75;
}

.custom-section ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.custom-section li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-section li svg {
  width: 17px;
  height: 17px;
  color: var(--rose);
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.story__brand-art {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid #e7ddd3;
  background: #fbf7f2;
  box-shadow: 0 22px 60px rgba(34, 54, 46, 0.12);
}

.story__brand-art img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}
.story__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 32px;
  color: #5e726a;
  line-height: 1.8;
}

.newsletter {
  position: relative;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding: 75px clamp(24px, 8vw, 128px);
  color: var(--white);
  background: var(--ink);
}

.newsletter .eyebrow {
  color: #f0aa8f;
}

.newsletter h2 {
  max-width: 760px;
  font-size: clamp(38px, 4vw, 58px);
}

.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.newsletter-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 12px 0 0;
  color: var(--white);
  border: 0;
  outline: none;
  background: transparent;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.newsletter-success {
  grid-column: 2;
  margin: -40px 0 0;
  color: #d7e5d9;
  font-size: 13px;
}

.site-footer {
  padding: 76px clamp(24px, 6vw, 88px) 28px;
  color: var(--ink);
  background: #f1eee7;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
}

.brand--footer {
  margin-bottom: 22px;
}

.brand--footer .brand__logo {
  width: 88px;
  height: 88px;
}

.footer-brand > p {
  max-width: 320px;
  color: #6e7f78;
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  font-size: 12px;
}

.footer-contact strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.footer-contact a {
  width: max-content;
  color: #65756f;
}

.footer-contact a:hover {
  color: var(--rose);
}

.social-links {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--white);
  background: var(--rose);
  border-color: var(--rose);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.footer-links a {
  width: max-content;
  color: #65756f;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 22px;
  color: #7a8984;
  border-top: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 20px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 49;
  visibility: hidden;
  background: rgba(11, 29, 23, 0.54);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.drawer-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(440px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.side-drawer--left {
  left: 0;
  right: auto;
  transform: translateX(-105%);
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 6px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 39px;
}

.empty-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 25px;
  text-align: center;
}

.empty-cart > svg {
  width: 40px;
  height: 40px;
  color: var(--rose);
}

.empty-cart h3 {
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.empty-cart p {
  margin: 0 0 28px;
  color: #6f7f79;
  font-size: 13px;
}

.cart-items {
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 84px;
  height: 94px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.cart-item p {
  margin: 0;
  color: #6f7f79;
  font-size: 11px;
}

.cart-item__price {
  align-self: start;
  font-size: 12px;
  font-weight: 600;
}

.remove-item {
  margin-top: 9px;
  padding: 0;
  color: #7e8985;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.cart-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 21px;
}

.cart-summary p {
  color: #72827c;
  font-size: 11px;
}

.checkout-button {
  width: 100%;
  margin-top: 10px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 27px;
}

.mobile-menu__note {
  margin-top: auto;
  padding: 25px;
  background: var(--mist);
}

.mobile-menu__note p {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 22px;
}

.search-overlay,
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 43, 35, 0.97);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.search-overlay.open,
.modal.open {
  visibility: visible;
  opacity: 1;
}

.search-close {
  position: absolute;
  right: 30px;
  top: 30px;
  color: var(--white);
}

.search-form {
  width: min(850px, 100%);
  color: var(--white);
}

.search-form label {
  display: block;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
}

.search-form > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.search-form input {
  min-width: 0;
  min-height: 62px;
  padding: 0 16px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.47);
}

.search-form button {
  padding: 10px 0 10px 18px;
  color: var(--white);
  border: 0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.search-form p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.modal {
  overflow-y: auto;
  background: rgba(16, 37, 30, 0.74);
}

.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(30px, 5vw, 56px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.consultation-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 58px);
}

.consultation-intro > p:last-child {
  max-width: 570px;
  margin: 18px 0 28px;
  color: #65766f;
}

.consultation-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consultation-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-form input,
.consultation-form select {
  height: 48px;
}

.consultation-form textarea {
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(182, 70, 82, 0.11);
}

.consultation-form .button {
  margin-top: 6px;
}

.consultation-success {
  padding: 48px 0 20px;
  text-align: center;
}

.consultation-success > svg {
  width: 52px;
  height: 52px;
  color: var(--rose);
}

.consultation-success h3 {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.consultation-success p {
  max-width: 470px;
  margin: 0 auto 28px;
  color: #65766f;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  max-width: calc(100vw - 40px);
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: grid;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 24px;
  }

  .service-strip > div {
    justify-content: flex-start;
    padding: 18px 24px;
  }

  .service-strip > div:nth-child(2) {
    border-right: 0;
  }

  .service-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .occasion-card:first-child {
    grid-column: 1 / -1;
    min-height: 460px;
  }

  .occasion-card:not(:first-child) {
    min-height: 430px;
  }

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

  .custom-section {
    grid-template-columns: 1fr 1fr;
  }

  .story {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .announcement {
    min-height: 32px;
    padding: 6px 44px 6px 15px;
    justify-content: flex-start;
    font-size: 9px;
  }

  .announcement__close {
    right: 10px;
  }

  .site-header {
    height: 65px;
    padding: 0 16px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 17px;
  }

  .search-trigger,
  .favorites-trigger {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: max(680px, calc(100svh - 97px));
    align-items: flex-end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(20, 42, 35, 0.06) 15%, rgba(20, 42, 35, 0.82) 71%, rgba(20, 42, 35, 0.95) 100%);
  }


  .hero__content {
    width: auto;
    margin: 0;
    padding: 80px 22px 66px;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero__copy {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 27px;
  }

  .hero__scroll {
    display: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding: 5px 18px;
  }

  .service-strip > div {
    min-height: 72px;
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .service-strip > div:last-child {
    border-bottom: 0;
  }

  .section-shell {
    padding: 82px 18px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2,
  .custom-section h2,
  .story h2,
  .newsletter h2 {
    font-size: 43px;
  }

  .section-heading > p:last-child {
    margin-left: 0;
    font-size: 14px;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .occasion-card:first-child,
  .occasion-card:not(:first-child) {
    grid-column: auto;
    min-height: 410px;
  }

  .occasion-card__label {
    left: 21px;
    bottom: 22px;
  }

  .occasion-card__label strong {
    font-size: 31px;
  }

  .occasion-card__arrow {
    right: 19px;
    bottom: 20px;
  }

  .shop-section {
    padding: 82px 0 88px;
  }

  .shop-inner {
    padding: 0 16px;
  }

  .shop-toolbar {
    align-items: flex-end;
  }

  .filter-tabs {
    margin-right: 12px;
  }

  .filter-tab {
    padding: 0 13px;
  }

  .filter-tab::after {
    left: 13px;
    right: 13px;
  }

  .product-total {
    display: none;
  }

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

  .product-card__media {
    aspect-ratio: 0.85;
  }

  .product-badge {
    left: 8px;
    top: 8px;
    padding: 5px 7px;
    font-size: 7px;
  }

  .favorite-button {
    right: 7px;
    top: 7px;
    width: 34px;
    height: 34px;
  }

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

  .quick-add,
  .product-quote {
    left: 7px;
    right: 7px;
    bottom: 7px;
    min-height: 39px;
    opacity: 1;
    transform: none;
    font-size: 11px;
  }

  .product-card__info {
    display: block;
    margin-top: 12px;
  }

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

  .price {
    display: block;
    margin-top: 5px;
    font-size: 12px;
  }

  .swatches {
    margin-top: 7px;
  }

  .custom-section {
    grid-template-columns: 1fr;
  }

  .custom-section__image {
    min-height: 430px;
  }

  .custom-section__content {
    padding: 64px 22px 72px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .story__brand-art {
    max-width: 520px;
  }

  .newsletter {
    min-height: 430px;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 66px 22px;
  }

  .newsletter-success {
    grid-column: auto;
    margin: -22px 0 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 55px;
    padding: 58px 22px 25px;
  }

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

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 11px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 0;
  }

  .modal__panel {
    width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    padding: 55px 22px 30px;
  }

  .consultation-intro h2 {
    font-size: 43px;
  }

  .search-overlay {
    padding: 22px;
  }

  .search-close {
    right: 15px;
    top: 15px;
  }

  .search-form label {
    font-size: 43px;
  }
}

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

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