:root {
  --rose-50: #fffafc;
  --rose-100: #fcecf3;
  --rose-200: #f6d5e3;
  --rose-500: #d986a5;
  --raspberry: #b76586;
  --raspberry-strong: #8f3f62;
  --cream: #fffaf0;
  --vanilla: #f7e2b4;
  --cocoa: #4e3329;
  --mint: #357462;
  --sky: #d8eef2;
  --ink: #2f2324;
  --muted: #786368;
  --line: rgba(183, 101, 134, 0.24);
  --shadow: 0 18px 50px rgba(78, 51, 41, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--rose-50);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--raspberry);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

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

[hidden] {
  display: none !important;
}

.topbar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ink);
  background: var(--rose-100);
  border-bottom: 1px solid rgba(183, 101, 134, 0.24);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.topbar-inner {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
}

.topbar-info,
.topbar-contact,
.topbar-contact a,
.topbar-socials,
.social-link {
  display: flex;
  align-items: center;
}

.topbar-info {
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}

.topbar-contact {
  justify-content: center;
  gap: 34px;
}

.topbar-contact a {
  gap: 8px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--raspberry-strong);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.topbar-socials {
  justify-content: flex-end;
  gap: 12px;
}

.social-link {
  width: 25px;
  height: 25px;
  justify-content: center;
  color: #080606;
  border-radius: 50%;
  transition: color 160ms ease, transform 160ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--raspberry-strong);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 251, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--raspberry);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.9;
}

.brand span {
  font-size: 1.05rem;
}

.brand strong {
  font-size: 1.55rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--cocoa);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose-500);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links .nav-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--raspberry);
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--cocoa);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 0;
}

.hero-backdrop img:nth-child(1) {
  object-position: 48% 50%;
}

.hero-backdrop img:nth-child(2) {
  object-position: 48% 55%;
}

.hero-backdrop img:nth-child(3) {
  object-position: 50% 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(92, 48, 66, 0.68) 0%, rgba(183, 101, 134, 0.42) 43%, rgba(252, 236, 243, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(92, 48, 66, 0.2));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 247, 251, 0), var(--rose-50));
}

.hero-content {
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  padding: 74px 0 120px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--raspberry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--rose-100);
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.products-section h2,
.order-section h2,
.order-hero h1,
.configurator-section h2,
.instagram-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  color: white;
  text-shadow: 0 18px 42px rgba(48, 20, 30, 0.35);
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: var(--raspberry);
  box-shadow: 0 14px 26px rgba(183, 101, 134, 0.24);
}

.btn-secondary {
  color: var(--raspberry);
  background: var(--cream);
}

.category-band,
.gallery-section,
.order-section {
  padding: 86px 22px;
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.intro-copy h2,
.products-section h2,
.order-section h2,
.order-hero h1,
.configurator-section h2,
.instagram-section h2,
.contact-copy h2 {
  color: var(--cocoa);
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
}

.category-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-tile {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cocoa);
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.02);
  transition: transform 260ms ease, opacity 260ms ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 23, 22, 0.06), rgba(42, 23, 22, 0.76));
}

.category-tile div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
}

.category-tile p {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.category-tile span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.category-tile:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 22px 100px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-media {
  min-height: 620px;
  position: relative;
}

.intro-media img {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-main {
  inset: 0 18% 10% 0;
  width: 72%;
  height: 90%;
}

.intro-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 48%;
  border: 10px solid var(--rose-50);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--cream);
  background: var(--cocoa);
}

.feature {
  min-height: 170px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 229, 239, 0.12), rgba(216, 238, 242, 0.08)),
    var(--cocoa);
}

.feature strong {
  color: var(--vanilla);
  font-size: 0.86rem;
}

.feature p {
  max-width: 330px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.products-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 22px 76px;
}

.product-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.product-number {
  color: var(--rose-500);
  font-weight: 900;
}

.product-row h3 {
  margin: 0;
  color: var(--raspberry);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.product-row p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.notice-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 118px;
  padding: 24px 22px;
  color: var(--raspberry-strong);
  background: var(--rose-100);
  text-align: center;
}

.notice-band p {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.notice-band a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(143, 63, 98, 0.24);
  border-radius: 6px;
  font-weight: 900;
}

.filter-bar {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--raspberry);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.is-active {
  color: white;
  border-color: var(--raspberry);
  background: var(--raspberry);
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose-100);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: white;
  background: rgba(77, 38, 41, 0.72);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.order-section {
  background: var(--cream);
}

.order-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

.order-hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.order-hero-card {
  display: grid;
  gap: 12px;
}

.order-hero-card article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(78, 51, 41, 0.08);
}

.order-hero-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--rose-500);
  font-weight: 900;
}

.order-hero-card h2 {
  margin: 0;
  color: var(--raspberry-strong);
  font-size: 1.22rem;
}

.order-hero-card p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
}

.configurator-section {
  padding: 78px 22px 96px;
  background: var(--cream);
}

.configurator-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.config-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cocoa);
  background: white;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(78, 51, 41, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.config-card:hover,
.config-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rose-500);
}

.config-card.is-selected {
  border-color: var(--rose-500);
  background: var(--rose-100);
}

.config-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--raspberry-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.config-card small {
  color: var(--muted);
  font-size: 0.98rem;
}

.config-summary {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.config-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.config-summary strong {
  color: var(--raspberry-strong);
}

.order-calculator .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.order-wizard {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.wizard-step {
  display: grid;
  gap: 18px;
}

.wizard-heading {
  max-width: 760px;
}

.wizard-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--raspberry-strong);
  background: var(--rose-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wizard-heading h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.02;
}

.order-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.order-type-card {
  position: relative;
  min-height: 246px;
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(78, 51, 41, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.order-type-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.order-type-card:hover,
.order-type-card:focus-within {
  transform: translateY(-2px);
  border-color: var(--rose-500);
}

.order-type-card.is-selected {
  border-color: var(--rose-500);
  background:
    linear-gradient(180deg, rgba(252, 236, 243, 0.9), rgba(255, 255, 255, 0.96));
}

.order-type-content {
  position: relative;
  display: grid;
  gap: 14px;
  pointer-events: none;
}

.order-type-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--rose-100);
  font-size: 2rem;
}

.order-type-content strong {
  color: var(--raspberry-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.order-type-content small {
  color: var(--muted);
  font-size: 1rem;
}

.detail-panel {
  display: none;
}

.detail-panel.is-active {
  display: grid;
  gap: 22px;
}

.detail-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wide-group {
  grid-column: 1 / -1;
}

.option-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-group legend,
.text-field span {
  margin-bottom: 10px;
  color: var(--raspberry-strong);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.option-note {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.check-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-grid label,
.privacy-check {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cocoa);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.check-grid label.is-disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.check-grid input,
.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--raspberry);
}

.text-field {
  display: grid;
  gap: 10px;
}

.text-field input,
.text-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.text-field input {
  min-height: 52px;
  padding: 0 14px;
}

.text-field input[type="file"] {
  padding: 13px 14px;
}

.text-field textarea {
  min-height: 142px;
  padding: 14px;
  resize: vertical;
}

.text-field input:focus,
.text-field textarea:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(217, 134, 165, 0.16);
}

.summary-step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(78, 51, 41, 0.08);
}

.order-summary {
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(183, 101, 134, 0.2);
  border-radius: 8px;
  background: var(--rose-50);
}

.order-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.order-summary dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.order-summary div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(183, 101, 134, 0.18);
}

.order-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-summary dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary dd {
  margin: 0;
  color: var(--cocoa);
  font-weight: 800;
}

.privacy-check {
  justify-self: start;
  min-height: 0;
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: var(--mint);
}

.form-status.is-error {
  color: var(--raspberry-strong);
}

.order-section > .section-heading,
.steps {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.steps article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(78, 51, 41, 0.14);
  border-radius: 8px;
  background: white;
}

.steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--mint);
  font-weight: 900;
}

.steps h3 {
  margin: 28px 0 10px;
  color: var(--raspberry);
  font-size: 1.45rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.instagram-section {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 64px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(255, 229, 239, 0.96), rgba(216, 238, 242, 0.78)),
    url("zdjecia/Instagram_files/623291521_17845176165678906_2889111222694409949_n.jpg") center / cover;
}

.instagram-section h2 {
  max-width: 660px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 22px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-details {
  align-self: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-details dl {
  margin: 0;
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details div:first-child {
  padding-top: 0;
}

.contact-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 5px 0 0;
  color: var(--cocoa);
  font-size: 1.12rem;
  font-weight: 800;
}

.contact-details a {
  color: var(--raspberry);
  border-bottom: 1px solid var(--rose-500);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 22px;
  color: var(--cream);
  background: var(--cocoa);
}

.site-footer img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.site-footer span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
}

.site-footer a {
  margin-left: auto;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 250, 240, 0.72);
}

@media (max-width: 980px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    padding: 8px 0;
  }

  .topbar-info {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .topbar-contact {
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
  }

  .topbar-socials {
    align-self: center;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .hero-backdrop {
    grid-template-columns: 1fr;
  }

  .hero-backdrop img:nth-child(2),
  .hero-backdrop img:nth-child(3) {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(92, 48, 66, 0.7), rgba(183, 101, 134, 0.44)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(92, 48, 66, 0.18));
  }

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

  .intro-section,
  .contact-section,
  .order-hero {
    grid-template-columns: 1fr;
  }

  .intro-media {
    min-height: 520px;
  }

  .feature-band,
  .steps {
    grid-template-columns: 1fr;
  }

  .notice-band,
  .instagram-section,
  .config-summary,
  .config-actions {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

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

  .order-type-grid,
  .detail-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-footer a {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 10px 0;
  }

  .topbar-info,
  .topbar-contact {
    justify-content: center;
  }

  .topbar-info {
    white-space: normal;
    text-align: center;
  }

  .topbar-contact {
    gap: 8px 14px;
  }

  .topbar-socials {
    justify-content: center;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  .social-link {
    width: 24px;
    height: 24px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .nav {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand strong {
    font-size: 1.34rem;
  }

  .hero {
    min-height: calc(100vh - 106px);
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 58px 0 98px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15.8vw, 4.25rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .category-band,
  .gallery-section,
  .order-section,
  .configurator-section {
    padding: 64px 16px;
  }

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

  .category-tile {
    min-height: 320px;
  }

  .intro-section,
  .products-section,
  .contact-section,
  .order-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-media {
    min-height: 470px;
  }

  .intro-main {
    inset: 0 8% 16% 0;
    width: 84%;
    height: 84%;
  }

  .intro-small {
    width: 52%;
    height: 42%;
    border-width: 8px;
  }

  .feature {
    min-height: 150px;
    padding: 26px 20px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .steps article {
    min-height: 240px;
    padding: 24px;
  }

  .order-hero {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .order-hero-card article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-hero-card p {
    grid-column: auto;
  }

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

  .order-wizard {
    gap: 36px;
  }

  .wizard-heading h3 {
    font-size: clamp(1.85rem, 11vw, 2.6rem);
  }

  .order-type-card {
    min-height: 210px;
    padding: 22px;
  }

  .check-grid,
  .check-grid-wide {
    grid-template-columns: 1fr;
  }

  .summary-step,
  .order-summary {
    padding: 18px;
  }

  .order-summary div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-actions,
  .form-actions .btn {
    width: 100%;
  }

  .config-card {
    min-height: 170px;
  }

  .instagram-section {
    padding: 54px 16px;
  }

  .contact-details {
    padding: 22px;
  }
}
