/* =========================================================
   SHUDH INDIA — Unified Stylesheet
   All pages share this file for consistent design
   ========================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Sora:wght@400;600;700&display=swap');

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand Colors */
  --color-primary:                #af101a;
  --color-primary-container:      #8c0d15;
  --color-on-primary:             #ffffff;
  --color-primary-fixed:          #ffdad6;
  --color-primary-fixed-dim:      #ffb3ac;
  --color-on-primary-fixed:       #410003;
  --color-on-primary-fixed-variant: #930010;
  --color-inverse-primary:        #ffb3ac;

  --color-secondary:              #2E7D32;
  --color-on-secondary:           #ffffff;
  --color-secondary-container:    #e8f5e9;
  --color-on-secondary-container: #1b5e20;
  --color-secondary-fixed:        #9df898;
  --color-secondary-fixed-dim:    #82db7e;
  --color-on-secondary-fixed:     #002204;
  --color-on-secondary-fixed-variant: #005312;

  --color-tertiary:               #735c00;
  --color-on-tertiary:            #ffffff;
  --color-tertiary-container:     #cca730;
  --color-on-tertiary-container:  #4f3e00;
  --color-tertiary-fixed:         #ffe088;
  --color-tertiary-fixed-dim:     #e9c349;
  --color-on-tertiary-fixed:      #241a00;
  --color-on-tertiary-fixed-variant: #574500;

  --color-error:                  #ba1a1a;
  --color-on-error:               #ffffff;
  --color-error-container:        #ffdad6;
  --color-on-error-container:     #93000a;

  /* Surface & Background */
  --color-background:             #FCF8F1;
  --color-on-background:          #1b1c15;
  --color-surface:                #FCF8F1;
  --color-on-surface:             #1b1c15;
  --color-surface-variant:        #e4e3d7;
  --color-on-surface-variant:     #5b403d;
  --color-surface-dim:            #dbdbcf;
  --color-surface-bright:         #fbfaee;
  --color-surface-container-lowest:  #ffffff;
  --color-surface-container-low:    #FDF2EE;
  --color-surface-container:        #efeee3;
  --color-surface-container-high:   #F0F4ED;
  --color-surface-container-highest: #e4e3d7;
  --color-inverse-surface:          #303129;
  --color-inverse-on-surface:       #f2f1e5;

  /* Other */
  --color-outline:                #8f6f6c;
  --color-outline-variant:        #e4beba;
  --color-surface-tint:           #ba1a20;

  /* Typography */
  --font-headline: 'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-moment:   'Dancing Script', cursive;
  --font-sora:     'Sora', sans-serif;

  /* Spacing */
  --max-width: 1280px;
  --nav-height: 72px;

  /* Shadows */
  --shadow-nav:    0 20px 40px rgba(91, 64, 61, 0.08);
  --shadow-card:   0 4px 24px rgba(91, 64, 61, 0.10);
  --shadow-elevated: 0 20px 60px rgba(91, 64, 61, 0.15);

  /* Border Radius */
  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   2rem;
  --radius-xl:   3rem;
  --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  caret-color: transparent;
}

input,
textarea,
select,
[contenteditable="true"] {
  caret-color: auto;
}

::selection { background: rgba(175, 16, 26, 0.18); }

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

/* ---------- Image Skeleton Loader ---------- */
@keyframes shudhImageSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

img.shudh-image-skeleton {
  background: linear-gradient(
    90deg,
    rgba(228, 227, 215, 0.72) 0%,
    rgba(245, 244, 232, 0.94) 50%,
    rgba(228, 227, 215, 0.72) 100%
  );
  background-size: 220% 100%;
  animation: shudhImageSkeletonShimmer 1.2s linear infinite;
}

/* ---------- Image hover zoom (smooth in/out; logos & loader excluded). Base transition animates release; .contact-panel__visual img keeps its own transition (later rule). ---------- */
@media (hover: hover) and (pointer: fine) {
  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image) {
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image):hover,
  a:hover img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image) {
    transform: scale(1.1);
  }
}

@media (hover: none) and (pointer: coarse) {
  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image) {
    transition: transform 0.35s ease;
  }
  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image):active {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image) {
    transition: none !important;
  }

  img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image):hover,
  a:hover img:not(.site-logo__image):not(.shudh-loader-logo):not(.footer-brand__image) {
    transform: none !important;
  }
}

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

ul { list-style: none; }

/* ---------- Full Page Loader ---------- */
.shudh-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.55) 0%, rgba(252, 249, 244, 0.72) 40%, rgba(240, 236, 228, 0.78) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(56px) saturate(1.65);
  -webkit-backdrop-filter: blur(56px) saturate(1.65);
  transition: opacity 320ms ease;
}

.shudh-loader-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hide in-DOM page chrome until boot scripts remove this class (see shudh-first-paint.js + loader hide). */
html.shudh-boot-pending body > *:not(#shudh-global-loader) {
  visibility: hidden;
}

/* Layout only — no panel; glass comes from .shudh-loader-overlay */
.shudh-loader-card {
  box-sizing: border-box;
  width: max-content;
  max-width: min(90vw, 18rem);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: shudhLoaderFloat 2.6s ease-in-out infinite;
}

.shudh-loader-logo-wrap {
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: shudhLoaderPulse 1.8s ease-in-out infinite;
}

.shudh-loader-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.shudh-loader-brand {
  margin-top: 0.55rem;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-primary);
  max-width: 11rem;
}

.shudh-loader-text {
  margin-top: 0.45rem;
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.52rem;
  line-height: 1.35;
  color: rgba(91, 64, 61, 0.78);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 12.5rem;
  text-align: center;
}

.shudh-loader-dots {
  display: inline-flex;
  gap: 0.18rem;
  margin-left: 0.18rem;
}

.shudh-loader-dots span {
  width: 0.23rem;
  height: 0.23rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  opacity: 0.25;
  animation: shudhLoaderDots 1.2s ease-in-out infinite;
}

.shudh-loader-dots span:nth-child(2) { animation-delay: 0.18s; }
.shudh-loader-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes shudhLoaderDots {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

@keyframes shudhLoaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes shudhLoaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ---------- Pinterest-style Gallery (natural image height, no crop) ---------- */
.shudh-masonry-grid {
  column-count: 1;
  column-gap: 1.25rem;
}

.shudh-masonry-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 1.25rem;
  padding: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-container-low);
  box-shadow: var(--shadow-card);
  line-height: 0;
}

.shudh-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  transition: transform 0.55s ease;
}

.shudh-masonry-item:hover img {
  transform: scale(1.02);
}

.shudh-masonry-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.35) 55%, rgba(17, 17, 17, 0) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  pointer-events: none;
}

.shudh-masonry-cat {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}

.shudh-masonry-title {
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 700px) {
  .shudh-masonry-grid { column-count: 2; }
}

@media (min-width: 1024px) {
  .shudh-masonry-grid { column-count: 3; }
}

@media (min-width: 1360px) {
  .shudh-masonry-grid { column-count: 4; }
}

/* ---------- Typography Utilities ---------- */
.font-headline  { font-family: var(--font-headline); }
.font-body      { font-family: var(--font-body); }
.font-moment    { font-family: var(--font-moment); font-weight: 600; letter-spacing: -0.02em; }
.font-authority { font-family: var(--font-sora); }

/* ---------- Material Symbols ---------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* ---------- Shared Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(252, 248, 241, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.3s;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  white-space: nowrap;
}

.site-logo__image {
  display: block;
  height: 75px;
  width: auto;
  max-width: 225px;
  object-fit: contain;
}

.site-logo .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  font-size: 1.6rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav a {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.875rem;
  color: #52525b;
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-on-primary);
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(175,16,26,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.site-header__cta:hover  { transform: scale(1.04); box-shadow: 0 6px 24px rgba(175,16,26,0.35); }
.site-header__cta:active { transform: scale(0.97); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + 0.35rem);
  left: 0.75rem;
  right: 0.75rem;
  background: color-mix(in srgb, var(--color-surface) 90%, #fff 10%);
  padding: 0.75rem 0.9rem 1rem;
  box-shadow: 0 24px 44px rgba(91,64,61,0.16);
  flex-direction: column;
  gap: 0.2rem;
  z-index: 99;
  border: 1px solid rgba(159, 126, 118, 0.2);
  border-radius: 1rem;
  max-height: min(76vh, 620px);
  overflow-y: auto;
  overscroll-behavior: contain;
  backdrop-filter: blur(10px);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-on-surface-variant);
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-outline-variant) 55%, transparent);
  border-radius: 0.65rem;
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-primary);
  padding-left: 0.9rem;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
}

.mobile-nav a.btn,
.mobile-nav a.btn-primary {
  margin-top: 0.7rem !important;
  border: none !important;
  border-radius: 999px;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(175, 16, 26, 0.28);
}

/* ---------- Home Hero ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--color-surface);
}

.home-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 2.25rem;
  padding-bottom: 4rem;
}

.home-hero__content {
  max-width: 680px;
}

.home-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.home-hero__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2.75rem, 6.2vw, 5rem);
  line-height: 1.06;
  color: var(--color-on-surface);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.home-hero__desc {
  font-size: 1.0625rem;
  color: var(--color-on-surface-variant);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-hero__stats {
  display: none;
  width: 100%;
  max-width: 270px;
  justify-self: end;
  align-self: end;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elevated);
}

.home-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-hero-stat__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-stat__number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
}

.home-hero-stat__label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
}

@media (min-width: 1024px) {
  .home-hero__container {
    grid-template-columns: minmax(0, 1.24fr) minmax(250px, 0.72fr);
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 3.25rem;
  }

  .home-hero__stats { display: block; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-surface-container-high);
  margin-top: 0;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 4rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .site-footer__main { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-brand__image {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-brand__desc {
  color: #71717a;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface-container-high);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-on-surface);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem 1.5rem;
}

.footer-col ul li a {
  color: #71717a;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}

@media (max-width: 420px) {
  .footer-col ul {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.footer-col ul li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-tag {
  padding: 0.35rem 0.875rem;
  background: var(--color-surface-container-high);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.footer-cert {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid var(--color-surface-container-high);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p {
  color: #71717a;
  font-size: 0.8125rem;
}

/* ---------- Floating Contact Dock ---------- */
.shudh-contact-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 130;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.46rem;
  border-radius: 1.2rem;
  background: rgba(255, 252, 248, 0.74);
  border: 1px solid rgba(143, 111, 108, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(27, 28, 21, 0.16);
}

.shudh-contact-dock__item {
  width: 2.65rem;
  min-width: 2.65rem;
  height: 2.65rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  overflow: hidden;
  transition: width 0.28s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.28s ease, color 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  color: var(--color-on-surface);
  border: 1px solid rgba(143, 111, 108, 0.16);
}

.shudh-contact-dock__item:hover,
.shudh-contact-dock__item:focus-visible {
  width: 10rem;
  transform: translateX(-1px);
  outline: none;
}

.shudh-contact-dock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.shudh-contact-dock__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.shudh-contact-dock__label {
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shudh-contact-dock__item:hover .shudh-contact-dock__label,
.shudh-contact-dock__item:focus-visible .shudh-contact-dock__label {
  opacity: 1;
  transform: translateX(0);
}

.shudh-contact-dock__item--brand {
  background: rgba(175, 16, 26, 0.12);
  color: var(--color-primary);
}

.shudh-contact-dock__item--brand:hover,
.shudh-contact-dock__item--brand:focus-visible {
  background: rgba(175, 16, 26, 0.18);
  color: var(--color-primary);
  border-color: rgba(175, 16, 26, 0.28);
}

.shudh-contact-dock__item--whatsapp {
  background: rgba(34, 197, 94, 0.12);
  color: #1f7a3e;
}

.shudh-contact-dock__item--whatsapp:hover,
.shudh-contact-dock__item--whatsapp:focus-visible {
  background: rgba(34, 197, 94, 0.18);
  color: #176232;
  border-color: rgba(23, 98, 50, 0.28);
}

.shudh-contact-dock__item--instagram {
  background: rgba(221, 42, 123, 0.11);
  color: #9f2167;
}

.shudh-contact-dock__item--instagram:hover,
.shudh-contact-dock__item--instagram:focus-visible {
  background: rgba(221, 42, 123, 0.17);
  color: #7e194f;
  border-color: rgba(126, 25, 79, 0.26);
}

.shudh-contact-dock__item--youtube {
  background: rgba(239, 68, 68, 0.12);
  color: #a62929;
}

.shudh-contact-dock__item--youtube:hover,
.shudh-contact-dock__item--youtube:focus-visible {
  background: rgba(239, 68, 68, 0.18);
  color: #841f1f;
  border-color: rgba(132, 31, 31, 0.26);
}

/* Defensive: prevent accidental image below footer */
.site-footer + img,
.site-footer ~ img {
  display: none !important;
}

@media (max-width: 768px) {
  .site-logo__image {
    height: 44px;
    max-width: 180px;
  }
  .footer-brand__image { height: 48px; }

  .shudh-contact-dock {
    right: 0.6rem;
    left: 0.6rem;
    bottom: 0.55rem;
    flex-direction: row;
    justify-content: center;
    border-radius: 0.95rem;
    gap: 0.45rem;
    padding: 0.45rem calc(0.55rem + env(safe-area-inset-right)) calc(0.45rem + env(safe-area-inset-bottom)) calc(0.55rem + env(safe-area-inset-left));
  }

  .shudh-contact-dock__item,
  .shudh-contact-dock__item:hover,
  .shudh-contact-dock__item:focus-visible {
    width: 2.55rem;
    min-width: 2.55rem;
    height: 2.55rem;
    padding: 0;
    justify-content: center;
    transform: none;
  }

  .shudh-contact-dock__label {
    display: none;
  }
}

/* ---------- Page Hero Banner (shared across inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  background: var(--color-surface-container-low);
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-on-surface);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero__title .accent {
  font-family: var(--font-moment);
  color: var(--color-primary);
  font-size: 1.25em;
  font-weight: 600;
}

.page-hero__subtitle {
  color: var(--color-on-surface-variant);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ---------- Section Header ---------- */
.section-header {
  max-width: 680px;
}

.section-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-on-surface);
  margin-bottom: 1rem;
}

.section-title .accent {
  font-family: var(--font-moment);
  color: var(--color-secondary);
  font-size: 1.25em;
}

.section-desc {
  color: var(--color-on-surface-variant);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-headline);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border-radius: var(--radius-full);
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-on-primary);
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(175,16,26,0.22);
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(175,16,26,0.32); }

.btn-outline {
  background: transparent;
  color: var(--color-on-surface);
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
  border: 2px solid var(--color-outline-variant);
}
.btn-outline:hover { background: var(--color-on-surface); color: var(--color-surface); }

.btn-secondary {
  background: var(--color-surface-container-high);
  color: var(--color-on-surface);
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
}
.btn-secondary:hover { background: var(--color-surface-container-highest); }

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

/* ---------- Trust Stats Strip ---------- */
.stats-strip {
  background: var(--color-surface-container-low);
  padding: 3rem 1.5rem;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  background: var(--color-surface-container-low);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(27, 28, 21, 0.08);
}
.stat-card:hover .stat-number { color: var(--color-primary); }
.stat-card:hover .stat-label  { color: var(--color-on-surface-variant); }

.stat-number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  transition: color 0.3s;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-on-surface-variant);
  transition: color 0.3s;
}

/* ---------- Form Inputs ---------- */
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-on-surface-variant);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-surface-container-low);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-on-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(175,16,26,0.35);
  box-shadow: 0 0 0 3px rgba(175,16,26,0.08);
}

.form-textarea { resize: vertical; min-height: 120px; }

.shudh-input-error {
  border-color: rgba(186, 26, 26, 0.65) !important;
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.13) !important;
}

.shudh-form-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 220;
  min-width: 220px;
  max-width: 340px;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 16px 30px rgba(27, 28, 21, 0.2);
}

.shudh-form-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shudh-form-toast.is-success {
  background: linear-gradient(135deg, #2E7D32, #1b5e20);
}

.shudh-form-toast.is-error {
  background: linear-gradient(135deg, #ba1a1a, #8f1515);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-on-surface-variant);
  padding: calc(var(--nav-height) + 1rem) 1.5rem 0;
  max-width: var(--max-width);
  margin-inline: auto;
}

.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.5; }

/* ---------- Page Body Spacing ---------- */
.page-content { padding-top: var(--nav-height); }

/* ---------- Section Spacing ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem); }
.section--sm { padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem); }
.section-inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

/* ---------- Divider ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--color-surface-variant);
  margin: 2rem 0;
}

/* ---------- Responsive Utilities ---------- */
@media (max-width: 768px) {
  .site-nav, .site-header__cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3rem 1rem; }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ---------- Masonry Grid ---------- */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  grid-auto-rows: 200px;
  gap: 1.25rem;
}

.masonry-large { grid-row: span 2; }
.masonry-wide  { grid-column: span 2; }

@media (max-width: 640px) {
  .masonry-wide { grid-column: span 1; }
}

/* ---------- Package Cards ---------- */
.pkg-card {
  background: var(--color-surface-container-low);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  border-top: 4px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pkg-card:hover {
  border-color: var(--color-outline-variant);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.pkg-card--featured {
  background: var(--color-surface-container-lowest);
  border: 2px solid var(--color-primary);
  position: relative;
  box-shadow: var(--shadow-elevated);
  transform: scale(1.03);
}

.pkg-card--featured:hover { transform: scale(1.05); }

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 0.2rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-container) 100%);
  color: var(--color-on-primary);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.0625rem;
  opacity: 0.88;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ---------- Home Signature Flow ---------- */
.home-signature-flow {
  background:
    radial-gradient(circle at 84% 7%, rgba(175, 16, 26, 0.07) 0%, rgba(175, 16, 26, 0) 42%),
    var(--color-surface-container-low);
}

.home-signature-flow__head {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  max-width: 760px;
}

.home-signature-flow__layout {
  display: grid;
  gap: 1.25rem;
}

.home-signature-flow__feature {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: clamp(280px, 45vw, 420px);
  box-shadow: 0 28px 50px rgba(91, 64, 61, 0.18);
}

.home-signature-flow__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-signature-flow__feature:hover img {
  transform: scale(1.05);
}

.home-signature-flow__feature-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(20, 13, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.home-signature-flow__feature-overlay span {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f8d78f;
}

.home-signature-flow__feature-overlay h3 {
  margin-top: 0.45rem;
  color: #fff;
  font-family: var(--font-headline);
  font-size: clamp(1.2rem, 2.7vw, 1.7rem);
  line-height: 1.2;
}

.home-signature-flow__steps {
  display: grid;
  gap: 1rem;
}

.home-signature-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  background: var(--color-surface-container-lowest);
  border: 1px solid rgba(228, 190, 186, 0.35);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.home-signature-step__num {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(140deg, var(--color-primary), var(--color-primary-container));
  color: #fff;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.home-signature-step h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-on-surface);
}

.home-signature-step p {
  margin-top: 0.4rem;
  color: var(--color-on-surface-variant);
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-signature-step a {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
}

.home-signature-step a .material-symbols-outlined {
  font-size: 0.95rem;
}

/* Homepage quote panel override: reduce solid red with image */
.home-quote-section .contact-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(30, 14, 12, 0.58) 0%, rgba(30, 14, 12, 0.74) 100%),
    url("https://images.unsplash.com/photo-1478145046317-39f10e56b5e9?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.home-quote-section .contact-panel > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .home-quote-section .quote-split-card .quote-form-pane {
    order: 1;
  }

  .home-quote-section .quote-split-card .contact-panel {
    order: 2;
  }
}

/* ---------- Home Closing Signature ---------- */
.home-closing-signature {
  background: var(--color-surface-container-high);
}

.home-closing-signature__title-wrap {
  text-align: center;
  margin-bottom: clamp(1.2rem, 3vw, 2.1rem);
}

.home-closing-signature__title-kicker {
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
}

.home-closing-signature__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.home-closing-signature__title span {
  font-family: var(--font-moment);
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 1.1em;
}

.home-closing-signature__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.home-closing-signature__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(140, 13, 21, 0.92), rgba(175, 16, 26, 0.88));
  border-radius: 1.1rem;
  padding: clamp(1rem, 2.6vw, 1.4rem);
  color: #fff;
  box-shadow: 0 24px 44px rgba(40, 20, 18, 0.24);
}

.home-closing-signature__text {
  padding: clamp(0.35rem, 1.2vw, 0.8rem);
}

.home-closing-signature__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 241, 238, 0.9);
}

.home-closing-signature__content h2 {
  margin-top: 0.55rem;
  font-family: var(--font-headline);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}

.home-closing-signature__content h2 span {
  color: #f6d9a0;
}

.home-closing-signature__content p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 56ch;
}

.home-closing-signature__actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-closing-signature__media {
  border-radius: 0.85rem;
  min-height: clamp(170px, 30vw, 260px);
  background:
    linear-gradient(165deg, rgba(24, 14, 13, 0.14) 0%, rgba(24, 14, 13, 0.38) 100%),
    url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-closing-signature__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-closing-signature__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.home-closing-signature__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.home-closing-signature__points article {
  background: var(--color-surface-container-lowest);
  border: 1px solid rgba(228, 190, 186, 0.4);
  border-radius: 0.95rem;
  padding: 1rem 1rem 0.95rem;
  box-shadow: var(--shadow-card);
}

.home-closing-signature__points article .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 1.35rem;
  font-variation-settings: 'FILL' 1;
}

.home-closing-signature__points article h3 {
  margin-top: 0.35rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-on-surface);
}

.home-closing-signature__points article p {
  margin-top: 0.35rem;
  color: var(--color-on-surface-variant);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------- Contact Info Card ---------- */
.contact-panel {
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.contact-panel h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-panel p { opacity: 0.82; line-height: 1.7; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item p:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 0.15rem;
}

.contact-item p:last-child { font-size: 1rem; font-weight: 700; opacity: 1; }

/* ---------- Quote Form Card ---------- */
.quote-form-card {
  position: relative;
  background: var(--color-surface);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.quote-form-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-container));
}

.quote-form-content {
  position: relative;
  margin-left: 4.5rem;
  padding: 2.25rem 2rem;
}

.quote-form-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.contact-panel__visual {
  position: relative;
  width: 100%;
  min-height: 180px;
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 236, 205, 0.7);
  box-shadow: 0 16px 30px rgba(57, 35, 6, 0.24);
  background: rgba(255, 239, 214, 0.18);
}

.contact-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 7s ease;
  filter: saturate(1.08) brightness(1.05);
}

.quote-split-card:hover .contact-panel__visual img {
  transform: scale(1.1);
}

.contact-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 247, 228, 0.14) 0%, rgba(255, 235, 201, 0.72) 58%, rgba(243, 203, 132, 0.52) 100%);
  z-index: 1;
}

.contact-panel__visual::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -40px;
  width: 170px;
  height: 170px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 245, 217, 0.65) 0%, rgba(255, 245, 217, 0) 72%);
}

.contact-panel__visual-content {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.75rem 0.8rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 239, 212, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.contact-panel__visual-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7a5b1b;
  margin-bottom: 0.3rem;
}

.contact-panel__visual-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.25;
  color: #2a1b00;
}

.quote-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.quote-submit-wrap {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
}

.quote-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
}

/* Quote form fields styled to match design mock */
.quote-form-grid .form-input,
.quote-form-grid .form-select,
.quote-form-grid .form-textarea {
  background: #f3f3f3;
  border: 1px solid #a8a8a8;
  border-radius: 0.5rem;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  box-shadow: none;
}

.quote-form-grid .form-textarea {
  min-height: 7.6rem;
}

.quote-form-grid .form-input::placeholder,
.quote-form-grid .form-textarea::placeholder {
  color: #787878;
  opacity: 1;
}

.quote-form-grid .form-input:focus,
.quote-form-grid .form-select:focus,
.quote-form-grid .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(175, 16, 26, 0.12);
}

/* Split layout with left contact panel + right form */
.quote-split-card {
  background: var(--color-surface);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  display: grid;
  grid-template-columns: 1fr;
}

.quote-form-pane {
  padding: 2.25rem 2rem;
}

.inquiry-quote-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(228, 190, 186, 0.45);
}

.inquiry-visual-panel {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 214, 165, 0.16) 0%, rgba(255, 214, 165, 0) 45%),
    linear-gradient(160deg, #8c0d15 0%, #af101a 54%, #6f0a12 100%);
}

.inquiry-visual-card {
  min-height: 260px;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 15px 32px rgba(13, 4, 5, 0.35);
  background:
    linear-gradient(180deg, rgba(20, 8, 5, 0.15) 0%, rgba(20, 8, 5, 0.72) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 214, 145, 0.48) 0%, rgba(255, 187, 94, 0.06) 40%, rgba(111, 10, 18, 0.16) 100%),
    url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.inquiry-visual-card__badge {
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b3d00;
  background: rgba(255, 244, 215, 0.93);
  border: 1px solid rgba(255, 230, 179, 0.78);
  border-radius: 9999px;
  padding: 0.38rem 0.7rem;
}

.inquiry-visual-card__title {
  margin-top: 0.65rem;
  max-width: 18rem;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  opacity: 1;
}

.inquiry-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inquiry-form-pane {
  background: linear-gradient(180deg, #ffffff 0%, #fffcf7 100%);
}

.inquiry-form-subtitle {
  margin-top: -0.9rem;
  margin-bottom: 1.35rem;
  font-size: 0.92rem;
  color: var(--color-on-surface-variant);
}

.inquiry-form-grid {
  gap: 1rem;
}

.inquiry-section-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  gap: 0.75rem;
}

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

.choice-grid--pills {
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}

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

.choice-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card {
  position: relative;
  border: 1px solid #d9d7cf;
  background: #f8f5ee;
  border-radius: 0.92rem;
  min-height: 3.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card__label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-on-surface);
}

.choice-card:has(.choice-input:checked) {
  border-color: rgba(175, 16, 26, 0.38);
  background: rgba(175, 16, 26, 0.06);
  box-shadow: 0 0 0 2px rgba(175, 16, 26, 0.12);
}

.choice-card:has(.choice-input:checked) .choice-card__label {
  color: var(--color-primary);
}

.choice-card--media {
  min-height: 4.9rem;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.choice-card--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 8, 8, 0.86) 0%, rgba(15, 8, 8, 0.28) 58%, rgba(15, 8, 8, 0.1) 100%);
  z-index: 1;
}

.choice-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.choice-card:hover .choice-card__thumb {
  transform: scale(1.06);
}

.choice-card--media .choice-card__label {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.choice-card__check {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 3;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.choice-card:has(.choice-input:checked) .choice-card__check {
  display: inline-flex;
}

.choice-card__thumb--wedding {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCLy3Ow6xE3teLf4wZ3TrMn_nUcJVwIG60mYWrVg8fygfHrGY8R2oHMyvhLR7EYE4u9XflFqe8lt2bIeqrmY5FfN09vDtz_Yq9kpUmNTXWjUiwZujF17oKuJBi78RfWNIjuAUS4OZZvGu2wbfB-e7Cq2tVd_O2owy4xvUqHwpWwus7q7j-jpaF6E2UdmrPU2G9Ah4ogDHpxaWGl1Wqkh1E0ognfCmUKaUl-_bIFcPkrW0sxYsKJeeFUco-edeHuKq-pD2gnvJE82zGh");
}

.choice-card__thumb--birthday {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBET16VsmpQdWpLM_gZjZmim6UIfPtXG5HRqHcP5phJdcA543Jv4x9kSoTiJdMoWu6httskLWkId4d0mP5jf_dCNytSum07x2Aeo5VywrlQ9IMqYCr3OgUVPLdOmYPdJOlvnGVr4tzQS01DVpueAJRe-iC_htS-0vN-KfdXZQxUgeKcNBl_tRb9ZSmSYP6G70dPwAlCZlIvJT9yP9IKbJAdUS1GcTg5u9FYtAM-LMqyDxTIqV0P2BhY4S58IFXFubqqWaI_wKh03cvO");
}

.choice-card__thumb--corporate {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAAzEFVdC3PUcSwQJqDVjOJWIFw7j956YxaMFazRgfZrhYj7hRCaXiTXiBE3nK7so3v90n5kURIjTxOXMZT4Ob6DJL6nMJJ3GevDqgQCD0liFApDsmhabl-0NpOYiujU9MXHLPBr61QOPjhxwKFQQmec-zAYiNbmZPTkYBQDiDPPJBOR3SqAc0Ag572vuFL0_y9g-P2iy-1P7h84IXHzanY13nIXGHlXNbHrudWT8fr_EByzexIfXemHKyOQnt9LLO5PTEmrRS-58Tn");
}

.choice-card__thumb--private {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuDiLIElYdvpfheBV3JQ7hrMOhPrScdEXPOt0L7bCyhrtkXGHkk4mVyK2bGScgvVN-TVL7I4NzUWx0iOFQ05qqTRg41EZVkcI58gF8cf-bEpx3RuNsFVVkMk00X5nCgaLOD2arpyEshXEhRlYNj8ve8AcNtSwd7PhnZeqvkaJg-6pozibthENXmTUE5CFLc9RJ5zoZkWC2IP_cx3-tyPlu-yymk-5SrIh46j4MZkU8eskONRWAqQdo7xIRAzm1UeeXpR42AIfRs2OPsp");
}

.choice-card--dining {
  min-height: 9.2rem;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: start;
  gap: 0.35rem;
  text-align: left;
  padding: 0.5rem;
}

.choice-card--dining .choice-card__thumb {
  position: relative;
  inset: auto;
  border-radius: 0.65rem;
  min-height: 4.8rem;
}

.choice-card--dining::before {
  display: none;
}

.choice-card--dining .choice-card__label {
  position: static;
  z-index: auto;
  color: var(--color-on-surface);
  text-shadow: none;
  font-size: 0.78rem;
  line-height: 1.2;
}

.choice-card__meta {
  font-size: 0.67rem;
  line-height: 1.25;
  color: var(--color-on-surface-variant);
}

.choice-card__check--badge {
  width: auto;
  height: auto;
  min-height: 1.25rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.4rem;
  font-family: var(--font-headline);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  top: 0.8rem;
  right: 0.8rem;
}

.choice-card__thumb--buffet {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAYF7HEcqRlHo3OefqAguqYpk49mAMCfNs_PQWSDYHENcLL3-i88BSru-DSjg_7I0_Op0ZIy-BgOlm3b0Xj7M0tbrpZFnBaFXCPCNX1UPY2TJGCPOw_QrWyi9wTtiz4sOZPwfmzwjFnczAbaAFi23Bj8bnMkuLIsS75k7IEtlV-TowMAO8teBLjfLFS1IMpHXveTxL_yl8Xxi5UhH8xiaRWj5P4FBOH_wywDI4ZlGhhcTSGUZGtooksERg-8pVU5mA0175ws8zwLgXg");
}

.choice-card__thumb--plated {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuC7EvG5XFzRnUTLOuJxqSJ94aVSsvmNW-emY4o2yxPjcIe_qLcUr4Q5_AICqCInEUwW-C2M1Fn_AsIAgOq26Hz1TaxjpfonMhNTsLKLuM8YPaaUmH5JC-2QlemhpETyQBt5FJ7H0WpRth58EqFez4fW6m3FBPnabyktqPaYsLJpbyJcGaBXTCndgV-bsarJtTQBn1e91r50mOUBPMsg9EspgnD2FXOqCIEhRk87Lrpp1d62AcPP3fVW10QUL_Di6u1H3chqOoz3zxiL");
}

.choice-card__thumb--live {
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAdnqQNacqnpAS15CNJ9KM2zOxZwgI_5tAv3suL9snhCzrUcCUaSyjBFXAdHdi9WAve_Lo20Ym3_5erySmAojkp9B4zUrSx_wcDy4Uf8GzHSTeGFj8K8Df4CCbXb4bd1ob2ciCniKcIxmk2t1KyJSulJE4h4qwSZrsJKdsauvXkHUakoYut5gzzDqlo6gGlMVqtWk-UTC4IN7Pg3K7ubWE3XHqTVTr9f--L2Zw11TK6WXk93DMv-HJHKbhj12y1bNaSKsDkX1YSN41t");
}

.choice-pill {
  position: relative;
  border: 1px solid #ddd7cd;
  border-radius: 9999px;
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4c4c4c;
  background: #f7f4ee;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.choice-pill:has(.choice-input:checked) {
  color: #114f17;
  background: rgba(46, 125, 50, 0.14);
  border-color: rgba(46, 125, 50, 0.35);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.11);
}

.inquiry-form-msg {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2rem;
}

.inquiry-submit-btn {
  min-height: 3.1rem;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.inquiry-submit-note {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--color-on-surface-variant);
  font-size: 0.75rem;
}

.inquiry-submit-note .material-symbols-outlined {
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-variation-settings: 'FILL' 1;
}

/* Ensure inquiry inputs keep brand style over Tailwind forms plugin */
.shudh-inquiry-form .form-label {
  color: var(--color-on-surface);
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.shudh-inquiry-form .form-input,
.shudh-inquiry-form .form-select,
.shudh-inquiry-form .form-textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(143, 111, 108, 0.65);
  background: var(--color-surface-container-lowest);
  color: var(--color-on-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  min-height: 3.35rem;
  padding: 0.8rem 1rem;
}

.shudh-inquiry-form .form-textarea {
  min-height: 10rem;
}

.shudh-inquiry-form .form-input::placeholder,
.shudh-inquiry-form .form-textarea::placeholder {
  color: color-mix(in srgb, var(--color-on-surface-variant) 84%, #fff 16%);
  opacity: 1;
}

/* ---------- Responsive Layout Utilities ---------- */
.shudh-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.shudh-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.shudh-exp-card {
  position: relative;
  min-height: clamp(360px, 58vw, 560px);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.shudh-exp-card--offset {
  margin-top: 0;
}

.shudh-exp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.shudh-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 28, 21, .9) 0%, rgba(27, 28, 21, .15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

.shudh-visual-story {
  position: relative;
  min-height: clamp(420px, 70vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.shudh-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.shudh-culture-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.shudh-culture-media img {
  border-radius: .875rem;
  width: 100%;
  height: clamp(220px, 34vw, 300px);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.shudh-culture-media img:first-child {
  transform: translateY(1rem);
}

.shudh-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(3px);
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.shudh-modal-card {
  width: min(100%, 42rem);
  max-width: 100%;
  max-height: min(92dvh, 52rem);
  margin: auto 0;
  background: var(--color-surface);
  border-radius: clamp(0.875rem, 2.5vw, 1.125rem);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(143, 111, 108, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.shudh-modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.35rem);
  border-bottom: 1px solid var(--color-outline-variant);
  background: linear-gradient(180deg, var(--color-surface-container-lowest) 0%, var(--color-surface) 100%);
}

.shudh-modal-header__text {
  min-width: 0;
}

.shudh-modal-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.shudh-modal-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 700;
  color: var(--color-on-surface);
  line-height: 1.25;
}

.shudh-modal-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-surface-container-low);
  color: var(--color-on-surface-variant);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.shudh-modal-close:hover {
  background: var(--color-surface-container);
  color: var(--color-on-surface);
}

.shudh-modal-form-grid {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1rem, 3vw, 1.35rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.875rem, 2vw, 1.125rem);
  align-content: start;
}

.shudh-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

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

.shudh-modal-form-grid .form-input,
.shudh-modal-form-grid .form-select,
.shudh-modal-form-grid .form-textarea {
  border-radius: 0.75rem;
  min-height: 2.75rem;
  box-sizing: border-box;
}

.shudh-modal-form-grid .form-textarea {
  min-height: 7.5rem;
  line-height: 1.5;
}

.shudh-modal-form-msg {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.shudh-modal-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.25rem;
  border-top: 1px solid var(--color-outline-variant);
  padding-top: clamp(0.875rem, 2vw, 1rem);
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(252, 248, 241, 0) 0%, var(--color-surface) 18%);
}

.careers-hero {
  position: relative;
  min-height: clamp(340px, 56vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.careers-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  filter: grayscale(1);
}

.careers-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--color-background) 100%);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 340px));
  gap: 1.5rem;
  justify-content: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 380px));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.packages-grid > * {
  width: 100%;
  max-width: 380px;
}

@media (max-width: 1023px) {
  .quote-form-card::before { width: 3.25rem; }
  .quote-form-content { margin-left: 3.25rem; }
}

@media (min-width: 1024px) {
  .quote-split-card {
    grid-template-columns: 2fr 3fr;
  }
}

@media (max-width: 900px) {
  .shudh-modal-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .quote-form-card::before { width: 0.7rem; }
  .quote-form-content {
    margin-left: 0.7rem;
    padding: 1.5rem 1rem 1.25rem;
  }
  .quote-form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-panel__visual {
    min-height: 145px;
  }
  .quote-form-pane { padding: 1.5rem 1rem 1.25rem; }
  .contact-panel { padding: 2rem 1.25rem; }
  .inquiry-visual-card { min-height: 220px; }
  .choice-grid--event { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid--pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid--dining { grid-template-columns: 1fr; }
  .choice-card { min-height: 3.5rem; }
  .choice-card--media { min-height: 4.25rem; }
  .choice-card--dining { min-height: 8.4rem; }
  .shudh-modal-actions { flex-direction: column-reverse; align-items: stretch; }
  .shudh-modal-actions .btn { width: 100%; justify-content: center; }
  .shudh-culture-media { grid-template-columns: 1fr; }
  .shudh-culture-media img:first-child { transform: none; }
}

@media (min-width: 768px) {
  .shudh-exp-card--offset {
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .home-closing-signature__content {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .home-closing-signature__text {
    padding: clamp(0.7rem, 1.3vw, 1rem);
  }

  .home-closing-signature__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .home-signature-flow__layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .home-signature-flow__steps {
    grid-template-rows: repeat(3, 1fr);
  }

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