:root {
  --gold: #c9a24a;
  --gold-dark: #a67c2e;
  --cream: #f8f5ef;
  --beige: #efe7dc;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --white: #ffffff;
  --loader-bg: #0a0a0a;
  --loader-text: #f5f5f5;
  --loader-muted: #888888;
  --loader-stroke: #1f1f1f;
  --shadow: 0 18px 45px rgba(107, 79, 18, 0.08);
  --shadow-soft: 0 12px 34px rgba(44, 30, 4, 0.08);
  --border: rgba(198, 163, 94, 0.24);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 100%;
}

* {
  box-sizing: border-box;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #c9a24a rgba(201, 162, 74, 0.12);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(
    180deg,
    rgba(248, 244, 236, 0.95),
    rgba(236, 224, 203, 0.92)
  );
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 3px solid rgba(248, 244, 236, 0.98);
  background: linear-gradient(180deg, #d8b86b 0%, #c9a24a 45%, #a67c2e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e1c37d 0%, #d4af5f 45%, #b48737 100%);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at top left,
      rgba(201, 162, 74, 0.06),
      transparent 22%
    ),
    radial-gradient(
      circle at top right,
      rgba(201, 162, 74, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #fbf8f2 0%, var(--cream) 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 2vw, 1.75rem);
  margin: 0 auto;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.feature-banner {
  padding-block: clamp(1.4rem, 2.6vw, 2.4rem);
}

.page-shell {
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

body.is-loaded .page-shell {
  opacity: 1;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(
      circle at 18% 20%,
      rgba(201, 162, 74, 0.18),
      transparent 22%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(78, 133, 191, 0.1),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(232, 198, 90, 0.12),
      transparent 32%
    ),
    linear-gradient(180deg, #f8f2e6 0%, #f4ead7 48%, #efe0c3 100%);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  overflow: hidden;
}

.loading-screen__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loading-screen__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.8;
}

.loading-screen__glow--gold {
  top: 10%;
  left: 10%;
  width: min(26vw, 320px);
  height: min(26vw, 320px);
  background: radial-gradient(
    circle,
    rgba(201, 162, 74, 0.22) 0%,
    rgba(201, 162, 74, 0.06) 38%,
    transparent 72%
  );
}

.loading-screen__glow--blue {
  right: 10%;
  bottom: 14%;
  width: min(30vw, 360px);
  height: min(30vw, 360px);
  background: radial-gradient(
    circle,
    rgba(137, 170, 204, 0.18) 0%,
    rgba(78, 133, 191, 0.06) 42%,
    transparent 74%
  );
}

.loading-screen__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(122, 93, 36, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(122, 93, 36, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.82));
  opacity: 0.28;
}

.loading-screen.is-exiting {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.loading-screen__label,
.loading-screen__counter {
  opacity: 0;
}

.loading-screen__label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: rgba(91, 68, 28, 0.82);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(166, 124, 46, 0.16);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 245, 0.84),
    rgba(244, 231, 202, 0.62)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(98, 70, 16, 0.12);
  backdrop-filter: blur(12px);
  transform: translateY(-20px);
  animation: loaderSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.loading-screen__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.loading-screen__word {
  display: inline-block;
  color: #9d7525;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #c9a24a 28%,
    #f0d36a 52%,
    #c9a24a 76%,
    #8b6914 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow:
    0 8px 18px rgba(255, 255, 255, 0.22),
    0 18px 36px rgba(201, 162, 74, 0.22);
  transform: translateY(20px);
  opacity: 0;
}

.loading-screen__word.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen__word.is-exiting {
  transform: translateY(-20px);
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen__counter {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  color: rgba(62, 44, 17, 0.94);
  font-family: "Instrument Serif", serif;
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 400;
  line-height: 0.86;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 10px 28px rgba(201, 162, 74, 0.14);
  transform: translateY(20px);
  animation: loaderSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.loading-screen__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(210, 191, 154, 0.4),
    rgba(186, 163, 118, 0.55)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.loading-screen__progress-fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #89aacc 0%, #4e85bf 100%);
  box-shadow:
    0 0 8px rgba(137, 170, 204, 0.35),
    0 0 16px rgba(78, 133, 191, 0.2);
}

@keyframes loaderSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
  border-bottom: 1px solid rgba(188, 152, 72, 0.12);
  background: #2d2519;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 40px rgba(43, 27, 0, 0.08);
  border-bottom-color: rgba(188, 152, 72, 0.18);
}

.site-header__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.brand__mark {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.footer__brand .brand__mark {
  width: 130px;
  height: 130px;
}

.brand__text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--gold-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex: 1 1 auto;
}

.site-nav__link {
  position: relative;
  color: #f8f5ef;
  font-size: 0.96rem;
  font-weight: 400;
  padding: 0.35rem 0;
  opacity: 0.92;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header__cta {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(201, 162, 74, 0.5);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f8f5ef;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: min(90vh, 740px);
  display: grid;
  align-items: center;
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 4rem)
    clamp(0.5rem, 2vw, 1.5rem) clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  background: url("images/home/sarvesh-mopkar-home-01.webp")
    center / cover no-repeat;
}

.hero__glow {
  display: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
}

.hero__visual {
  position: relative;
  min-height: clamp(520px, 56vw, 820px);
  border-radius: 32px;
  overflow: hidden;
  background: url("images/home/sarvesh-mopkar-home-01.webp") right
    center / cover no-repeat;
  box-shadow: 0 28px 60px rgba(73, 47, 7, 0.08);
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: left;
  justify-self: start;
  padding: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.hero__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 100%;
  width: fit-content;
}

.hero__line {
  display: block;
  color: var(--text);
  font-style: normal;
  white-space: nowrap;
  text-align: left;
}

.hero__line span {
  color: var(--gold);
  font-style: italic;
}

.title-rule {
  width: 52px;
  height: 2px;
  margin: 1.6rem 0 1.5rem;
  background: var(--gold);
}

.hero__copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.hero__actions {
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.btn--primary {
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  color: #ffffff;
  box-shadow:
    0 3px 0 #8b6914,
    0 8px 16px rgba(166, 124, 46, 0.3),
    0 16px 32px rgba(166, 124, 46, 0.15);
  border: none;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.btn--primary:hover {
  background: linear-gradient(90deg, #d4ad54, #f0d36a, #d4ad54);
  transform: translateY(2px);
  box-shadow:
    0 1px 0 #8b6914,
    0 4px 8px rgba(166, 124, 46, 0.2),
    0 8px 16px rgba(166, 124, 46, 0.1);
}

.btn--primary:active {
  transform: translateY(3px);
  box-shadow:
    0 0px 0 #8b6914,
    0 2px 4px rgba(166, 124, 46, 0.15);
}

.btn--ghost {
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  box-shadow:
    0 3px 0 #8b6914,
    0 8px 16px rgba(166, 124, 46, 0.3),
    0 16px 32px rgba(166, 124, 46, 0.15);
}

.btn--ghost:hover {
  background: linear-gradient(90deg, #d4ad54, #f0d36a, #d4ad54);
  transform: translateY(2px);
  box-shadow:
    0 1px 0 #8b6914,
    0 4px 8px rgba(166, 124, 46, 0.2),
    0 8px 16px rgba(166, 124, 46, 0.1);
}

.btn--text {
  min-height: auto;
  padding: 0;
  color: var(--gold-dark);
  justify-content: flex-start;
}

.btn--outline {
  padding: 0.5rem 1rem;
  min-height: 40px;
  min-width: 168px;
  border: 1px solid rgba(201, 162, 74, 0.62);
  background: rgba(255, 252, 246, 0.82);
  color: #b27f1f;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 4px;
  box-shadow: none;
}

.btn--outline:hover {
  border-color: rgba(166, 124, 46, 0.82);
  background: rgba(255, 249, 239, 0.96);
  color: #986913;
}

.btn--compact {
  width: 46px;
  padding-inline: 0;
  border-radius: 12px;
}

.btn__arrow {
  font-size: 1.1em;
  line-height: 1;
}

.value-strip {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  border-top: 1px solid rgba(166, 124, 46, 0.12);
  border-bottom: 1px solid rgba(166, 124, 46, 0.12);
  background: radial-gradient(
      circle at top center,
      rgba(255, 245, 228, 0.9),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 253, 249, 0.72),
      rgba(248, 242, 234, 0.94)
    );
}

.value-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 8% 20%,
      rgba(201, 162, 74, 0.08),
      transparent 18%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(201, 162, 74, 0.06),
      transparent 16%
    );
  pointer-events: none;
}

.value-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding-block: clamp(1rem, 2vw, 1.45rem) 0.95rem;
  padding-inline: clamp(1rem, 3vw, 3rem);
}

.value-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 152px;
  padding: 1.2rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: 0 10px 24px rgba(67, 46, 10, 0.06);
  backdrop-filter: blur(8px);
  color: var(--text);
  line-height: 1.7;
}

.value-strip__item img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.value-strip__item p {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.65;
}

.value-strip__divider {
  display: none;
}

.value-strip__statement {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin: 0 auto 1.25rem;
  padding: 1rem 1.4rem 1.1rem;
  text-align: center;
  color: #3b3428;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.35;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: 0 8px 20px rgba(67, 46, 10, 0.05);
  backdrop-filter: blur(8px);
}

.value-strip__statement span {
  color: var(--gold);
  font-style: italic;
}

.section-head {
  margin-bottom: 1.6rem;
  display: grid;
  justify-items: center;
}

.section-head--services {
  position: relative;
  margin-bottom: 1.25rem;
  padding-top: 0.35rem;
}

.section-head--services::before,
.section-head--services::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  width: min(42vw, 520px);
  height: 1px;
  background: rgba(201, 162, 74, 0.18);
}

.section-head--services::before {
  left: 0;
}

.section-head--services::after {
  right: 0;
}

.section-head--services h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1c1a18;
}

.section-head--pillars h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head--pillars::after {
  content: "";
  width: 52px;
  height: 2px;
  margin-top: 0.35rem;
  background: var(--gold);
}

.pillars__grid,
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 162, 74, 0.12);
  box-shadow: 0 8px 18px rgba(70, 46, 8, 0.06);
}

.pillar-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 220px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 26px rgba(70, 46, 8, 0.1);
}

.pillar-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pillar-card__body {
  padding: 1.35rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.pillar-card__icon-wrap,
.service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 74, 0.42);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.pillar-card__icon-wrap img,
.service-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.pillar-card h3,
.service-card h3,
.feature-banner__content h2,
.about__content h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pillar-card h3 {
  font-size: 1.12rem;
  text-transform: uppercase;
}

.pillar-card p,
.service-card p,
.about__content p,
.feature-banner__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pillar-card p {
  max-width: 24ch;
}

.pillar-card__body::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.1rem;
}

.feature-banner__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 0.95rem 1.2rem 0.95rem 1rem;
  display: grid;
  grid-template-columns: 0.28fr 1fr auto;
  align-items: center;
  gap: 1.65rem;
  min-height: 320px;
  background: url("images/home/sarvesh-mopkar-home-06.webp")
    center center / 100% 100% no-repeat;
  box-shadow: var(--shadow);
}

.feature-banner__card::after {
  content: "";
  display: none;
}

.feature-banner__art {
  width: 100%;
  max-width: 280px;
  justify-self: start;
  margin-left: 0.15rem;
  filter: drop-shadow(0 16px 24px rgba(110, 71, 8, 0.14));
}

.feature-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding-inline: clamp(0.5rem, 1.4vw, 1.25rem);
  justify-self: center;
  text-align: left;
}

.feature-banner__content h2,
.about__content h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.55rem);
  line-height: 0.92;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.gold-text {
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-banner__content .eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
}

.feature-banner__content .eyebrow,
.feature-banner__content h2,
.feature-banner__content p {
  text-align: left;
}

.feature-banner__action {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: center;
  padding-inline: clamp(0.35rem, 0.9vw, 0.8rem);
}

.btn--banner {
  min-height: 38px;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  min-width: 196px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  box-shadow:
    0 3px 0 #8b6914,
    0 8px 16px rgba(166, 124, 46, 0.3),
    0 16px 32px rgba(166, 124, 46, 0.15);
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  color: #ffffff;
  border: none;
}

.btn--banner .btn__arrow {
  font-size: 0.95rem;
}

.feature-banner__content p {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 55ch;
  color: #5d5d5d;
  margin-inline: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: start;
  padding-block: 0.5rem 0.25rem;
}

.about__media {
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(340px, 36vw, 505px);
  box-shadow: 0 18px 38px rgba(74, 49, 9, 0.08);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(0.9rem, 2vw, 2.15rem) clamp(1rem, 1.8vw, 1.7rem);
  background: linear-gradient(
    180deg,
    rgba(255, 252, 246, 0.9),
    rgba(249, 243, 236, 0.76)
  );
  border-left: 1px solid rgba(201, 162, 74, 0.14);
}

.about__content .eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
}

.about__content h2 {
  max-width: none;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.45rem, 3.5vw, 4.15rem);
  line-height: 1;
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #c9a24a;
}

.about__title span,
.about__content p span {
  display: block;
}

.about__title span:first-child {
  color: #1a1a1a;
}

.about__title span:last-child {
  color: #c9a24a;
}

.about__content p {
  max-width: 54ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #3c3428;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.45rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.philosophy {
  padding-top: 2.2rem;
  padding-bottom: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(251, 247, 241, 0.5),
    rgba(248, 242, 234, 0.84)
  );
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  padding: 0.35rem clamp(1rem, 2vw, 2rem) 0;
  border-top: 1px solid rgba(166, 124, 46, 0.12);
  border-bottom: 1px solid rgba(166, 124, 46, 0.12);
}

.philosophy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  min-height: 100px;
  padding: 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: 0 10px 24px rgba(67, 46, 10, 0.06);
  backdrop-filter: blur(8px);
}

.philosophy__icon {
  width: 70px;
  height: 70px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.philosophy__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.philosophy__item p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
}

.philosophy__divider {
  display: none;
}

.services {
  position: relative;
  overflow: hidden;
  padding-block: 2rem;
  background: linear-gradient(
    180deg,
    rgba(251, 247, 241, 0.92),
    rgba(248, 242, 234, 0.98)
  );
}

.services__ornament {
  position: absolute;
  bottom: clamp(1.05rem, 2vw, 1.7rem);
  width: clamp(120px, 10vw, 180px);
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 20px 24px rgba(124, 81, 0, 0.12));
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services__ornament--left {
  left: clamp(-10px, -0.8vw, 0px);
}

.services__ornament--right {
  right: clamp(-10px, -0.8vw, 0px);
}

.services__ornament img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.services__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 1320px;
  margin: 2rem auto 0;
}

.service-card {
  padding: 1.35rem 1.2rem 1.2rem;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(201, 162, 74, 0.16);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(70, 46, 8, 0.05);
}

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

.service-card__icon {
  margin-bottom: 0.1rem;
  width: 56px;
  height: 56px;
  border-color: rgba(201, 162, 74, 0.45);
}

.service-card h3 {
  font-size: 1rem;
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 15ch;
}

.service-card p {
  flex: 1 1 auto;
  font-size: 0.93rem;
  line-height: 1.45;
  max-width: 25ch;
  color: #5f5a54;
}

.service-card .btn--outline {
  margin-top: auto;
  min-width: 0;
  width: 100%;
  max-width: 240px;
  padding-inline: 1.15rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .section-head--services::before,
  .section-head--services::after {
    width: min(28vw, 240px);
  }

  .services__ornament {
    width: min(120px, 13vw);
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(0.7rem, 1.6vw, 1.2rem);
  padding-bottom: clamp(0.7rem, 1.6vw, 1.2rem);
  background: url("images/home/sarvesh-mopkar-home-09.webp")
    center center / cover no-repeat;
  border-top: 1px solid rgba(166, 124, 46, 0.12);
  border-bottom: 1px solid rgba(166, 124, 46, 0.12);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  min-height: clamp(130px, 14vw, 160px);
  align-content: start;
  padding-block: 0.3rem 0.2rem;
}

.final-cta__inner p {
  margin: 0;
  max-width: 980px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.55rem);
  line-height: 1.08;
  color: #3c3428;
  text-wrap: balance;
}

.final-cta .btn--primary {
  min-width: 308px;
  min-height: 56px;
  padding-inline: 2rem;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  color: #ffffff;
  border: none;
  box-shadow:
    0 3px 0 #8b6914,
    0 8px 16px rgba(166, 124, 46, 0.3),
    0 16px 32px rgba(166, 124, 46, 0.15);
}

.testimonials {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6rem);
  background: radial-gradient(
      circle at 16% 14%,
      rgba(255, 231, 173, 0.7),
      transparent 20%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(229, 194, 96, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(201, 162, 74, 0.14),
      transparent 38%
    ),
    linear-gradient(180deg, #f5ebd7 0%, #fbf6eb 44%, #f1e3c6 100%);
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 248, 231, 0.42) 48%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.16),
      transparent 24%,
      transparent 78%,
      rgba(166, 124, 46, 0.06) 100%
    );
  opacity: 0.9;
}

.testimonials .section-head {
  gap: 0.65rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
}

.testimonials .section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1c1a18;
}

.testimonials .section-head h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  margin: 1rem auto 0;
  border-radius: 999px;
}

.testimonials__intro {
  margin: 0;
  max-width: 760px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(60, 48, 33, 0.74);
  text-wrap: balance;
}

.testimonials__slider {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonials__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 242, 0.94),
    rgba(244, 231, 202, 0.88)
  );
  color: #8b6914;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 22px rgba(70, 46, 8, 0.06);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.testimonials__arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 74, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 26px rgba(70, 46, 8, 0.1);
}

.testimonials__arrow span {
  font-size: 1.1rem;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 auto;
}

.testimonials__dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(166, 124, 46, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    width 0.25s ease;
}

.testimonials__dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c9a24a, #f0d36a, #c9a24a);
  box-shadow: 0 0 14px rgba(201, 162, 74, 0.28);
}

.testimonials__viewport {
  overflow: hidden;
  padding: 0.35rem 0.1rem 0.7rem;
}

.testimonials__rail {
  position: relative;
  display: flex;
  gap: 1.15rem;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  min-height: 100%;
  min-width: calc((100% - 2.3rem) / 3);
  flex: 0 0 calc((100% - 2.3rem) / 3);
  padding: 1.5rem 1.45rem 1.35rem;
  border-radius: 24px;
  background: linear-gradient(
    160deg,
    rgba(255, 250, 239, 0.99),
    rgba(242, 219, 156, 0.94) 60%,
    rgba(217, 172, 73, 0.9) 100%
  );
  border: 1px solid rgba(176, 128, 30, 0.34);
  box-shadow:
    0 30px 52px rgba(112, 76, 7, 0.16),
    inset 0 1px 0 rgba(255, 252, 239, 0.9),
    inset 0 -14px 34px rgba(166, 124, 46, 0.14);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 198, 90, 0.95),
    transparent
  );
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 244, 214, 0.55) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.testimonial-card--featured {
  transform: translateY(-12px);
  background: linear-gradient(
    160deg,
    rgba(255, 250, 239, 0.99),
    rgba(242, 219, 156, 0.94) 60%,
    rgba(217, 172, 73, 0.9) 100%
  );
  border-color: rgba(176, 128, 30, 0.34);
  box-shadow:
    0 30px 52px rgba(112, 76, 7, 0.16),
    inset 0 1px 0 rgba(255, 252, 239, 0.9),
    inset 0 -14px 34px rgba(166, 124, 46, 0.14);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.testimonial-card__quote {
  font-family: "Playfair Display", serif;
  font-size: 3.75rem;
  line-height: 0.8;
  color: rgba(176, 128, 30, 0.92);
  text-shadow: 0 8px 18px rgba(201, 162, 74, 0.18);
}

.testimonial-card__tag {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 251, 240, 0.96),
    rgba(245, 228, 186, 0.92)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 16px rgba(166, 124, 46, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b6914;
}

.testimonial-card__text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  line-height: 1.52;
  color: #2e261d;
}

.testimonial-card__meta {
  display: grid;
  gap: 0.16rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 128, 30, 0.16);
}

.testimonial-card__meta strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1f1a15;
}

.testimonial-card__meta span {
  font-size: 0.92rem;
  color: rgba(94, 69, 26, 0.8);
}

.testimonials__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 1.35rem auto 0;
}

.testimonial-stat {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 242, 0.94),
    rgba(244, 231, 202, 0.88)
  );
  border: 1px solid rgba(201, 162, 74, 0.22);
  text-align: center;
  box-shadow:
    0 14px 28px rgba(70, 46, 8, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.testimonial-stat strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #9d7525;
}

.testimonial-stat span {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(60, 48, 33, 0.74);
}

.faq {
  position: relative;
  padding-block: clamp(4rem, 7vw, 6rem);
  background: radial-gradient(
      circle at 14% 18%,
      rgba(201, 162, 74, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(255, 244, 214, 0.8),
      transparent 20%
    ),
    linear-gradient(180deg, #fdfaf4 0%, #f6f0e5 100%);
}

.faq .section-head {
  gap: 0.65rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.5rem);
}

.faq .section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 2.3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1c1a18;
}

.faq .section-head h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  background: linear-gradient(90deg, #c9a24a, #e8c65a, #c9a24a);
  margin: 1rem auto 0;
  border-radius: 999px;
}

.faq__intro {
  margin: 0;
  max-width: 720px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(60, 48, 33, 0.74);
  text-wrap: balance;
}

.faq__list {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.faq__item {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(253, 248, 238, 0.94)
  );
  border: 1px solid rgba(201, 162, 74, 0.18);
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(70, 46, 8, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.faq__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 162, 74, 0.7),
    transparent
  );
  opacity: 0.8;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 48px rgba(70, 46, 8, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(201, 162, 74, 0.3);
}

.faq__item summary {
  padding: 1.4rem 1.45rem 1.4rem 1.65rem;
  color: #1e1813;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

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

.faq__question {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.faq__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(
    180deg,
    rgba(255, 249, 236, 0.95),
    rgba(242, 229, 196, 0.95)
  );
  border: 1px solid rgba(201, 162, 74, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(166, 124, 46, 0.12);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: #9d7525;
  transform: translate(-50%, -50%);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] summary {
  border-bottom: 1px solid rgba(201, 162, 74, 0.12);
}

.faq__item[open] .faq__icon {
  background: linear-gradient(
    180deg,
    rgba(232, 198, 90, 0.95),
    rgba(201, 162, 74, 0.95)
  );
  border-color: rgba(166, 124, 46, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 219, 0.85),
    0 12px 24px rgba(166, 124, 46, 0.22);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: #ffffff;
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.25);
}

.faq__item p {
  padding: 0 5.2rem 1.7rem 1.65rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(57, 46, 33, 0.82);
  margin: 0;
}

.site-footer {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
  background: radial-gradient(
      circle at top left,
      rgba(201, 162, 74, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(201, 162, 74, 0.1),
      transparent 22%
    ),
    linear-gradient(180deg, #2d2519 0%, #1f1912 100%);
  border-top: 1px solid rgba(201, 162, 74, 0.35);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 1.2rem;
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(60, 50, 35, 0.85),
    rgba(45, 37, 25, 0.92)
  );
  box-shadow:
    0 26px 52px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(201, 162, 74, 0.1);
}

.footer__brand {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.1rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 74, 0.3);
  background: linear-gradient(
    180deg,
    rgba(70, 58, 40, 0.7),
    rgba(55, 46, 32, 0.8)
  );
  box-shadow: inset 0 1px 0 rgba(201, 162, 74, 0.15);
}

.footer__brand p {
  margin: 1rem 0 1.25rem;
  color: #d4c4a8;
  line-height: 1.8;
  max-width: 32ch;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__contact {
  margin: 0.5rem 0;
}

.footer__contact a {
  color: #5a5145;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer__contact a:hover {
  color: var(--gold-dark);
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 74, 0.55);
  display: grid;
  place-items: center;
  color: #f0d36a;
  background: rgba(201, 162, 74, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.footer__socials a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201, 162, 74, 0.25);
  background: rgba(201, 162, 74, 0.3);
  color: #f8e8a0;
}

.footer__column,
.footer__newsletter {
  display: grid;
  gap: 0.4rem;
  height: 100%;
  padding: 0.6rem 0.7rem 0.8rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 74, 0.28);
  background: rgba(70, 58, 40, 0.5);
}

.footer__column h3,
.footer__newsletter h3 {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #e8c65a;
}

.footer__column a,
.footer__meta a {
  color: #d4c4a8;
  width: fit-content;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer__column a:hover,
.footer__meta a:hover {
  color: #f0d36a;
  transform: translateX(2px);
}

.footer__newsletter p {
  margin: 0;
  color: #c4b598;
  line-height: 1.8;
  max-width: 34ch;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4c4a8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #f0d36a;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.25rem;
  border-radius: 16px;
  background: rgba(201, 162, 74, 0.12);
  border: 1px solid rgba(201, 162, 74, 0.3);
}

.newsletter input {
  min-height: 48px;
  padding: 0 1rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #f8f5ef;
}

.newsletter input::placeholder {
  color: #a89878;
}

.newsletter input:focus {
  outline: none;
  box-shadow: none;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.footer__bottom {
  padding-top: 1.4rem;
  padding-bottom: 1.8rem;
  color: #b8a888;
  text-align: center;
  font-size: 0.92rem;
}

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

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

/* Blog page */
.blog-page {
  background: #faf7f2;
  color: #221a12;
}

.blog-page .site-header {
  background: #2d2519;
}

.blog-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 242, 0.98) 0%,
      rgba(250, 247, 242, 0.94) 29%,
      rgba(250, 247, 242, 0.42) 49%,
      rgba(250, 247, 242, 0.05) 72%
    ),
    url("images/Blog/sarvesh-mopkar-blog-01.webp") center right / cover no-repeat;
}

.blog-hero__inner {
  display: grid;
  align-items: center;
  min-height: 540px;
}

.blog-hero__content {
  max-width: 760px;
  padding: clamp(2.35rem, 5.2vw, 4.7rem) 0;
}

.blog-eyebrow {
  margin: 0 0 1.15rem;
  color: #b97813;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-section-head h2,
.blog-subscribe h2,
.blog-final-cta h2,
.blog-article-card h3,
.blog-topic-card h3 {
  font-family: "Playfair Display", serif;
  color: #20170f;
}

.blog-hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Instrument Serif", serif;
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.blog-hero h1 em {
  color: #c58b22;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.blog-rule {
  display: block;
  width: 54px;
  height: 3px;
  margin: 1.35rem 0 1.45rem;
  background: #c58016;
}

.blog-rule--center {
  margin: 0.55rem auto 0;
}

.blog-hero p:not(.blog-eyebrow) {
  max-width: 440px;
  margin: 0 0 1.8rem;
  color: #3f352c;
  font-size: 1rem;
  line-height: 1.85;
}

.blog-section,
.blog-topics,
.blog-subscribe {
  padding: clamp(3rem, 6vw, 5.2rem) 0;
}

.blog-topics {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(242, 231, 215, 0.94)),
    #fffdf9;
  border-top: 1px solid rgba(184, 125, 30, 0.16);
  border-bottom: 1px solid rgba(184, 125, 30, 0.1);
}

.blog-topics::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 128, 22, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
}

.blog-topics .container {
  position: relative;
  z-index: 1;
}

.blog-section-head {
  text-align: center;
  margin-bottom: 2.1rem;
}

.blog-section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-weight: 600;
  text-transform: uppercase;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.blog-topic-card {
  position: relative;
  min-height: 245px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.82rem;
  padding: 1.45rem 1.1rem 1.35rem;
  text-align: center;
  border: 1px solid rgba(184, 125, 30, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 240, 0.96)),
    #fffaf2;
  box-shadow: 0 14px 32px rgba(62, 43, 23, 0.09);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.blog-topic-card:last-child {
  border-right: 1px solid rgba(184, 125, 30, 0.18);
}

.blog-topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 45%);
}

.blog-topic-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 125, 30, 0.38);
  box-shadow: 0 22px 44px rgba(62, 43, 23, 0.14);
}

.blog-topic-card img {
  position: relative;
  width: 74px;
  height: 74px;
  padding: 0.72rem;
  object-fit: contain;
  border: 1px solid rgba(184, 125, 30, 0.4);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fffefb, #f4e5ce);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(184, 125, 30, 0.16);
}

.blog-topic-card h3 {
  position: relative;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-topic-card p {
  position: relative;
  margin: 0;
  color: #4c4137;
  font-size: 0.92rem;
  line-height: 1.75;
}

.blog-topic-card a,
.blog-article-card a {
  position: relative;
  color: #b97813;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}

.blog-featured,
.blog-latest {
  background: #f5efe7;
}

.blog-latest {
  background: #faf7f2;
  padding-top: 2.2rem;
}

.blog-card-grid {
  display: grid;
  gap: 1.35rem;
}

.blog-card-grid--featured {
  grid-template-columns: repeat(4, 1fr);
}

.blog-card-grid--latest {
  grid-template-columns: repeat(3, 1fr);
}

.blog-article-card {
  overflow: hidden;
  border: 1px solid rgba(78, 57, 33, 0.13);
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 10px 22px rgba(53, 38, 21, 0.09);
}

.blog-article-card__media {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.blog-card-grid--latest .blog-article-card__media {
  aspect-ratio: 1.85 / 1;
}

.blog-article-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-article-card:hover .blog-article-card__media img {
  transform: scale(1.04);
}

.blog-article-card time {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  gap: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 4px;
  background: linear-gradient(180deg, #d09028, #a7670b);
  box-shadow: 0 8px 18px rgba(35, 21, 8, 0.18);
}

.blog-article-card time strong {
  font-size: 1.35rem;
}

.blog-article-card time span {
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-article-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.blog-article-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-card p {
  min-height: 4.9rem;
  margin: 0 0 1.1rem;
  color: #4a4036;
  line-height: 1.75;
}

.blog-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 1.55rem;
}

.blog-subscribe {
  background: #faf7f2;
}

.blog-subscribe__panel {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.15fr 1.05fr;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 234, 222, 0) 0%, rgba(244, 234, 222, 0.94) 28%, #f1e5d8 100%),
    #efe1d1;
  box-shadow: 0 14px 35px rgba(61, 42, 23, 0.13);
}

.blog-subscribe__image {
  align-self: stretch;
  min-height: 210px;
  background: url("images/Blog/sarvesh-mopkar-blog-08.webp") left center / cover no-repeat;
}

.blog-subscribe__copy {
  padding: 1rem 1.4rem;
}

.blog-subscribe h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  font-weight: 500;
}

.blog-subscribe p {
  margin: 0;
  color: #3d332b;
  line-height: 1.65;
}

.blog-subscribe__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  padding: 1rem;
}

.blog-subscribe__form input {
  min-width: 0;
  height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(80, 58, 34, 0.18);
  border-radius: 5px;
  color: #2c2118;
  background: #fff;
}

.blog-subscribe__form small {
  grid-column: 1 / -1;
  color: #5c4c3e;
  font-size: 0.82rem;
}

.blog-subscribe blockquote {
  height: 100%;
  margin: 0;
  padding: 1.2rem 1.6rem 1.2rem 2rem;
  border-left: 1px solid rgba(184, 125, 30, 0.25);
}

.blog-subscribe blockquote::before {
  content: "\201C";
  color: #b97813;
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 0.75;
}

.blog-subscribe blockquote p {
  margin: 0 0 0.85rem;
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  color: #2f251d;
}

.blog-subscribe cite {
  color: #b97813;
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
}

.blog-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  min-height: 245px;
  background: #efe5da;
}

.blog-final-cta__image {
  min-height: 245px;
  background: url("images/Blog/sarvesh-mopkar-blog-09.webp") center / cover no-repeat;
}

.blog-final-cta__content {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 5vw, 4.2rem);
}

.blog-final-cta h2 {
  max-width: 610px;
  margin: 0 0 1.4rem;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
}

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

@media (max-width: 1120px) {
  .blog-topic-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-card-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-subscribe__panel {
    grid-template-columns: 0.95fr 1fr;
  }

  .blog-subscribe__image {
    grid-row: span 3;
  }

  .blog-subscribe blockquote {
    border-left: 0;
    border-top: 1px solid rgba(184, 125, 30, 0.25);
  }
}

@media (max-width: 860px) {
  .blog-page .brand__mark {
    width: 104px;
    height: 104px;
  }

  .blog-page .site-header__inner {
    min-height: 78px;
  }

  .blog-hero {
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 242, 0.98) 0%,
        rgba(250, 247, 242, 0.94) 54%,
        rgba(250, 247, 242, 0.72) 100%
      ),
      url("images/Blog/sarvesh-mopkar-blog-01.webp") center right / cover no-repeat;
  }

  .blog-hero__inner {
    min-height: 500px;
  }

  .blog-hero__content {
    max-width: 720px;
    padding-block: 3rem;
  }

  .blog-hero h1 {
    max-width: 13.5em;
    font-size: clamp(46px, 4.7vw, 72px);
  }

  .blog-hero p:not(.blog-eyebrow) {
    max-width: 34rem;
  }

  .blog-topic-grid,
  .blog-card-grid--latest {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-topic-card,
  .blog-topic-card:nth-child(3n) {
    border-right: 1px solid rgba(184, 125, 30, 0.18);
  }

  .blog-final-cta {
    grid-template-columns: 1fr;
  }

  .blog-final-cta__image {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .blog-page .container {
    padding-inline: 1rem;
  }

  .blog-page .brand__mark {
    width: 86px;
    height: 86px;
  }

  .blog-page .site-header__inner {
    min-height: 66px;
  }

  .blog-page .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .blog-page .site-nav.is-open {
    left: 1rem;
    right: 1rem;
    border-radius: 12px;
  }

  .blog-section,
  .blog-topics,
  .blog-subscribe {
    padding: 2.7rem 0;
  }

  .blog-section-head {
    margin-bottom: 1.55rem;
  }

  .blog-section-head h2 {
    font-size: 1.45rem;
    line-height: 1.18;
  }

  .blog-rule {
    margin: 1rem 0 1.15rem;
  }

  .blog-rule--center {
    margin: 0.5rem auto 0;
  }

  .blog-hero {
    background:
      linear-gradient(
        180deg,
        rgba(250, 247, 242, 0.99) 0%,
        rgba(250, 247, 242, 0.96) 62%,
        rgba(250, 247, 242, 0.82) 100%
      ),
      url("images/Blog/sarvesh-mopkar-blog-01.webp") 67% center / cover no-repeat;
  }

  .blog-hero__inner {
    min-height: 440px;
  }

  .blog-hero__content {
    max-width: 100%;
    padding: 2.35rem 0 2.7rem;
  }

  .blog-eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .blog-hero h1 {
    max-width: 430px;
    font-size: 39px;
    line-height: 1.08;
  }

  .blog-hero p:not(.blog-eyebrow) {
    max-width: 100%;
    margin-bottom: 1.4rem;
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .blog-hero .btn,
  .blog-centered-action .btn,
  .blog-final-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-topic-grid,
  .blog-card-grid--featured,
  .blog-card-grid--latest,
  .blog-subscribe__panel {
    grid-template-columns: 1fr;
  }

  .blog-topic-card,
  .blog-topic-card:nth-child(2n),
  .blog-topic-card:nth-child(3n) {
    min-height: auto;
    gap: 0.65rem;
    padding: 1.15rem 1rem 1.25rem;
    border-right: 1px solid rgba(184, 125, 30, 0.18);
    border-bottom: 1px solid rgba(184, 125, 30, 0.18);
  }

  .blog-topic-card:hover {
    transform: none;
  }

  .blog-topic-card img {
    width: 62px;
    height: 62px;
    padding: 0.58rem;
  }

  .blog-topic-card h3 {
    font-size: 0.96rem;
  }

  .blog-topic-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .blog-topic-card:last-child {
    border-bottom: 1px solid rgba(184, 125, 30, 0.18);
  }

  .blog-card-grid {
    gap: 1rem;
  }

  .blog-article-card__media,
  .blog-card-grid--latest .blog-article-card__media {
    aspect-ratio: 1.35 / 1;
  }

  .blog-article-card__body {
    padding: 1.05rem 1rem 1.2rem;
  }

  .blog-article-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.18rem;
  }

  .blog-article-card p {
    min-height: 0;
    margin-bottom: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .blog-subscribe__panel {
    min-height: auto;
  }

  .blog-subscribe__image {
    min-height: 170px;
    grid-row: auto;
  }

  .blog-subscribe__copy {
    padding: 1.15rem 1rem 0.25rem;
    text-align: center;
  }

  .blog-subscribe h2 {
    font-size: 1.35rem;
  }

  .blog-subscribe__form {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .blog-subscribe__form input {
    width: 100%;
    height: 46px;
  }

  .blog-subscribe__form .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-subscribe__form small {
    text-align: center;
  }

  .blog-subscribe blockquote {
    padding: 1rem 1rem 1.25rem;
    text-align: center;
  }

  .blog-subscribe blockquote p {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .blog-final-cta__image {
    min-height: 185px;
  }

  .blog-final-cta__content {
    justify-items: stretch;
    padding: 1.8rem 1rem 2.1rem;
    text-align: center;
  }

  .blog-final-cta h2 {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    line-height: 1.16;
  }
}

@media (max-width: 380px) {
  .blog-page .container {
    padding-inline: 0.85rem;
  }

  .blog-hero h1 {
    font-size: 39px;
  }

  .blog-hero__inner {
    min-height: 410px;
  }

  .blog-topic-card {
    padding-inline: 0.85rem;
  }

  .blog-article-card h3 {
    font-size: 1.08rem;
  }
}

/* The Work page */
.work-page {
  background: #f8f4ee;
}

.work-page .page-shell {
  opacity: 1;
}

.work-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.work-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #f8f3ec;
}

.work-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 244, 238, 0.98) 0%,
      rgba(248, 244, 238, 0.92) 28%,
      rgba(248, 244, 238, 0.35) 48%,
      rgba(248, 244, 238, 0) 68%
    ),
    url("images/The Work/sarvesh-mopkar-the-work-01.webp") center
      right / cover no-repeat;
}

.work-hero__inner {
  position: relative;
  z-index: 1;
  display: block;
}

.work-hero__content {
  width: min(600px, 100%);
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.work-kicker,
.work-section-head p {
  margin: 0 0 0.5rem 0;
  color: #c9a24a;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-hero h1,
.work-section-head h2,
.work-difference h2 {
  margin: 1rem 0 0;
  color: #17120d;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.work-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  max-width: 560px;
}

.work-hero h1 em {
  color: #c9a24a;
  font-style: italic;
}

.work-rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 1.2rem 0 1.3rem;
  background: #c9a24a;
}

.work-rule--center {
  margin: 0.75rem auto 0.8rem;
}

.work-hero p:not(.work-kicker) {
  max-width: 520px;
  margin: 0 0 2rem;
  color: #4a4238;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
}

.work-section {
  padding-block: clamp(3.5rem, 7vw, 5.8rem);
  border-top: 1px solid rgba(174, 117, 28, 0.12);
}

.work-section-head {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.work-section-head h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.work-section-head small {
  color: #29231c;
  font-size: 0.95rem;
}

.work-overview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(201, 162, 74, 0.16) 0,
      rgba(201, 162, 74, 0) 32%
    ),
    linear-gradient(135deg, #fffaf2 0%, #f6eee2 46%, #efe1cc 100%);
}

.work-overview::before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 74, 0.24);
}

.work-overview .work-container {
  position: relative;
  z-index: 1;
}

.work-overview .work-section-head {
  max-width: 740px;
}

.work-overview .work-section-head h2 {
  text-shadow: 0 12px 34px rgba(71, 47, 18, 0.12);
}

.work-overview .work-section-head small {
  display: inline-block;
  max-width: 560px;
  color: #5d5041;
  font-size: 1rem;
  line-height: 1.65;
}

.work-overview__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.85rem, 1.4vw, 1.2rem);
  max-width: 1180px;
  margin: 0 auto;
}

.work-overview__item {
  position: relative;
  min-height: 275px;
  padding: clamp(1.45rem, 2.3vw, 2rem) clamp(1rem, 1.8vw, 1.45rem);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(248, 238, 222, 0.72)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 48px rgba(84, 60, 29, 0.08);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.work-overview__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.22), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-overview__item::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(201, 162, 74, 0.24);
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  line-height: 1;
  pointer-events: none;
}

.work-overview__item:nth-child(1)::after {
  content: "01";
}

.work-overview__item:nth-child(2)::after {
  content: "02";
}

.work-overview__item:nth-child(3)::after {
  content: "03";
}

.work-overview__item:nth-child(4)::after {
  content: "04";
}

.work-overview__item:nth-child(5)::after {
  content: "05";
}

.work-overview__item:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 74, 0.5);
  box-shadow: 0 30px 70px rgba(84, 60, 29, 0.14);
}

.work-overview__item:hover::before {
  opacity: 1;
}

.work-overview__item img {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 13px 18px rgba(94, 64, 21, 0.16));
}

.work-overview__item h3,
.work-process__item h3 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
}

.work-overview__item h3 {
  position: relative;
  z-index: 1;
  color: #1f1710;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.work-overview__item p,
.work-process__item p {
  margin: 0;
  color: #302820;
  font-size: 0.92rem;
  line-height: 1.72;
}

.work-overview__item p {
  position: relative;
  z-index: 1;
  color: #625545;
}

.work-offerings {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(201, 162, 74, 0.18) 0,
      rgba(201, 162, 74, 0) 30%
    ),
    linear-gradient(180deg, #f5eee4 0%, #eee0cf 52%, #f7f0e7 100%);
}

.work-offerings::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.56), transparent),
    linear-gradient(rgba(145, 102, 37, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 102, 37, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.work-offerings .work-container {
  position: relative;
  z-index: 1;
}

.work-offerings .work-section-head {
  max-width: 720px;
}

.work-offerings .work-section-head h2 {
  text-shadow: 0 14px 34px rgba(65, 43, 17, 0.13);
}

.work-offerings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.55rem);
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 237, 222, 0.94)),
    #fffaf2;
  box-shadow:
    0 28px 62px rgba(72, 50, 25, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.work-card:hover {
  transform: translateY(-9px);
  border-color: rgba(201, 162, 74, 0.52);
  box-shadow:
    0 38px 86px rgba(72, 50, 25, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.work-card:hover::before {
  opacity: 1;
}

.work-card__image {
  position: relative;
  aspect-ratio: 1.78;
  overflow: hidden;
  background: #2d2519;
}

.work-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(45, 37, 25, 0.04) 0%, rgba(45, 37, 25, 0.58) 100%),
    linear-gradient(110deg, rgba(255, 245, 218, 0.28), transparent 38%);
  pointer-events: none;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease;
}

.work-card:hover .work-card__image img {
  transform: scale(1.07);
}

.work-card__image span {
  position: absolute;
  left: 1.15rem;
  bottom: 1.05rem;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 242, 205, 0.54);
  background: linear-gradient(135deg, #9b681a 0%, #d8aa44 52%, #f0d36a 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow:
    0 12px 24px rgba(45, 30, 10, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.work-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.65rem, 2.5vw, 2rem) clamp(1.25rem, 2.2vw, 1.85rem)
    clamp(1.35rem, 2.2vw, 1.75rem);
}

.work-card__body h3 {
  margin: 0 0 0.9rem;
  font-family: "Instrument Serif", serif;
  color: #1f1710;
  font-size: clamp(1.75rem, 2.6vw, 2.22rem);
  font-weight: 400;
  line-height: 1.02;
}

.work-card__body p {
  margin: 0 0 1rem;
  color: #554839;
  line-height: 1.68;
}

.work-card__body ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.55rem;
  padding: 0;
  list-style: none;
}

.work-card__body li {
  position: relative;
  padding-left: 1.45rem;
  color: #352b20;
  font-size: 0.9rem;
  line-height: 1.5;
}

.work-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 13px;
  height: 13px;
  border: 1px solid #c1811b;
  border-radius: 999px;
  background: radial-gradient(
      circle at center,
      #c1811b 0 2px,
      transparent 2.5px
    ),
    #fffaf1;
  box-shadow: 0 5px 12px rgba(193, 129, 27, 0.14);
}

.work-card__body .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  border-color: rgba(201, 162, 74, 0.5);
  background: rgba(255, 250, 240, 0.68);
}

.work-card__body .btn:hover {
  border-color: rgba(155, 104, 26, 0.74);
  background: #fff8e9;
}

.work-process {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.2rem, 6vw, 5.2rem);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 162, 74, 0.16) 0,
      rgba(201, 162, 74, 0) 30%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(255, 242, 210, 0.9) 0,
      rgba(255, 242, 210, 0) 26%
    ),
    linear-gradient(180deg, #fff8ec 0%, #f3e7d6 48%, #f8f4ee 100%);
}

.work-process::before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 74, 0.22);
}

.work-process .work-container {
  position: relative;
  z-index: 1;
}

.work-process .work-section-head {
  max-width: 860px;
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem);
}

.work-process .work-section-head p {
  margin: 0;
  color: #17120d;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.75rem, 5.2vw, 5.25rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
  text-shadow: 0 16px 38px rgba(71, 47, 18, 0.14);
}

.work-process .work-rule {
  width: 74px;
  height: 2px;
  margin-top: 1.15rem;
  background: linear-gradient(90deg, transparent, #c9a24a, transparent);
}

.work-process__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  align-items: start;
}

.work-process__item {
  position: relative;
  min-height: 315px;
  padding: clamp(1.25rem, 2vw, 1.65rem) clamp(1rem, 1.8vw, 1.35rem);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(248, 238, 222, 0.82)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 58px rgba(74, 51, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.work-process__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.85), transparent);
}

.work-process__item::after {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  color: rgba(201, 162, 74, 0.26);
  font-family: "Instrument Serif", serif;
  font-size: 3.25rem;
  line-height: 1;
}

.work-process__item:nth-of-type(1)::after {
  content: "01";
}

.work-process__item:nth-of-type(2)::after {
  content: "02";
}

.work-process__item:nth-of-type(3)::after {
  content: "03";
}

.work-process__item:nth-of-type(4)::after {
  content: "04";
}

.work-process__item:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 74, 0.52);
  box-shadow:
    0 34px 78px rgba(74, 51, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.work-process__item img {
  position: relative;
  z-index: 1;
  width: min(185px, 82%);
  aspect-ratio: 1;
  margin: 0 auto 1.05rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(78, 52, 20, 0.14));
  transition: transform 0.35s ease;
}

.work-process__item:hover img {
  transform: scale(1.04);
}

.work-process__item h3 {
  position: relative;
  z-index: 1;
  color: #1f1710;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.work-process__item p {
  position: relative;
  z-index: 1;
  color: #625545;
}

.work-process__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 7rem;
  border: 1px solid rgba(201, 162, 74, 0.38);
  border-radius: 999px;
  color: #9b681a;
  font-size: 1.4rem;
  font-family: "Instrument Serif", serif;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 24px rgba(79, 54, 24, 0.08);
}

.work-difference {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.2rem, 6vw, 5.5rem);
  background:
    radial-gradient(
      circle at 16% 22%,
      rgba(201, 162, 74, 0.2) 0,
      rgba(201, 162, 74, 0) 30%
    ),
    linear-gradient(180deg, #f8f4ee 0%, #efe0cc 48%, #f9f3e8 100%);
}

.work-difference::before {
  content: "";
  position: absolute;
  inset: 28px;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 74, 0.22);
}

.work-difference .work-container {
  position: relative;
  z-index: 1;
}

.work-difference__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(55, 43, 29, 0.98), rgba(31, 25, 18, 0.98)),
    #2d2519;
  box-shadow:
    0 34px 84px rgba(61, 42, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.work-difference__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(240, 211, 106, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%);
}

.work-difference__panel::after {
  content: "";
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.2rem);
  right: clamp(1.2rem, 3vw, 2.2rem);
  top: clamp(1.2rem, 3vw, 2.2rem);
  bottom: clamp(1.2rem, 3vw, 2.2rem);
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(240, 211, 106, 0.22);
}

.work-difference__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(2.2rem, 5vw, 4rem);
}

.work-difference__copy .work-kicker {
  color: #f0d36a;
  letter-spacing: 0.18em;
}

.work-difference h2 {
  max-width: 560px;
  color: #fff8e8;
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  line-height: 1.04;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.work-difference__copy > p:last-child {
  max-width: 530px;
  margin: 1.25rem 0 0;
  color: rgba(255, 248, 232, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
}

.work-difference__copy > p:last-child::before {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin-bottom: 1.15rem;
  background: linear-gradient(90deg, #f0d36a, rgba(240, 211, 106, 0));
}

.work-difference__panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.work-difference__panel > img {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), #000 18%);
}

.work-invite {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
  background:
    radial-gradient(
      circle at 12% 24%,
      rgba(255, 248, 225, 0.85) 0,
      rgba(255, 248, 225, 0) 28%
    ),
    radial-gradient(
      circle at 88% 24%,
      rgba(201, 162, 74, 0.2) 0,
      rgba(201, 162, 74, 0) 30%
    ),
    linear-gradient(135deg, #f7ead1 0%, #eac873 52%, #f3dfaa 100%) !important;
}

.work-invite::before {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(92, 61, 17, 0.18);
}

.work-invite::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent),
    linear-gradient(rgba(92, 61, 17, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 61, 17, 0.06) 1px, transparent 1px);
  background-size: auto, 74px 74px, 74px 74px;
}

.work-invite__inner {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(180px, 300px) minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  overflow: hidden;
  max-width: 1180px;
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  border: 1px solid rgba(92, 61, 17, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(116, 75, 18, 0.16), rgba(255, 224, 142, 0.18)),
    rgba(132, 87, 22, 0.08);
  box-shadow:
    0 34px 78px rgba(97, 66, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.work-invite__inner::before {
  content: "";
  position: absolute;
  inset: clamp(0.9rem, 2vw, 1.35rem);
  pointer-events: none;
  border: 1px solid rgba(92, 61, 17, 0.16);
}

.work-invite__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 236, 180, 0.2), transparent 36%);
}

.work-invite__inner img {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(300px, 100%);
  height: 240px;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 24px 28px rgba(76, 50, 13, 0.18));
}

.work-invite__inner p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 720px;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
  justify-self: center;
  color: #1d150e;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.04;
  text-align: center;
  text-shadow: 0 12px 28px rgba(101, 67, 17, 0.12);
}

.work-invite__inner .btn {
  position: relative;
  z-index: 1;
  margin-right: clamp(1.2rem, 3vw, 2.8rem);
  min-width: 190px;
  justify-content: center;
  border: 1px solid rgba(92, 61, 17, 0.18);
  box-shadow:
    0 4px 0 #8b6914,
    0 18px 34px rgba(99, 64, 10, 0.22);
}

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

  .site-header {
    background: #2d2519;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 162, 74, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .site-header__cta {
    display: none;
  }

  .site-header__inner {
    position: relative;
  }

  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.5rem;
    right: 0.5rem;
    gap: 0;
    padding: 0;
    background: #2d2519;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 74, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  .site-nav.is-open .site-nav__link {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 162, 74, 0.08);
    transition: all 0.25s ease;
  }

  .site-nav.is-open .site-nav__link:last-child {
    border-bottom: none;
  }

  .site-nav.is-open .site-nav__link:hover {
    background: rgba(201, 162, 74, 0.12);
    padding-left: 1.5rem;
  }

  .hero__inner,
  .about__grid,
  .feature-banner__card,
  .footer__grid {
    grid-template-columns: 1fr;
    padding: 1.1rem;
    gap: 1.35rem;
    border-radius: 22px;
  }

  .footer__brand,
  .footer__column,
  .footer__newsletter {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 440px;
    border-radius: 26px;
    background:
      linear-gradient(
        90deg,
        rgba(248, 245, 239, 0.04) 0%,
        rgba(248, 245, 239, 0.1) 12%,
        rgba(248, 245, 239, 0.18) 26%,
        rgba(248, 245, 239, 0.02) 100%
      ),
      url("images/home/sarvesh-mopkar-home-02.webp") center
        center / cover no-repeat;
  }

  .about__media {
    min-height: 340px;
  }

  .about__content {
    border-left: 0;
    border-top: 1px solid rgba(201, 162, 74, 0.14);
  }

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

  .value-strip__item:last-of-type {
    grid-column: 1 / -1;
    max-width: 760px;
    justify-self: center;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    padding-inline: 0.8rem;
  }

  .value-strip__divider,
  .philosophy__divider {
    display: none;
  }

  .pillars__grid,
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 14px;
  }

  .pillar-card__image {
    aspect-ratio: 16 / 9;
    max-height: 180px;
  }

  .pillar-card__body {
    padding: 1.1rem 1rem 1rem;
  }

  .pillar-card__icon-wrap {
    width: 52px;
    height: 52px;
  }

  .pillar-card__icon-wrap img {
    width: 26px;
    height: 26px;
  }

  .services__ornament {
    display: none;
  }

  .section-head--services::before,
  .section-head--services::after {
    display: none;
  }

  .service-card .btn--outline {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .loading-screen__label {
    top: 2rem;
    left: 1.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
  }

  .loading-screen__counter {
    right: 1.5rem;
    bottom: 2rem;
  }

  .loading-screen__grid {
    background-size: 52px 52px;
  }

  .container {
    padding-inline: 0.7rem;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .section-head {
    text-align: center;
    padding: 0.8rem 0;
  }

  .section-head--pillars h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .section-head--pillars::after {
    margin: 0.35rem auto 0;
  }

  .brand__mark {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  .footer__brand .brand__mark {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }

  .brand__text {
    font-size: 1.06rem;
  }

  .faq {
    padding-block: 3.3rem;
  }

  .testimonials {
    padding-block: 3.3rem;
  }

  .testimonials .section-head {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonials .section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .testimonials__intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .testimonials__rail {
    gap: 0.8rem;
  }

  .testimonial-card {
    min-width: 100%;
    flex-basis: 100%;
    padding: 1.2rem 1.1rem 1.15rem;
    border-radius: 20px;
    gap: 1rem;
    background: linear-gradient(
      160deg,
      rgba(255, 250, 239, 0.99),
      rgba(242, 219, 156, 0.94) 60%,
      rgba(217, 172, 73, 0.9) 100%
    );
    border: 1px solid rgba(176, 128, 30, 0.34);
    box-shadow:
      0 30px 52px rgba(112, 76, 7, 0.16),
      inset 0 1px 0 rgba(255, 252, 239, 0.9),
      inset 0 -14px 34px rgba(166, 124, 46, 0.14);
  }

  .testimonial-card--featured {
    transform: none;
  }

  .testimonial-card__quote {
    font-size: 3rem;
  }

  .testimonial-card__tag {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .testimonial-card__text {
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .testimonial-card__meta strong {
    font-size: 0.9rem;
  }

  .testimonial-card__meta span {
    font-size: 0.88rem;
  }

  .testimonials__stats {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .testimonials__controls {
    margin-bottom: 0.8rem;
  }

  .testimonials__arrow {
    width: 42px;
    height: 42px;
  }

  .testimonial-stat {
    padding: 1rem;
    border-radius: 16px;
  }

  .faq .section-head {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .faq .section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .faq__intro {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .faq__item {
    border-radius: 20px;
  }

  .faq__item summary {
    padding: 1.15rem 1.1rem 1.15rem 1.2rem;
    gap: 0.8rem;
  }

  .faq__question {
    font-size: 1.02rem;
  }

  .faq__icon {
    width: 40px;
    height: 40px;
  }

  .faq__item p {
    padding: 0 1.2rem 1.3rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero__title {
    font-size: clamp(2.05rem, 11vw, 3rem);
    max-width: 100%;
  }

  .hero__copy {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero__title {
    width: auto;
  }

  .hero__line {
    white-space: normal;
  }

  .about__content h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .value-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 0.8rem;
    padding-inline: 0.75rem;
  }

  .value-strip__item {
    align-items: flex-start;
    max-width: 100%;
    gap: 0.55rem;
  }

  .value-strip__item:last-of-type {
    grid-column: auto;
    max-width: 100%;
  }

  .feature-banner__card {
    padding: 1rem;
    gap: 0.85rem;
    justify-items: center;
    text-align: center;
    min-height: 0;
    background: url("images/home/sarvesh-mopkar-home-10.webp")
      center bottom / 100% auto no-repeat;
  }

  .about__media {
    min-height: 250px;
  }

  .about__content h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.4rem);
  }

  .feature-banner__art {
    max-width: 220px;
    justify-self: center;
    margin-left: 0;
  }

  .btn--banner {
    min-width: 0;
    width: 100%;
    max-width: 240px;
    min-height: 44px;
    font-size: 0.7rem;
    margin-top: 0.35rem;
  }

  .feature-banner__content {
    max-width: 100%;
    padding-inline: 0.25rem;
    justify-self: center;
  }

  .feature-banner__content .eyebrow,
  .feature-banner__content h2,
  .feature-banner__content p {
    text-align: center;
  }

  .feature-banner__content .eyebrow {
    margin-bottom: 0.15rem;
    letter-spacing: 0.24em;
  }

  .feature-banner__content h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 0.98;
  }

  .feature-banner__content p {
    font-size: 0.72rem;
    line-height: 1.55;
    max-width: 34ch;
    margin-inline: auto;
  }

  .feature-banner__action {
    width: 100%;
    justify-self: stretch;
    padding-inline: 0;
  }

  .service-card .btn--outline {
    max-width: 100%;
    padding-inline: 1rem;
    font-size: 0.72rem;
  }

  .footer__meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .site-footer {
    padding-top: 1.4rem;
    padding-bottom: 1rem;
  }

  .footer__grid {
    padding: 0.85rem;
    gap: 0.85rem;
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(60, 50, 35, 0.85),
      rgba(45, 37, 25, 0.92)
    );
  }

  .footer__brand,
  .footer__column,
  .footer__newsletter {
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(70, 58, 40, 0.55);
    border-color: rgba(201, 162, 74, 0.25);
  }

  .footer__socials {
    gap: 0.55rem;
  }

  .footer__socials a {
    width: 34px;
    height: 34px;
  }

  .footer__socials a svg {
    width: 16px;
    height: 16px;
  }

  .footer__brand p {
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .work-hero {
    min-height: auto !important;
  }

  .work-hero__media {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.96) 0%,
        rgba(248, 244, 238, 0.76) 52%,
        rgba(248, 244, 238, 0.98) 100%
      ),
      url("images/The Work/sarvesh-mopkar-the-work-01.webp") center /
        cover no-repeat !important;
  }

  .work-hero__inner {
    padding: 0 !important;
  }

  .work-hero__content {
    position: relative;
    z-index: 2;
    padding: 5rem 2rem !important;
    max-width: 100% !important;
  }

  .work-hero__content.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .work-overview__grid,
  .work-offerings__grid,
  .work-difference__panel,
  .work-invite__inner {
    grid-template-columns: 1fr;
  }

  .work-overview__item {
    min-height: auto;
    padding: 1.65rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 162, 74, 0.24);
  }

  .work-overview__item:last-child {
    border-bottom: 1px solid rgba(201, 162, 74, 0.24);
  }

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

  .work-process__item {
    min-height: auto;
  }

  .work-process__arrow {
    display: none;
  }

  .work-difference__copy {
    order: 2;
  }

  .work-difference__panel img {
    order: 1;
    min-height: 340px;
  }

  .work-difference__panel > img {
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.64) 100%);
  }

  .work-invite__inner {
    max-width: calc(100% - 48px);
    padding: 1.8rem;
    text-align: center;
  }

  .work-invite__inner img {
    width: min(240px, 70vw);
    height: auto;
    justify-self: center;
  }

  .work-invite__inner .btn {
    margin-right: 0;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .work-container {
    padding: 0 18px;
  }

  .work-page .site-header {
    min-height: 72px;
  }

  .work-page .site-header__inner {
    min-height: 72px;
    padding-inline: 18px;
  }

  .work-page .brand__mark {
    width: 78px;
    height: 78px;
  }

  .work-page .site-nav.is-open {
    left: 0;
    right: 0;
    width: calc(100vw - 36px);
    margin-inline: 18px;
  }

  .work-hero__content {
    padding: 3rem 1.25rem 3.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .work-hero__media {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 238, 0.99) 0%,
        rgba(248, 244, 238, 0.94) 40%,
        rgba(248, 244, 238, 0.88) 100%
      ),
      url("images/The Work/sarvesh-mopkar-the-work-01.webp") center /
        cover no-repeat !important;
  }

  .work-hero h1 {
    color: #17120d !important;
    font-size: clamp(2rem, 10vw, 2.75rem) !important;
    max-width: 100% !important;
    line-height: 1.2 !important;
    text-shadow: 0 10px 26px rgba(255, 250, 240, 0.7);
  }

  .work-hero p:not(.work-kicker) {
    color: #3d342b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .work-hero .work-kicker {
    color: #a97819 !important;
  }

  .work-page .btn {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .work-hero .btn {
    width: fit-content;
  }

  .work-section {
    padding-block: 3rem;
  }

  .work-section-head h2 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  .work-section-head small {
    display: block;
    max-width: 28ch;
    margin-inline: auto;
    line-height: 1.55;
  }

  .work-overview::before {
    inset: 14px;
  }

  .work-overview__grid {
    gap: 0.9rem;
  }

  .work-overview__item::after {
    font-size: 2.35rem;
  }

  .work-overview__item {
    padding: 1.6rem 1.15rem;
  }

  .work-offerings__grid {
    gap: 1.15rem;
  }

  .work-card {
    border-radius: 8px;
  }

  .work-card__image {
    aspect-ratio: 1.45;
  }

  .work-card__image span {
    width: 44px;
    height: 44px;
  }

  .work-card__body {
    padding: 1.7rem 1.2rem 1.35rem;
  }

  .work-card__body h3 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .work-card__body .btn {
    min-width: 0;
    width: 100%;
    padding-inline: 1rem;
    white-space: normal;
    text-align: center;
  }

  .work-process__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .work-process::before {
    inset: 14px;
  }

  .work-process .work-section-head p {
    font-size: clamp(2.25rem, 11vw, 2.85rem);
    line-height: 1.08;
  }

  .work-process__item img {
    width: min(170px, 70vw);
  }

  .work-process__item {
    padding: 1.45rem 1.15rem;
  }

  .work-difference__panel img {
    min-height: 260px;
  }

  .work-difference::before {
    inset: 14px;
  }

  .work-difference__copy {
    padding: 2rem 1.35rem;
  }

  .work-difference h2 {
    font-size: clamp(2.15rem, 10vw, 2.55rem);
    line-height: 1.08;
  }

  .work-difference__copy > p:last-child {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .work-invite {
    padding-block: 3rem !important;
  }

  .work-invite__inner {
    max-width: calc(100% - 36px);
    min-height: auto;
    padding: 1.45rem 1.15rem 1.55rem;
    gap: 1rem;
  }

  .work-invite__inner p {
    font-size: clamp(1.75rem, 8.8vw, 2.15rem);
    line-height: 1.08;
    padding-inline: 0.75rem;
  }

  .work-invite__inner img {
    width: min(210px, 72vw);
  }

  .work-invite__inner .btn {
    min-width: 0;
    width: min(100%, 220px);
    padding-inline: 1rem;
  }

  .work-invite::before {
    inset: 14px;
  }

  .work-invite__inner::before {
    inset: 12px;
  }
}

@media (max-width: 420px) {
  .work-container {
    padding: 0 14px;
  }

  .work-hero__content {
    padding-inline: 1rem !important;
  }

  .work-hero h1 br {
    display: none;
  }

  .work-section-head {
    margin-bottom: 1.75rem;
  }

  .work-overview::before,
  .work-process::before,
  .work-difference::before,
  .work-invite::before {
    inset: 10px;
  }

  .work-overview__grid,
  .work-offerings__grid,
  .work-process__grid {
    gap: 0.9rem;
  }

  .work-card__body,
  .work-process__item,
  .work-overview__item {
    padding-inline: 1rem;
  }

  .work-difference__copy {
    padding: 1.75rem 1.1rem;
  }

  .work-invite__inner {
    max-width: calc(100% - 28px);
  }

  .work-invite__inner p {
    padding-inline: 0.5rem;
  }
}

/* Philosophy page */
.philosophy-page {
  background: #f8f5ef;
  color: #191714;
}

.philosophy-page .page-shell {
  opacity: 1;
}

.philosophy-page .site-header {
  background: #2d2519;
}

.philosophy-page .site-nav__link {
  color: #f8f5ef;
  font-size: 0.9rem;
  font-weight: 600;
}

.philosophy-page .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
}

.philosophy-page .nav-toggle span {
  background: #f8f5ef;
}

.philo-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(1rem, 2vw, 1.75rem);
}

.philo-hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.9) 35%, rgba(248, 245, 239, 0.18) 62%),
    url("images/Philosophy/sarvesh-mopkar-philosophy-07.webp") center / cover no-repeat;
}

.philo-hero__copy {
  width: min(920px, 100%);
  padding-top: 3rem;
}

.philo-kicker,
.philo-section-label,
.philo-small-label {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b67811;
}

.philo-kicker {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.philo-hero h1 {
  margin: 2rem 0 1.35rem;
  font-family: "Playfair Display", "Instrument Serif", serif;
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 1.08;
  font-weight: 500;
  color: #171717;
  letter-spacing: 0;
  white-space: nowrap;
}

.philo-rule {
  display: block;
  width: 58px;
  height: 2px;
  margin: 0 0 2.2rem;
  background: #b67811;
}

.philo-rule--center {
  margin: 0.75rem auto 1.65rem;
}

.philo-hero p:not(.philo-kicker) {
  margin: 0 0 1.55rem;
  font-size: clamp(1.05rem, 1.24vw, 1.28rem);
  line-height: 1.75;
  color: #1e1e1e;
}

.philo-core {
  position: relative;
  overflow: hidden;
  padding: 3.2rem 0 3.7rem;
  text-align: center;
  background: url("images/Philosophy/sarvesh-mopkar-philosophy-01.webp") center bottom / cover no-repeat;
  border-top: 1px solid rgba(182, 120, 17, 0.16);
  border-bottom: 1px solid rgba(182, 120, 17, 0.16);
}

.philo-section-label {
  text-align: center;
  color: #171717;
  font-size: 1.05rem;
}

.philo-lotus {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
}

.philo-core h2,
.philo-one-line h2 {
  margin: 0;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  line-height: 1.25;
  font-weight: 400;
  color: #b67811;
}

.philo-one-line h2 {
  color: #171717;
}

.philo-problem,
.philo-intelligence,
.philo-method,
.philo-split,
.philo-one-line,
.philo-cta {
  padding-block: clamp(1rem, 2.1vw, 2rem);
}

.philo-panel {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 3.8rem);
  border: 1px solid rgba(182, 120, 17, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 162, 74, 0.13), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(182, 120, 17, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(250, 244, 235, 0.88));
  box-shadow:
    0 22px 60px rgba(75, 47, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.philo-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(182, 120, 17, 0.12);
  border-radius: 10px;
  pointer-events: none;
}

.philo-panel > * {
  position: relative;
  z-index: 1;
}

.philo-problem__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.55fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 0.8rem;
}

.philo-problem__text {
  padding-left: clamp(1rem, 5vw, 5.2rem);
}

.philo-problem__text p {
  margin: 0 0 0.45rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.philo-problem__text h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
  color: #b67811;
}

.philo-capacity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 1.4vw, 1.4rem);
  padding-right: clamp(1rem, 4vw, 4rem);
}

.philo-capacity article {
  position: relative;
  min-height: 140px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
  padding: 1.35rem 1.1rem 1.45rem;
  text-align: center;
  border: 1px solid rgba(182, 120, 17, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 242, 0.42)),
    rgba(255, 252, 247, 0.5);
  box-shadow: 0 16px 32px rgba(78, 52, 17, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.philo-capacity article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(182, 120, 17, 0.55), transparent);
}

.philo-capacity article:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 120, 17, 0.34);
  box-shadow: 0 22px 46px rgba(78, 52, 17, 0.11);
}

.philo-capacity img,
.philo-method__steps img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 0.42rem;
  border: 1px solid rgba(182, 120, 17, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 48%, rgba(246, 230, 204, 0.86) 100%);
  box-shadow:
    0 12px 28px rgba(182, 120, 17, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.philo-capacity p,
.philo-method__steps p {
  margin: 0;
  line-height: 1.55;
  color: #1d1b18;
}

.philo-image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.2);
  border-radius: 12px;
  background: #fffaf3;
}

.philo-image-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philo-image-panel__content {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: 2rem clamp(1.2rem, 4vw, 4rem);
  background: linear-gradient(90deg, rgba(255, 252, 247, 0.1), rgba(255, 252, 247, 0.93) 34%, rgba(255, 252, 247, 0.86) 64%, rgba(255, 252, 247, 0.1));
}

.philo-two {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 4.5rem);
  width: min(820px, 100%);
  margin: 1.6rem auto 2.1rem;
}

.philo-two h3,
.philo-method__steps h3 {
  margin: 0 0 0.7rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 400;
  color: #b67811;
}

.philo-two p {
  margin: 0;
  line-height: 1.65;
}

.philo-two__seal {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 35%, rgba(255, 252, 247, 0.2) 36%, rgba(201, 162, 74, 0.16) 68%, transparent 69%);
  box-shadow: 0 10px 34px rgba(182, 120, 17, 0.16);
}

.philo-two__seal img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.philo-image-panel__line,
.philo-method__bottom {
  margin: 0;
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.35;
}

.philo-method__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 3.4rem);
  padding: 2.15rem clamp(1rem, 5vw, 5rem) 1.7rem;
}

.philo-method__steps::before {
  content: "";
  position: absolute;
  top: 5.15rem;
  left: clamp(4.4rem, 10vw, 10rem);
  right: clamp(4.4rem, 10vw, 10rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 120, 17, 0.42), transparent);
}

.philo-method__steps article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 1.1rem 1rem 1.2rem;
  border: 1px solid rgba(182, 120, 17, 0.16);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.52);
  box-shadow: 0 14px 30px rgba(78, 52, 17, 0.045);
}

.philo-method__steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 51px;
  right: clamp(-2.35rem, -2.3vw, -1rem);
  width: 32px;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 48%, #7c551f 50% 62%, transparent 64%) right center / 10px 10px no-repeat,
    linear-gradient(#7c551f, #7c551f) left center / 26px 1px no-repeat;
  opacity: 0.72;
}

.philo-method__steps h3 {
  margin-top: 1rem;
  color: #171717;
}

.philo-method__steps p {
  max-width: 220px;
  font-size: 0.98rem;
}

.philo-method__bottom {
  width: fit-content;
  margin: 1.4rem auto 0;
  padding: 1rem clamp(1.4rem, 3vw, 2.8rem);
  border-top: 1px solid rgba(182, 120, 17, 0.24);
  color: #2b2218;
}

.philo-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 1.8vw, 1.8rem);
}

.philo-card {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.2);
  border-radius: 12px;
  background: #fffaf3;
}

.philo-card > div {
  height: 100%;
  padding: clamp(2rem, 4vw, 4.2rem);
}

.philo-card--mountain {
  display: grid;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.88) 0%, rgba(255, 252, 247, 0.68) 50%, rgba(255, 252, 247, 0.06) 100%),
    url("images/Philosophy/sarvesh-mopkar-philosophy-03.webp") center bottom / cover no-repeat;
}

.philo-card--vase {
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.97) 0%, rgba(255, 252, 247, 0.9) 54%, rgba(255, 252, 247, 0.2) 100%),
    url("images/Philosophy/sarvesh-mopkar-philosophy-04.webp") center / cover no-repeat;
}

.philo-small-label {
  margin-bottom: 1.35rem;
  color: #171717;
  font-size: 0.85rem;
}

.philo-card h2 {
  margin: 0 0 1.8rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1.25;
  font-weight: 400;
  color: #b67811;
}

.philo-card p {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.6;
}

.philo-card ul {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.philo-card li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.45;
}

.philo-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #b67811;
  background: radial-gradient(circle, #b67811 0 3px, transparent 4px);
}

.philo-one-line article {
  min-height: 250px;
  display: grid;
  align-content: center;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.2);
  border-radius: 12px;
  background: url("images/Philosophy/sarvesh-mopkar-philosophy-05.webp") center / cover no-repeat;
}

.philo-cta {
  padding-bottom: 1.4rem;
}

.philo-cta__inner {
  min-height: 165px;
  display: grid;
  grid-template-columns: 140px 1fr auto 300px;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  padding: 1.2rem clamp(1.2rem, 3vw, 3rem);
  border: 1px solid rgba(182, 120, 17, 0.25);
  border-radius: 12px;
  background: #fffaf3;
}

.philo-cta__inner > img:first-child {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.philo-cta__inner p {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.16;
}

.philo-cta__crystal {
  width: 300px;
  height: 165px;
  object-fit: cover;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

@media (max-width: 980px) {
  .philo-hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.9) 48%, rgba(248, 245, 239, 0.38) 100%),
      url("images/Philosophy/sarvesh-mopkar-philosophy-07.webp") center / cover no-repeat;
  }

  .philo-problem__grid,
  .philo-split__grid {
    grid-template-columns: 1fr;
  }

  .philo-problem__text {
    padding-inline: 1rem;
    text-align: center;
  }

  .philo-capacity {
    padding-inline: clamp(1rem, 4vw, 3rem);
  }

  .philo-two,
  .philo-method__steps {
    grid-template-columns: 1fr;
  }

  .philo-method__steps::before {
    display: none;
  }

  .philo-method__steps article:not(:last-child)::after {
    content: "";
    top: auto;
    right: auto;
    bottom: -1.4rem;
    width: 1px;
    height: 24px;
    background: rgba(182, 120, 17, 0.35);
  }

  .philo-cta__inner {
    grid-template-columns: 100px 1fr;
  }

  .philo-cta__inner .btn {
    width: fit-content;
  }

  .philo-cta__crystal {
    display: none;
  }
}

@media (max-width: 720px) {
  .philosophy-page {
    background:
      radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.1), transparent 34%),
      linear-gradient(180deg, #fbf8f2 0%, #f5efe5 100%);
  }

  .philosophy-page .site-header__inner {
    min-height: 68px;
    padding-inline: 14px;
  }

  .philosophy-page .brand__mark {
    width: 78px;
    height: 78px;
  }

  .philosophy-page .site-nav.is-open {
    background: #2d2519;
  }

  .philosophy-page .site-nav.is-open .site-nav__link {
    color: #f8f5ef;
  }

  .philo-container {
    padding-inline: 16px;
  }

  .philo-problem,
  .philo-intelligence,
  .philo-method,
  .philo-split,
  .philo-one-line,
  .philo-cta {
    padding-block: 0.75rem;
  }

  .philo-hero {
    position: relative;
    min-height: auto;
    align-items: start;
    padding: 1.35rem 0 3.1rem;
    background:
      linear-gradient(180deg, rgba(184, 122, 20, 0.22) 0%, rgba(231, 188, 95, 0.34) 24%, rgba(252, 239, 205, 0.88) 58%, rgba(248, 245, 239, 0.98) 100%),
      radial-gradient(circle at 78% 14%, rgba(255, 220, 134, 0.62), transparent 36%),
      radial-gradient(circle at 18% 26%, rgba(201, 136, 32, 0.28), transparent 34%),
      url("images/Philosophy/sarvesh-mopkar-philosophy-07.webp") 72% top / auto 52% no-repeat,
      linear-gradient(180deg, #e7bc5f 0%, #fbf0d2 54%, #fbf8f2 100%);
    isolation: isolate;
  }

  .philo-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(160, 96, 15, 0.08) 0 36%, rgba(255, 244, 216, 0.7) 72%, #f8f5ef 100%),
      radial-gradient(circle at 14% 38%, rgba(255, 236, 186, 0.8), transparent 30%);
    pointer-events: none;
  }

  .philo-hero::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 1.15rem;
    height: 1px;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(182, 120, 17, 0.36), transparent);
  }

  .philo-hero__copy {
    width: 100%;
    margin-top: 5.2rem;
    padding: 1.45rem 1.18rem 1.55rem;
    border: 1px solid rgba(182, 120, 17, 0.22);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 250, 244, 0.8)),
      rgba(255, 252, 247, 0.72);
    backdrop-filter: blur(10px);
    box-shadow:
      0 22px 48px rgba(61, 40, 12, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .philo-hero h1 {
    margin: 1.05rem 0 0.95rem;
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1.06;
    white-space: normal;
  }

  .philo-kicker {
    width: fit-content;
    padding: 0.38rem 0.68rem;
    border: 1px solid rgba(182, 120, 17, 0.22);
    border-radius: 999px;
    background: rgba(255, 248, 232, 0.8);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }

  .philo-rule {
    width: 54px;
    height: 2px;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #9f6410, #d6ab54);
  }

  .philo-hero p:not(.philo-kicker) {
    margin-bottom: 0.95rem;
    font-size: 0.96rem;
    line-height: 1.72;
    color: #2d2821;
  }

  .philo-core {
    padding: 2.65rem 0 2.9rem;
    background-position: center bottom;
    background-size: cover;
  }

  .philo-section-label {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .philo-lotus {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .philo-core h2,
  .philo-one-line h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.22;
  }

  .philo-panel {
    padding: 2.2rem 16px;
    border-radius: 16px;
  }

  .philo-panel::before {
    inset: 8px;
    border-radius: 12px;
  }

  .philo-problem__grid {
    gap: 1.35rem;
    margin-top: 0.45rem;
  }

  .philo-problem__text {
    padding-inline: 0;
  }

  .philo-problem__text p {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .philo-problem__text h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.15;
  }

  .philo-capacity {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-inline: 0;
  }

  .philo-capacity article {
    min-height: auto;
    padding: 1.15rem 1rem 1.25rem;
  }

  .philo-capacity img,
  .philo-method__steps img {
    width: 72px;
    height: 72px;
  }

  .philo-image-panel,
  .philo-image-panel__content {
    min-height: 500px;
  }

  .philo-image-panel__content {
    align-content: start;
    padding: 2rem 1rem;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.95) 0%, rgba(255, 252, 247, 0.88) 58%, rgba(255, 252, 247, 0.58) 100%);
  }

  .philo-image-panel > img {
    object-position: center bottom;
  }

  .philo-two {
    justify-items: center;
    gap: 1rem;
    margin: 1.2rem auto 1.35rem;
    text-align: center;
  }

  .philo-two__seal {
    width: 106px;
    height: 106px;
  }

  .philo-two__seal img {
    width: 58px;
    height: 58px;
  }

  .philo-method__steps {
    gap: 1.35rem;
    padding: 1.4rem 0 1rem;
  }

  .philo-method__steps article {
    padding: 1.15rem 1rem 1.25rem;
  }

  .philo-method__steps article:not(:last-child)::after {
    bottom: -1.18rem;
    height: 20px;
  }

  .philo-method__steps h3 {
    margin-top: 0.85rem;
    font-size: 1.55rem;
  }

  .philo-method__steps p {
    max-width: 26ch;
    font-size: 0.94rem;
  }

  .philo-method__bottom {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0.7rem 0;
    font-size: 1.25rem;
  }

  .philo-split__grid {
    gap: 0.85rem;
  }

  .philo-card {
    min-height: 320px;
    border-radius: 16px;
  }

  .philo-card > div {
    padding: 1.6rem 1.25rem;
  }

  .philo-card--mountain {
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.94) 0%, rgba(255, 252, 247, 0.82) 48%, rgba(255, 252, 247, 0.1) 100%),
      url("images/Philosophy/sarvesh-mopkar-philosophy-03.webp") center bottom / cover no-repeat;
  }

  .philo-card--vase {
    background:
      linear-gradient(180deg, rgba(255, 252, 247, 0.97) 0%, rgba(255, 252, 247, 0.9) 62%, rgba(255, 252, 247, 0.34) 100%),
      url("images/Philosophy/sarvesh-mopkar-philosophy-04.webp") center bottom / cover no-repeat;
  }

  .philo-card h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(1.75rem, 7.8vw, 2.2rem);
  }

  .philo-card p,
  .philo-card li {
    font-size: 0.98rem;
  }

  .philo-card ul {
    gap: 0.75rem;
  }

  .philo-one-line article {
    min-height: 240px;
    padding: 2rem 1rem;
    border-radius: 16px;
    background: url("images/Philosophy/sarvesh-mopkar-philosophy-05.webp") center / cover no-repeat;
  }

  .philo-cta__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.95rem;
    padding: 1.5rem 1.1rem 1.35rem;
    border-radius: 16px;
    background:
      radial-gradient(circle at 50% 100%, rgba(201, 162, 74, 0.13), transparent 48%),
      #fffaf3;
  }

  .philo-cta__inner > img:first-child {
    width: 92px;
    height: 92px;
  }

  .philo-cta__inner p {
    font-size: clamp(1.35rem, 6.4vw, 1.85rem);
    line-height: 1.16;
  }

  .philo-cta__inner .btn {
    width: 100%;
    max-width: 230px;
    justify-content: center;
  }

  .philo-cta__crystal {
    display: block;
    order: 4;
    width: min(240px, 82vw);
    height: 122px;
    margin-top: 0.2rem;
    object-fit: cover;
  }
}

@media (max-width: 420px) {
  .philo-container {
    padding-inline: 12px;
  }

  .philo-hero {
    padding-block: 1.15rem 2.65rem;
    background:
      linear-gradient(180deg, rgba(184, 122, 20, 0.24) 0%, rgba(231, 188, 95, 0.34) 24%, rgba(252, 239, 205, 0.9) 58%, rgba(248, 245, 239, 0.98) 100%),
      radial-gradient(circle at 78% 14%, rgba(255, 220, 134, 0.58), transparent 36%),
      radial-gradient(circle at 18% 26%, rgba(201, 136, 32, 0.26), transparent 34%),
      url("images/Philosophy/sarvesh-mopkar-philosophy-07.webp") 74% top / auto 46% no-repeat,
      linear-gradient(180deg, #e7bc5f 0%, #fbf0d2 54%, #fbf8f2 100%);
  }

  .philo-hero__copy {
    margin-top: 4.4rem;
    padding: 1.2rem 1rem 1.28rem;
    border-radius: 16px;
  }

  .philo-hero h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.75rem);
  }

  .philo-hero br,
  .philo-core h2 br,
  .philo-one-line h2 br,
  .philo-cta__inner p br {
    display: none;
  }

  .philo-panel {
    padding-inline: 12px;
  }

  .philo-image-panel,
  .philo-image-panel__content {
    min-height: 460px;
  }

  .philo-card {
    min-height: 300px;
  }
}

/* Contact page */
.contact-page {
  background: #f8f5ef;
  color: #171717;
}

.contact-page .page-shell {
  opacity: 1;
}

.contact-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4.2vw, 5.2rem);
}

.contact-hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.94) 27%, rgba(248, 245, 239, 0.46) 44%, rgba(248, 245, 239, 0.02) 62%),
    url("images/Contact/sarvesh-mopkar-contact-01.webp") center / cover no-repeat;
}

.contact-hero__copy {
  width: min(620px, 100%);
  padding-top: 2.2rem;
}

.contact-kicker {
  margin: 0 0 1.65rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #b67811;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Instrument Serif", serif;
  font-size: clamp(46px, 4.7vw, 72px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  color: #171717;
}

.contact-hero h1 em {
  display: inline-block;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-weight: 400;
  color: #b67811;
}

.contact-rule {
  display: block;
  width: 58px;
  height: 2px;
  margin: 1.1rem 0 1.55rem;
  background: #b67811;
}

.contact-hero p:not(.contact-kicker) {
  margin: 0 0 1.8rem;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2b2925;
}

.contact-info-strip,
.contact-main,
.contact-bottom-cta {
  padding-block: clamp(1rem, 2.1vw, 1.8rem);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.11), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(250, 244, 235, 0.9));
  box-shadow:
    0 24px 58px rgba(75, 47, 12, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.contact-info-card {
  position: relative;
  min-height: 245px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.8rem;
  padding: 1.8rem 1.2rem 1.6rem;
  text-align: center;
  border-left: 1px solid rgba(182, 120, 17, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 248, 238, 0.18));
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.contact-info-card:first-child {
  border-left: 0;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(182, 120, 17, 0.58), transparent);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 38px rgba(75, 47, 12, 0.08);
}

.contact-info-card:hover::after {
  opacity: 1;
}

.contact-info-card__icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle, #ffffff 0 45%, rgba(246, 230, 204, 0.82) 100%);
  box-shadow:
    0 14px 28px rgba(182, 120, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-info-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: saturate(1.1);
}

.contact-info-card__icon img[src*="12_37_52"],
.contact-info-card__icon img[src*="12_39_44"] {
  width: 46px;
  height: 46px;
  transform: scale(1.55);
  object-fit: cover;
  border-radius: 999px;
}

.contact-info-card__icon--pin img {
  filter: invert(45%) sepia(69%) saturate(823%) hue-rotate(7deg) brightness(88%) contrast(87%);
}

.contact-info-card h2,
.contact-section-head h2 {
  margin: 0;
  font-family: "Playfair Display", "Instrument Serif", serif;
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  color: #171717;
}

.contact-info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #27231e;
}

.contact-info-card a {
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b67811;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 1rem;
}

.contact-form-card,
.contact-prepare-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(182, 120, 17, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 74, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(250, 244, 235, 0.9));
  box-shadow:
    0 22px 54px rgba(75, 47, 12, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.contact-form-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 3rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 226, 151, 0.46), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(182, 120, 17, 0.2), transparent 28%),
    linear-gradient(180deg, #f7dfaa 0%, #edc875 48%, #c8922a 100%);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(182, 120, 17, 0.1);
  border-radius: 14px;
  pointer-events: none;
}

.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-section-head .contact-rule {
  margin: 0.7rem 0 1.25rem;
}

.contact-form-card > p,
.contact-prepare-card p {
  margin: 0 0 1rem;
  max-width: 44ch;
  line-height: 1.75;
  color: #2a2723;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.05rem;
  border: 1px solid rgba(255, 248, 224, 0.42);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 18px 34px rgba(92, 57, 8, 0.1);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label > span:first-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 37, 25, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 247, 0.86));
  padding: 0.95rem 1rem;
  color: #1d1b18;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(182, 120, 17, 0.56);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(182, 120, 17, 0.09),
    0 10px 24px rgba(75, 47, 12, 0.06);
}

.contact-form__agree {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem !important;
  font-size: 0.93rem;
}

.contact-form__agree input {
  width: 22px;
  height: 22px;
  padding: 0;
}

.contact-form__agree span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
}

.contact-form__agree a {
  color: #b67811;
  font-weight: 700;
}

.contact-prepare-card {
  position: relative;
  display: grid;
  align-items: stretch;
  padding: 10px;
  background: url("images/Contact/sarvesh-mopkar-contact-02.webp") center / cover no-repeat;
}

.contact-prepare-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(182, 120, 17, 0.22);
  border-radius: 14px;
  pointer-events: none;
}

.contact-prepare-card__content {
  width: min(620px, 100%);
  margin: clamp(0.7rem, 1.5vw, 1.25rem);
  padding: clamp(1.45rem, 3.2vw, 3rem);
  border: 1px solid rgba(255, 248, 224, 0.52);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.74), rgba(255, 248, 238, 0.48));
  backdrop-filter: blur(5px);
  box-shadow:
    0 22px 46px rgba(58, 38, 12, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.contact-prepare-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-prepare-card li {
  position: relative;
  padding: 0.78rem 0.9rem 0.78rem 2.75rem;
  border: 1px solid rgba(182, 120, 17, 0.14);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.54);
  line-height: 1.5;
  box-shadow: 0 10px 22px rgba(75, 47, 12, 0.045);
}

.contact-prepare-card li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0.76rem;
  width: 20px;
  height: 20px;
  border: 1px solid #b67811;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 52%, #b67811 54% 64%, transparent 66%) 6px 4px / 9px 11px no-repeat;
}

.contact-faq {
  padding-block: clamp(1.8rem, 3.2vw, 3.2rem);
}

.contact-faq .section-head {
  margin-bottom: 1.35rem;
}

.contact-faq .faq__list {
  max-width: 1040px;
  margin-inline: auto;
}

.contact-bottom-cta__inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 2.2rem clamp(1.5rem, 4vw, 4rem);
  border: 1px solid rgba(182, 120, 17, 0.2);
  border-radius: 14px;
  background: url("images/Contact/sarvesh-mopkar-contact-03.webp") center / cover no-repeat;
  box-shadow: 0 16px 36px rgba(75, 47, 12, 0.08);
}

.contact-bottom-cta__inner > div {
  grid-column: 2;
  text-align: center;
}

.contact-bottom-cta__inner > .btn {
  grid-column: 3;
  justify-self: end;
}

.contact-bottom-cta h2 {
  margin: 0 0 0.7rem;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  line-height: 1.1;
  font-weight: 400;
}

.contact-bottom-cta p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .contact-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.9) 48%, rgba(248, 245, 239, 0.3) 100%),
      url("images/Contact/sarvesh-mopkar-contact-01.webp") center / cover no-repeat;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-card:nth-child(odd) {
    border-left: 0;
  }

  .contact-info-card:nth-child(n + 3) {
    border-top: 1px solid rgba(182, 120, 17, 0.24);
  }

  .contact-main__grid,
  .contact-bottom-cta__inner {
    grid-template-columns: 1fr;
  }

  .contact-bottom-cta__inner {
    text-align: center;
  }

  .contact-bottom-cta__inner > div,
  .contact-bottom-cta__inner > .btn {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .contact-container {
    padding-inline: 14px;
  }

  .contact-hero {
    min-height: auto;
    padding: 3rem 0 2.4rem;
    background:
      linear-gradient(180deg, rgba(248, 245, 239, 0.97) 0%, rgba(248, 245, 239, 0.9) 46%, rgba(248, 245, 239, 0.48) 100%),
      url("images/Contact/sarvesh-mopkar-contact-01.webp") 68% top / auto 100% no-repeat,
      #f8f5ef;
  }

  .contact-hero__copy {
    padding: 1.2rem 1rem 1.3rem;
    border: 1px solid rgba(182, 120, 17, 0.18);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.76);
    box-shadow: 0 18px 42px rgba(75, 47, 12, 0.1);
  }

  .contact-kicker {
    margin-bottom: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .contact-hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.15rem);
    line-height: 1.08;
  }

  .contact-rule {
    margin: 0.9rem 0 1rem;
  }

  .contact-hero p:not(.contact-kicker) {
    margin-bottom: 1.15rem;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .contact-info-grid,
  .contact-main__grid {
    gap: 0.85rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-info-card,
  .contact-info-card:nth-child(n) {
    min-height: auto;
    border: 1px solid rgba(182, 120, 17, 0.18);
    border-radius: 16px;
    background:
      radial-gradient(circle at 50% 0%, rgba(201, 162, 74, 0.1), transparent 42%),
      rgba(255, 252, 247, 0.9);
    box-shadow: 0 14px 32px rgba(75, 47, 12, 0.08);
  }

  .contact-info-card__icon {
    width: 78px;
    height: 78px;
  }

  .contact-form-card,
  .contact-prepare-card {
    min-height: auto;
    border-radius: 16px;
  }

  .contact-form-card {
    padding: 1.35rem 1rem;
  }

  .contact-form-card::before {
    inset: 8px;
    border-radius: 12px;
  }

  .contact-form {
    padding: 0.8rem;
    border-radius: 12px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-prepare-card {
    min-height: 560px;
    background: url("images/Contact/sarvesh-mopkar-contact-02.webp") center bottom / cover no-repeat;
  }

  .contact-prepare-card__content {
    margin: 0.55rem;
    padding: 1.25rem 1rem 12.5rem;
    backdrop-filter: blur(3px);
  }

  .contact-faq .faq__intro {
    max-width: 30ch;
  }

  .contact-bottom-cta__inner {
    min-height: 380px;
    justify-items: center;
    align-content: center;
    padding: 2.2rem 1.2rem;
    background: url("images/Contact/sarvesh-mopkar-contact-03.webp") center / cover no-repeat;
  }

  .contact-bottom-cta__inner .btn {
    width: 100%;
    max-width: 230px;
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 420px) {
  .contact-hero h1 br,
  .contact-hero p br,
  .contact-bottom-cta h2 br,
  .contact-bottom-cta p br {
    display: none;
  }

  .contact-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.65rem);
  }

  .contact-form-card {
    padding: 1.15rem 0.9rem;
  }

  .contact-prepare-card {
    min-height: 520px;
  }

  .contact-prepare-card__content {
    padding-bottom: 11.5rem;
  }

  .contact-prepare-card li {
    padding-right: 0.75rem;
    font-size: 0.92rem;
  }

  .contact-bottom-cta__inner {
    min-height: 340px;
  }
}

/* Work With Me page */
.work-with-me-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(215, 157, 56, 0.12), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(201, 162, 74, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf8f2 0%, #f7f0e7 54%, #fffaf4 100%);
}

.wwm-hero {
  position: relative;
  min-height: clamp(520px, 48vw, 700px);
  overflow: hidden;
  display: grid;
  align-items: center;
  margin-top: -1px;
}

.wwm-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.86) 30%, rgba(255, 250, 243, 0.28) 52%, rgba(255, 250, 243, 0) 76%),
    linear-gradient(180deg, rgba(255, 250, 243, 0) 72%, #fbf5ed 100%),
    url("images/Work with me/ChatGPT Image May 9, 2026, 02_32_02 PM.png") center right / cover no-repeat;
}

.wwm-hero__inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(1.25rem, 6vw, 8.2rem);
}

.wwm-hero__copy {
  width: min(560px, 92vw);
  padding-top: clamp(1rem, 4vw, 3.2rem);
}

.wwm-eyebrow {
  margin: 0 0 1.7rem;
  color: #c17800;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.8rem, 0.92vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wwm-hero h1 {
  margin: 0;
  color: #17130e;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(3.2rem, 5.7vw, 6.2rem);
  line-height: 0.94;
  font-weight: 400;
}

.wwm-hero h1 span {
  color: #c47a08;
}

.wwm-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 2.25rem 0 1.7rem;
  background: #c47a08;
}

.wwm-hero p:not(.wwm-eyebrow) {
  margin: 0;
  color: #211b15;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.8;
}

.wwm-offerings {
  position: relative;
  z-index: 2;
  margin-top: clamp(-5.5rem, -6vw, -2rem);
  padding-bottom: clamp(1.4rem, 3vw, 2.5rem);
}

.wwm-offerings__inner {
  display: grid;
  gap: clamp(1.1rem, 1.8vw, 1.65rem);
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(0.75rem, 2vw, 2rem);
}

.wwm-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(300px, 1.05fr) minmax(230px, 0.64fr);
  align-items: stretch;
  min-height: 250px;
  border: 1px solid rgba(201, 126, 11, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.96), rgba(255, 252, 247, 0.86)),
    #fffaf4;
  box-shadow: 0 18px 42px rgba(88, 55, 3, 0.1);
}

.wwm-card--feature {
  grid-template-columns: minmax(300px, 1.2fr) minmax(330px, 1fr) minmax(250px, 0.7fr);
  min-height: 320px;
}

.wwm-card__image {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  align-self: stretch;
}

.wwm-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0) 58%, rgba(255, 250, 243, 0.94) 100%);
  pointer-events: none;
}

.wwm-card--trader .wwm-card__image::before,
.wwm-card--energy .wwm-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.95) 0%, rgba(255, 250, 243, 0.2) 34%, rgba(255, 250, 243, 0) 68%);
  pointer-events: none;
}

.wwm-card__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.wwm-card__image--kuber {
  background:
    radial-gradient(circle at 30% 48%, rgba(224, 164, 52, 0.1), transparent 45%),
    #fffaf3;
}

.wwm-card__image--kuber img {
  object-fit: contain;
  padding: clamp(1rem, 2vw, 2rem);
}

.wwm-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 2.35vw, 2.35rem) clamp(1.25rem, 2.2vw, 2.15rem);
  background:
    radial-gradient(circle at 4% 12%, rgba(218, 149, 22, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.54), rgba(255, 252, 247, 0));
}

.wwm-card__content::before {
  content: "";
  position: absolute;
  left: clamp(1.15rem, 2vw, 1.85rem);
  top: clamp(1.1rem, 1.8vw, 1.7rem);
  bottom: clamp(1.1rem, 1.8vw, 1.7rem);
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 126, 11, 0), rgba(201, 126, 11, 0.28), rgba(201, 126, 11, 0));
  opacity: 0.85;
}

.wwm-card__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1rem, 1.6vw, 1.45rem);
  margin-bottom: clamp(1rem, 1.45vw, 1.35rem);
}

.wwm-card__icon {
  display: grid;
  place-items: center;
  width: clamp(66px, 5.4vw, 84px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 126, 11, 0.56);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.98), rgba(255, 247, 232, 0.7)),
    rgba(255, 250, 243, 0.88);
  box-shadow:
    0 10px 24px rgba(140, 82, 0, 0.11),
    inset 0 0 0 7px rgba(201, 126, 11, 0.045);
  flex: 0 0 auto;
}

.wwm-card__icon img {
  width: 48%;
  height: 48%;
  object-fit: contain;
}

.wwm-card h2 {
  margin: 0;
  color: #17130e;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(2.15rem, 2.9vw, 3.25rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.wwm-card h2 span {
  color: #c47a08;
  font-size: 0.88em;
}

.wwm-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.82rem;
  color: #2b241d;
  font-size: clamp(0.92rem, 0.98vw, 1.06rem);
  line-height: 1.62;
}

.wwm-card__content > p:first-of-type {
  max-width: 42ch;
  color: #17130e;
  font-weight: 500;
}

.wwm-card__content > p:nth-of-type(2) {
  margin-bottom: 0.52rem;
  color: #8f5a06;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wwm-card__content > p:last-child {
  margin-bottom: 0;
  padding-top: 0.15rem;
  color: #3a2f24;
}

.wwm-bullets {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.42rem;
  margin: 0 0 1rem;
  padding: 0;
}

.wwm-bullets li {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 1.45rem;
  color: #17130e;
  font-size: clamp(0.88rem, 0.94vw, 1rem);
  line-height: 1.42;
  font-weight: 500;
}

.wwm-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c47a08;
  box-shadow: 0 0 0 5px rgba(196, 122, 8, 0.12);
}

.wwm-card__aside {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(1rem, 1.5vw, 1.45rem);
  padding: clamp(1.25rem, 2vw, 2.1rem) clamp(1.15rem, 2vw, 1.85rem);
  border-left: 1px solid rgba(201, 126, 11, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(250, 241, 228, 0.48)),
    radial-gradient(circle at 88% 10%, rgba(218, 149, 22, 0.14), transparent 34%);
}

.wwm-card__aside::before {
  content: "";
  position: absolute;
  inset: clamp(0.75rem, 1vw, 1rem);
  border: 1px solid rgba(201, 126, 11, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.wwm-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.62rem, 0.9vw, 0.9rem);
}

.wwm-benefits li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 0.78rem;
  min-height: 64px;
  padding: 0.56rem 0.68rem;
  border: 1px solid rgba(201, 126, 11, 0.12);
  border-radius: 8px;
  color: #211b15;
  background: rgba(255, 252, 247, 0.64);
  box-shadow: 0 8px 20px rgba(84, 52, 4, 0.045);
  font-size: clamp(0.86rem, 0.92vw, 0.98rem);
  font-weight: 500;
  line-height: 1.3;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.wwm-benefits li:hover {
  transform: translateX(3px);
  border-color: rgba(201, 126, 11, 0.32);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 12px 26px rgba(84, 52, 4, 0.08);
}

.wwm-benefits img {
  width: 46px;
  height: 46px;
  padding: 0.42rem;
  border: 1px solid rgba(201, 126, 11, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.95), rgba(255, 247, 233, 0.72)),
    rgba(255, 250, 243, 0.86);
  object-fit: contain;
}

.wwm-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.88rem 1.05rem 0.88rem 1.28rem;
  border: 1px solid rgba(255, 222, 154, 0.42);
  border-radius: 8px;
  color: #fffaf3;
  background:
    linear-gradient(180deg, rgba(234, 168, 40, 0.96) 0%, rgba(179, 101, 0, 0.98) 100%),
    #bf7609;
  box-shadow:
    0 14px 24px rgba(154, 90, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-weight: 600;
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  white-space: nowrap;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.wwm-action span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.16);
}

.wwm-action:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(154, 90, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.wwm-closing {
  overflow: hidden;
  background: url("images/Work with me/sarvesh-mopkar-home-06.webp") center / cover no-repeat;
  border-top: 1px solid rgba(201, 126, 11, 0.18);
  border-bottom: 1px solid rgba(201, 126, 11, 0.14);
}

.wwm-closing__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: clamp(230px, 19vw, 320px);
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 4vw, 4.5rem);
}

.wwm-closing p {
  margin: 0;
  color: #2b2219;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.1vw, 2.35rem);
  line-height: 1.12;
  text-align: center;
}

.wwm-rule--center {
  display: none;
  margin-inline: auto;
}

.wwm-action--wide {
  min-width: min(280px, 100%);
}

@media (max-width: 1080px) {
  .wwm-card,
  .wwm-card--feature {
    grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  }

  .wwm-card__aside {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(201, 126, 11, 0.2);
  }

  .wwm-benefits {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .wwm-closing__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: clamp(260px, 34vw, 360px);
    padding-block: 2.4rem;
  }
}

@media (max-width: 760px) {
  .work-with-me-page {
    background:
      radial-gradient(circle at 50% 0%, rgba(214, 154, 38, 0.13), transparent 34%),
      linear-gradient(180deg, #fffaf3 0%, #f8efe4 52%, #fffaf5 100%);
  }

  .wwm-hero {
    min-height: 700px;
    align-items: start;
  }

  .wwm-hero__media {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.92) 0%, rgba(255, 250, 243, 0.44) 34%, rgba(255, 250, 243, 0) 72%),
      url("images/Work with me/ChatGPT Image May 9, 2026, 02_32_02 PM.png") 67% bottom / auto 65% no-repeat;
  }

  .wwm-hero__inner {
    padding-top: clamp(4rem, 15vw, 5.3rem);
    padding-inline: 1.15rem;
  }

  .wwm-hero__copy {
    width: 100%;
    padding-top: 0;
  }

  .wwm-eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .wwm-hero h1 {
    font-size: clamp(3.15rem, 14.2vw, 4.4rem);
    line-height: 0.9;
    max-width: 8.2ch;
  }

  .wwm-rule {
    width: 54px;
    margin: 1.9rem 0 1.25rem;
  }

  .wwm-hero p:not(.wwm-eyebrow) {
    width: min(100%, 350px);
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(196, 122, 8, 0.12);
    border-radius: 12px;
    background: rgba(255, 250, 243, 0.58);
    box-shadow: 0 14px 32px rgba(84, 52, 4, 0.08);
    backdrop-filter: blur(6px);
    font-size: 1rem;
    line-height: 1.65;
  }

  .wwm-offerings {
    margin-top: 0;
    padding-top: 1.15rem;
    padding-bottom: 1.4rem;
  }

  .wwm-offerings__inner {
    gap: 1.05rem;
    padding-inline: 0.82rem;
  }

  .wwm-card,
  .wwm-card--feature {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
    border-color: rgba(201, 126, 11, 0.2);
    box-shadow: 0 18px 38px rgba(76, 45, 4, 0.12);
  }

  .wwm-card--trader .wwm-card__content,
  .wwm-card--energy .wwm-card__content {
    order: 2;
  }

  .wwm-card--trader .wwm-card__image,
  .wwm-card--energy .wwm-card__image {
    order: 1;
  }

  .wwm-card__aside {
    order: 3;
    grid-template-columns: 1fr;
  }

  .wwm-card__image {
    min-height: 0;
    aspect-ratio: 16 / 10.5;
    border-bottom: 1px solid rgba(201, 126, 11, 0.1);
  }

  .wwm-card__image::after {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0) 58%, rgba(255, 250, 243, 0.9) 100%);
  }

  .wwm-card--trader .wwm-card__image::before,
  .wwm-card--energy .wwm-card__image::before {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0) 50%, rgba(255, 250, 243, 0.5) 100%);
  }

  .wwm-card__image--kuber img {
    padding: 0.85rem 0.85rem 0.25rem;
  }

  .wwm-card__heading {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
  }

  .wwm-card h2 {
    font-size: clamp(2.05rem, 8.6vw, 2.8rem);
    line-height: 0.96;
  }

  .wwm-card__content {
    padding: 1.25rem 1rem 1.18rem;
  }

  .wwm-card__content::before {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 126, 11, 0), rgba(201, 126, 11, 0.22), rgba(201, 126, 11, 0));
  }

  .wwm-card__content > p:first-of-type {
    max-width: none;
  }

  .wwm-bullets {
    gap: 0.5rem;
    margin-bottom: 0.95rem;
  }

  .wwm-bullets li {
    padding: 0.54rem 0.6rem 0.54rem 1.55rem;
    border: 1px solid rgba(201, 126, 11, 0.1);
    border-radius: 10px;
    background: rgba(255, 252, 247, 0.58);
  }

  .wwm-bullets li::before {
    left: 0.6rem;
    top: 1.05rem;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(196, 122, 8, 0.11);
  }

  .wwm-card__aside {
    padding: 1.05rem 0.9rem 1rem;
    border-top-color: rgba(201, 126, 11, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.84), rgba(250, 241, 228, 0.62)),
      radial-gradient(circle at 92% 4%, rgba(218, 149, 22, 0.14), transparent 36%);
  }

  .wwm-card__aside::before {
    inset: 0.55rem;
    border-radius: 12px;
  }

  .wwm-benefits {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .wwm-benefits li {
    grid-template-columns: 46px 1fr;
    min-height: 58px;
    padding: 0.48rem 0.58rem;
    border-radius: 12px;
  }

  .wwm-benefits img {
    width: 40px;
    height: 40px;
  }

  .wwm-action {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
  }

  .wwm-closing {
    background-position: center;
    background-size: cover;
  }

  .wwm-closing__inner {
    min-height: 330px;
    padding-inline: 1rem;
    padding-block: 2.2rem;
  }

  .wwm-closing p {
    font-size: clamp(1.58rem, 6.4vw, 2.12rem);
    line-height: 1.08;
    text-shadow: 0 1px 12px rgba(255, 250, 243, 0.72);
  }

  .wwm-rule--center {
    display: block;
    margin: 0.4rem auto 0;
  }
}

@media (max-width: 420px) {
  .wwm-hero {
    min-height: 670px;
  }

  .wwm-hero__media {
    background:
      linear-gradient(180deg, rgba(255, 250, 243, 0.92) 0%, rgba(255, 250, 243, 0.42) 34%, rgba(255, 250, 243, 0) 72%),
      url("images/Work with me/ChatGPT Image May 9, 2026, 02_32_02 PM.png") 67% bottom / auto 62% no-repeat;
  }

  .wwm-hero h1 {
    font-size: clamp(3rem, 13.4vw, 3.8rem);
  }

  .wwm-hero p:not(.wwm-eyebrow) {
    width: min(100%, 330px);
    padding: 0.75rem 0.82rem;
  }

  .wwm-offerings__inner {
    padding-inline: 0.7rem;
  }

  .wwm-card__heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .wwm-card__icon {
    width: 62px;
  }

  .wwm-card__content,
  .wwm-card__aside {
    padding-inline: 0.86rem;
  }

  .wwm-card__image {
    aspect-ratio: 15 / 10.8;
  }

  .wwm-benefits li {
    grid-template-columns: 42px 1fr;
    min-height: 54px;
    font-size: 0.9rem;
  }

  .wwm-benefits img {
    width: 38px;
    height: 38px;
  }

  .wwm-action {
    padding-inline: 1rem 0.78rem;
    font-size: 0.92rem;
  }

  .wwm-action span {
    width: 28px;
    height: 28px;
  }

  .wwm-closing__inner {
    min-height: 300px;
  }

  .wwm-hero p:not(.wwm-eyebrow) br,
  .wwm-closing p br {
    display: none;
  }
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 162, 74, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f8f0e5 100%);
}

.legal-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3.4rem);
}

.legal-hero__inner,
.legal-content__inner {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.legal-hero h1 {
  margin: 0 0 1rem;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  font-weight: 400;
}

.legal-hero p:not(.wwm-eyebrow) {
  margin: 0;
  color: #4d4238;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.legal-content {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.legal-content article {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(201, 126, 11, 0.18);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 18px 42px rgba(88, 55, 3, 0.09);
}

.legal-content h2 {
  margin: 1.4rem 0 0.55rem;
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 400;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: #342b23;
  line-height: 1.75;
}

.legal-content a,
.legal-page .footer__bottom a {
  color: #a76500;
  font-weight: 600;
}
