:root {
  --ds-accent: #a45f3f;
  --ds-accent-dark: #79422d;
  --ds-ink: #211c18;
  --ds-muted: #6e655f;
  --ds-bg: #fffdf9;
  --ds-surface: #f5efe8;
  --ds-surface-2: #ebe0d4;
  --ds-border: #dfd6cd;
  --ds-success: #2e7251;
  --ds-danger: #b53636;
  --ds-container: 1280px;
  --ds-radius-sm: 10px;
  --ds-radius: 18px;
  --ds-radius-lg: 30px;
  --ds-shadow: 0 18px 60px rgba(49, 35, 27, .09);
  --ds-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ds-serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ds-ink); background: var(--ds-bg); font-family: var(--ds-font); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.35em; height: 1.35em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 40px), var(--ds-container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 860px); }
.section-padding { padding-block: clamp(68px, 8vw, 112px); }
.site-main { min-height: 45vh; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { clip: auto !important; width: auto; height: auto; padding: 12px 16px; margin: 8px; background: #fff; color: #000; z-index: 100000; }

.announcement-bar { background: var(--ds-ink); color: #fff; text-align: center; font-size: .82rem; letter-spacing: .035em; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,253,249,.94); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: box-shadow .2s ease, border-color .2s ease; }
.site-header.is-scrolled { border-color: var(--ds-border); box-shadow: 0 8px 28px rgba(45,32,24,.06); }
.site-header__inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.site-branding { display: flex; align-items: center; }
.site-title, .footer-logo { font-family: var(--ds-serif); font-size: clamp(1.55rem, 2.3vw, 2.1rem); font-weight: 700; letter-spacing: -.035em; }
.custom-logo-link img { max-height: 54px; width: auto; }
.primary-navigation { justify-self: center; }
.primary-menu { list-style: none; display: flex; align-items: center; gap: 30px; padding: 0; margin: 0; }
.primary-menu a { font-size: .94rem; font-weight: 600; position: relative; }
.primary-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--ds-accent); transition: right .2s ease; }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 7px; }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; border: 0; background: transparent; border-radius: 50%; color: var(--ds-ink); transition: background .2s ease, color .2s ease; position: relative; }
.icon-button:hover { background: var(--ds-surface); color: var(--ds-accent-dark); }
.header-cart__count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: var(--ds-accent); color: #fff; display: grid; place-items: center; font-size: .68rem; font-weight: 800; }
.mobile-menu-toggle, .mobile-menu-backdrop { display: none; }

.hero-section { overflow: hidden; background: linear-gradient(135deg, #f1e7dd 0%, #fff8f0 62%, #e7d2c0 100%); }
.hero-section--image { background-size: cover; background-position: center; color: #fff; }
.hero-section__inner { min-height: min(720px, calc(100vh - 112px)); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(40px, 7vw, 110px); padding-block: 80px; }
.hero-section__content { max-width: 670px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--ds-accent-dark); font-size: .77rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-section--image .eyebrow { color: #fff; }
h1, h2, h3 { font-family: var(--ds-serif); line-height: 1.08; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4.2vw, 4rem); margin-bottom: 22px; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.hero-section__description { max-width: 620px; color: var(--ds-muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); margin: 0 0 34px; }
.hero-section--image .hero-section__description { color: rgba(255,255,255,.88); }
.hero-section__actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button, button, input[type="submit"] { min-height: 50px; border: 1px solid transparent; border-radius: 999px; padding: 13px 24px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--ds-accent); color: #fff; }
.button--primary:hover { background: var(--ds-accent-dark); }
.button--ghost { border-color: rgba(33,28,24,.25); background: transparent; }
.hero-section--image .button--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.button--outline { border-color: var(--ds-border); background: transparent; }
.button--light { background: #fff; color: var(--ds-ink); }
.hero-section__visual { position: relative; min-height: 470px; }
.hero-card { position: absolute; border-radius: var(--ds-radius-lg); box-shadow: var(--ds-shadow); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-card--large { inset: 20px 45px 35px 10px; background: linear-gradient(145deg, #c59173, #7b4932); color: #fff; padding: 46px; transform: rotate(3deg); }
.hero-card--large span { font-size: clamp(2.2rem, 4vw, 4rem); font-family: var(--ds-serif); }
.hero-card--large strong { font-size: clamp(3.4rem, 6vw, 6rem); font-family: var(--ds-serif); line-height: .92; }
.hero-card--small { width: 140px; aspect-ratio: 1; right: 0; bottom: 0; background: #fff; color: var(--ds-accent); display: grid; place-items: center; transform: rotate(-7deg); }
.hero-card--small svg { width: 58px; height: 58px; }

.benefits-section { border-block: 1px solid var(--ds-border); background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 34px 26px; border-right: 1px solid var(--ds-border); }
.benefit-item:first-child { padding-left: 0; }
.benefit-item:last-child { border-right: 0; padding-right: 0; }
.benefit-item__icon { flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-items: center; background: var(--ds-surface); border-radius: 50%; color: var(--ds-accent-dark); }
.benefit-item h2 { font-family: var(--ds-font); font-size: 1rem; letter-spacing: -.01em; margin: 0 0 4px; }
.benefit-item p { margin: 0; color: var(--ds-muted); font-size: .87rem; line-height: 1.5; }

.products-section { background: #fff; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ds-accent-dark); font-weight: 750; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.story-section { background: var(--ds-surface); }
.story-section__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.story-section__media { min-height: 560px; border-radius: var(--ds-radius-lg); background: linear-gradient(145deg, var(--ds-accent), var(--ds-accent-dark)); display: grid; place-items: center; overflow: hidden; box-shadow: var(--ds-shadow); }
.story-section__media--image { background-size: cover; background-position: center; }
.story-section__monogram { color: rgba(255,255,255,.95); font-family: var(--ds-serif); font-weight: 700; font-size: clamp(5rem, 11vw, 10rem); letter-spacing: -.08em; }
.story-section__content p:not(.eyebrow) { color: var(--ds-muted); font-size: 1.08rem; margin-bottom: 28px; }

.cta-section { background: #fff; }
.cta-card { padding: clamp(38px, 6vw, 72px); border-radius: var(--ds-radius-lg); color: #fff; background: var(--ds-ink); display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-card h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.8rem); }
.cta-card .eyebrow { color: #d6ad91; }

.page-header { margin-bottom: 48px; }
.page-header h1 { font-size: clamp(2.7rem, 5vw, 5rem); margin-bottom: 18px; }
.archive-description, .entry-content, .entry-single { color: var(--ds-muted); }
.entry-content { font-size: 1.06rem; }
.entry-content > * { max-width: 100%; }
.entry-content h2, .entry-content h3 { color: var(--ds-ink); margin-top: 2em; }
.entry-content a { color: var(--ds-accent-dark); text-decoration: underline; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 14px; border: 1px solid var(--ds-border); text-align: left; }
.entry-hero { margin-bottom: 42px; border-radius: var(--ds-radius); overflow: hidden; }
.entry-meta { font-size: .82rem; color: var(--ds-muted); text-transform: uppercase; letter-spacing: .08em; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { border: 1px solid var(--ds-border); border-radius: var(--ds-radius); overflow: hidden; background: #fff; }
.post-card__image { aspect-ratio: 4/3; background: var(--ds-surface); display: grid; place-items: center; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__image img { transform: scale(1.035); }
.post-card__placeholder { font-family: var(--ds-serif); font-size: 4rem; color: var(--ds-accent); }
.post-card__content { padding: 26px; }
.post-card__content h2 { font-size: 1.65rem; }
.post-card__content p { color: var(--ds-muted); }

.empty-state { text-align: center; padding: 70px 30px; background: var(--ds-surface); border-radius: var(--ds-radius-lg); }
.empty-state h2, .empty-state h3 { margin-bottom: 12px; }
.empty-state p { color: var(--ds-muted); }
.error-page__code { color: var(--ds-accent); font-family: var(--ds-serif); font-size: clamp(5rem, 14vw, 11rem); line-height: 1; margin: 0; }
.search-form { display: flex; gap: 10px; max-width: 600px; margin: 28px auto 0; }
.search-form label { flex: 1; }
.search-field, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select { width: 100%; min-height: 50px; border: 1px solid var(--ds-border); border-radius: 12px; background: #fff; color: var(--ds-ink); padding: 12px 15px; outline: none; }
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--ds-accent); box-shadow: 0 0 0 3px rgba(164,95,63,.12); }

.site-footer { padding-top: 74px; background: #261f1b; color: rgba(255,255,255,.75); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(35px, 6vw, 85px); padding-bottom: 62px; }
.footer-logo { color: #fff; }
.site-footer__brand p { max-width: 320px; }
.site-footer h2 { color: #fff; font-family: var(--ds-font); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-menu, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-menu a:hover, .footer-contact a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }
.site-footer__bottom p { margin: 0; }

.comments-area { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--ds-border); }
.comment-list { padding-left: 20px; }

@media (max-width: 1060px) {
  .site-header__inner { gap: 18px; }
  .primary-menu { gap: 18px; }
  .hero-section__inner { grid-template-columns: 1fr 420px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: 0; }
  .benefit-item:nth-child(-n+2) { border-bottom: 1px solid var(--ds-border); }
  .benefit-item:first-child, .benefit-item:last-child { padding-inline: 26px; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer__column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--ds-container)); }
  .site-header__inner { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .mobile-menu-toggle { display: inline-grid; }
  .site-branding { justify-self: center; }
  .site-title { font-size: 1.5rem; }
  .primary-navigation { position: fixed; z-index: 110; left: 0; top: 0; bottom: 0; width: min(86vw, 390px); padding: 105px 30px 30px; background: var(--ds-bg); transform: translateX(-105%); transition: transform .3s ease; box-shadow: var(--ds-shadow); }
  .primary-navigation.is-open { transform: translateX(0); }
  .primary-menu { display: grid; gap: 2px; }
  .primary-menu a { display: block; padding: 13px 5px; font-family: var(--ds-serif); font-size: 1.45rem; }
  .primary-menu a::after { display: none; }
  .mobile-menu-backdrop { display: block; position: fixed; z-index: 105; inset: 0; background: rgba(23,17,14,.48); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .mobile-menu-backdrop.is-open { opacity: 1; visibility: visible; }
  .header-actions { gap: 2px; }
  .hero-section__inner { min-height: auto; grid-template-columns: 1fr; padding-block: 78px; }
  .hero-section__visual { min-height: 380px; }
  .story-section__grid { grid-template-columns: 1fr; }
  .story-section__media { min-height: 420px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__column:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .section-padding { padding-block: 62px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .hero-section__inner { padding-block: 58px; }
  .hero-section__visual { min-height: 300px; }
  .hero-card--large { inset: 10px 25px 25px 0; padding: 30px; }
  .hero-card--small { width: 95px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item, .benefit-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--ds-border); padding-inline: 0; }
  .benefit-item:last-child { border-bottom: 0; padding-inline: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .story-section__media { min-height: 330px; }
  .posts-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand, .site-footer__column:last-child { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .search-form { flex-direction: column; }
}

/* Product search page */
.ds-search-page {
  min-height: 58vh;
  padding-block: clamp(58px, 7vw, 96px);
}

.ds-search-hero {
  max-width: 900px;
  margin: 0 auto clamp(48px, 7vw, 78px);
  text-align: center;
}

.ds-search-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.ds-search-hero > p:not(.eyebrow) {
  margin: 0;
  color: var(--ds-muted);
  font-size: 1.05rem;
}

.ds-product-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 720px;
  margin: 28px auto 0;
}

.ds-product-search__field {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--ds-border);
  border-radius: 999px;
  background: #fff;
  padding: 13px 22px;
  color: var(--ds-ink);
  outline: none;
}

.ds-product-search__field:focus {
  border-color: var(--ds-accent);
  box-shadow: 0 0 0 3px rgba(164, 95, 63, .12);
}

.ds-product-search__button {
  min-width: 120px;
  min-height: 56px;
  border-radius: 999px;
  background: var(--ds-accent);
  color: #fff;
}

.ds-product-search__button:hover {
  background: var(--ds-accent-dark);
}

.ds-search-results__count {
  margin: 0 0 26px;
  color: var(--ds-muted);
  font-size: .9rem;
  font-weight: 650;
}

.ds-search-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px) 28px;
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  background: var(--ds-surface);
  text-align: center;
}

.ds-search-empty__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--ds-accent-dark);
  font-size: 2.1rem;
  box-shadow: 0 10px 34px rgba(49, 35, 27, .08);
}

.ds-search-empty h2 {
  margin-bottom: 12px;
}

.ds-search-empty p {
  max-width: 530px;
  margin: 0 auto 25px;
  color: var(--ds-muted);
}

@media (max-width: 560px) {
  .ds-product-search {
    grid-template-columns: 1fr;
  }

  .ds-product-search__button {
    width: 100%;
  }
}

/* Header product search overlay */
body.search-open { overflow: hidden; }
.product-search-overlay[hidden] { display: none !important; }
.product-search-overlay { position: fixed; z-index: 300; inset: 0; display: grid; place-items: start center; padding: clamp(70px, 12vh, 130px) 20px 30px; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.product-search-overlay.is-open { opacity: 1; visibility: visible; }
.product-search-overlay__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; border: 0; border-radius: 0; padding: 0; background: rgba(27, 21, 18, .55); backdrop-filter: blur(7px); }
.product-search-overlay__panel { position: relative; width: min(100%, 760px); border: 1px solid rgba(255,255,255,.5); border-radius: var(--ds-radius-lg); background: var(--ds-bg); padding: clamp(34px, 6vw, 62px); box-shadow: 0 28px 90px rgba(25, 18, 14, .25); text-align: center; transform: translateY(-18px) scale(.98); transition: transform .22s ease; }
.product-search-overlay.is-open .product-search-overlay__panel { transform: translateY(0) scale(1); }
.product-search-overlay__panel h2 { margin-bottom: 12px; }
.product-search-overlay__panel > p:not(.eyebrow) { margin: 0; color: var(--ds-muted); }
.product-search-overlay__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; min-height: 0; border: 0; border-radius: 50%; padding: 0; background: var(--ds-surface); color: var(--ds-ink); font-size: 1.65rem; font-weight: 400; line-height: 1; }
.product-search-overlay__close:hover { background: var(--ds-surface-2); }
.product-search-overlay__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin-top: 28px; }
.product-search-overlay__form input[type="search"] { width: 100%; min-height: 56px; border: 1px solid var(--ds-border); border-radius: 999px; background: #fff; padding: 13px 22px; outline: none; }
.product-search-overlay__form input[type="search"]:focus { border-color: var(--ds-accent); box-shadow: 0 0 0 3px rgba(164,95,63,.12); }
.product-search-overlay__form .button { min-width: 120px; }

@media (max-width: 820px) {
  .header-actions .icon-button:first-child { display: inline-grid; }
}

@media (max-width: 560px) {
  .product-search-overlay { padding-top: 72px; }
  .product-search-overlay__panel { padding: 44px 20px 26px; }
  .product-search-overlay__form { grid-template-columns: 1fr; }
  .product-search-overlay__form .button { width: 100%; }
}



/* Footer redesign — 1.4.0 */
.site-footer {
  padding-top: 0;
  background: #211a17;
  color: rgba(255,255,255,.72);
}

.site-footer__trust-wrap {
  border-block: 1px solid rgba(255,255,255,.1);
  background: #2a211d;
}

.site-footer__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-trust-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 23px 25px;
  border-right: 1px solid rgba(255,255,255,.09);
}

.footer-trust-card:first-child { padding-left: 0; }
.footer-trust-card:last-child { border-right: 0; padding-right: 0; }

.footer-trust-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #d8a27f;
}

.footer-trust-card__icon svg { width: 21px; height: 21px; }
.footer-trust-card strong,
.footer-trust-card small { display: block; }
.footer-trust-card strong { color: #fff; font-size: .88rem; line-height: 1.3; }
.footer-trust-card small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: .75rem; line-height: 1.35; }

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(155px, .8fr));
  gap: clamp(40px, 6vw, 90px);
  padding-block: clamp(58px, 7vw, 86px) 54px;
}

.footer-logo {
  display: inline-flex;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
}

.site-footer__tagline {
  max-width: 360px;
  margin: 19px 0 29px;
  color: rgba(255,255,255,.62);
  font-size: .96rem;
  line-height: 1.7;
}

.site-footer__help {
  display: grid;
  width: fit-content;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}

.site-footer__help strong { color: #fff; font-size: .78rem; }
.site-footer__help a { color: #e7b18d; font-size: .91rem; font-weight: 750; }
.site-footer__help a:hover { color: #fff; }
.site-footer__help small { color: rgba(255,255,255,.5); font-size: .72rem; }

.site-footer h2 {
  margin: 7px 0 22px;
  color: #fff;
  font-family: var(--ds-font);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-menu,
.footer-contact {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  position: relative;
  display: inline-flex;
  color: rgba(255,255,255,.66);
  font-size: .9rem;
  transition: color .18s ease, transform .18s ease;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ds-accent);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .18s ease;
}

.footer-menu a:hover { color: #fff; transform: translateX(5px); }
.footer-menu a:hover::before { opacity: 1; }

.footer-contact li { display: grid; gap: 3px; }
.footer-contact span { color: rgba(255,255,255,.42); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-contact a,
.footer-contact strong { color: #fff; font-size: .88rem; font-weight: 650; }
.footer-contact a:hover { color: #e7b18d; }

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.footer-contact-button:hover { border-color: var(--ds-accent); background: var(--ds-accent); }
.footer-contact-button svg { width: 17px; height: 17px; transition: transform .18s ease; }
.footer-contact-button:hover svg { transform: translateX(3px); }

.site-footer__partners {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 30px;
  padding-block: 27px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.footer-partners-group { display: grid; gap: 11px; }
.footer-partners-group > p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.footer-brand-chip,
.footer-cod-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  background: #fff;
  padding: 7px 11px;
}
.footer-brand-chip--wide { min-width: 122px; }
.footer-brand-chip--ssl { min-width: 106px; }
.footer-brand-chip--inpost { min-width: 126px; }
.footer-brand-chip img { display: block; width: auto; max-width: 100%; height: 27px; object-fit: contain; }
.footer-brand-chip--wide img { height: 25px; }
.footer-brand-chip--inpost img { height: 28px; }
.footer-cod-chip {
  min-width: auto;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.75);
  font-size: .73rem;
  font-weight: 750;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.46);
  font-size: .74rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 9px; }
.site-footer__bottom-links a:hover { color: #fff; }

@media (max-width: 1060px) {
  .site-footer__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-trust-card:nth-child(2) { border-right: 0; }
  .footer-trust-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
  .footer-trust-card:first-child,
  .footer-trust-card:nth-child(3) { padding-left: 0; }
  .footer-trust-card:nth-child(2),
  .footer-trust-card:last-child { padding-right: 0; }
  .site-footer__grid { grid-template-columns: 1.25fr repeat(2, 1fr); }
  .site-footer__contact-column { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__contact-column { grid-column: auto; }
  .site-footer__partners { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-footer__trust { grid-template-columns: 1fr; }
  .footer-trust-card,
  .footer-trust-card:first-child,
  .footer-trust-card:nth-child(2),
  .footer-trust-card:nth-child(3),
  .footer-trust-card:last-child {
    min-height: 88px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .footer-trust-card:last-child { border-bottom: 0; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 37px; }
  .site-footer__brand,
  .site-footer__contact-column { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__bottom-links { justify-content: flex-start; }
}

/* Contact page — 1.4.1 */
.contact-page-intro {
  max-width: 690px;
  margin: -4px 0 0;
  color: var(--ds-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.contact-page-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  background: #fff;
  padding: clamp(25px, 3vw, 36px);
  box-shadow: 0 14px 46px rgba(49, 35, 27, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-page-card:hover {
  border-color: rgba(164, 95, 63, .5);
  box-shadow: 0 20px 58px rgba(49, 35, 27, .1);
  transform: translateY(-4px);
}

.contact-page-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--ds-surface);
  color: var(--ds-accent-dark);
}

.contact-page-card__icon svg { width: 24px; height: 24px; }
.contact-page-card__label {
  margin-bottom: 8px;
  color: var(--ds-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-page-card strong {
  color: var(--ds-ink);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.contact-page-card small {
  margin-top: auto;
  padding-top: 23px;
  color: var(--ds-muted);
  font-size: .82rem;
}
.contact-page-extra {
  max-width: 900px;
  margin: 48px auto 0;
  padding-top: 42px;
  border-top: 1px solid var(--ds-border);
}
.site-footer__help a + a { margin-top: 2px; }

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page-card,
  .contact-page-card:last-child { grid-column: auto; min-height: 210px; }
}

/* Bundled Domowe Story logo */
.site-branding {
  min-width: 0;
}

.site-branding__default-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(340px, 29vw);
}

.site-branding__default-logo img,
.custom-logo-link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

@media (max-width: 1060px) {
  .site-branding__default-logo,
  .custom-logo-link {
    max-width: 275px;
  }

  .site-branding__default-logo img,
  .custom-logo-link img {
    max-height: 48px;
  }
}

@media (max-width: 820px) {
  .site-branding__default-logo,
  .custom-logo-link {
    max-width: min(230px, 48vw);
  }

  .site-branding__default-logo img,
  .custom-logo-link img {
    max-height: 42px;
  }
}

@media (max-width: 420px) {
  .site-branding__default-logo,
  .custom-logo-link {
    max-width: min(185px, 46vw);
  }

  .site-branding__default-logo img,
  .custom-logo-link img {
    max-height: 37px;
  }
}

