:root {
  --ink: #201527;
  --ink-soft: #4f4554;
  --muted: #716778;
  --cream: #fbf8f3;
  --cream-deep: #f3ece2;
  --surface: #ffffff;
  --line: #e7ded4;
  --gold: #c88b36;
  --gold-dark: #895716;
  --green: #0b7a4b;
  --green-dark: #075936;
  --danger: #a61b29;
  --success: #087443;
  --page-accent: #7c3aed;
  --page-accent-dark: #4c1d95;
  --shadow-sm: 0 10px 28px rgba(35, 22, 42, 0.08);
  --shadow-lg: 0 28px 80px rgba(35, 22, 42, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 3% 20%, color-mix(in srgb, var(--page-accent) 9%, transparent), transparent 27rem),
    radial-gradient(circle at 96% 70%, rgba(200, 139, 54, 0.08), transparent 30rem);
  content: "";
  pointer-events: none;
}

::selection {
  background: color-mix(in srgb, var(--page-accent) 22%, white);
  color: var(--ink);
}

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

a {
  color: var(--page-accent-dark);
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
.button {
  min-height: 46px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.75rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 11px 15px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

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

.site-header {
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 222, 212, 0.82);
  background: rgba(251, 248, 243, 0.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--page-accent) 86%, white), var(--page-accent-dark));
  color: white;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 9px 22px color-mix(in srgb, var(--page-accent) 24%, transparent);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.brand-mark::before {
  top: -8px;
  right: -5px;
}

.brand-mark::after {
  bottom: -9px;
  left: -3px;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 27px);
}

.desktop-nav > a,
.nav-dropdown > summary {
  position: relative;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.desktop-nav > a::after,
.nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--page-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown > summary:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  display: grid;
  width: min(670px, 80vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
}

.nav-dropdown-panel::before {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: white;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-panel a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-dropdown-panel a:hover {
  background: var(--cream);
  color: var(--page-accent-dark);
}

.nav-dropdown-panel small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  max-height: calc(100vh - 82px);
  max-height: calc(100dvh - 82px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-menu-inner {
  display: grid;
  gap: 2px;
  padding-block: 16px 24px;
}

.mobile-menu a {
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu p {
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
}

.mobile-category-links a {
  padding: 9px 0;
  font-size: 0.87rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--page-accent);
  color: white;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  background: var(--page-accent-dark);
  color: white;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--page-accent) 25%, transparent);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.82rem;
}

.button-wide {
  width: 100%;
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--page-accent);
  background: color-mix(in srgb, var(--page-accent) 6%, white);
  color: var(--page-accent-dark);
}

.button-call {
  background: var(--ink);
}

.button-whatsapp {
  background: var(--green);
}

.button-whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 26px rgba(11, 122, 75, 0.2);
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--page-accent-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: var(--page-accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  background: var(--page-accent);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 3%;
  right: -9%;
  width: 34vw;
  height: 34vw;
  border: 1px solid color-mix(in srgb, var(--page-accent) 16%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-block: clamp(64px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 24px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 21px;
  margin: 23px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.81rem;
  font-weight: 750;
  list-style: none;
}

.hero-micro li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-main-image {
  position: absolute;
  inset: 0 4% 0 12%;
  width: 84%;
  height: 100%;
  border-radius: 34% 34% 25px 25px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-visual::after {
  position: absolute;
  inset: 20px 1% -18px 16%;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--page-accent) 35%, var(--line));
  border-radius: 34% 34% 25px 25px;
  content: "";
}

.hero-float-card {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: min(260px, 68%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-float-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.hero-float-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
}

.home-collage {
  position: relative;
  min-height: 570px;
}

.home-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.home-collage img:nth-child(1) {
  top: 0;
  right: 2%;
  width: 67%;
  height: 73%;
  border-radius: 36% 36% 24px 24px;
}

.home-collage img:nth-child(2) {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 45%;
  border: 8px solid var(--cream);
  border-radius: 26px;
}

.home-collage img:nth-child(3) {
  right: -2%;
  bottom: 2%;
  width: 30%;
  height: 29%;
  border: 7px solid var(--cream);
  border-radius: 22px;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.proof-list li {
  min-height: 103px;
  padding: 25px clamp(12px, 2vw, 26px);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.proof-list li:last-child {
  border-right: 0;
}

.proof-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

.section {
  padding-block: clamp(72px, 9vw, 118px);
}

.section-compact {
  padding-block: clamp(46px, 6vw, 72px);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(243, 236, 226, 0.74));
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.section-dark::before {
  position: absolute;
  top: -60%;
  right: -8%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.section-dark .eyebrow,
.section-dark .section-heading p {
  color: #ded0e5;
}

.section-dark .eyebrow::before {
  background: #e9b35c;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-heading.text-center {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

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

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

.category-grid > .reveal,
.service-grid > .reveal {
  display: flex;
  min-width: 0;
}

.category-grid > .reveal > *,
.service-grid > .reveal > * {
  width: 100%;
}

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(35, 22, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.category-media {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
}

.category-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 12, 27, 0.42));
  content: "";
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-media img {
  transform: scale(1.045);
}

.category-count {
  position: absolute;
  right: 15px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(24, 14, 30, 0.68);
  color: white;
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(9px);
}

.category-body {
  position: relative;
  padding: 25px 25px 27px;
}

.category-body::before {
  position: absolute;
  top: 0;
  left: 25px;
  width: 55px;
  height: 3px;
  border-radius: 2px;
  background: var(--card-accent, var(--page-accent));
  content: "";
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--page-accent-dark);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-body h3 {
  margin-bottom: 12px;
}

.category-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.category-body > p:not(.card-kicker) {
  display: -webkit-box;
  min-height: 77px;
  margin-bottom: 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-card-compact .category-media {
  height: 205px;
}

.category-card-compact .category-body {
  padding: 21px;
}

.category-card-compact .category-body::before {
  left: 21px;
}

.story-grid,
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(44px, 8vw, 105px);
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-media::before {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: -1;
  width: 60%;
  height: 60%;
  border-radius: 30px 0 0;
  background: color-mix(in srgb, var(--page-accent) 12%, transparent);
  content: "";
}

.story-copy h2,
.editorial-copy h2 {
  margin-bottom: 22px;
}

.story-copy > p,
.editorial-copy > p {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 11%, white);
  color: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

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

.process-card {
  position: relative;
  padding: 29px 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.process-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f1c47d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 11px;
  color: white;
}

.process-card p {
  margin-bottom: 0;
  color: #d7cbdc;
  font-size: 0.87rem;
}

.birthday-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.birthday-feature-media {
  min-height: 540px;
}

.birthday-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.birthday-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 76px);
}

.birthday-feature-copy h2 {
  margin-bottom: 19px;
}

.birthday-feature-copy > p {
  color: var(--muted);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin: 24px 0 29px;
}

.mini-stat {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.mini-stat strong {
  display: block;
  color: var(--page-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.breadcrumbs {
  padding-top: 25px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #b7a9bb;
  content: "/";
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.category-hero .hero-grid {
  min-height: 635px;
}

.highlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-pills li {
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 20%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--page-accent) 5%, white);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 800;
}

.service-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 29px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.75);
}

.search-field {
  width: min(430px, 100%);
}

.search-field label,
.filter-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
}

.service-toolbar input,
.service-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
}

.service-toolbar strong {
  flex: 0 0 auto;
  padding-bottom: 11px;
  color: var(--muted);
  font-size: 0.79rem;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(35, 22, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card[hidden] {
  display: none;
}

.service-media {
  position: relative;
  height: 248px;
  overflow: hidden;
  background: var(--cream-deep);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.035);
}

.shortlist-button {
  position: absolute;
  top: 13px;
  right: 13px;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.shortlist-button[aria-pressed="true"] {
  border-color: var(--page-accent);
  background: var(--page-accent);
  color: white;
}

.service-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 11px;
}

.service-description {
  display: -webkit-box;
  min-height: 68px;
  margin-bottom: 17px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.price {
  margin: 0;
  color: var(--page-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
}

.price-quote {
  font-size: 1.22rem;
}

.price-row > span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-note {
  min-height: 40px;
  margin: 5px 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
}

.card-details {
  margin-bottom: 17px;
  border-block: 1px solid var(--line);
}

.card-details summary {
  padding: 12px 0;
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 850;
  cursor: pointer;
}

.card-details ul {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.77rem;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.card-actions .button:first-child {
  flex: 1;
}

.no-results {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px dashed #bfb2c3;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.package-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.guest-selector {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.guest-selector label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.guest-selector select {
  flex: 1;
  min-height: 42px;
  border: 0;
  background: var(--cream);
  font-weight: 850;
}

.notice {
  margin: 0 0 27px;
  padding: 15px 17px;
  border: 1px solid #ead19f;
  border-radius: 14px;
  background: #fff9e9;
  color: #6e4a12;
  font-size: 0.82rem;
}

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

.package-card[hidden] {
  display: none;
}

.package-filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.package-filter-summary strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(35, 22, 42, 0.05);
}

.package-card::after {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--page-accent) 9%, transparent);
  content: "";
}

.package-badge {
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 6px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--page-accent) 8%, white);
  color: var(--page-accent-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.package-meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.package-card h2,
.package-card h3 {
  margin-bottom: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.package-card .price {
  margin-bottom: 18px;
  font-size: 1.9rem;
}

.package-card .card-actions {
  margin-top: auto;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 22px 52px 22px 0;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--page-accent-dark);
  content: "+";
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item div {
  padding: 0 45px 22px 0;
  color: var(--muted);
}

.faq-item p {
  margin-bottom: 0;
}

.enquiry-section {
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--page-accent) 7%, var(--cream)), var(--cream));
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  align-items: start;
  gap: clamp(45px, 7vw, 95px);
}

.enquiry-copy {
  position: static;
}

.enquiry-copy h2 {
  margin-bottom: 20px;
}

.enquiry-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--page-accent) 18%, var(--line));
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-panel a {
  margin-top: 2px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.enquiry-form {
  position: relative;
  padding: clamp(25px, 4vw, 39px);
  border: 1px solid rgba(231, 222, 212, 0.88);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d9cfdc;
  border-radius: 11px;
  background: white;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--page-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--page-accent) 12%, transparent);
  outline: none;
}

.form-privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-privacy-note a {
  color: var(--page-accent-dark);
  font-weight: 800;
}

.enquiry-form > .button {
  margin-top: 21px;
}

.form-microcopy {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid #efb4ba;
  border-radius: 12px;
  background: #fff2f3;
  color: var(--danger);
  font-size: 0.81rem;
}

.form-alert ul {
  margin: 7px 0 0;
  padding-left: 19px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 13px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card a {
  font-weight: 850;
}

.service-directory {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(35, 22, 42, 0.05);
}

.directory-group {
  border-bottom: 1px solid var(--line);
}

.directory-group:last-child {
  border-bottom: 0;
}

.directory-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  list-style: none;
  cursor: pointer;
}

.directory-group > summary::-webkit-details-marker {
  display: none;
}

.directory-group > summary strong,
.directory-group > summary small {
  display: block;
}

.directory-group > summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.directory-group > summary small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.directory-group > summary > span:last-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--page-accent-dark);
  font-size: 1.15rem;
}

.directory-group[open] > summary > span:last-child {
  transform: rotate(45deg);
}

.directory-body {
  padding: 0 24px 24px;
}

.directory-body ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 25px;
  margin: 0 0 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.directory-body li {
  position: relative;
  padding-left: 14px;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.directory-body li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--page-accent);
  content: "";
}

.directory-body li small {
  color: var(--page-accent-dark);
  font-weight: 850;
  white-space: nowrap;
}

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

.locality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.locality-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.content-page {
  padding-block: 65px 100px;
}

.content-page h1 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.content-page h2 {
  margin-top: 44px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
}

.content-page .notice {
  margin-top: 30px;
}

.thank-you-card {
  width: min(760px, calc(100% - 40px));
  margin: 70px auto 100px;
  padding: clamp(35px, 7vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #e9f8f0;
  color: var(--success);
  font-size: 1.8rem;
  font-weight: 900;
}

.thank-you-card h1 {
  margin-bottom: 17px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.thank-you-card > p {
  color: var(--muted);
}

.reference-box {
  display: inline-flex;
  margin: 13px 0 25px;
  padding: 8px 12px;
  border: 1px dashed #b5a8ba;
  border-radius: 9px;
  background: var(--cream);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer {
  padding-top: 65px;
  background: #1b1121;
  color: white;
}

.footer-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-intro h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.footer-eyebrow {
  margin-bottom: 9px;
  color: #e6b96d;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.7fr 0.8fr;
  gap: 45px;
  padding-block: 55px;
}

.brand-footer {
  color: white;
}

.brand-footer .brand-copy small {
  color: #cbbfce;
}

.footer-brand > p {
  margin-top: 19px;
  color: #cbbfce;
  font-size: 0.86rem;
}

.footer-brand .footer-note {
  color: #9f92a4;
  font-size: 0.72rem;
}

.site-footer h3 {
  margin-bottom: 17px;
  color: white;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #cbbfce;
  font-size: 0.79rem;
  list-style: none;
}

.footer-links-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
}

.footer-links a {
  color: #cbbfce;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.whatsapp-inline {
  display: inline-flex;
  margin-top: 20px;
  color: #7ce7ae;
  font-size: 0.8rem;
  font-weight: 850;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9f92a4;
  font-size: 0.69rem;
}

.shortlist-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 890;
  min-height: 47px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-lg);
  font-weight: 850;
  cursor: pointer;
}

.shortlist-dock strong {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  margin-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--page-accent);
  font-size: 0.67rem;
}

.shortlist-dialog {
  width: min(640px, calc(100% - 30px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(20, 10, 24, 0.38);
}

.shortlist-dialog::backdrop {
  background: rgba(21, 12, 26, 0.64);
  backdrop-filter: blur(4px);
}

.dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.dialog-header h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.dialog-header .eyebrow {
  margin-bottom: 7px;
}

.dialog-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.35rem;
  cursor: pointer;
}

[data-shortlist-items] {
  display: grid;
  gap: 10px;
  padding: 22px 28px;
}

.shortlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.shortlist-item strong {
  display: block;
  font-size: 0.86rem;
}

.shortlist-item span {
  color: var(--muted);
  font-size: 0.7rem;
}

.shortlist-item button {
  border: 0;
  background: transparent;
  color: var(--danger);
  font-size: 0.74rem;
  font-weight: 850;
  cursor: pointer;
}

.shortlist-empty {
  padding: 30px 0;
  color: var(--muted);
  text-align: center;
}

.dialog-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 9px;
  padding: 20px 28px 25px;
  border-top: 1px solid var(--line);
  background: white;
}

.dialog-actions .button:first-child {
  flex: 1;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 45px;
  }

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

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

@media (max-width: 820px) {
  .mobile-menu {
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    scroll-padding-bottom: 24px;
  }

  .mobile-menu-inner {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .shell,
  .narrow {
    width: min(100% - 28px, var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero::before {
    width: 70vw;
    height: 70vw;
  }

  .hero-grid,
  .home-hero .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 52px 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-micro,
  .highlight-pills {
    justify-content: center;
  }

  .hero-visual {
    min-height: min(550px, 110vw);
  }

  .hero-main-image {
    inset: 0 8%;
    width: 84%;
  }

  .home-collage {
    min-height: min(570px, 112vw);
  }

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

  .proof-list li:nth-child(2) {
    border-right: 0;
  }

  .proof-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .story-grid,
  .editorial-grid,
  .birthday-feature,
  .enquiry-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .story-copy {
    order: -1;
  }

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

  .birthday-feature-media {
    min-height: 420px;
  }

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

  .shortlist-dock {
    display: none !important;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 980;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: calc(14px + env(safe-area-inset-right));
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    padding-left: calc(14px + env(safe-area-inset-left));
    pointer-events: none;
  }

  .mobile-actions a {
    display: inline-flex;
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 28px rgba(30, 17, 37, 0.24);
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .mobile-actions a:hover,
  .mobile-actions a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 17, 37, 0.3);
  }

  .mobile-actions a:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
  }

  .mobile-actions svg {
    width: 27px;
    height: 27px;
  }

  .mobile-action-whatsapp {
    background: var(--green);
  }

  .mobile-action-call {
    background: var(--ink);
  }

  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.48rem, 13vw, 3.7rem);
  }

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

  .category-grid,
  .service-grid,
  .package-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-list-three li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-list-three li:last-child {
    border-bottom: 0;
  }

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

  .package-filter-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-media {
    height: 235px;
  }

  .service-media {
    height: 250px;
  }

  .proof-list strong {
    font-size: 1.12rem;
  }

  .story-media img {
    max-height: 500px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .birthday-feature-media {
    min-height: 330px;
  }

  .birthday-feature-copy {
    padding: 34px 24px;
  }

  .service-toolbar,
  .package-intro {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .service-toolbar {
    display: grid;
  }

  .service-toolbar strong {
    padding-bottom: 0;
  }

  .guest-selector {
    min-width: 0;
  }

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

  .field-full {
    grid-column: auto;
  }

  .enquiry-form {
    padding: 23px 18px;
  }

  .footer-links-columns {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
  }

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

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
