:root {
  --black: #0b0805;
  --black-soft: #18120c;
  --gold: #bd9143;
  --gold-light: #f1d48a;
  --cream: #f8efe1;
  --white: #fffaf3;
  --ink: #221b14;
  --muted: #746856;
  --line: rgba(201, 162, 75, 0.25);
  --shadow: 0 24px 70px rgba(12, 9, 6, 0.18);
  --radius: 8px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled,
.site-header:has(+ .mobile-menu.is-open) {
  background: rgba(12, 9, 6, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.1rem;
  color: rgba(255, 250, 242, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav,
.header-cta {
  display: none;
}

.menu-button {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 70px 1rem auto;
  z-index: 9;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(12, 9, 6, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.mobile-menu a {
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-art {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-art {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 26%, rgba(241, 212, 138, 0.34), transparent 28%),
    radial-gradient(circle at 52% 58%, rgba(189, 145, 67, 0.28), transparent 22%),
    linear-gradient(135deg, #0b0805 0%, #18120c 48%, #5a3f1c 100%);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 250, 243, 0.2);
}

.hero-art::before {
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  right: 8%;
  top: 16%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(241, 212, 138, 0.08);
}

.hero-art::after {
  width: min(34vw, 380px);
  height: min(44vw, 500px);
  right: 18%;
  bottom: 10%;
  border-radius: 160px 160px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.09), rgba(189, 145, 67, 0.16));
}

.hero-art-title {
  position: absolute;
  right: 8%;
  bottom: 14%;
  color: rgba(255, 250, 243, 0.16);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 1;
}

.hero-art-line {
  position: absolute;
  right: 10%;
  top: 22%;
  width: min(30vw, 420px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(201, 162, 75, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(12, 9, 6, 0.12), rgba(12, 9, 6, 0.91)),
    linear-gradient(90deg, rgba(12, 9, 6, 0.9), rgba(12, 9, 6, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 7rem 1rem 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 940px;
  font-size: clamp(2.5rem, 11vw, 6.35rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 7vw, 4.25rem);
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-subtitle {
  margin: 1rem 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  max-width: 680px;
}

.trust-grid,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.4rem 0;
}

.trust-grid span,
.trust-strip span {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem;
  color: rgba(255, 250, 242, 0.92);
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-strip strong {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.button-row,
.hero-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.25);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.36);
  background: rgba(255, 250, 242, 0.08);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.section {
  padding: 4.8rem 1rem;
}

.section-heading {
  width: min(100%, 1020px);
  margin: 0 auto 2rem;
}

.section-heading h2 {
  max-width: 930px;
}

.section-heading p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.intro-band {
  background:
    linear-gradient(135deg, rgba(189, 145, 67, 0.12), transparent 42%),
    var(--black);
  color: var(--white);
}

.intro-band .section-heading p {
  color: rgba(255, 250, 242, 0.72);
}

.feature-grid,
.service-grid,
.gallery-grid,
.before-after-grid,
.pricing-grid,
.success-grid,
.reviews-grid,
.blog-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  gap: 0.7rem;
}

.feature-grid article {
  padding: 1rem;
  background: rgba(255, 250, 242, 0.07);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid strong {
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.feature-grid span {
  color: rgba(255, 250, 242, 0.72);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(34, 27, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(12, 9, 6, 0.08);
}

.visual-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  overflow: hidden;
  min-height: 230px;
  padding: 1rem;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 22%, rgba(241, 212, 138, 0.36), transparent 24%),
    linear-gradient(135deg, var(--black), #241a10 58%, #7b5c29);
  isolation: isolate;
}

.visual-placeholder::before,
.visual-placeholder::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 250, 243, 0.22);
}

.visual-placeholder::before {
  width: 42%;
  aspect-ratio: 1;
  right: 10%;
  top: 14%;
  border-radius: 50%;
  background: rgba(241, 212, 138, 0.1);
}

.visual-placeholder::after {
  width: 38%;
  height: 54%;
  right: 23%;
  bottom: 18%;
  border-radius: 999px 999px 8px 8px;
  background: rgba(255, 250, 243, 0.07);
}

.visual-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 80%;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.05;
}

.visual-skin {
  color: var(--ink);
  background:
    radial-gradient(circle at 68% 25%, rgba(189, 145, 67, 0.24), transparent 24%),
    linear-gradient(135deg, var(--cream), var(--white) 62%, #e3cfab);
}

.visual-skin span {
  color: var(--ink);
}

.visual-makeup,
.visual-bridal {
  background:
    radial-gradient(circle at 72% 28%, rgba(241, 212, 138, 0.44), transparent 26%),
    linear-gradient(135deg, #0b0805, #25120c 58%, #bd9143);
}

.visual-academy,
.visual-team {
  background:
    radial-gradient(circle at 66% 24%, rgba(255, 250, 243, 0.2), transparent 24%),
    linear-gradient(135deg, #18120c, #2b2217 55%, #bd9143);
}

.visual-interior,
.visual-color {
  background:
    radial-gradient(circle at 70% 22%, rgba(241, 212, 138, 0.34), transparent 26%),
    linear-gradient(135deg, #100b07, #332312 58%, #f1d48a);
}

.service-card .visual-placeholder {
  aspect-ratio: 4 / 3;
}

.service-card div {
  padding: 1.15rem;
}

.service-card p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-card li,
.course-pills span,
.club-benefits span {
  padding: 0.46rem 0.65rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.gallery-grid,
.before-after-grid,
.pricing-grid,
.success-grid,
.reviews-grid,
.blog-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card,
.before-card,
.price-card,
.success-card,
.review-card,
.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(34, 27, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 9, 6, 0.08);
}

.gallery-card .visual-placeholder,
.success-card .visual-placeholder {
  aspect-ratio: 1 / 1;
}

.gallery-card div,
.before-card div,
.price-card,
.success-card,
.review-card,
.blog-card {
  padding: 1rem;
}

.before-after-grid {
  width: min(100%, 1180px);
  display: grid;
  gap: 1rem;
  margin: 0 auto;
}

.before-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(34, 27, 20, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 9, 6, 0.08);
}

.before-card .visual-placeholder {
  aspect-ratio: 16 / 10;
}

.before-card strong,
.before-card span,
.before-card a {
  display: block;
}

.before-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.before-card span {
  margin-top: 0.3rem;
  color: var(--muted);
}

.before-card a {
  width: fit-content;
  margin-top: 0.75rem;
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.section-cta {
  width: min(100%, 1180px);
  margin: 1.25rem auto 0;
}

.booking-panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), 1180px);
  display: grid;
  gap: 1rem;
  margin: -2.2rem auto 0;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, #15100b, #241a10);
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  font-size: clamp(1.55rem, 7vw, 2.8rem);
}

.booking-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.booking-links a {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  color: var(--black);
  background: var(--gold-light);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 0.8rem;
}

.price-card {
  display: grid;
  gap: 0.45rem;
  min-height: 190px;
}

.price-card span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-card strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.1;
}

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

.price-card a {
  align-self: end;
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  width: fit-content;
}

.gallery-card strong,
.gallery-card span,
.success-card strong,
.success-card span {
  display: block;
}

.gallery-card span,
.success-card span,
.blog-card p,
.review-card p,
.bridal-copy p,
.academy-copy p,
.club-card p,
.site-footer span {
  color: var(--muted);
}

.bridal-section,
.academy-section,
.club-section,
.contact-section {
  display: grid;
  gap: 1rem;
  padding: 4.8rem 1rem;
}

.bridal-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(201, 162, 75, 0.24), transparent 38%),
    radial-gradient(circle at 78% 48%, rgba(241, 212, 138, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(12, 9, 6, 0.98), rgba(38, 25, 13, 0.84));
}

.bridal-copy,
.package-list,
.academy-media,
.academy-copy,
.club-card,
.refer-card,
.contact-copy,
.map-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.bridal-copy p {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.78);
}

.package-list {
  display: grid;
  gap: 0.75rem;
}

.package-list article,
.club-card,
.refer-card {
  padding: 1.1rem;
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.package-list span {
  color: var(--gold-light);
  font-weight: 900;
}

.package-list strong,
.package-list small {
  display: block;
}

.package-list strong {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.package-list small {
  color: rgba(255, 250, 242, 0.74);
}

.academy-section {
  background:
    linear-gradient(145deg, rgba(201, 162, 75, 0.12), transparent 48%),
    var(--black-soft);
  color: var(--white);
}

.academy-media .visual-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.academy-copy p {
  color: rgba(255, 250, 242, 0.75);
}

.offer {
  display: inline-flex;
  margin: 0.7rem 0 1rem;
  padding: 0.55rem 0.8rem;
  color: var(--black);
  background: var(--gold-light);
  border-radius: var(--radius);
  font-weight: 900;
}

.course-pills,
.club-benefits,
.academy-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.academy-trust span {
  padding: 0.46rem 0.65rem;
  color: var(--gold-light);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem;
}

.success-card strong {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.rating {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
}

.blog-tools {
  width: min(100%, 1180px);
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin: 0 auto 1rem;
  padding-bottom: 0.2rem;
}

.blog-tools button {
  flex: 0 0 auto;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.blog-tools button.active {
  color: var(--black);
  background: var(--gold-light);
}

.blog-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0.5rem 0;
}

.blog-card a {
  display: inline-flex;
  margin-top: 0.55rem;
  color: var(--black);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.club-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #241a10 54%, #0f1820);
}

.club-card,
.refer-card {
  color: var(--white);
}

.club-card p {
  color: rgba(255, 250, 242, 0.75);
}

.refer-card {
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.28), rgba(255, 250, 242, 0.08));
}

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

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem;
  background: var(--white);
  border: 1px solid rgba(34, 27, 20, 0.08);
  border-radius: var(--radius);
}

.contact-list strong {
  color: var(--gold);
}

.map-wrap {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(34, 27, 20, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 0.4rem;
  padding: 2rem 1rem 6rem;
  color: var(--white);
  background: var(--black);
  text-align: center;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -10px 30px rgba(12, 9, 6, 0.18);
}

.sticky-actions a {
  min-height: 56px;
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 950;
}

.sticky-whatsapp {
  background: #d9b95c;
}

.sticky-call {
  background: var(--white);
}

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

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

@media (min-width: 560px) {
  .button-row,
  .hero-actions,
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form .btn {
    grid-column: 1 / -1;
  }

  .feature-grid,
  .gallery-grid,
  .before-after-grid,
  .pricing-grid,
  .success-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .site-header {
    padding: 0.9rem 2rem;
  }

  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .desktop-nav {
    gap: 1.2rem;
    color: rgba(255, 250, 242, 0.8);
    font-weight: 700;
  }

  .desktop-nav a:hover {
    color: var(--gold-light);
  }

  .header-cta {
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    color: var(--black);
    background: var(--gold-light);
    border-radius: var(--radius);
    font-weight: 900;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .hero-content {
    padding: 9rem 2rem 5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 850px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 900px;
  }

  .button-row,
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .booking-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 1.25rem;
  }

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

  .section,
  .bridal-section,
  .academy-section,
  .club-section,
  .contact-section {
    padding: 6.5rem 2rem;
  }

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

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

  .gallery-grid,
  .before-after-grid,
  .pricing-grid,
  .success-grid,
  .reviews-grid,
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .bridal-section,
  .academy-section,
  .club-section,
  .contact-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .bridal-copy,
  .package-list,
  .academy-media,
  .academy-copy,
  .club-card,
  .refer-card,
  .contact-copy,
  .map-wrap {
    width: 100%;
    max-width: 580px;
  }

  .bridal-copy,
  .academy-media,
  .club-card,
  .contact-copy {
    justify-self: end;
  }

  .package-list,
  .academy-copy,
  .refer-card,
  .map-wrap {
    justify-self: start;
  }

  .sticky-actions {
    left: auto;
    right: 1.25rem;
    bottom: 1.25rem;
    grid-template-columns: none;
    gap: 0.55rem;
    width: 168px;
    box-shadow: none;
  }

  .sticky-actions a {
    min-height: 48px;
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(12, 9, 6, 0.18);
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

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

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