:root {
  --ink: #181818;
  --muted: #69625f;
  --paper: #fffaf5;
  --surface: #ffffff;
  --line: #eaded2;
  --rose: #e7a7a9;
  --sage: #8aa58c;
  --gold: #c79b4b;
  --charcoal: #2f3135;
  --shadow: 0 24px 70px rgba(47, 49, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(234, 222, 210, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0;
  font-weight: 800;
}

.brand-mark {
  width: 78px;
  height: 74px;
  flex: 0 0 auto;
  display: block;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-left: -18px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-card-text {
  background: linear-gradient(90deg, #ff3939 0 23%, #ffd84d 23% 48%, #16bf62 48% 72%, #2518bb 72% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-action:active,
.primary-button:active,
.secondary-button:active {
  transform: scale(0.96);
}

.header-action,
.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 18px;
}

.header-action:hover,
.secondary-button:hover {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(24, 24, 24, 0.05);
}

.primary-button {
  background: var(--ink);
  color: #fff;
  padding: 0 22px;
}

.primary-button:hover {
  background: var(--muted);
  box-shadow: 0 4px 12px rgba(24, 24, 24, 0.12);
}

.instagram-primary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  gap: 8px;
  padding: 0 22px;
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 18%, transparent 34%),
    linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  color: #fff;
  border: 0;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.2s ease, opacity 0.2s ease;
}

.instagram-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.35);
}

.instagram-primary-button:active {
  transform: scale(0.96);
}

.header-action {
  gap: 6px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.header-action:hover {
  border-color: transparent;
  color: #fff;
  background:
    radial-gradient(circle at 30% 110%, #feda75 0 10%, transparent 34%),
    linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  box-shadow: 0 4px 15px rgba(221, 42, 123, 0.3);
}

.hero-media {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-media img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(47, 49, 53, 0.12);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-media img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(47, 49, 53, 0.22);
}

.hero {
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: url("main%20banner/Gemini_Generated_Image_urz7keurz7keurz7.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.96) 0%, rgba(255, 250, 245, 0.82) 42%, rgba(255, 250, 245, 0.22) 100%),
    linear-gradient(0deg, rgba(24, 24, 24, 0.18), rgba(24, 24, 24, 0.04));
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: 82px;
}

h2 {
  margin-bottom: 0;
  font-size: 56px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text,
.intro-section > p,
.contact-section p,
.work-card p,
.steps p,
.gallery-card span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 420px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.hero-stats dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 56px);
}



.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.work-card {
  padding: 12px;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(47, 49, 53, 0.08);
  border-color: var(--sage);
}

.visual {
  position: relative;
  aspect-ratio: 5 / 4;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f3ef;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 24, 24, 0.85) 100%);
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.work-card p {
  font-size: 14px;
  line-height: 1.45;
}

.work-card .work-detail {
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-band {
  background: #ffffff;
  border-block: 1px solid var(--line);
  text-align: center;
  padding-block: clamp(40px, 5vw, 64px);
}

.product-band .section-heading {
  margin-inline: auto;
  margin-bottom: 24px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.product-list span {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.product-list span:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.policy-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  max-width: 800px;
  margin-inline: auto;
}

.policy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.policy-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.gallery-filters button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.gallery-card.hidden {
  display: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #fffaf5;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fffaf5;
}

.product-carousel {
  cursor: pointer;
}

.carousel-frame img {
  border-bottom: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(24, 24, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.72);
  color: #fff;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.view-item-button {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.86);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-carousel:hover .view-item-button,
.product-carousel:focus-within .view-item-button {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.gallery-card div {
  padding: 14px;
}

.gallery-card .carousel-frame {
  padding: 0;
}

.gallery-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.gallery-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.source-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

.work-card[data-gallery-jump] {
  cursor: pointer;
}

.work-card[data-gallery-jump]:focus {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.process-section {
  background: #fff;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 800;
}

.reviews-section {
  background: #fbf1ea;
}

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

.review-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.review-card p {
  margin: 20px 0 26px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 700;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.faq-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

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

.faq-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}

.faq-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.15;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: clamp(18px, 4vw, 56px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: #f5e7e4;
}

.item-modal[hidden] {
  display: none;
}

.item-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.item-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.62);
}

.item-viewer {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.item-image-wrap {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  background: #f7f3ef;
}

.item-image-wrap img {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: contain;
}

.item-info {
  align-self: stretch;
  padding: 34px 26px;
  border-left: 1px solid var(--line);
}

.item-info > span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.item-info h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.05;
}

.item-info p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.modal-close,
.modal-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.modal-close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  font-size: 24px;
}

.modal-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  transform: translateY(-50%);
}

.modal-nav.prev {
  left: 16px;
}

.modal-nav.next {
  right: 16px;
}

.modal-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.74);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
  }

  .nav-links {
    order: 3;
    width: calc(100% + 2 * clamp(18px, 4vw, 56px));
    margin-inline: calc(-1 * clamp(18px, 4vw, 56px));
    padding: 8px clamp(18px, 4vw, 56px);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--ink);
    font-size: 13px;
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .contact-section,
  .item-viewer {
    grid-template-columns: 1fr;
  }



  .item-viewer {
    overflow-y: auto;
  }

  .item-image-wrap {
    min-height: 420px;
  }

  .item-info {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    padding-top: 44px;
    gap: 32px;
  }

  .hero-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-media {
    width: 100%;
    max-width: 520px;
  }

  .hero-media img {
    transform: none;
  }

  .hero-media img:hover {
    transform: scale(1.01);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.97) 0%, rgba(255, 250, 245, 0.92) 75%, rgba(255, 250, 245, 0.6) 100%),
      linear-gradient(0deg, rgba(24, 24, 24, 0.16), rgba(24, 24, 24, 0.04));
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 44px;
  }

  .work-grid,
  .gallery-grid,
  .steps,
  .review-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 16px 12px;
    margin: 0 -16px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filters button {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    padding: 14px 16px;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 58px;
    height: 56px;
  }

  .brand-text {
    margin-left: -14px;
    font-size: 18px;
  }

  .header-action {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero {
    gap: 24px;
    padding: 28px 16px 44px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  h3 {
    font-size: 18px;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .hero-media {
    border-radius: 8px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .hero-stats {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-stats,
  .steps,
  .policy-strip,
  .review-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .work-card {
    padding: 8px;
  }

  .visual h3 {
    font-size: 13px;
    padding: 16px 8px 6px;
  }

  .work-card p {
    font-size: 11px;
    line-height: 1.35;
  }

  .work-card .work-detail {
    font-size: 10px;
    margin-top: 6px;
  }

  .gallery-card div {
    padding: 8px;
  }

  .gallery-card h3 {
    font-size: 13px;
  }

  .gallery-card p {
    font-size: 11px;
    margin-top: 4px;
  }

  .gallery-card span {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .carousel-button {
    display: none; /* hide arrow buttons on mobile, rely on swipe! */
  }

  .carousel-count {
    right: 6px;
    bottom: 6px;
    font-size: 10px;
    padding: 3px 6px;
  }

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

  .section {
    padding: 46px 16px;
  }



  .section-heading {
    margin-bottom: 24px;
  }

  .product-list {
    gap: 6px;
  }

  .product-list span {
    padding: 6px 12px;
    font-size: 11px;
  }

  .policy-strip {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: max-content;
    margin-inline: auto;
    margin-top: 28px;
    padding-top: 20px;
  }

  .steps article {
    padding: 20px;
  }

  .review-card {
    min-height: 190px;
    padding: 20px;
  }

  .faq-card {
    min-height: auto;
    padding: 20px;
  }

  .contact-section {
    margin: 16px;
    padding: 28px 18px;
  }

  .item-modal {
    padding: 12px;
  }

  .item-viewer {
    max-height: calc(100vh - 24px);
  }

  .item-image-wrap {
    min-height: 360px;
  }

  .item-image-wrap img {
    height: min(62vh, 560px);
  }

  .item-info {
    padding: 24px 18px;
  }

  .item-info h2 {
    font-size: 30px;
  }

  .modal-close {
    position: fixed;
    top: 16px;
    right: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}

@media (max-width: 380px) {
  .brand-text {
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-action {
    padding: 0 10px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 28px;
  }

  .hero-stats div {
    padding: 10px 6px;
    text-align: center;
  }

  .hero-stats dt {
    font-size: 18px;
  }

  .hero-stats dd {
    font-size: 11px;
    margin-top: 2px;
  }
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 200;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

.toast-icon {
  color: #ffb800;
  font-size: 16px;
  font-weight: bold;
}

/* Instagram Story Highlights Row */
.story-highlights-section {
  padding: 24px clamp(18px, 4vw, 56px) 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.highlights-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.highlights-container::-webkit-scrollbar {
  display: none;
}

.highlight-bubble {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.bubble-ring {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  padding: 2.5px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bubble-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bubble-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.highlight-bubble:hover .bubble-ring {
  transform: scale(1.06) rotate(15deg);
}

.highlight-bubble:hover .bubble-label {
  color: var(--ink);
}

.highlight-bubble:active .bubble-ring {
  transform: scale(0.96);
}
