:root {
  --page-bg: #f7f5f1;
  --surface: #ffffff;
  --text: #222222;
  --soft: #5f5f5f;
  --accent: #9f1016;
  --dark: #171717;
  --yellow: #e7eb00;
  --pill-dark: rgba(14, 32, 36, 0.82);
  --content-max: 1400px;
  --page-gutter: clamp(16px, 2.5vw, 32px);
  --section-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

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

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

.service-page {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.95rem var(--section-inline);
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  width: 160px;
  height: 56px;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: #ffffff;
  flex-shrink: 0;
}

.top-logo {
  width: 140px;
  height: 50px;
}

.main-nav {
  flex: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, calc(100% - 420px));
  max-width: 800px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 3rem);
  border-radius: 999px;
  padding: 0 1.2rem;
  background: var(--pill-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.97rem;
  font-weight: 500;
  transition: color 220ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
}

.talk-btn {
  flex-shrink: 0;
  width: 196px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  background: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.talk-btn:hover,
.talk-btn:focus-visible {
  background: var(--yellow);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17, 17, 17, 0.14);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(15, 32, 36, 0.75);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 240ms ease, opacity 240ms ease;
}

.topbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
  padding: 4.2rem var(--section-inline);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head.centered {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  margin: 0.9rem auto 0;
  max-width: 62ch;
  color: var(--soft);
  line-height: 1.7;
}

.section-head span {
  display: inline-block;
  width: 42px;
  height: 2px;
  margin-top: 0.8rem;
  background: var(--accent);
}

.service-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding: 3rem var(--section-inline);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.46) 100%),
    url("./img/24.jpg") center center / cover no-repeat;
}

.hero-overlay {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 3rem;
  color: #ffffff;
}

.hero-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 228, 151, 0.95);
}

.service-hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.service-hero p {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.78;
}

.hero-cta {
  margin-top: 1.2rem;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-hero .social-rail {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-hero .social-rail a {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #ffe900;
  color: var(--accent);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.service-overview {
  padding-top: 3.2rem;
}

.overview-shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 1.4rem;
  align-items: stretch;
}

.overview-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(159, 16, 22, 0.14);
  background: #ffffff;
  padding: 0.5rem;
  box-shadow: 0 16px 28px rgba(88, 66, 24, 0.12);
}

.overview-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  object-fit: cover;
}

.overview-content {
  padding: 0.2rem 0;
}

.overview-content h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.3vw, 2.45rem);
  line-height: 1.14;
}

.overview-content p {
  margin: 0.9rem 0 0;
  color: var(--soft);
  line-height: 1.78;
}

.overview-cta {
  margin-top: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ba1f2d);
  color: #ffffff;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.overview-cta span {
  font-size: 1.05rem;
}

.audience-band {
  padding-top: 1.2rem;
}

.audience-shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(159, 16, 22, 0.12);
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 214, 10, 0.16), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(159, 16, 22, 0.08), transparent 32%),
    #ffffff;
  box-shadow: 0 20px 34px rgba(88, 66, 24, 0.1);
}

.audience-shell .section-head {
  margin-bottom: 1.5rem;
}

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

.audience-card {
  border-radius: 20px;
  border: 1px solid rgba(159, 16, 22, 0.12);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(88, 66, 24, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.audience-media {
  position: relative;
  overflow: hidden;
}

.audience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.audience-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms ease;
}

.audience-body {
  padding: 1rem 0.95rem 1.05rem;
}

.audience-body h3 {
  margin: 0;
  font-size: 1.1rem;
}

.audience-body p {
  margin: 0.55rem 0 0;
  color: var(--soft);
  line-height: 1.68;
  font-size: 0.92rem;
}

.home-design-band {
  position: relative;
  margin-top: 1.2rem;
  padding: 4.4rem var(--section-inline);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 214, 10, 0.2), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(159, 16, 22, 0.18), transparent 34%),
    linear-gradient(135deg, #fff7e8 0%, #f9f4eb 42%, #f6efe3 100%);
  overflow: hidden;
}

.home-design-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(159, 16, 22, 0.05) 0,
      rgba(159, 16, 22, 0.05) 1px,
      transparent 1px,
      transparent 96px
    );
  pointer-events: none;
}

.home-design-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.home-design-top {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1.3rem;
  align-items: stretch;
}

.home-design-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.1;
}

.home-design-copy p {
  margin: 1rem 0 0;
  max-width: 68ch;
  color: var(--soft);
  line-height: 1.85;
}

.home-design-hero {
  border-radius: 24px;
  border: 1px solid rgba(159, 16, 22, 0.16);
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(93, 68, 23, 0.15);
}

.home-design-hero img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.home-design-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-design-card {
  border-radius: 20px;
  border: 1px solid rgba(159, 16, 22, 0.14);
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(94, 70, 26, 0.12);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.home-design-media {
  position: relative;
  overflow: hidden;
}

.home-design-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.home-design-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 520ms ease;
}

.home-design-card h3 {
  margin: 0;
  padding: 0.95rem 0.95rem 0;
  font-size: 1.08rem;
}

.home-design-card p {
  margin: 0.55rem 0 0;
  padding: 0 0.95rem 1rem;
  color: var(--soft);
  line-height: 1.72;
  font-size: 0.92rem;
}

.home-design-bottom {
  margin-top: 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(159, 16, 22, 0.16);
  background: rgba(255, 255, 255, 0.88);
  padding: 1.3rem 1.2rem 1.35rem;
}

.home-design-bottom h3 {
  margin: 0;
  font-size: 1.2rem;
}

.home-type-chips {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-type-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(159, 16, 22, 0.08);
  border: 1px solid rgba(159, 16, 22, 0.16);
  color: #2a2a2a;
  font-size: 0.88rem;
  font-weight: 500;
}

.home-design-note {
  margin: 0.95rem 0 0;
  color: #2e2e2e;
  font-weight: 600;
}

.home-design-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ba1f2d);
  color: #ffffff;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.office-design-band {
  position: relative;
  margin-top: 1.2rem;
  padding: 4.2rem var(--section-inline) 4.4rem;
  background: transparent;
  overflow: visible;
}

.office-design-band::before {
  content: none;
}

.office-design-band::after {
  content: none;
}

.office-design-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.office-design-head {
  width: min(940px, 100%);
  margin: 0 auto 1.5rem;
  text-align: center;
}

.office-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.office-design-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.95rem);
  line-height: 1.12;
}

.office-design-head p {
  margin: 0.95rem 0 0;
  color: var(--soft);
  line-height: 1.82;
}

.office-fitout-row {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem 1rem;
  border-radius: 15px;
  padding: 10px 20px;
  background-color: rgb(247, 213, 219);
  border: 1px solid rgb(216, 157, 166);
}

.office-fitout-note {
  margin: auto;
  color: #000000;
  font-weight: 700;
  font-size: 20px;
}

.office-design-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #b51b27);
  color: #ffffff;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.office-service-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.45rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.office-service-grid::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(159, 16, 22, 0.05) 0%,
    rgba(159, 16, 22, 0.5) 20%,
    rgba(159, 16, 22, 0.5) 80%,
    rgba(159, 16, 22, 0.05) 100%
  );
  transform: translateX(-50%);
}

.office-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  align-items: center;
  gap: 1.1rem;
  width: min(560px, calc(50% - 2.5rem));
  padding: 0.2rem 0.15rem;
  transition:
    transform 240ms ease,
    filter 240ms ease,
    opacity 240ms ease;
}

.office-service-card::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff4f4;
  border: 2px solid rgba(159, 16, 22, 0.9);
}

.office-service-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 1px;
  top: 50%;
  background: linear-gradient(90deg, rgba(159, 16, 22, 0.65), rgba(159, 16, 22, 0.2));
}

.office-service-card:nth-child(odd) {
  justify-self: start;
}

.office-service-card:nth-child(odd)::before {
  right: -46px;
}

.office-service-card:nth-child(odd)::after {
  right: -34px;
  transform: translateY(-50%);
}

.office-service-card:nth-child(even) {
  justify-self: end;
  grid-template-columns: minmax(0, 1fr) 200px;
}

.office-service-card:nth-child(even)::before {
  left: -46px;
}

.office-service-card:nth-child(even)::after {
  left: -34px;
  transform: translateY(-50%) scaleX(-1);
}

.office-service-card:nth-child(even) .office-service-media {
  order: 2;
}

.office-service-card:nth-child(even) .office-service-content {
  text-align: right;
}

.office-service-media {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 140px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(84, 62, 23, 0.14);
}

.office-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.office-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.office-service-content {
  padding: 0;
  max-width: 66ch;
}

.office-service-content h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.office-service-content p {
  margin: 0.55rem 0 0;
  color: var(--soft);
  line-height: 1.74;
  font-size: 0.93rem;
}

.kitchen-design-band {
  position: relative;
  margin-top: 0.8rem;
  padding: 3.45rem var(--section-inline);
  /* background:
    radial-gradient(circle at 8% 12%, rgba(255, 214, 10, 0.15), transparent 28%),
    radial-gradient(circle at 89% 82%, rgba(159, 16, 22, 0.18), transparent 34%),
    linear-gradient(138deg, #fef9f2 0%, #f7efe4 45%, #f3e8dd 100%); */
  overflow: hidden;
}

.kitchen-design-band::before {
  content: "";
  position: absolute;
  inset: -15% -8% auto;
  height: 320px;
  /* background:
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 72%); */
  animation: kitchenGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.kitchen-design-band::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    repeating-linear-gradient(
      90deg,
      rgba(159, 16, 22, 0.04) 0,
      rgba(159, 16, 22, 0.04) 1px,
      transparent 1px,
      transparent 106px
    ); */
  pointer-events: none;
}

.kitchen-design-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.kitchen-design-head {
  width: min(960px, 100%);
  margin: auto;
}

.kitchen-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.kitchen-design-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  text-align: center;
}

.kitchen-design-head p {
  margin: 0.85rem 0 0;
  color: var(--soft);
  line-height: 1.78;
  max-width: 90ch;
  text-align: center;
  margin: auto;
  padding-top: 10px;
}

.kitchen-head-meta {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  
  justify-content: center;
}

.kitchen-head-meta span {
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  padding: 0.43rem 0.78rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #3b1a1c;
  border: 1px solid rgba(159, 16, 22, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.kitchen-story-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 0.85rem;
  align-items: start;
}

.kitchen-story-card {
  border-radius: 22px;
  border: 1px solid rgba(159, 16, 22, 0.16);
  background:
    linear-gradient(158deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: 0 14px 26px rgba(90, 66, 24, 0.12);
  padding: 1.15rem 1.1rem 1.2rem;
}

.kitchen-story-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.3;
}

.kitchen-story-card p {
  margin: 0.75rem 0 0;
  color: var(--soft);
  line-height: 1.69;
}

.kitchen-flow-list {
  margin: 0.85rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.kitchen-flow-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #3b3b3b;
  line-height: 1.54;
  font-size: 0.9rem;
}

.kitchen-flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(140deg, #d62d34, #8f0f14);
  box-shadow: 0 0 0 4px rgba(159, 16, 22, 0.14);
}

.kitchen-story-media {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  min-height: 248px;
  height: 248px;
}

.kitchen-story-media figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(159, 16, 22, 0.2);
  box-shadow: 0 10px 20px rgba(88, 66, 24, 0.14);
  transform: translateZ(0);
}

.kitchen-story-main {
  grid-row: 1 / span 2;
  animation: kitchenFloat 8s ease-in-out infinite;
}

.kitchen-story-side.top {
  grid-row: 1;
  animation: kitchenFloat 8s ease-in-out infinite 0.8s;
}

.kitchen-story-side.bottom {
  grid-row: 2;
  animation: kitchenFloat 8s ease-in-out infinite 1.4s;
}

.kitchen-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.kitchen-layouts-wrap {
  margin-top: 1.25rem;
}

.kitchen-layouts-head h3,
.kitchen-fittings-head h3 {
  margin: 0;
  font-size: clamp(1.34rem, 2.2vw, 1.85rem);
}

.kitchen-layout-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.76rem;
}

.kitchen-layout-card {
  border-radius: 17px;
  overflow: hidden;
  border: 1px solid rgba(159, 16, 22, 0.15);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 18px rgba(88, 66, 24, 0.11);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.kitchen-layout-media {
  position: relative;
  overflow: hidden;
}

.kitchen-layout-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.kitchen-layout-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 500ms ease;
}

.kitchen-layout-card h4 {
  margin: 0;
  padding: 0.78rem 0.84rem 0;
  font-size: 1.02rem;
}

.kitchen-layout-card p {
  margin: 0.48rem 0 0;
  padding: 0 0.84rem 0.86rem;
  color: var(--soft);
  line-height: 1.62;
  font-size: 0.88rem;
}

.kitchen-fittings-wrap {
  margin-top: 2.8rem;
}

.kitchen-fittings-grid {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.kitchen-fit-card {
  border-radius: 15px;
  border: 1px solid rgba(159, 16, 22, 0.15);
  background: rgba(255, 255, 255, 0.94);
  padding: 0.8rem 0.78rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 0.68rem;
  box-shadow: 0 8px 16px rgba(88, 66, 24, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.kitchen-fit-card > span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(159, 16, 22, 0.12), rgba(159, 16, 22, 0.2));
  color: var(--accent);
  font-size: 0.9rem;
}

.kitchen-fit-card h4 {
  margin: 0;
  font-size: 0.96rem;
}

.kitchen-fit-card p {
  margin: 0.34rem 0 0;
  color: var(--soft);
  line-height: 1.57;
  font-size: 0.86rem;
}

.kitchen-proof-cta {
  margin-top: 1.4rem;
  border-radius: 20px;
  padding: 1.12rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  align-items: stretch;
  gap: 0.95rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(132deg, #941016, #6f0c11);
  box-shadow: 0 16px 28px rgba(78, 10, 15, 0.24);
  overflow: hidden;
}

.kitchen-proof-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 244, 227, 0.95);
}

.kitchen-proof-copy h3 {
  margin: 0.44rem 0 0;
  font-size: clamp(1.16rem, 2.2vw, 1.5rem);
  line-height: 1.25;
}

.kitchen-proof-points {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.kitchen-proof-points article {
  min-height: 86px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.62rem 0.58rem;
  display: grid;
  gap: 0.38rem;
  align-content: start;
  transition: transform 220ms ease, background-color 220ms ease;
}

.kitchen-proof-points i {
  font-size: 0.95rem;
  color: #ffe8be;
}

.kitchen-proof-points span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
}

.kitchen-proof-action {
  border-radius: 14px;
  padding: 0.95rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  display: grid;
  align-content: center;
  gap: 0.72rem;
}

.kitchen-proof-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.6;
  font-size: 0.9rem;
}

.kitchen-design-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.74rem 1.16rem;
  background: linear-gradient(135deg, #ffffff, #fff2df);
  color: #1f1b16;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@keyframes kitchenGlow {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(12px) scale(1.06);
    opacity: 0.95;
  }
}

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

.furniture-design-band {
  position: relative;
  margin-top: 0.95rem;
  padding: 3.6rem var(--section-inline);
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 235, 0, 0.08), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(187, 40, 44, 0.22), transparent 34%),
    linear-gradient(130deg, #1c1c1a 0%, #121210 52%, #0f0f0d 100%);
  overflow: hidden;
}

.furniture-design-band::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 84px
    ); */
  pointer-events: none;
}

.furniture-design-band::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 214, 120, 0.2) 0%, rgba(255, 214, 120, 0) 70%);
  animation: furnitureAura 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.furniture-design-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.furniture-design-head {
  width: min(1000px, 100%);
  margin: auto;
}

.furniture-kicker {
  margin: 0 0 0.55rem;
  color: #f2d08d;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.furniture-design-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.08;
  text-align: center;
}

.furniture-design-head p {
  margin: 0.9rem 0 0;
  max-width: 82ch;
  color: rgba(242, 242, 232, 0.84);
  line-height: 1.78;
  margin: auto;
  text-align: center;
  padding-top: 10px;
}

.furniture-feature-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 0.9rem;
  align-items: start;
}

.furniture-wardrobe-panel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);
  padding: 1.05rem 1rem 1.08rem;
}

.furniture-wardrobe-panel h3 {
  margin: 0;
  color: #fff7e3;
  font-size: 1.32rem;
}

.furniture-wardrobe-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.furniture-wardrobe-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.72rem 0.7rem;
}

.furniture-wardrobe-item h4 {
  margin: 0;
  color: #ffe4ad;
  font-size: 0.96rem;
  line-height: 1.35;
}

.furniture-wardrobe-item p {
  margin: 0.42rem 0 0;
  color: rgba(235, 235, 225, 0.82);
  line-height: 1.55;
  font-size: 0.84rem;
}

.furniture-media-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  min-height: 385px;
  height: 260px;
}

.furniture-media-panel figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.furniture-media-main {
  grid-row: 1 / span 2;
  animation: furnitureFloat 8s ease-in-out infinite;
}

.furniture-media-side.top {
  grid-row: 1;
  animation: furnitureFloat 8s ease-in-out infinite 0.7s;
}

.furniture-media-side.bottom {
  grid-row: 2;
  animation: furnitureFloat 8s ease-in-out infinite 1.2s;
}

.furniture-media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.furniture-build-wrap {
  margin-top: 1.2rem;
}

.furniture-build-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.25vw, 1.82rem);
}

.furniture-build-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.furniture-build-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  min-height: 54px;
  padding: 0.6rem 0.62rem;
  display: flex;
  align-items: center;
  gap: 0.48rem;
  color: rgba(247, 247, 238, 0.95);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
    cursor: pointer;
}

.furniture-build-item i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 228, 151, 0.18);
  color: #f7d59b;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.furniture-build-item span {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.furniture-cta-box {
  margin-top: 1.18rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 227, 170, 0.34);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.28), transparent 35%),
    linear-gradient(130deg, #f0d39a, #dcb978);
  padding: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 0.9rem;
}

.furniture-cta-box p {
  margin: 0;
  color: #2a2012;
  font-size: 0.95rem;
  font-weight: 600;
}

.furniture-cta-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #171717, #0f0f0f);
  color: #fff4dd;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

@keyframes furnitureAura {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.architect-design-band {
  position: relative;
  margin-top: 0.95rem;
  padding: 3.5rem var(--section-inline);
  /* background:
    radial-gradient(circle at 10% 10%, rgba(98, 219, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(31, 146, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #0e1d2d 0%, #0a1521 55%, #08111b 100%); */
  overflow: hidden;
}

.architect-design-band::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
    repeating-linear-gradient(
      90deg,
      rgba(133, 181, 223, 0.12) 0,
      rgba(133, 181, 223, 0.12) 1px,
      transparent 1px,
      transparent 76px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(133, 181, 223, 0.1) 0,
      rgba(133, 181, 223, 0.1) 1px,
      transparent 1px,
      transparent 76px
    ); */
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 88%);
  pointer-events: none;
}

.architect-design-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  left: -90px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(117, 246, 255, 0.25) 0%, rgba(117, 246, 255, 0) 72%);
  animation: architectPulse 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.architect-design-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.architect-design-head {
  width: min(900px, 100%);
  margin: auto;
}

.architect-kicker {
  margin: 0 0 0.55rem;
  color: #447c88;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.architect-design-head h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(1.85rem, 3.45vw, 2.9rem);
  line-height: 1.08;
  text-align: center;
}

.architect-design-head p {
  margin: 0.9rem 0 0;
  max-width: 90ch;
  color: rgba(44, 47, 49, 0.86);
  line-height: 1.78;
  text-align: center;
}

.architect-creative-layout {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 0.95rem;
  align-items: start;
}

.architect-visual-panel {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(154, 207, 245, 0.32);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 0.7rem;
}

.architect-visual-panel::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 14px;
  border: 1px dashed rgba(91, 115, 129, 0.28);
  pointer-events: none;
}

.architect-hero-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(42, 55, 65, 0.34);
}

.architect-hero-media img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.architect-float-note {
  position: absolute;
  min-width: 128px;
  border-radius: 11px;
  border: 1px solid rgba(168, 223, 255, 0.42);
  background: rgba(6, 19, 31, 0.78);
  padding: 0.45rem 0.52rem;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
  animation: architectNoteFloat 7s ease-in-out infinite;
}

.architect-float-note.one {
  left: -8px;
  top: 18px;
}

.architect-float-note.two {
  right: -8px;
  top: 46%;
  animation-delay: 1s;
}

.architect-float-note span {
  display: block;
  color: #91e6ff;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.architect-float-note strong {
  display: block;
  margin-top: 0.12rem;
  color: #f2fbff;
  font-size: 0.78rem;
  line-height: 1.2;
}

.architect-thumb-row {
  margin-top: 0.56rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}

.architect-thumb-row figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(76, 88, 95, 0.33);
}

.architect-thumb-row img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.architect-timeline {
  position: relative;
  display: grid;
  gap: 0.62rem;
  padding-left: 0.95rem;
}

.architect-timeline::before {
  content: "";
  position: absolute;
  left: 0.16rem;
  top: 0.28rem;
  bottom: 0.28rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(131, 232, 255, 0.3), rgba(131, 232, 255, 0.88), rgba(131, 232, 255, 0.3));
}

.architect-timeline-item {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(87, 101, 112, 0.3);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.72rem 0.72rem 0.78rem 2.6rem;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.architect-step {
  position: absolute;
  left: -0.67rem;
  top: 0.76rem;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #8be7ff, #61c6f2);
  color: #0b1b28;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(107, 197, 236, 0.2);
}

.architect-timeline-item h3 {
  margin: 0;
  color: #113b5e;
  font-size: 1.4rem;
  line-height: 1.38;
}

.architect-timeline-item p {
  margin: 0.42rem 0 0;
  color: rgba(64, 70, 73, 0.84);
  line-height: 1.55;
  font-size: 1rem;
}

.architect-cta-box {
  margin-top: 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(125, 226, 255, 0.34);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(125deg, rgba(196, 224, 233, 0.72), rgba(210, 227, 240, 0.7));
  padding: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem 0.9rem;
}

.architect-cta-box p {
  margin: 0;
  color: #242727;
  font-size: 0.93rem;
  font-weight: 600;
}

.architect-cta-btn {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.08rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #08131e, #0c1e30);
  color: #dff8ff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

@keyframes architectPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.project-types-band {
  padding: 3rem var(--section-inline) 2.2rem;
}

.project-types-shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(154, 199, 224, 0.34);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(236, 247, 255, 0.72), rgba(247, 244, 240, 0.86));
  padding: 1.05rem;
}

.project-types-head {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.project-types-head h2 {
  margin: 0;
  color: #091624;
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.12;
}

.project-types-head p {
  margin: 0.82rem auto 0;
  max-width: 74ch;
  color: rgba(36, 41, 45, 0.86);
  line-height: 1.7;
}

.project-types-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.project-type-item {
  border-radius: 16px;
  border: 1px solid rgba(126, 156, 180, 0.28);
  background: rgba(255, 255, 255, 0.82);
  min-height: 72px;
  padding: 0.72rem 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-type-item span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1a2d40, #244865);
  color: #f2f8ff;
  font-size: 0.74rem;
  font-weight: 700;
}

.project-type-item h3 {
  margin: 0;
  color: #142132;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.delivery-flow-band {
  padding: 0.85rem var(--section-inline) 3rem;
}

.delivery-flow-shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.delivery-flow-head {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.delivery-flow-head h2 {
  margin: 0;
  color: #11171e;
  font-size: clamp(1.75rem, 3.15vw, 2.5rem);
  line-height: 1.14;
}

.delivery-flow-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.delivery-flow-item {
  border-radius: 18px;
  border: 1px solid rgba(133, 169, 196, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 255, 0.86));
  min-height: 186px;
  padding: 0.9rem 0.88rem 0.95rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.delivery-flow-step {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(150deg, #16283a, #295476);
  color: #eaf5ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.delivery-flow-item h3 {
  margin: 0.7rem 0 0;
  color: #152334;
  font-size: 1.15rem;
  line-height: 1.32;
}

.delivery-flow-item p {
  margin: 0.55rem 0 0;
  color: rgba(37, 42, 47, 0.86);
  line-height: 1.64;
  font-size: 0.95rem;
}

.intro-shell {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 1.6rem;
  align-items: center;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.intro-stat {
  border-radius: 18px;
  border: 1px solid rgba(159, 16, 22, 0.12);
  background: #ffffff;
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(92, 70, 29, 0.1);
}

.intro-stat h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.6rem;
}

.intro-stat p {
  margin: 0.35rem 0 0;
  color: var(--soft);
  font-size: 0.9rem;
}

.catalog-grid {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  border-radius: 22px;
  border: 1px solid rgba(159, 16, 22, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.3rem 1.2rem 1.35rem;
  box-shadow: 0 14px 24px rgba(88, 66, 24, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(159, 16, 22, 0.1);
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0.65rem 0 0;
  color: var(--soft);
  line-height: 1.72;
  font-size: 0.95rem;
}

.service-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
  color: var(--text);
  display: grid;
  gap: 0.38rem;
}

.service-card li {
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-process .section-head {
  max-width: var(--content-max);
  margin-inline: auto;
}

.process-grid {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  background: #ffffff;
  border: 1px solid rgba(159, 16, 22, 0.12);
  border-radius: 20px;
  padding: 1.1rem 1rem;
  box-shadow: 0 12px 22px rgba(90, 68, 27, 0.1);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8ce60, #eeb32a);
  color: #2a1d00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0.55rem 0 0;
  color: var(--soft);
  line-height: 1.68;
  font-size: 0.92rem;
}

.service-faq .section-head {
  max-width: var(--content-max);
  margin-inline: auto;
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(159, 16, 22, 0.14);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1rem 1.1rem;
  color: #1f1f1f;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-question i {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--accent);
  background: rgba(159, 16, 22, 0.09);
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.32, 0.72, 0, 1);
}

.faq-answer p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--soft);
  line-height: 1.72;
}

.faq-item.is-open {
  border-color: rgba(159, 16, 22, 0.28);
  box-shadow: 0 14px 24px rgba(86, 22, 28, 0.12);
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
  background: var(--accent);
  color: #ffffff;
}

.service-cta {
  padding: 4rem var(--section-inline);
}

.service-cta-card {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  border-radius: 30px;
  padding: 2.4rem 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(120deg, #9f1016, #7a0d12);
  color: #ffffff;
}

.service-cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-cta-card p {
  margin: 0.8rem auto 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.service-cta-card a {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f0f0f;
  font-weight: 700;
}

.footer {
  background: #1f1f1f;
  padding: 80px var(--section-inline);
  color: #ffffff;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer .f-col img {
  width: 160px;
  margin-bottom: 0.9rem;
  filter: brightness(0) invert(1);
}

.footer .f-col h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 22px;
}

.footer p {
  font-size: 16px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.footer p:hover {
  color: #ffffff;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .home-design-card:hover {
    transform: translateY(-6px);
    border-color: rgba(159, 16, 22, 0.28);
    box-shadow: 0 20px 32px rgba(94, 70, 26, 0.18);
  }

  .home-design-card:hover .home-design-media img {
    transform: scale(1.07);
  }

  .home-design-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(159, 16, 22, 0.28);
  }

  .office-service-card:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 10px 18px rgba(94, 68, 24, 0.14));
  }

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

  .office-design-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(159, 16, 22, 0.28);
  }

  .kitchen-story-media:hover img {
    transform: scale(1.05);
  }

  .kitchen-layout-card:hover {
    transform: translateY(-6px);
    border-color: rgba(159, 16, 22, 0.26);
    box-shadow: 0 20px 34px rgba(88, 66, 24, 0.16);
  }

  .kitchen-layout-card:hover .kitchen-layout-media img {
    transform: scale(1.08);
  }

  .kitchen-fit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(159, 16, 22, 0.24);
    box-shadow: 0 18px 30px rgba(88, 66, 24, 0.14);
  }

  .kitchen-proof-points article:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
  }

  .kitchen-design-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(8, 8, 8, 0.22);
  }

  .furniture-media-panel:hover img {
    transform: scale(1.06);
  }

  .furniture-wardrobe-item:hover {
    border-color: rgba(255, 232, 184, 0.4);
    background: rgba(255, 255, 255, 0.09);
  }

  .furniture-build-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 228, 151, 0.42);
    background: rgba(255, 255, 255, 0.1);
  }

  .furniture-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }

  .architect-visual-panel:hover .architect-hero-media img,
  .architect-visual-panel:hover .architect-thumb-row img {
    transform: scale(1.06);
  }

  .architect-timeline-item:hover {
    transform: translateY(-4px);
    border-color: rgba(145, 223, 255, 0.52);
    background: rgba(255, 255, 255, 0.11);
  }

  .architect-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.34);
  }

  .project-type-item:hover {
    transform: translateY(-4px);
    border-color: rgba(120, 170, 203, 0.5);
    box-shadow: 0 16px 28px rgba(30, 57, 80, 0.13);
  }

  .delivery-flow-item:hover {
    transform: translateY(-4px);
    border-color: rgba(121, 164, 194, 0.52);
    box-shadow: 0 18px 28px rgba(30, 52, 73, 0.14);
  }

  .audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(159, 16, 22, 0.24);
    box-shadow: 0 18px 30px rgba(88, 66, 24, 0.16);
  }

  .audience-card:hover .audience-media img {
    transform: scale(1.08);
  }

  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(159, 16, 22, 0.26);
    box-shadow: 0 22px 34px rgba(88, 66, 24, 0.16);
  }

  .overview-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(159, 16, 22, 0.28);
  }

  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  }

  .process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(88, 66, 24, 0.14);
  }

  .faq-item:hover {
    border-color: rgba(159, 16, 22, 0.24);
    box-shadow: 0 14px 24px rgba(86, 22, 28, 0.1);
  }

  .service-cta-card a:hover,
  .talk-btn:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 1100px) {
  .home-design-top,
  .intro-shell,
  .audience-grid,
  .catalog-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-design-top {
    grid-template-columns: 1fr;
  }

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

  .kitchen-story-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-story-media {
    min-height: 226px;
    height: 226px;
  }

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

  .kitchen-proof-cta {
    grid-template-columns: 1fr;
  }

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

  .furniture-feature-grid {
    grid-template-columns: 1fr;
  }

  .furniture-media-panel {
    min-height: 236px;
    height: 236px;
  }

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

  .architect-creative-layout {
    grid-template-columns: 1fr;
  }

  .architect-visual-panel {
    width: min(620px, 100%);
  }

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

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

  .office-design-head {
    margin-bottom: 1.2rem;
  }

  .office-service-grid::before {
    display: none;
  }

  .office-service-card {
    gap: 0.85rem;
    width: 100%;
  }

  .office-service-card::before,
  .office-service-card::after {
    display: none;
  }

  .overview-shell {
    grid-template-columns: 1fr;
  }

  .overview-media img {
    min-height: 320px;
  }

  .audience-shell {
    padding: 1.6rem;
  }

  .home-design-hero img {
    min-height: 280px;
  }

  .intro-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.8rem;
    border-radius: 18px;
    width: auto;
    max-width: none;
    height: auto;
    justify-content: flex-start;
    background: rgba(15, 32, 36, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 260ms ease;
  }

  .topbar.menu-open .main-nav {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
  }

  .main-nav a.active {
    color: #101010;
    background: var(--yellow);
  }

  .talk-btn {
    display: none;
  }

  .topbar {
    padding: 0.85rem 1rem;
  }

  .service-hero {
    min-height: 370px;
    padding: 2rem 1.2rem;
  }

  .hero-overlay {
    padding-left: 0;
  }

  .service-hero .social-rail {
    left: 0.75rem;
  }

  .section-pad,
  .service-cta,
  .footer {
    padding-inline: 1.2rem;
  }

  .service-overview {
    padding-top: 2.4rem;
  }

  .home-design-band {
    margin-top: 0.9rem;
    padding: 3rem 1.2rem;
  }

  .kitchen-design-band {
    padding: 2.7rem 1.2rem;
  }

  .furniture-design-band {
    padding: 2.9rem 1.2rem;
  }

  .architect-design-band {
    padding: 2.9rem 1.2rem;
  }

  .project-types-band {
    padding: 2.7rem 1.2rem 2rem;
  }

  .delivery-flow-band {
    padding: 0.75rem 1.2rem 2.7rem;
  }

  .office-design-band {
    padding: 3rem 1.2rem;
  }

  .kitchen-story-card {
    padding: 1rem 0.92rem 1.04rem;
  }

  .kitchen-layout-grid {
    gap: 0.68rem;
  }

  .kitchen-fittings-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-proof-cta {
    gap: 0.78rem;
  }

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

  .furniture-wardrobe-list {
    grid-template-columns: 1fr;
  }

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

  .furniture-cta-box {
    padding: 0.84rem;
  }

  .architect-timeline {
    gap: 0.56rem;
  }

  .architect-cta-box {
    padding: 0.82rem;
  }

  .office-service-card {
    width: 100%;
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .office-service-card::before {
    display: none;
  }

  .office-service-card::after {
    display: none;
  }

  .office-service-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

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

  .home-design-bottom {
    padding: 1.1rem 1rem 1.2rem;
  }

  .audience-band {
    padding-top: 0.8rem;
  }

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

  .audience-shell {
    padding: 1.3rem;
    border-radius: 24px;
  }

  .overview-content {
    padding: 0;
  }

  .section-head h2,
  .overview-content h2,
  .home-design-copy h2,
  .office-design-head h2,
  .kitchen-design-head h2,
  .furniture-design-head h2,
  .architect-design-head h2,
  .project-types-head h2,
  .delivery-flow-head h2,
  .service-cta-card h2 {
    max-width: none;
    line-height: 1.2;
    text-wrap: balance;
  }

  .hero-cta,
  .overview-cta,
  .home-design-cta,
  .office-design-cta,
  .kitchen-design-cta,
  .furniture-cta-btn,
  .architect-cta-btn,
  .service-cta-card a {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .overview-media {
    border-radius: 20px;
  }

  .catalog-grid,
  .process-grid,
  .intro-stats,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .service-cta-card {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 620px) {
  .brand-pill {
    width: 144px;
    height: 52px;
    padding: 0 0.45rem;
  }

  .top-logo {
    width: 118px;
    height: 42px;
  }

  .main-nav {
    left: 0.85rem;
    right: 0.85rem;
    padding: 0.65rem;
    border-radius: 14px;
  }

  .main-nav a {
    font-size: 0.95rem;
    white-space: normal;
  }

  .service-hero {
    min-height: 320px;
    padding: 1.4rem 1rem 1.8rem;
  }

  .service-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.22;
    text-align: center;
  }
  .overview-content h2{
    text-align: center;
  }
  .overview-content p{
    text-align: justify;
  }

  .service-hero .social-rail {
    top: auto;
    bottom: 1rem;
    transform: none;
    flex-direction: row;
  }

  .overview-media img {
    min-height: 240px;
  }

  .home-design-band {
    padding: 2.4rem 1rem;
  }
  .home-design-copy h2 {
    text-align:center;
  }
  .home-design-copy p{
    text-align: justify;
  }

  .home-type-chips {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
   
  }

  .home-type-chips span {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
     text-align: center;
  }

  .home-design-cta {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .kitchen-design-band {
    padding: 2.15rem 1rem;
  }

  .furniture-design-band {
    padding: 2.2rem 1rem;
  }

  .architect-design-band {
    padding: 2.2rem 1rem;
  }

  .project-types-band {
    padding: 2.1rem 1rem 1.8rem;
  }

  .delivery-flow-band {
    padding: 0.65rem 1rem 2.25rem;
  }

  .office-design-band {
    padding: 2rem 1rem;
  }

  .kitchen-design-head h2 {
    font-size: clamp(1.48rem, 7.2vw, 1.95rem);
    
  }
   .kitchen-design-head p {
    text-align: justify;
   }

  .furniture-design-head h2 {
    font-size: clamp(1.45rem, 7.4vw, 2rem);
  }

   .furniture-design-head p{
    text-align: justify;
   }

  .architect-design-head h2 {
    font-size: clamp(1.45rem, 7.4vw, 1.96rem);
  }
  .architect-design-head p{
    text-align: justify;
  }

  .project-types-head h2 {
    font-size: clamp(1.42rem, 7vw, 1.88rem);
  }

  .delivery-flow-head h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.82rem);
  }

  .project-types-grid {
    grid-template-columns: 1fr;
  }

  .delivery-flow-grid {
    grid-template-columns: 1fr;
  }

  .project-type-item {
    min-height: 66px;
    padding: 0.64rem 0.68rem;
  }

  .delivery-flow-item {
    min-height: 0;
    padding: 0.78rem 0.74rem 0.82rem;
  }

  .delivery-flow-item h3 {
    font-size: 1.02rem;
  }

  .delivery-flow-item p {
    font-size: 0.9rem;
  }

  .kitchen-story-media {
    min-height: auto;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 164px 92px;
  }

  .kitchen-story-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .kitchen-story-side.top {
    grid-column: 1;
    grid-row: 2;
  }

  .kitchen-story-side.bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .furniture-media-panel {
    min-height: auto;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 172px 96px;
  }

  .furniture-media-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .furniture-media-side.top {
    grid-column: 1;
    grid-row: 2;
  }

  .furniture-media-side.bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .architect-visual-panel {
    padding: 0.56rem;
  }

  .architect-hero-media img {
    height: 214px;
  }

  .architect-float-note {
    min-width: 108px;
    padding: 0.4rem 0.44rem;
  }

  .architect-float-note.one {
    left: -4px;
    top: 14px;
  }

  .architect-float-note.two {
    right: -4px;
    top: 44%;
  }

  .architect-thumb-row img {
    height: 74px;
  }

  .architect-timeline {
    padding-left: 0.72rem;
    gap: 0.5rem;
  }

  .architect-timeline-item {
    padding: 0.66rem 0.64rem 0.7rem 2.3rem;
  }

  .architect-step {
    left: -0.56rem;
    top: 0.66rem;
    width: 30px;
    height: 30px;
  }

  .kitchen-layout-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-fit-card {
    padding: 0.78rem 0.7rem;
  }

  .kitchen-proof-copy h3 {
    font-size: 1.08rem;
  }

  .kitchen-proof-points {
    grid-template-columns: 1fr;
  }

  .kitchen-proof-points article {
    min-height: 74px;
  }

  .kitchen-proof-points span,
  .kitchen-proof-action p {
    font-size: 0.86rem;
  }

  .kitchen-design-cta {
    width: 100%;
  }

  .furniture-build-grid {
    grid-template-columns: 1fr;
  }

  .furniture-build-item {
    min-height: 48px;
  }

  .furniture-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .furniture-cta-btn {
    width: 100%;
  }

  .architect-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .architect-cta-btn {
    width: 100%;
  }

  .home-design-grid {
    grid-template-columns: 1fr;
  }

  .office-design-head {
    margin-bottom: 1rem;
  }

  .office-design-head h2 {
    font-size: clamp(1.45rem, 7.4vw, 1.95rem);
  }

  .office-fitout-row {
    justify-content: center;
  }

  .office-service-grid::before {
    display: none;
  }

  .office-service-card {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0;
  }

  .office-service-media {
    margin: 0 auto;
    width: 200px;
    height: 140px;
  }

  .office-service-card:nth-child(even) .office-service-media {
    order: 0;
  }

  .office-service-card:nth-child(even) .office-service-content {
    text-align: left;
  }

  .office-service-content {
    padding: 0;
  }

  .office-service-content p {
    font-size: 0.9rem;
  }

  .home-design-hero img {
    min-height: 230px;
  }

  .home-design-copy h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .home-design-copy p,
  .home-design-card p {
    font-size: 0.9rem;
  }

  .home-type-chips span {
    font-size: 0.84rem;
  }

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

  .audience-shell {
    padding: 1rem 0.9rem;
    border-radius: 20px;
  }

  .audience-body {
    padding: 0.9rem 0.82rem 0.95rem;
  }

  .audience-body p {
    font-size: 0.9rem;
  }

  .overview-content h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.22;
  }

  .overview-content p {
    font-size: 0.94rem;
  }

  .audience-body h3,
  .home-design-card h3,
  .office-service-content h3,
  .project-type-item h3,
  .delivery-flow-item h3 {
    line-height: 1.28;
    text-wrap: balance;
  }

  .section-pad {
    padding: 3rem 1rem;
  }

  .service-card,
  .process-step,
  .faq-question {
    border-radius: 16px;
  }

  .faq-answer p {
    padding: 0 0.85rem 0.9rem;
    font-size: 0.92rem;
  }

  .service-cta {
    padding: 3rem 1rem;
  }

  .footer {
    padding: 44px 16px 24px;
  }

  .footer h4 {
    font-size: 1.1rem;
  }

  .footer p,
  .copyright {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .home-design-card,
  .home-design-media img,
  .home-design-cta,
  .office-service-card,
  .office-service-media img,
  .office-design-cta,
  .kitchen-design-band::before,
  .kitchen-story-media figure,
  .kitchen-story-media img,
  .kitchen-layout-card,
  .kitchen-layout-media img,
  .kitchen-fit-card,
  .kitchen-proof-points article,
  .kitchen-design-cta,
  .furniture-design-band::after,
  .furniture-media-panel figure,
  .furniture-media-panel img,
  .furniture-build-item,
  .furniture-cta-btn,
  .architect-design-band::after,
  .architect-float-note,
  .architect-hero-media img,
  .architect-thumb-row img,
  .architect-timeline-item,
  .architect-cta-btn,
  .delivery-flow-item,
  .audience-card,
  .audience-media img,
  .service-card,
  .process-step,
  .faq-item,
  .faq-question i,
  .faq-answer,
  .overview-cta,
  .service-cta-card a,
  .talk-btn,
  .main-nav {
    transition: none;
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
  }
}





@media (max-width: 768px) {

  .office-service-grid::before {
    display: none;
  }

  .office-service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .office-service-card {
    width: 100% !important;
    grid-template-columns: 160px minmax(0, 1fr) !important;
    justify-self: stretch !important;
  }

  .office-service-card::before,
  .office-service-card::after {
    display: none;
  }

  .office-service-card:nth-child(even) {
    grid-template-columns: 160px minmax(0, 1fr) !important;
  }

  .office-service-card:nth-child(even) .office-service-media {
    order: unset;
  }

  .office-service-card:nth-child(even) .office-service-content {
    text-align: left;
  }

  .office-service-media {
    width: 160px;
    height: 120px;
  }
}

/* ── Mobile: 480px and below ── */
@media (max-width: 480px) {

  .office-design-band {
    padding: 2.5rem 1rem 2.8rem;
  }

  .office-service-card {
    grid-template-columns: 1fr !important;
  }

  .office-service-card:nth-child(even) {
    grid-template-columns: 1fr !important;
  }

  .office-service-media {
    width: 100%;
    height: 200px;
  }

  .office-fitout-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .office-design-head h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
}
