:root {
  --ink: #14110d;
  --graphite: #202a2e;
  --slate: #334247;
  --mist: #d8d2c3;
  --limewash: #f4ead8;
  --paper: #fff8ec;
  --clay: #a9472b;
  --tile: #cf6b3c;
  --brass: #d0a436;
  --moss: #62735b;
  --whatsapp: #16a75b;
  --max: 1180px;
  --edge: clamp(18px, 4vw, 54px);
  --shadow-low: 0 18px 50px rgba(20, 17, 13, 0.16);
  --shadow-high: 0 34px 90px rgba(20, 17, 13, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", serif;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, #f8efe0 0%, #eee3d0 42%, #d9d0bf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0 22px,
      rgba(169, 71, 43, 0.08) 22px 24px,
      transparent 24px 58px
    );
}

body.loading-site {
  overflow-x: hidden;
}

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

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

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 100vh;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(22, 17, 13, 0.94), rgba(43, 58, 61, 0.9)),
    var(--graphite);
  contain: paint;
  isolation: isolate;
  transform: translateZ(0);
  will-change: opacity;
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 640ms;
}

.site-ready .site-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-ready .preloader-mark,
.site-ready .preloader-text,
.site-ready .preloader-line {
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms ease;
}

body.loading-site .site-header,
body.loading-site .hero-media,
body.loading-site .hero-content,
body.loading-site .mysuru-badge,
body.loading-site .whatsapp-float {
  animation-play-state: paused;
}

body.loading-site .site-header,
body.loading-site .hero-content,
body.loading-site .mysuru-badge,
body.loading-site .whatsapp-float {
  opacity: 1;
}

.preloader-mark {
  position: relative;
  width: 132px;
  height: 104px;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(208, 164, 54, 0.34);
  border-radius: 2px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.roof-loader {
  width: 104px;
  height: 80px;
  overflow: visible;
}

.roof-loader path {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.roof-shadow {
  stroke: rgba(255, 248, 236, 0.14);
  stroke-width: 18;
}

.roof-outline,
.roof-base {
  stroke: var(--brass);
  stroke-width: 7;
  filter: drop-shadow(0 0 10px rgba(208, 164, 54, 0.24));
}

.roof-outline {
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation: drawRoofStroke 1.65s ease-in-out infinite;
}

.roof-outline.right {
  animation-delay: 120ms;
}

.roof-base {
  stroke: rgba(255, 248, 236, 0.76);
  stroke-width: 5;
  stroke-dasharray: 112;
  stroke-dashoffset: 112;
  animation: drawBaseStroke 1.65s 260ms ease-in-out infinite;
}

.roof-tile {
  stroke: rgba(255, 248, 236, 0.82);
  stroke-width: 4;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: drawTileStroke 1.65s ease-in-out infinite;
}

.tile-one {
  animation-delay: 440ms;
}

.tile-two {
  animation-delay: 540ms;
}

.tile-three {
  animation-delay: 640ms;
}

.roof-glint {
  stroke: white;
  stroke-width: 3;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  opacity: 0;
  animation: roofGlint 1.65s 760ms ease-in-out infinite;
}

.preloader-text {
  display: grid;
  gap: 5px;
  text-align: center;
}

.preloader-text strong {
  font-family: "Bahnschrift Condensed", "Franklin Gothic Heavy", Impact, sans-serif;
  font-size: 1.38rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.preloader-text span {
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.92rem;
}

.preloader-line {
  position: relative;
  width: min(220px, 56vw);
  height: 4px;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.14);
}

.preloader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, var(--tile), var(--brass));
  animation: loaderLine 1.15s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 16px;
  left: var(--edge);
  right: var(--edge);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 9px 12px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(45, 57, 60, 0.92), rgba(27, 38, 42, 0.92)),
    rgba(32, 42, 46, 0.9);
  border: 1px solid rgba(255, 248, 236, 0.13);
  border-bottom: 3px solid rgba(208, 164, 54, 0.72);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 22px 60px rgba(20, 17, 13, 0.24);
  backdrop-filter: blur(16px) saturate(130%);
  animation: navDrop 700ms ease both;
}

.brand {
  display: inline-grid;
  place-items: center;
  padding: 4px;
  background: #07111d;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(208, 164, 54, 0.25);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 3px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.86;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--brass);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 2px;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.header-cta,
.primary-button {
  color: #19140e;
  background:
    linear-gradient(135deg, #f1cc56, var(--brass)),
    var(--brass);
  box-shadow: 0 16px 34px rgba(208, 164, 54, 0.24);
}

.secondary-button {
  color: var(--paper);
  border: 1px solid rgba(255, 248, 236, 0.62);
  background: rgba(255, 248, 236, 0.08);
  backdrop-filter: blur(10px);
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(20, 17, 13, 0.26);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: #19140e;
  border-color: var(--brass);
  background: var(--brass);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--graphite);
  padding: 146px var(--edge) 74px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 248, 236, 0.03) 0%, rgba(255, 248, 236, 0.12) 22%, rgba(255, 248, 236, 0.03) 44%),
    var(--graphite);
  background-size: 220% 100%;
  transform: scale(1.035);
  animation: heroPhoto 18s ease-in-out infinite alternate, imageShimmer 1.8s linear infinite;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 13, 0.94), rgba(32, 42, 46, 0.76) 42%, rgba(32, 42, 46, 0.26) 76%),
    linear-gradient(0deg, rgba(20, 17, 13, 0.72), rgba(169, 71, 43, 0.18) 44%, rgba(20, 17, 13, 0.16));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 110px);
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  animation: riseIn 760ms 120ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  color: #fff4d2;
  background: rgba(20, 17, 13, 0.3);
  border: 1px solid rgba(208, 164, 54, 0.54);
  border-radius: 2px;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: "Bahnschrift Condensed", "Franklin Gothic Heavy", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.6rem, 9vw, 8.8rem);
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.9);
  font-size: clamp(1.12rem, 2.2vw, 1.5rem);
  line-height: 1.5;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(720px, 100%);
  margin-top: 32px;
  border-top: 1px solid rgba(255, 248, 236, 0.28);
  border-bottom: 1px solid rgba(255, 248, 236, 0.28);
}

.hero-proof span {
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 14px 18px 14px 0;
  color: rgba(255, 248, 236, 0.78);
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
}

.hero-proof span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 248, 236, 0.22);
}

.hero-proof strong {
  color: white;
  font-size: 1.55rem;
  line-height: 1;
}

.mysuru-badge {
  position: absolute;
  right: var(--edge);
  bottom: 30px;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 210px;
  padding: 16px 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(169, 71, 43, 0.78), rgba(208, 164, 54, 0.76)),
    rgba(20, 17, 13, 0.36);
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 2px;
  box-shadow: var(--shadow-low);
  animation: badgeIn 800ms 360ms ease both;
}

.mysuru-badge span {
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mysuru-badge strong {
  font-family: "Bahnschrift Condensed", "Franklin Gothic Heavy", Impact, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 116px;
}

.intro-section,
.work-section,
.services-section,
.contact-section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.intro-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.72), rgba(255, 248, 236, 0.18)),
    transparent;
}

.intro-grid,
.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.contact-grid h2 {
  font-size: clamp(2.35rem, 5.3vw, 5.45rem);
}

.intro-title {
  position: sticky;
  top: 122px;
}

.intro-title p:not(.section-kicker) {
  max-width: 470px;
  margin: 24px 0 0;
  color: #594f43;
  font-size: 1.08rem;
  line-height: 1.72;
}

.intro-copy {
  position: relative;
  font-size: 1.06rem;
  line-height: 1.75;
  color: #2c2925;
  padding: 34px 0 0 34px;
  border-left: 5px solid var(--clay);
}

.intro-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 0;
  height: 1px;
  background: rgba(20, 17, 13, 0.24);
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.intro-lead {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  border-top: 1px solid rgba(20, 17, 13, 0.22);
  border-left: 1px solid rgba(20, 17, 13, 0.22);
}

.trust-list li {
  position: relative;
  min-height: 76px;
  padding: 18px 18px 18px 42px;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-weight: 800;
  line-height: 1.35;
  border-right: 1px solid rgba(20, 17, 13, 0.22);
  border-bottom: 1px solid rgba(20, 17, 13, 0.22);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--clay);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.work-section {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(31, 42, 46, 0.98), rgba(16, 20, 18, 1)),
    var(--graphite);
  overflow: hidden;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 25%, rgba(208, 164, 54, 0.22) 25% 25.22%, transparent 25.22% 100%),
    linear-gradient(118deg, transparent 0 72%, rgba(169, 71, 43, 0.28) 72% 72.38%, transparent 72.38% 100%),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.035) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}

.featured-work {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  gap: 16px;
}

.work-tile {
  min-height: 370px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(255, 248, 236, 0.03) 0%, rgba(255, 248, 236, 0.14) 22%, rgba(255, 248, 236, 0.03) 44%),
    var(--graphite);
  background-size: 220% 100%;
  box-shadow: var(--shadow-high);
  transform: translateY(24px);
  opacity: 0;
  animation: imageShimmer 1.8s linear infinite;
  transition: opacity 620ms ease, transform 620ms ease, box-shadow 280ms ease;
}

.work-tile.large {
  grid-row: span 2;
  min-height: 756px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}

.work-tile:not(.large) {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

.work-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.work-tile:hover {
  box-shadow: 0 42px 96px rgba(0, 0, 0, 0.42);
}

.work-tile:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.05);
}

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20, 17, 13, 0.88), rgba(20, 17, 13, 0.16) 58%, rgba(20, 17, 13, 0.02)),
    linear-gradient(118deg, transparent 0 64%, rgba(208, 164, 54, 0.18) 64% 65%, transparent 65% 100%);
}

.work-tile div {
  position: relative;
  z-index: 1;
  padding: 28px;
  transform: translateY(6px);
  transition: transform 260ms ease;
}

.work-tile:hover div {
  transform: translateY(0);
}

.work-tile h3,
.service-list h3 {
  margin: 0;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 1.42rem;
  line-height: 1.12;
}

.work-tile p,
.service-list p {
  margin: 10px 0 0;
  line-height: 1.58;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(244, 234, 216, 0.86), rgba(255, 248, 236, 0.62)),
    var(--limewash);
}

.service-list {
  display: grid;
  border-top: 2px solid var(--ink);
}

.service-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(20, 17, 13, 0.24);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 560ms ease, transform 560ms ease, color 220ms ease;
}

.service-list article:hover {
  color: var(--clay);
  transform: translateX(0) translateY(-2px);
}

.service-list span {
  color: var(--clay);
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
}

.service-list p {
  grid-column: 2;
  color: #5a544c;
  font-size: 1.02rem;
}

.materials-section {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  min-height: 360px;
  border-top: 8px solid var(--graphite);
  border-bottom: 8px solid var(--graphite);
}

.material-photo {
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(20, 17, 13, 0.05) 0%, rgba(255, 248, 236, 0.48) 22%, rgba(20, 17, 13, 0.05) 44%),
    #d6d0c1;
  background-size: 220% 100%;
  opacity: 0;
  transform: translateY(22px);
  animation: imageShimmer 1.8s linear infinite;
  transition: opacity 640ms ease, transform 640ms ease;
}

.material-photo + .material-photo {
  border-left: 8px solid var(--graphite);
}

.material-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.material-photo:hover img {
  transform: scale(1.045);
}

.hero-media.image-loaded,
.work-tile.image-loaded,
.material-photo.image-loaded {
  animation: none;
}

.hero-media.image-loaded {
  animation: heroPhoto 18s ease-in-out infinite alternate;
}

.contact-section {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(20, 17, 13, 0.96), rgba(34, 46, 47, 0.97)),
    var(--graphite);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 46%, rgba(208, 164, 54, 0.18) 46% 46.35%, transparent 46.35% 100%),
    repeating-linear-gradient(0deg, rgba(255, 248, 236, 0.03) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.contact-note {
  max-width: 540px;
  color: rgba(255, 248, 236, 0.72);
  line-height: 1.68;
}

.contact-panel {
  display: grid;
  gap: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(208, 164, 54, 0.5);
  border-left: 8px solid var(--brass);
  box-shadow: var(--shadow-high);
}

.contact-panel a,
.contact-panel span {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 18px 24px;
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
}

.contact-panel a + a,
.contact-panel a + span,
.contact-panel span + span {
  border-top: 1px solid rgba(20, 17, 13, 0.16);
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--clay);
  background: rgba(208, 164, 54, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  color: white;
  background: var(--whatsapp);
  border: 6px solid rgba(255, 248, 236, 0.34);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  font-family: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  font-weight: 900;
  animation: whatsappPulse 2.8s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible,
.work-tile.is-visible,
.service-list article.is-visible,
.material-photo.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.featured-work .work-tile:nth-child(2),
.service-list article:nth-child(2),
.material-photo:nth-child(2) {
  transition-delay: 90ms;
}

.featured-work .work-tile:nth-child(3),
.service-list article:nth-child(3),
.material-photo:nth-child(3) {
  transition-delay: 180ms;
}

.service-list article:nth-child(4) {
  transition-delay: 270ms;
}

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

@keyframes drawRoofStroke {
  0% {
    stroke-dashoffset: 58;
  }
  34%,
  76% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -58;
  }
}

@keyframes drawBaseStroke {
  0% {
    stroke-dashoffset: 112;
  }
  30%,
  74% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -112;
  }
}

@keyframes drawTileStroke {
  0% {
    stroke-dashoffset: 34;
  }
  34%,
  72% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -34;
  }
}

@keyframes roofGlint {
  0%,
  18%,
  100% {
    opacity: 0;
    stroke-dashoffset: 20;
  }
  38%,
  58% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes imageShimmer {
  0% {
    background-position: 180% 0;
  }
  100% {
    background-position: -80% 0;
  }
}

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

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

@keyframes heroPhoto {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.095) translate3d(-1.2%, -1.1%, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), 0 0 0 0 rgba(22, 167, 91, 0.34);
  }
  50% {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), 0 0 0 12px rgba(22, 167, 91, 0);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    min-height: 100vh;
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.4rem, 6.6vw, 5.65rem);
  }

  .hero-copy {
    max-width: 650px;
    margin-top: 18px;
    font-size: clamp(1.02rem, 1.85vw, 1.32rem);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-proof {
    width: min(650px, 100%);
    margin-top: 24px;
  }

  .hero-proof span {
    min-width: 154px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero::after {
    content: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    top: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
    padding-top: 122px;
    padding-bottom: 158px;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .mysuru-badge {
    left: var(--edge);
    right: auto;
    bottom: 48px;
  }

  .intro-grid,
  .services-grid,
  .contact-grid,
  .featured-work {
    grid-template-columns: 1fr;
  }

  .intro-title {
    position: static;
  }

  .work-tile,
  .work-tile.large {
    min-height: 430px;
    clip-path: none;
  }

  .materials-section {
    grid-template-columns: 1fr;
  }

  .material-photo + .material-photo {
    border-left: 0;
    border-top: 8px solid var(--graphite);
  }
}

@media (max-width: 560px) {
  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .site-header {
    left: 10px;
    right: 10px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof span {
    padding: 13px 0;
  }

  .hero-proof span + span {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 248, 236, 0.22);
  }

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

  .intro-copy {
    padding-left: 22px;
  }

  .intro-copy::before {
    left: 22px;
  }

  .service-list article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .work-tile,
  .work-tile.large {
    min-height: 350px;
  }

  .contact-panel a,
  .contact-panel span {
    padding: 16px 18px;
    font-size: 1rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 62px;
    justify-content: center;
    padding: 0;
  }
}

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

  .hero-media {
    transform: none;
  }

  .site-preloader {
    transition: none;
  }
}
