:root {
  --bg: #f5f0e7;
  --bg-soft: #fcfaf6;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #8f6a2a;
  --muted: #9b845e;
  --line: rgba(108, 84, 53, 0.16);
  --gold: #c79b3b;
  --gold-deep: #8c6724;
  --shadow: 0 24px 60px rgba(74, 53, 24, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 59, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(164, 178, 219, 0.28), transparent 26%),
    linear-gradient(180deg, #f9f6f0 0%, #f1ebe2 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.announcement-bar {
  padding: 14px 20px 16px;
  border-top: 6px solid #c79b3b;
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.98), rgba(241, 233, 220, 0.96)),
    radial-gradient(circle at top center, rgba(199, 155, 59, 0.12), transparent 42%);
  color: #8f6a2a;
  box-shadow: inset 0 -1px 0 rgba(140, 103, 36, 0.08);
}

.announcement-bar__text {
  margin: 0;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(0.96rem, 1.45vw, 1.18rem);
  line-height: 1.45;
}

.announcement-bar__link {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

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

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

.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;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  column-gap: 32px;
  row-gap: 18px;
  margin-top: 16px;
  margin-bottom: 30px;
  z-index: 20;
}

.topbar__rail {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 22px;
  min-height: 88px;
  padding: 12px 18px;
  border: 0.8px solid rgba(108, 84, 53, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(243, 236, 225, 0.92)),
    radial-gradient(circle at top center, rgba(199, 155, 59, 0.1), transparent 36%);
  box-shadow: 0 18px 48px rgba(103, 74, 31, 0.12);
  overflow: visible;
}

.brandlogo {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 160px;
  height: 160px;
  margin-left: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brandlogo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brandmark {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
  max-width: 100%;
  z-index: 1;
}

.brandmark__eyebrow,
.section-kicker,
.hero__note-label,
.service-card__index {
  color: var(--gold-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brandmark__title,
.hero-card__caption-title,
.footer__title {
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
}

.brandmark__title {
  max-width: 100%;
  font-size: clamp(3.2rem, 6vw, 5.25rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: none;
  color: var(--gold-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  font-feature-settings: "liga" 1, "kern" 1;
}

.topbar__nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
}

.topbar__nav-item {
  flex: 0 0 auto;
  border: 0;
  padding: 10px 14px 8px;
  background: transparent;
  color: #9b7428;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.topbar__nav-item:hover,
.topbar__nav-item:focus-visible {
  color: var(--gold-deep);
  transform: translateY(-1px);
}

.topbar__nav-item.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.34em;
}

.topbar__actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: 0;
}

.topbar__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 13px;
  border: 0.9px solid rgba(140, 103, 36, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.topbar__cart-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.topbar__cart:hover,
.topbar__cart:focus-visible,
.topbar__cart.is-active {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(103, 74, 31, 0.12);
}

.topbar__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-size: 0.78rem;
}

.topbar__cart-count[hidden] {
  display: none;
}

.topbar__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(140, 103, 36, 0.52);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--gold-deep);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.topbar__contact:hover,
.topbar__contact:focus-visible,
.topbar__contact.is-active {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(103, 74, 31, 0.12);
}

.site-menu {
  position: relative;
  z-index: 50;
  display: none;
}

.site-menu__trigger {
  display: none;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.site-menu__trigger-icon {
  display: inline-grid;
  gap: 5px;
  width: 24px;
  justify-items: start;
  flex: 0 0 auto;
}

.site-menu__trigger-line {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-deep);
}

.site-menu__trigger-line:nth-child(2) {
  width: 18px;
}

.site-menu__trigger-line:nth-child(3) {
  width: 12px;
}

.site-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  z-index: 60;
}

.site-menu.is-open .site-menu__panel {
  display: grid;
  gap: 8px;
}

.site-menu__item {
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-menu__item:hover,
.site-menu__item:focus-visible {
  color: var(--text);
  background: rgba(199, 155, 59, 0.12);
  transform: translateY(-1px);
}

.site-menu__item.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.site-menu__item--cta {
  border: 1px solid rgba(140, 103, 36, 0.18);
  background: rgba(199, 155, 59, 0.12);
  color: var(--gold-deep);
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
}

.language-toggle__button {
  min-width: 38px;
  height: 38px;
  border: 0.8px solid rgba(108, 84, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.74);
  color: var(--muted);
  padding: 0 10px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-toggle__button:hover,
.language-toggle__button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.language-toggle__button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
}

.hero--centered {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
}

.hero--single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.hero__content,
.hero-card,
.content-card,
.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: clamp(28px, 4vw, 56px);
}

.hero__content--wide {
  text-align: center;
}

.hero__content h1,
.section-heading h2,
.content-card h2 {
  margin: 14px 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero__content h1 {
  max-width: 13ch;
  margin: clamp(18px, 2vw, 28px) auto clamp(22px, 2.5vw, 34px);
  color: #a97828;
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(3.2rem, 6.6vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-synthesis: none;
}

.hero .section-kicker {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.hero .hero__lead {
  max-width: 62ch;
  margin-inline: auto;
  color: #a0865c;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(1.16rem, 1.7vw, 1.38rem);
  line-height: 1.65;
}

.section-heading h2,
.content-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero__lead,
.service-card p,
.content-card p,
.footer__copy,
.hero-card__caption-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero__actions--center {
  justify-content: center;
}

.hero__actions .button--primary {
  min-height: 76px;
  padding: 0 clamp(42px, 5vw, 64px);
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 16px 32px rgba(140, 103, 36, 0.24);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--gold-deep);
}

.hero-card {
  padding: 22px;
  isolation: isolate;
}

.hero-card--compact {
  align-self: stretch;
}

.hero-card__glow {
  position: absolute;
  inset: auto -10% -15% auto;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 174, 223, 0.45), transparent 68%);
  z-index: -1;
}

.hero-card__logo {
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-card__caption {
  padding: 20px 8px 4px;
}

.hero-card__caption-title {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.hero-card__caption-copy--muted {
  margin-top: 10px;
  color: var(--gold-deep);
}

.home-introduction {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 64px;
  margin-top: 54px;
  padding: clamp(36px, 6vw, 74px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 14%, rgba(228, 196, 126, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(241, 230, 211, 0.82));
  box-shadow: 0 24px 60px rgba(122, 91, 42, 0.1);
}

.home-introduction::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 155, 59, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(199, 155, 59, 0.045),
    0 0 0 70px rgba(199, 155, 59, 0.025);
}

.home-introduction__heading,
.home-introduction__copy,
.home-introduction__quote {
  position: relative;
  z-index: 1;
}

.home-introduction__heading h2,
.home-support__header h2 {
  margin: 14px 0 0;
  color: var(--gold-deep);
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-introduction__copy {
  align-self: end;
  display: grid;
  gap: 18px;
}

.home-introduction__copy p,
.home-support__header > p,
.home-support__item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.home-introduction__copy p {
  max-width: 42ch;
  font-size: clamp(1.2rem, 1.45vw, 1.42rem);
  line-height: 1.68;
}

.home-introduction__quote {
  grid-column: 1 / -1;
  width: min(100%, 880px);
  margin: 18px auto 0;
  padding: 30px 0 0;
  border-top: 1px solid rgba(140, 103, 36, 0.24);
  color: #ad8335;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}

.home-support {
  margin-top: 68px;
  padding: 0 clamp(8px, 2vw, 24px);
}

.home-support__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 40px 70px;
  align-items: end;
  padding-bottom: 38px;
}

.home-support__header h2 {
  max-width: 11ch;
}

.home-support__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 7vw, 90px);
}

.home-support__item {
  padding: 30px 0 34px;
  border-top: 1px solid rgba(140, 103, 36, 0.22);
}

.home-support__item h3 {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.home-support__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.home-support__actions .button {
  min-height: clamp(64px, 5vw, 72px);
  padding: 0 clamp(32px, 3.5vw, 48px);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.section-heading--panel {
  margin-bottom: 24px;
  text-align: center;
}

.section-heading {
  margin-bottom: 20px;
  padding: 0 4px;
}

.section-copy {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services__grid,
.content-grid {
  display: grid;
  gap: 20px;
}

.founder-story {
  position: relative;
  display: flex;
  justify-content: flex-start;
  min-height: 1040px;
  padding: clamp(46px, 6vw, 78px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f5f0e7;
  box-shadow: none;
}

.founder-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 244, 234, 0.97) 0%, rgba(249, 244, 234, 0.9) 34%, rgba(249, 244, 234, 0.28) 61%, rgba(249, 244, 234, 0.04) 100%),
    url("./public/founder-katarina.webp");
  background-size: cover;
  background-position: center 20%;
  opacity: 1;
}

.founder-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 240, 231, 0.02) 0%, rgba(245, 240, 231, 0.12) 78%, rgba(245, 240, 231, 0.42) 100%);
  pointer-events: none;
}

.founder-story__content {
  position: relative;
  z-index: 1;
  width: min(520px, 48%);
  margin: 0 auto 0 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.founder-story__lead {
  margin: 0 0 24px;
  color: #8b6a2f;
  font-family: "Baskerville", "Iowan Old Style", serif;
  font-size: 1.28rem;
  line-height: 1.75;
  font-style: italic;
  max-width: 34ch;
}

.founder-story__copy {
  display: grid;
  gap: 16px;
}

.founder-story__copy p {
  margin: 0;
  color: #8b7348;
  font-size: 1.08rem;
  line-height: 1.95;
}

.founder-story__content > * {
  position: relative;
  z-index: 1;
}

.founder-story__content h2 {
  color: #9b7428;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 12ch;
}

.founder-story .section-kicker {
  color: #b1883a;
}

.services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.shop-card__media {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.shop-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(185, 136, 58, 0.08)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.46), transparent 34%);
}

.shop-card__media--session {
  background:
    linear-gradient(135deg, rgba(247, 239, 226, 0.1), rgba(177, 136, 58, 0.12)),
    url("./public/founder-katarina.webp");
  background-position: center 22%;
  background-size: cover;
}

.shop-card__media--gift {
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.04), rgba(177, 136, 58, 0.06)),
    url("./public/gift-card-editorial.png");
  background-position: center;
  background-size: cover;
}

.shop-card__media--insurance {
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.03), rgba(177, 136, 58, 0.05)),
    url("./public/doctor-insurance-editorial.png");
  background-position: center;
  background-size: cover;
}

.shop-card__media--deposit {
  background:
    linear-gradient(135deg, rgba(255, 248, 238, 0.04), rgba(177, 136, 58, 0.06)),
    url("./public/priority-concierge-editorial.png");
  background-position: center;
  background-size: cover;
}

.shop-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.86);
  color: var(--gold-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.shop-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.shop-card__body h3 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--gold-deep);
}

.shop-card__copy {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.shop-card__select-wrap {
  display: block;
  margin-top: auto;
}

.shop-card__actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.shop-card--gift .shop-card__actions {
  margin-top: 18px;
  padding-top: 0;
}

.shop-card__select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(108, 84, 53, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.96);
  color: var(--muted);
  font: inherit;
  font-size: 1rem;
  appearance: none;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.shop-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6b777 0%, #b98934 100%);
  color: #fffdf8;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.shop-card__button:hover,
.shop-card__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(151, 116, 57, 0.18);
}

.shop-card--gift .shop-card__button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.shop-card__button--secondary {
  background: rgba(255, 252, 247, 0.98);
  color: var(--gold-deep);
  border-color: rgba(108, 84, 53, 0.16);
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
  pointer-events: none;
}

.cart-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(185, 136, 58, 0.18);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(460px, 100vw);
  max-width: 100%;
  height: 100%;
  padding: 24px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(245, 237, 223, 0.96)),
    radial-gradient(circle at top right, rgba(199, 155, 59, 0.12), transparent 34%);
  box-shadow: -16px 0 48px rgba(185, 136, 58, 0.18);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.cart-panel.is-open {
  pointer-events: auto;
}

.cart-panel.is-open .cart-panel__backdrop {
  opacity: 1;
}

.cart-panel.is-open .cart-panel__sheet {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cart-panel__kicker {
  margin: 0 0 8px;
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.cart-panel__title {
  margin: 0;
  color: var(--gold-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.cart-panel__close {
  border: 0;
  background: transparent;
  color: #b1883a;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-panel__content {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-panel__items {
  display: grid;
  gap: 14px;
}

.cart-panel__empty {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(108, 84, 53, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-item__title {
  margin: 0;
  color: var(--gold-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.28rem;
  line-height: 1.15;
}

.cart-item__meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cart-item__price {
  color: var(--gold-deep);
  font-weight: 700;
  white-space: nowrap;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-item__qty-button,
.cart-item__remove {
  border: 1px solid rgba(108, 84, 53, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--gold-deep);
  font: inherit;
  cursor: pointer;
}

.cart-item__qty-button {
  width: 32px;
  height: 32px;
}

.cart-item__remove {
  min-height: 36px;
  padding: 0 14px;
}

.cart-panel__footer {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(108, 84, 53, 0.12);
}

.cart-panel__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 1.05rem;
}

.cart-panel__summary strong {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.5rem;
}

.cart-panel__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.cart-panel__actions {
  display: grid;
  gap: 10px;
}

.cart-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.cart-panel__button--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
}

.cart-panel__button--secondary {
  border: 1px solid rgba(108, 84, 53, 0.16);
  background: rgba(255, 253, 249, 0.92);
  color: var(--gold-deep);
}

.newsletter-block {
  margin-top: 36px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 24%),
    radial-gradient(circle at bottom left, rgba(199, 155, 59, 0.12), transparent 30%),
    linear-gradient(180deg, #f4eee3 0%, #ece1cf 52%, #e9dfd0 100%);
  border: 1px solid rgba(199, 155, 59, 0.14);
  box-shadow: 0 24px 56px rgba(172, 137, 75, 0.18);
}

.newsletter-block__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: end;
  padding: clamp(28px, 3.5vw, 42px) clamp(30px, 5vw, 58px);
}

.newsletter-block__inner h2 {
  margin: 0;
  max-width: 22ch;
  color: #b1883a;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.newsletter-block__form {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
}

.newsletter-block__field {
  flex: 1;
}

.newsletter-block__input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(177, 136, 58, 0.42);
  background: transparent;
  color: #b1883a;
  padding: 0 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.32rem;
  outline: none;
}

.newsletter-block__input::placeholder {
  color: rgba(177, 136, 58, 0.74);
}

.newsletter-block__submit {
  border: 0;
  background: transparent;
  color: #b1883a;
  padding: 0 8px 14px;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.newsletter-block__submit:hover,
.newsletter-block__submit:focus-visible {
  opacity: 0.82;
  transform: translateX(2px);
}

.services__grid--features {
  column-gap: clamp(34px, 5vw, 66px);
  row-gap: 0;
  margin-top: 34px;
}

.service-card {
  padding: 24px;
}

.service-card h3 {
  margin: 18px 0 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.services__grid--features .service-card {
  min-height: 220px;
  padding: 32px 0 38px;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(140, 103, 36, 0.24);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.services__grid--features .service-card h3 {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.services__grid--features .service-card p {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.72;
}

.service-card--pricing {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px 28px;
  background:
    radial-gradient(circle at top center, rgba(214, 185, 123, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.82);
}

.service-card--pricing h3 {
  margin-top: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--gold-deep);
  text-wrap: balance;
}

.service-card--pricing .service-card__intro {
  margin-bottom: 24px;
  color: #b0905b;
  font-size: 1.18rem;
  line-height: 1.72;
}

.service-card__list {
  margin: 0 0 32px;
  padding-left: 26px;
  color: #b0905b;
  font-size: 1.1rem;
  line-height: 1.78;
}

.service-card__list li + li {
  margin-top: 14px;
}

.service-card--pricing .service-card__price {
  margin: auto 0 14px;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Iowan Old Style", serif;
  font-size: clamp(2.5rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #b1883a;
  text-align: center;
}

.service-card--pricing .service-card__tagline {
  margin: 0;
  color: #b79a68;
  font-family: "Baskerville", "Iowan Old Style", serif;
  font-size: 1.14rem;
  line-height: 1.42;
  text-align: center;
  font-style: italic;
}

.service-card__request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 26px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 14px 30px rgba(140, 103, 36, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card__request:hover,
.service-card__request:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(140, 103, 36, 0.26);
}

.content-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.content-card {
  padding: clamp(24px, 4vw, 40px);
}

.content-card--quote {
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(199, 155, 59, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.82);
}

.content-card__quote {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
}

.content-grid--single {
  grid-template-columns: 1fr;
}

.content-card--centered {
  text-align: center;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1fr);
  gap: 40px;
  padding: clamp(28px, 4vw, 36px);
  border: 1px solid rgba(199, 155, 59, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(245, 237, 223, 0.92)),
    radial-gradient(circle at top right, rgba(199, 155, 59, 0.14), transparent 34%);
  color: var(--text);
  box-shadow: 0 28px 70px rgba(103, 74, 31, 0.14);
}

.contact-showcase__intro {
  padding: 4px 8px 4px 0;
}

.contact-showcase__kicker {
  margin: 0 0 18px;
  color: var(--gold-deep);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.contact-showcase__intro h2 {
  margin: 0 0 22px;
  color: #b1883a;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 9.5ch;
}

.contact-showcase__copy {
  margin: 0;
  max-width: 32ch;
  color: rgba(156, 123, 72, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.contact-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(140, 103, 36, 0.28);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(151, 116, 57, 0.12);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-showcase__button:hover,
.contact-showcase__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(151, 116, 57, 0.18);
}

.contact-showcase__button--solid {
  background: linear-gradient(135deg, #d8b87f, #c89d43);
  color: #fffdf8;
}

.contact-showcase__button--outline {
  background: rgba(255, 252, 246, 0.84);
  color: var(--gold-deep);
}

.contact-showcase__submit {
  min-width: 240px;
  margin-top: 10px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form__field {
  display: block;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(140, 103, 36, 0.18);
  background: rgba(255, 250, 242, 0.94);
  color: #9b7428;
  padding: 22px 28px;
  font: inherit;
  font-size: 1rem;
  outline: none;
  appearance: none;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 168px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select {
  color: rgba(87, 68, 45, 0.62);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(199, 155, 59, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 4px rgba(199, 155, 59, 0.12);
}

.footer {
  margin-top: 36px;
  padding: 42px 28px 34px;
  border-radius: 34px;
  border: 1px solid rgba(199, 155, 59, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(245, 237, 223, 0.94)),
    radial-gradient(circle at top left, rgba(199, 155, 59, 0.12), transparent 34%);
  color: var(--text);
  box-shadow: 0 20px 52px rgba(103, 74, 31, 0.12);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.5fr) minmax(260px, 1fr) minmax(180px, 0.9fr) minmax(190px, 0.9fr);
  gap: clamp(36px, 4vw, 68px);
}

.footer__column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer__column--brand {
  padding-right: 18px;
}

.footer__title,
.footer__heading {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", "Times New Roman", serif;
  font-weight: 400;
  color: var(--gold-deep);
}

.footer__title {
  font-size: 2.55rem;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.footer__title--link {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer__heading {
  font-size: 1.95rem;
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.footer__eyebrow {
  margin: -4px 0 8px;
  color: rgba(140, 103, 36, 0.72);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.footer__copy {
  margin: 0;
  color: rgba(156, 123, 72, 0.84);
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer__copy--small {
  font-size: 0.98rem;
}

.footer__list,
.footer__links,
.footer__contact {
  display: grid;
  gap: 14px;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(156, 123, 72, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.footer__nav,
.footer__link,
.footer__service-button {
  color: rgba(156, 123, 72, 0.86);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.footer__nav,
.footer__service-button {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.footer__nav:hover,
.footer__link:hover,
.footer__service-button:hover,
.footer__nav:focus-visible,
.footer__link:focus-visible,
.footer__service-button:focus-visible,
.footer__title--link:hover,
.footer__title--link:focus-visible {
  color: var(--gold-deep);
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 14px;
  }

  .topbar__rail {
    min-height: 76px;
    padding: 10px 12px;
  }

  .brandlogo {
    width: 112px;
    height: 112px;
    margin-left: -10px;
  }

  .topbar__nav,
  .topbar__contact {
    display: none;
  }

  .topbar__actions {
    gap: 10px;
    margin-left: auto;
  }

  .brandmark__title {
    font-size: clamp(3rem, 8vw, 4.3rem);
  }

  .site-menu {
    display: block;
  }

  .site-menu__trigger {
    display: inline-flex;
  }

  .hero,
  .contact-showcase,
  .content-grid,
  .services__grid:not(.services__grid--features) {
    grid-template-columns: 1fr;
  }

  .services__grid--features,
  .shop-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-story {
    min-height: 0;
    padding: clamp(380px, 52vw, 460px) 44px 52px;
  }

  .founder-story::before {
    background:
      linear-gradient(180deg, rgba(245, 240, 231, 0.01) 0%, rgba(245, 240, 231, 0.08) 34%, rgba(245, 240, 231, 0.84) 58%, rgba(245, 240, 231, 0.98) 76%, #f5f0e7 100%),
      url("./public/founder-katarina.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .founder-story__content {
    width: min(100%, 640px);
    margin: 0;
  }

  .home-introduction,
  .home-support__header,
  .newsletter-block__inner {
    grid-template-columns: 1fr;
  }

  .newsletter-block__inner {
    gap: 28px;
  }

  .hero__content h1,
  .section-heading h2,
  .content-card h2 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    padding: 8px 14px 10px;
    border-top-width: 4px;
  }

  .announcement-bar__text {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .page-shell {
    width: calc(100% - 20px);
    max-width: 100%;
    padding-top: 16px;
  }

  .topbar {
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
    margin-top: 0;
  }

  .topbar__rail {
    min-height: 64px;
    padding: 6px 8px;
    border-radius: 999px;
  }

  .brandlogo {
    width: 84px;
    height: 84px;
    margin-left: -6px;
  }

  .brandmark {
    width: 100%;
    overflow: hidden;
  }

  .brandmark__title {
    display: block;
    width: 100%;
    font-size: clamp(2.35rem, 11.5vw, 3rem);
    line-height: 1;
    white-space: nowrap;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .home-introduction {
    gap: 24px;
    margin-top: 32px;
    padding: 32px 24px;
  }

  .home-introduction__quote {
    margin-top: 4px;
    padding-top: 24px;
    text-align: left;
  }

  .home-support {
    margin-top: 46px;
    padding: 0 8px;
  }

  .home-support__header {
    gap: 22px;
    padding-bottom: 28px;
  }

  .home-support__list {
    grid-template-columns: 1fr;
  }

  .services__grid--features,
  .shop-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .home-support__item {
    padding: 24px 0 26px;
  }

  .language-toggle {
    gap: 4px;
  }

  .language-toggle__button {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.88rem;
  }

  .site-menu__trigger {
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
  }

  .site-menu__panel {
    right: 0;
  }

  .hero__content,
  .hero-card,
  .founder-story__content,
  .content-card,
  .service-card {
    border-radius: 24px;
  }

  .hero__content h1,
  .section-heading h2,
  .content-card h2 {
    max-width: none;
  }

  .hero__content h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 4.4rem);
    line-height: 1.02;
  }

  .section-heading h2,
  .content-card h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__lead,
  .service-card p,
  .shop-card__copy,
  .founder-story__copy p,
  .contact-showcase__copy,
  .content-card p,
  .footer__copy,
  .hero-card__caption-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-showcase {
    gap: 30px;
    padding: 26px 22px;
    border-radius: 28px;
  }

  .contact-showcase__intro {
    padding: 0;
  }

  .contact-showcase__intro h2 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4.1rem);
    line-height: 1.02;
  }

  .contact-showcase__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-showcase__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .contact-form {
    gap: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 20px 18px;
  }

  .shop-card__media {
    min-height: 220px;
  }

  .newsletter-block {
    border-radius: 28px;
  }

  .newsletter-block__inner h2 {
    margin-bottom: 28px;
    max-width: none;
  }

  .newsletter-block__form {
    align-items: center;
    gap: 14px;
  }

  .newsletter-block__input {
    font-size: 1.2rem;
  }

  .newsletter-block__submit {
    padding-bottom: 10px;
    font-size: 1.9rem;
  }

  .footer {
    padding: 34px 22px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-story {
    min-height: 0;
    padding: 350px 24px 38px;
    background: #f5f0e7;
  }

  .founder-story::before {
    background:
      linear-gradient(180deg, rgba(245, 240, 231, 0.01) 0%, rgba(245, 240, 231, 0.06) 28%, rgba(245, 240, 231, 0.52) 41%, rgba(245, 240, 231, 0.94) 52%, rgba(245, 240, 231, 0.99) 64%, #f5f0e7 100%),
      url("./public/founder-katarina.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 1;
  }

  .founder-story__content {
    width: 100%;
    margin: 0;
  }

  .founder-story__content h2 {
    max-width: 13ch;
    font-size: clamp(1.95rem, 8.8vw, 2.3rem);
    line-height: 1.02;
  }

  .founder-story__lead {
    margin-top: 78px;
  }

  .site-menu__panel {
    min-width: min(220px, calc(100vw - 36px));
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
