:root {
  --cream: #fff7ea;
  --blush: #f4b8c7;
  --sage: #8fa986;
  --lavender: #c7b6e6;
  --brown: #5d4435;
  --light-green: #dfead2;
  --soft-white: #fffdf8;
  --rose-deep: #a85f70;
  --leaf-deep: #4f6f4b;
  --shadow: 0 18px 45px rgba(93, 68, 53, 0.12);
  --shadow-soft: 0 10px 30px rgba(93, 68, 53, 0.09);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at top left, rgba(244, 184, 199, 0.3), transparent 36rem),
    radial-gradient(circle at 85% 18%, rgba(199, 182, 230, 0.24), transparent 26rem),
    var(--cream);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, transparent 0 47%, rgba(143, 169, 134, 0.08) 48% 49%, transparent 50%),
    radial-gradient(circle at 16px 16px, rgba(168, 95, 112, 0.08) 0 2px, transparent 3px);
  background-size: 120px 120px, 42px 42px;
  opacity: 0.55;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 18px 10% auto;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 184, 199, 0.5) 0 12px, transparent 13px),
    radial-gradient(circle at 72% 42%, rgba(199, 182, 230, 0.46) 0 13px, transparent 14px),
    radial-gradient(circle at 50% 70%, rgba(143, 169, 134, 0.42) 0 15px, transparent 16px),
    radial-gradient(circle at 25% 44%, rgba(244, 184, 199, 0.42) 0 13px, transparent 14px);
  filter: blur(0.2px);
  opacity: 0.52;
  animation: floatingBloom 9s ease-in-out infinite;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 5.2rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.22rem;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(93, 68, 53, 0.1);
  backdrop-filter: blur(16px);
}

main {
  overflow: hidden;
}

.navbar {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--leaf-deep);
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(143, 169, 134, 0.42);
  background:
    radial-gradient(circle at 50% 38%, var(--blush) 0 24%, transparent 25%),
    radial-gradient(circle at 33% 58%, var(--lavender) 0 18%, transparent 19%),
    radial-gradient(circle at 67% 58%, var(--sage) 0 18%, transparent 19%),
    var(--soft-white);
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  color: rgba(93, 68, 53, 0.82);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--leaf-deep);
  background: rgba(143, 169, 134, 0.18);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--light-green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--brown);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero,
.page-hero,
.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 72px;
}

.hero-content {
  position: relative;
  animation: heroTextIn 700ms ease both;
}

.hero-content::after,
.page-hero::after,
.section-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 18px;
  margin-top: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8px 9px, var(--blush) 0 7px, transparent 8px),
    radial-gradient(circle at 30px 9px, var(--lavender) 0 7px, transparent 8px),
    linear-gradient(90deg, transparent 0 42px, var(--sage) 42px 96px);
  opacity: 0.75;
}

.hero-tagline {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.65rem;
  color: var(--rose-deep);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.35) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

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

.btn.primary:hover::after,
.btn.primary:focus-visible::after {
  transform: translateX(130%);
}

.btn.primary {
  color: var(--soft-white);
  background: var(--leaf-deep);
}

.btn.secondary {
  color: var(--brown);
  background: var(--blush);
}

.btn.ghost {
  color: var(--brown);
  border-color: rgba(93, 68, 53, 0.2);
  background: rgba(255, 253, 248, 0.75);
}

.image-frame,
.placeholder-card,
.qr-card,
.portrait-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 68, 53, 0.1);
  background:
    linear-gradient(135deg, rgba(244, 184, 199, 0.28), rgba(223, 234, 210, 0.5)),
    var(--soft-white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-frame {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.hero-image {
  aspect-ratio: 5 / 4;
  animation: imageFloat 6.8s ease-in-out infinite;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.image-frame img,
.product-card img,
.placeholder-card img,
.qr-card img,
.portrait-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame img {
  object-fit: cover;
}

.image-frame:hover,
.image-frame:focus-within {
  box-shadow: 0 22px 54px rgba(93, 68, 53, 0.18);
}

.image-frame::before,
.placeholder-card::before,
.portrait-placeholder::before {
  content: none;
  position: absolute;
  inset: 28px;
  border: 2px dashed rgba(93, 68, 53, 0.2);
  border-radius: inherit;
}

.image-frame::after {
  content: none;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--leaf-deep);
  font-weight: 800;
  font-size: 2rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--rose-deep);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.section {
  padding: 72px 0;
}

.intro-section {
  padding-top: 34px;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered::after {
  margin-inline: auto;
}

.large-copy {
  max-width: 930px;
  font-size: 1.32rem;
  color: rgba(93, 68, 53, 0.82);
}

.preview-grid,
.feature-grid,
.team-grid,
.product-grid,
.event-grid,
.cost-grid {
  display: grid;
  gap: 20px;
}

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

.preview-card,
.feature-card,
.info-card,
.team-card,
.product-card,
.offer-card,
.contact-panel,
.cost-grid article {
  border: 1px solid rgba(93, 68, 53, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-soft);
}

.preview-card {
  min-height: 230px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.preview-card:hover,
.preview-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(143, 169, 134, 0.42);
  box-shadow: var(--shadow);
}

.preview-card h3,
.feature-card h3,
.info-card h3 {
  margin: 16px 0 10px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: var(--light-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  padding: 78px 0 48px;
}

.page-hero.compact {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.2rem;
}

.two-column,
.guide-layout,
.contact-layout,
.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

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

.stack {
  display: grid;
  gap: 18px;
}

.info-card,
.feature-card,
.offer-card,
.contact-panel {
  padding: 26px;
}

.info-card h2,
.feature-card h2,
.offer-card h2,
.contact-panel h2,
.placeholder-card h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.lavender-card {
  background: rgba(199, 182, 230, 0.2);
}

.sage-card {
  background: rgba(223, 234, 210, 0.65);
}

.mission-band {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(135deg, rgba(223, 234, 210, 0.7), rgba(244, 184, 199, 0.24));
}

.mission-band .large-copy {
  margin: 0 auto;
  text-align: center;
}

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

.feature-card {
  padding: 24px;
}

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

.team-card {
  padding: 18px;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portrait-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.portrait-placeholder img {
  object-position: center;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.portrait-placeholder::after {
  content: none;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--leaf-deep);
  font-weight: 800;
}

.team-card h2 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.flower-name {
  margin: 6px 0 12px;
  color: var(--rose-deep);
  font-weight: 900;
}

.soft-note {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 5px solid var(--lavender);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.product-overview {
  padding-top: 34px;
}

.included-list {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
}

.included-list h2 {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 7px -5px 0 rgba(244, 184, 199, 0.75);
}

.offer-card {
  background: linear-gradient(135deg, rgba(244, 184, 199, 0.38), rgba(199, 182, 230, 0.24)), var(--soft-white);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card img {
  display: block;
  width: 100%;
  height: 190px;
  padding: 12px;
  object-fit: contain;
  background:
    radial-gradient(circle at 30% 32%, var(--blush) 0 40px, transparent 41px),
    radial-gradient(circle at 64% 58%, var(--sage) 0 50px, transparent 51px),
    radial-gradient(circle at 70% 28%, var(--lavender) 0 36px, transparent 37px),
    var(--soft-white);
  transition: transform 260ms ease;
}

.product-card::before {
  content: none;
  position: absolute;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.04);
}

.product-content {
  padding: 24px;
}

.price {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--soft-white);
  background: var(--rose-deep);
  font-weight: 900;
}

.details {
  margin-top: 12px;
  color: rgba(93, 68, 53, 0.72);
  font-size: 0.95rem;
}

.accent-card {
  background: rgba(223, 234, 210, 0.58);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.guide-hero .image-frame {
  min-height: 0;
  aspect-ratio: 16 / 11;
}

.guide-hero .image-frame::after {
  content: none;
  font-size: 1.5rem;
}

.guide-hero .btn {
  margin-top: 26px;
}

.guide-topics {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.guide-topics h2 {
  margin-bottom: 20px;
}

.pill-list,
.social-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span,
.social-stack a,
.event-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: rgba(223, 234, 210, 0.85);
  font-weight: 800;
}

.qr-card {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 14px;
  border-radius: var(--radius);
  text-align: center;
}

.qr-card::before {
  content: none;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(93, 68, 53, 0.28);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.76);
}

.qr-card img {
  width: 150px;
  height: 150px;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.qr-card strong {
  color: var(--leaf-deep);
}

.qr-card:hover img {
  transform: rotate(2deg) scale(1.04);
}

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

.event-grid span {
  justify-content: center;
  min-height: 64px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease;
}

.event-grid span:hover {
  transform: translateY(-4px);
  background: rgba(223, 234, 210, 0.9);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(93, 68, 53, 0.1);
  background: var(--soft-white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(93, 68, 53, 0.1);
}

th {
  color: var(--leaf-deep);
  background: var(--light-green);
  font-size: 0.9rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: rgba(244, 184, 199, 0.12);
}

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

.cost-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.cost-grid strong {
  color: var(--leaf-deep);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
}

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

.contact-form label {
  font-weight: 900;
  color: var(--leaf-deep);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(93, 68, 53, 0.18);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--brown);
  background: var(--soft-white);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(244, 184, 199, 0.45);
  border-color: var(--rose-deep);
}

.form-message {
  min-height: 28px;
  color: var(--leaf-deep);
  font-weight: 900;
}

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

.placeholder-card {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.placeholder-card::after {
  content: none;
  position: absolute;
  top: 48%;
  color: var(--leaf-deep);
  font-weight: 900;
}

.placeholder-card img {
  width: min(100%, 280px);
  max-height: 155px;
  border-radius: 16px;
  object-fit: contain;
}

.placeholder-card h2 {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 8px 0 0;
  font-size: 1.2rem;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 36px auto 24px;
  padding: 30px;
  border-radius: 28px;
  color: var(--soft-white);
  background: linear-gradient(135deg, var(--leaf-deep), #735241);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.site-footer h2 {
  font-size: 1.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.16);
  font-weight: 800;
}

.copyright {
  white-space: nowrap;
}

.reveal {
  --reveal-y: 24px;
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translateY(var(--reveal-y));
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(calc(var(--reveal-y, 0px) + var(--lift, 0px)));
}

.tilt-card:hover,
.tilt-card:focus-within {
  --lift: -4px;
}

@keyframes floatingBloom {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-18px, -24px, 0) rotate(12deg);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotate(0deg);
  }

  50% {
    transform: translate3d(var(--parallax-x, 0), calc(var(--parallax-y, 0) - 10px), 0) rotate(0.8deg);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(93, 68, 53, 0.1);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-menu a {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .guide-hero,
  .two-column,
  .guide-layout,
  .contact-layout,
  .product-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 36px;
  }

  .hero-image {
    aspect-ratio: 16 / 10;
  }

  .preview-grid,
  .feature-grid,
  .product-grid,
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-tagline,
  .large-copy,
  .page-hero p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .navbar,
  .hero,
  .page-hero,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .navbar {
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 42px 0 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .image-frame {
    min-height: 300px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .product-card img {
    height: 175px;
  }

  .placeholder-card {
    min-height: 200px;
  }

  .section {
    padding: 48px 0;
  }

  .page-hero {
    padding: 48px 0 30px;
  }

  .preview-grid,
  .feature-grid,
  .team-grid,
  .product-grid,
  .event-grid,
  .cost-grid,
  .three-column {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }

  .copyright {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.is-visible,
  .tilt-card,
  .hero-image {
    opacity: 1;
    transform: none !important;
  }
}
