:root {
  --ink: #222222;
  --muted: #5f5a57;
  --paper: #fffdfb;
  --soft: #f7ece9;
  --pink: #e97867;
  --line: #dfd1cc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: var(--pink);
  font-weight: 700;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.logo-brand img {
  width: 55px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: #2a2118;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
}

.brand-subname {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.55vw, 1.1rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #2a2118;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-contact {
  padding: 6px 14px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-1px);
}

main {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
}

#home,
#about,
#occasions,
#contact {
  scroll-margin-top: 28px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: #281f1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 5.5vw, 5.1rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 em {
  color: #e97867;
  font-style: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.home-top {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(340px, 0.95fr);
  gap: clamp(20px, 3.5vw, 44px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 570px;
  padding: 36px max(18px, calc((100vw - 1040px) / 2)) 48px;
  background: #f7f3ee;
}

.home-copy {
  max-width: 560px;
}

.home-copy p {
  margin-bottom: 14px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 6px 14px;
  color: #6f5c50;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e7ded5;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: #e97867;
  border-radius: 50%;
}

.hero-intro {
  max-width: 360px;
  color: #6f5c50;
  font-size: 1.03rem;
}

.phone-line {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.08rem;
}

.phone-line a {
  white-space: nowrap;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  min-width: 122px;
  padding: 9px 18px;
  background: #111111;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #111111;
  border-radius: 8px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(233, 120, 103, 0.22);
  transform: translateY(-2px);
}

.button-light {
  background: rgba(255, 255, 255, 0.36);
  color: #8a6b60;
  border-color: #eadfd7;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 10px 20px rgba(40, 31, 27, 0.08);
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.mini-logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-photos {
  position: relative;
  min-height: 430px;
}

.hero-photo {
  position: absolute;
  width: 48%;
  min-width: 190px;
  height: 390px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(42, 33, 24, 0.14);
}

.photo-one {
  left: 1%;
  top: 0;
  object-position: center top;
}

.photo-two {
  right: 0;
  top: 46px;
  object-position: center center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 48px max(18px, calc((100vw - 1040px) / 2));
  background: #2a2118;
}

.stats-row article {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  text-align: center;
}

.stats-row strong {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1;
}

.stats-row span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.story-section {
  position: relative;
  min-height: 420px;
  padding: 52px 0;
}

.story-section::before {
  content: "";
  position: absolute;
  right: 246px;
  top: 28px;
  width: 120px;
  height: 120px;
  background: rgba(233, 120, 103, 0.18);
  border-radius: 50%;
}

.story-copy {
  position: relative;
  width: min(720px, 78%);
  min-height: 300px;
  padding: clamp(34px, 6vw, 62px) clamp(30px, 6vw, 74px);
  background: #f7f3ee;
  border-radius: 4px;
}

.story-copy::before {
  content: "";
  position: absolute;
  left: clamp(30px, 6vw, 74px);
  top: 26px;
  width: 54px;
  height: 4px;
  background: var(--pink);
  border-radius: 999px;
}

.story-label {
  display: inline-flex;
  margin-top: 16px;
  margin-bottom: 18px;
  padding: 4px 12px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-copy h2 {
  max-width: 420px;
  margin-bottom: 22px;
  color: #281f1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  line-height: 1.05;
}

.story-copy p:not(.story-label) {
  max-width: 490px;
  color: #6f5c50;
}

.story-photo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 34vw);
  height: min(340px, 32vw);
  object-fit: cover;
  border: 14px solid var(--paper);
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(40, 31, 27, 0.12);
}

.story-portrait {
  object-fit: cover;
  object-position: center center;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.occasion-section {
  padding: 0 0 76px;
}

.occasion-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.occasion-heading h2 {
  margin-bottom: 0;
  color: #281f1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  line-height: 1.05;
}

.occasion-heading .story-label {
  grid-column: 1 / -1;
  width: fit-content;
  margin-bottom: 2px;
}

.occasion-heading p:not(.story-label) {
  margin-bottom: 4px;
  color: #6f5c50;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.occasion-card {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  background: #f7f3ee;
  border: 1px solid #ece2da;
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.occasion-card:nth-child(2n) {
  background: #fff0e8;
}

.occasion-card:nth-child(3n) {
  background: #f6eeee;
}

.occasion-card:hover,
.occasion-card:focus-within {
  border-color: rgba(233, 120, 103, 0.55);
  box-shadow: 0 16px 30px rgba(40, 31, 27, 0.08);
  transform: translateY(-4px);
}

.occasion-card .icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(40, 31, 27, 0.06);
}

.occasion-card svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--pink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.occasion-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #281f1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.occasion-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 86px;
  height: 86px;
  background: rgba(233, 120, 103, 0.13);
  border-radius: 50%;
}

.custom-card {
  background: #f9ead8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 72px max(18px, calc((100vw - 1040px) / 2));
  background: #e8836a;
}

.contact-copy {
  max-width: 520px;
}

.contact-kicker {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-copy h2,
.contact-form h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.contact-copy h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-copy > p:not(.contact-kicker) {
  max-width: 430px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.2;
}

.contact-item a,
.contact-item span:not(.contact-icon) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(42, 33, 24, 0.16);
}

.contact-form h2 {
  margin-bottom: 4px;
  color: #281f1b;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

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

.contact-form label span {
  color: #6f5c50;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 14px;
  background: #f7f7f6;
  color: #281f1b;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(233, 120, 103, 0.65);
  box-shadow: 0 0 0 4px rgba(233, 120, 103, 0.12);
}

.form-button {
  width: fit-content;
  min-width: 142px;
  margin-top: 8px;
}

.baskets-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #f7f3ee;
}

.baskets-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 6px 16px;
  color: #6f5a4f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #eaded7;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.section-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
}

.baskets-hero h1 {
  max-width: 620px;
  margin-bottom: 16px;
  color: #2a2118;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 0.98;
}

.baskets-hero h1 em {
  color: var(--pink);
  font-style: italic;
}

.baskets-hero p:not(.section-pill) {
  max-width: 650px;
  margin-bottom: 0;
  color: #6a5b51;
  font-size: 1.05rem;
}

.basket-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 34px 0;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 18px;
  color: #6f5a4f;
  background: var(--white);
  border: 1px solid #ece1da;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  background: #2a2118;
  border-color: #2a2118;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(42, 33, 24, 0.12);
  transform: translateY(-2px);
}

.basket-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 68px;
}

.basket {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eaded7;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(42, 33, 24, 0.07);
}

.basket:nth-child(4n + 1) {
  background: var(--white);
}

.basket:nth-child(4n + 2) {
  background: var(--white);
}

.basket:nth-child(4n + 3) {
  background: var(--white);
}

.basket img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #f8efe7;
  border-bottom: 1px solid rgba(223, 209, 204, 0.75);
  filter: none;
}

.basket:nth-child(1) img,
.basket:nth-child(6) img,
.basket:nth-child(7) img {
  object-position: center top;
}

.basket:nth-child(2) img,
.basket:nth-child(3) img,
.basket:nth-child(4) img,
.basket:nth-child(5) img {
  object-position: center center;
}

.basket > div {
  padding: 20px;
  background: var(--white);
}

.basket-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.basket h2 {
  margin-bottom: 8px;
  color: #2a2118;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.includes-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #6f5a4f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.includes-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eaded7;
}

.basket ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.basket li {
  position: relative;
  min-height: 34px;
  padding: 7px 12px 7px 34px;
  color: #5d514b;
  background: #fbf5ef;
  border: 1px solid #efe3dc;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.basket li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.basket[hidden] {
  display: none;
}

.empty-filter-message {
  max-width: 620px;
  margin: -28px 0 68px;
  padding: 20px 22px;
  color: #6f5a4f;
  background: #f7f3ee;
  border: 1px solid #eaded7;
  border-radius: 12px;
  font-weight: 700;
}

footer {
  padding: 26px 18px;
  background: #2a2118;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  font-weight: 700;
}

footer strong {
  color: var(--pink);
}

@media (max-width: 760px) {
  .site-header,
  .home-top,
  .basket {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    justify-items: start;
    width: 100%;
    max-width: none;
    padding: 16px 18px;
  }

  .logo-brand img {
    width: 48px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-subname {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    overflow: hidden;
    padding: 8px;
    background: var(--white);
    border: 1px solid #eaded7;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(42, 33, 24, 0.1);
  }

  .menu-open nav {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 12px 14px;
    color: #2a2118;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  nav a:hover,
  nav a:focus-visible,
  nav a[aria-current="page"] {
    background: #f7f3ee;
    color: var(--pink);
    text-decoration: none;
  }

  .home-top {
    min-height: auto;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .home-copy {
    max-width: none;
    text-align: center;
  }

  .home-copy h1 {
    max-width: 430px;
    margin-right: auto;
    margin-bottom: 14px;
    margin-left: auto;
    font-size: clamp(2.75rem, 12.5vw, 3.85rem);
    line-height: 1;
  }

  .hero-intro {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
  }

  .hero-links {
    margin: 20px 0 6px;
  }

  .button {
    min-width: 0;
    min-height: 44px;
    padding-inline: 16px;
  }

  .hero-photos {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-photo {
    position: static;
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 3 / 4;
    border: 6px solid var(--white);
    box-shadow: 0 14px 30px rgba(42, 33, 24, 0.1);
  }

  .photo-one,
  .photo-two {
    border-radius: 18px;
  }

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

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

  .occasion-heading .story-label {
    margin-bottom: -2px;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px max(18px, calc((100vw - 1040px) / 2));
  }

  .stats-row article {
    min-height: 86px;
    padding: 18px;
  }

  .story-section {
    min-height: auto;
    padding: 42px 0 54px;
  }

  .story-copy {
    width: 100%;
    min-height: 0;
    padding: 34px 24px 30px;
  }

  .story-copy h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .story-photo {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(100%, 330px);
    height: 230px;
    margin: -18px auto 0;
    border-width: 10px;
  }

  .story-section::before {
    right: 14px;
    top: 270px;
    width: 86px;
    height: 86px;
  }

  .photo-row img:last-child {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  main {
    width: min(100% - 28px, 1040px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    align-items: center;
  }

  .logo-brand img {
    width: 44px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-subname {
    font-size: 0.92rem;
  }

  nav a {
    padding: 12px 14px;
    font-size: 0.94rem;
  }

  .home-top {
    padding: 28px 14px 34px;
  }

  .home-copy h1 {
    max-width: 360px;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
  }

  .hero-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .button {
    width: 100%;
    font-size: 0.92rem;
  }

  .hero-photos {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .hero-photo {
    aspect-ratio: 1 / 1;
    max-height: none;
    object-fit: cover;
    object-position: center;
    background: var(--white);
  }

  .hero-photo.photo-one {
    display: none;
  }

  .hero-photo.photo-two {
    display: block;
    object-position: center center;
  }

  .stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 20px 14px;
  }

  .stats-row article {
    min-height: 74px;
    padding: 12px 6px;
    border-radius: 12px;
  }

  .stats-row strong {
    font-size: 1.28rem;
  }

  .stats-row span {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .basket ul {
    grid-template-columns: 1fr;
  }

  .basket-list {
    grid-template-columns: 1fr;
  }

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

  .occasion-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
  }

  .occasion-card .icon-wrap {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    border-radius: 14px;
  }

  .occasion-card h3 {
    font-size: 1.22rem;
  }

  .contact-section {
    padding: 42px 14px;
  }

  .contact-copy h2,
  .contact-form h2 {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .form-button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
