:root {
  --ink: #241713;
  --muted: #745f58;
  --paper: #fff8f1;
  --soft: #f8eadb;
  --line: #ead5c4;
  --ruby: #8f2435;
  --ruby-dark: #651929;
  --saffron: #d7902f;
  --green: #335b45;
  --ivory: #fffdf8;
  --shadow: 0 18px 40px rgba(63, 31, 21, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

main {
  display: flex;
  flex-direction: column;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 10px 28px rgba(59, 30, 20, 0.12);
  backdrop-filter: blur(14px);
}

.popups-page .site-header,
.inner-page .site-header {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 10px 28px rgba(59, 30, 20, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 206px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.prosperity-halo {
  fill: rgba(255, 253, 248, 0.08);
  stroke: rgba(255, 242, 188, 0.84);
  stroke-width: 1.5;
}

.site-header.is-scrolled .prosperity-halo {
  fill: rgba(255, 248, 241, 0.92);
  stroke: rgba(215, 144, 47, 0.6);
}

.prosperity-stroke,
.prosperity-flame,
.prosperity-base {
  fill: none;
  stroke: url("#markGold");
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prosperity-stroke {
  stroke-width: 4.8;
}

.prosperity-flame {
  stroke-width: 3.4;
  opacity: 0.9;
}

.prosperity-base {
  stroke-width: 3;
  opacity: 0.92;
}

.prosperity-dot {
  fill: #fff2bc;
  stroke: #d7902f;
  stroke-width: 1.4;
}

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

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.82;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.9;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.header-action {
  background: var(--saffron);
  color: #241713;
}

.primary-button {
  background: var(--ruby);
  color: #fff;
  box-shadow: 0 12px 26px rgba(143, 36, 53, 0.22);
}

.primary-button:hover {
  background: var(--ruby-dark);
}

.secondary-button {
  border-color: rgba(255, 253, 248, 0.78);
  color: #fff;
  background: rgba(255, 253, 248, 0.12);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.popups-page .desktop-nav,
.popups-page .header-action {
  display: none;
}

.popups-page .menu-button {
  display: block;
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 76px;
  left: 16px;
  right: 16px;
  display: none;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-popup-list {
  display: grid;
  gap: 0;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--line);
}

.mobile-popup-list span {
  padding: 9px 12px 6px;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-popup-list a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 76px) 76px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 20, 17, 0.84) 0%, rgba(32, 20, 17, 0.62) 36%, rgba(32, 20, 17, 0.2) 78%),
    linear-gradient(180deg, rgba(32, 20, 17, 0.38), rgba(32, 20, 17, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: #fff;
}

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 92px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 625px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

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

.hero-stats a {
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.hero-stats a:hover,
.hero-stats a:focus-visible {
  border-color: rgba(255, 242, 188, 0.78);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
}

section {
  padding: 88px clamp(18px, 5vw, 76px);
}

.hero {
  order: 1;
}

.home-tabs {
  order: 2;
}

.services {
  order: 3;
}

.gallery {
  order: 4;
}

.mix-builder {
  order: 5;
}

.rates {
  order: 6;
}

.about-section {
  order: 7;
}

.faq {
  order: 8;
}

.enquire {
  order: 9;
}

.home-page .services,
.home-page .mix-builder,
.home-page .rates,
.home-page .about-section,
.home-page .faq,
.home-page .enquire {
  display: none;
}

.function-guide,
.packages,
.addons,
.experience,
.testimonials,
.catalog {
  display: none !important;
}

.band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.home-tabs {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
}

.home-tabs .section-heading {
  margin-bottom: 18px;
}

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

.home-tab {
  display: grid;
  align-content: start;
  min-height: 124px;
  padding: 14px;
  border: 1px solid rgba(234, 213, 196, 0.94);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 24px rgba(63, 31, 21, 0.08);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.home-tab:hover,
.home-tab:focus-visible {
  border-color: rgba(215, 144, 47, 0.78);
  background: #fffdf8;
  transform: translateY(-2px);
}

.home-tab span {
  display: block;
  margin-bottom: 4px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
}

.home-tab h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.home-tab p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  color: var(--muted);
  font-size: 18px;
}

.function-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.function-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.function-tab.is-active {
  border-color: var(--ruby);
  background: var(--ruby);
  color: #fff;
}

.function-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.function-label,
.package-kicker {
  margin-bottom: 8px;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.function-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.builder-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.builder-form,
.builder-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(73, 39, 26, 0.06);
}

.builder-form {
  display: grid;
  gap: 16px;
}

.builder-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0 12px;
}

.builder-result {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #fffdf8 0%, #fff2e5 100%);
}

.builder-result p:not(.function-label) {
  color: var(--muted);
  font-size: 18px;
}

.builder-result ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 22px;
  padding-left: 18px;
  color: var(--green);
  font-weight: 800;
}

.builder-result .primary-button {
  align-self: flex-start;
  margin-top: auto;
}

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

.service-card,
.rate-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(73, 39, 26, 0.06);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #f1d9ce;
  color: var(--ruby-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.service-card p,
.rate-card p,
.package-card p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.rate-card {
  min-height: 220px;
}

.rates .rate-grid {
  grid-template-columns: minmax(0, 620px);
}

.rate-card.featured {
  border-color: rgba(143, 36, 53, 0.35);
  background: #fff6f3;
}

.package-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
}

.package-card span {
  display: inline-flex;
  margin-top: auto;
  color: var(--ruby-dark);
  font-size: 20px;
  font-weight: 900;
}

.featured-package {
  border-color: rgba(215, 144, 47, 0.7);
  background: #fffaf0;
  box-shadow: var(--shadow);
}

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

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  cursor: pointer;
}

.gallery-grid figure:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-visible img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(36, 23, 19, 0.78);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.gallery-grid figcaption::after {
  content: "View details";
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.popups-gallery {
  padding-top: 140px;
}

.popups-gallery .section-heading {
  max-width: 860px;
}

.event-work {
  background: var(--paper);
  padding-top: 88px;
  border-bottom: 1px solid var(--line);
}

.event-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-work-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.event-work-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.event-work-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: var(--radius);
  background: rgba(36, 23, 19, 0.78);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

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

.page-section {
  padding-top: 140px;
}

.page-section .section-heading {
  max-width: 860px;
}

.price {
  margin: 14px 0;
  color: var(--ruby-dark) !important;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
}

.quote-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 5px solid var(--saffron);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
}

.quote-note strong {
  color: var(--ink);
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.about-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(73, 39, 26, 0.06);
}

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

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.addon-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.timeline div {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--ruby);
  font-weight: 900;
}

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

.testimonial-grid blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ruby);
  border-radius: var(--radius);
  background: var(--ruby);
  color: #fff;
  font: inherit;
  font-weight: 900;
  padding: 12px 18px;
  cursor: pointer;
}

.faq-toggle[aria-expanded="true"] {
  background: var(--ruby-dark);
}

.faq-list[hidden] {
  display: none;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.catalog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.catalog-copy {
  max-width: 680px;
}

.catalog-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.enquire {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.enquire-copy {
  position: sticky;
  top: 112px;
}

.enquire-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8c2b2;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 20px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 16px 34px rgba(31, 157, 85, 0.34);
  font-weight: 900;
}

.whatsapp-float::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 9px;
  border-radius: 50%;
  background: #fff;
}

.whatsapp-float:hover {
  background: #167d43;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(143, 36, 53, 0.24);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ruby-dark);
  box-shadow: 0 14px 30px rgba(63, 31, 21, 0.18);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--ruby);
  color: #fff;
}

.popup-modal {
  width: min(760px, calc(100% - 32px));
  border: 1px solid rgba(215, 144, 47, 0.44);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 28px 80px rgba(36, 23, 19, 0.28);
}

.popup-modal::backdrop {
  background: rgba(36, 23, 19, 0.54);
  backdrop-filter: blur(4px);
}

.modal-body {
  padding: clamp(24px, 5vw, 38px);
}

.modal-body h2 {
  margin-bottom: 14px;
}

.modal-body > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 8px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.modal-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.modal-detail-grid div {
  min-height: 134px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8f1;
  padding: 16px;
}

.modal-detail-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--ruby);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 74vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(32, 20, 17, 0.82), rgba(32, 20, 17, 0.5)),
      linear-gradient(180deg, rgba(32, 20, 17, 0.38), rgba(32, 20, 17, 0.34));
  }

  .intro,
  .about-grid,
  .enquire,
  .function-panel,
  .builder-shell {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .about-grid,
  .service-grid,
  .rate-grid,
  .package-grid,
  .testimonial-grid,
  .timeline,
  .home-tab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tab:nth-child(2n) {
    border-right: 1px solid rgba(234, 213, 196, 0.94);
  }

  .home-tab:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(234, 213, 196, 0.94);
  }

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

  .event-work-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child {
    min-height: 300px;
  }

  .modal-detail-grid {
    grid-template-columns: 1fr;
  }

  .enquire-copy {
    position: static;
  }

  .timeline div:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 64px;
    padding: 9px 14px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

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

  .brand strong {
    max-width: 220px;
    font-size: 19px;
    line-height: 0.95;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .mobile-nav {
    top: 68px;
    left: 12px;
    right: 12px;
    padding: 7px;
  }

  .mobile-nav a {
    padding: 11px 10px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    align-items: end;
    padding: 92px 18px 28px;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(32, 20, 17, 0.86), rgba(32, 20, 17, 0));
  }

  .hero-content {
    padding-top: 34px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 0.98;
  }

  h2 {
    margin-bottom: 13px;
    font-size: 31px;
    line-height: 0.98;
  }

  h3 {
    font-size: 19px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .intro-grid,
  .catalog-copy p:not(.eyebrow),
  .enquire-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-copy {
    margin-bottom: 18px;
  }

  .hero-actions,
  .catalog,
  .quote-note,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .hero-stats a {
    width: auto;
    min-width: 0;
    padding: 9px 8px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-stats strong {
    font-size: 16px;
  }

  section {
    padding: 42px 18px;
  }

  .home-tabs {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-tab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-tab,
  .home-tab:nth-child(2n),
  .home-tab:nth-child(-n + 2) {
    min-height: 122px;
    padding: 11px;
  }

  .home-tab h3 {
    font-size: 15px;
  }

  .home-tab p {
    font-size: 11px;
    line-height: 1.35;
  }

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

  .gallery {
    padding-top: 34px;
  }

  .page-section {
    padding-top: 98px;
  }

  .intro-grid,
  .about-grid,
  .service-grid,
  .rate-grid,
  .package-grid,
  .testimonial-grid,
  .timeline,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .rate-card,
  .package-card,
  .builder-form,
  .builder-result,
  .enquiry-form {
    padding: 18px;
  }

  .function-panel {
    padding: 18px;
  }

  .function-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .function-tabs::-webkit-scrollbar {
    display: none;
  }

  .function-tab {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 14px;
    scroll-snap-align: start;
  }

  .addon-list span {
    width: 100%;
  }

  .gallery-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 8px;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .popups-page .gallery-grid,
  .home-page .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .popups-page .gallery-grid figure,
  .popups-page .gallery-grid figure:first-child,
  .home-page .gallery-grid figure,
  .home-page .gallery-grid figure:first-child {
    flex: none;
    min-height: 286px;
  }

  .popups-gallery {
    padding-top: 98px;
  }

  .event-work-grid {
    gap: 14px;
  }

  .event-work-grid figure {
    min-height: 286px;
  }

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

  .gallery-grid figure,
  .gallery-grid figure:first-child {
    flex: 0 0 78%;
    min-height: 264px;
    scroll-snap-align: start;
  }

  .gallery-grid figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .gallery-grid figcaption::after {
    font-size: 11px;
  }

  .builder-shell {
    gap: 14px;
  }

  .builder-result p:not(.function-label) {
    font-size: 16px;
  }

  .rate-card {
    min-height: auto;
  }

  .faq-toggle {
    width: 100%;
  }

  .popup-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 24px);
  }

  .modal-body {
    padding: 54px 18px 20px;
  }

  .modal-detail-grid div {
    min-height: auto;
    padding: 14px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .quote-note strong {
    white-space: normal;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 82px;
    width: 48px;
    height: 48px;
    font-size: 11px;
  }

  .whatsapp-float::before {
    display: none;
  }

  .whatsapp-float span {
    font-size: 0;
  }

  .whatsapp-float span::after {
    content: "WA";
    font-size: 14px;
    letter-spacing: 0;
  }

  .timeline div,
  .timeline div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline div:last-child {
    border-bottom: 0;
  }

  .timeline span {
    margin-bottom: 20px;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-status {
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .brand strong {
    max-width: 180px;
    font-size: 17px;
  }

  h1 {
    font-size: 36px;
  }

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