@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Manrope:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: "Aragusha";
  src:
    url("../fonts/Aragusha.woff2") format("woff2"),
    url("../fonts/Aragusha.otf") format("opentype"),
    url("../fonts/Aragusha.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   KALAVYA ATELIER — CLEAN WEBSITE CSS V4
   Complete replacement for assets/css/style.css — Aragusha headings
   ========================================================= */

/* ---------- Theme ---------- */
:root {
  --paper: #fff8ee;
  --cream: #f6efe5;
  --limewash: #efe2d1;
  --plaster: #e4d1bb;
  --ink: #211d1a;
  --muted: #74675d;
  --soft-ink: #5f554d;
  --teal: #16383c;
  --clay: #9b654d;
  --rose: #c98578;
  --sage: #8e9a78;
  --walnut: #3b2a22;
  --line: rgba(33, 29, 26, 0.13);
  --shadow: 0 22px 60px rgba(33, 29, 26, 0.10);
  --heading: "Aragusha", "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --x: clamp(22px, 6vw, 92px);
  --header: 92px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.7;
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 224, 220, 0.44), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(201, 133, 120, 0.18), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--limewash));
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(90deg, rgba(33, 29, 26, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(33, 29, 26, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }
p {
  margin: 0;
  color: var(--muted);
  font-size: 15.8px;
  line-height: 1.75;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 400;
}

h1 {
  max-width: 700px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.008em;
}

h3 {
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.006em;
}

.kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--clay);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: var(--header);
  z-index: 50;
  padding: 16px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(243, 234, 220, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(33, 29, 26, 0.08);
}
.brand { display: flex; align-items: center; gap: 15px; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand-text {
  font-family: var(--heading);
  font-size: 31px;
  line-height: 0.95;
  letter-spacing: 0.015em;
}
.brand-text span {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 20px; }
.nav a {
  position: relative;
  color: rgba(33, 29, 26, 0.68);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.25s ease;
}
.nav a:hover,
.nav a.active { color: var(--ink); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 7px 0; background: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  min-height: 44px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn.primary { background: var(--teal); border: 1px solid var(--teal); color: var(--paper); }
.btn.ghost,
.btn.secondary { background: rgba(255, 248, 238, 0.42); border: 1px solid rgba(33, 29, 26, 0.22); color: var(--ink); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(33, 29, 26, 0.12); }
.hero-actions,
.soft-cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Shared Layout ---------- */
.page-section,
.section { padding: 82px var(--x); }
.section-title { max-width: 820px; margin-bottom: 42px; }
.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.two-col.equal { grid-template-columns: 1fr 1fr; }
.text-block p + p { margin-top: 18px; }

/* =========================================================
   HOME PAGE
   ========================================================= */

.hero-fullscreen.kalavya-hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  padding: clamp(120px, 14vw, 190px) var(--x);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #1f1711;
}
.hero-bg-carousel { position: absolute; inset: 0; z-index: -3; }
.hero-bg-carousel .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  filter: brightness(1.12) saturate(1.04) contrast(0.98);
  transition: opacity 1100ms ease, transform 1800ms ease;
}
.hero-bg-carousel .hero-slide.active { opacity: 1; transform: scale(1); }
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      to right,
      rgba(24, 17, 11, 0.34),
      rgba(24, 17, 11, 0.16) 40%,
      rgba(24, 17, 11, 0.03) 72%
    ),
    linear-gradient(
      to top,
      rgba(24, 17, 11, 0.26),
      rgba(24, 17, 11, 0.03) 55%,
      rgba(24, 17, 11, 0.06)
    );
}
.hero-content { width: min(780px, 100%); position: relative; z-index: 2; }
.hero-content h1 {
  max-width: 600px;
  color: #fffaf2;
  margin-bottom: 30px;
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-shadow: 0 10px 38px rgba(0,0,0,0.35);
}
.hero-content .btn.primary { background: #fffaf2; color: #2b2119; border-color: #fffaf2; }
.hero-content .btn.ghost { color: #fffaf2; border-color: rgba(255,250,242,0.62); background: rgba(255,250,242,0.06); backdrop-filter: blur(10px); }
.hero-bg-dots { position: absolute; right: var(--x); bottom: clamp(28px, 5vw, 60px); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; border: 1px solid rgba(255,250,242,0.86); background: transparent; cursor: pointer; }
.hero-dot.active { width: 32px; background: #fffaf2; }

.home-atelier-section {
  position: relative;
  padding: clamp(76px, 9vw, 122px) var(--x);
  background:
    radial-gradient(circle at top left, rgba(159,112,72,0.12), transparent 36%),
    linear-gradient(135deg, #f6efe5, #eee0ce 56%, #f8f1e8);
  overflow: hidden;
}
.home-atelier-section::before {
  content: "Atelier";
  position: absolute;
  right: -20px;
  top: 12px;
  font-family: var(--heading);
  font-size: clamp(64px, 11vw, 150px);
  line-height: 1;
  color: rgba(74, 50, 32, 0.055);
  pointer-events: none;
}
.atelier-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 84px); align-items: end; }
.atelier-copy h2 {
  max-width: 620px;
  margin: 12px 0 22px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.008em;
}
.atelier-copy p { max-width: 660px; font-size: 16px; line-height: 1.85; }
.atelier-solutions { display: flex; flex-wrap: wrap; gap: 11px; align-content: flex-end; }
.atelier-solutions span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,248,238,0.78);
  border: 1px solid rgba(94,69,46,0.13);
  box-shadow: 0 10px 28px rgba(56,39,25,0.06);
  color: rgba(45,33,24,0.76);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-story-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  padding: clamp(76px, 9vw, 126px) var(--x);
  background: var(--paper);
}
.story-visual { position: sticky; top: calc(var(--header) + 24px); min-height: 620px; margin: 0; overflow: hidden; border-radius: 32px; background: #d8c7b2; box-shadow: var(--shadow); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { max-width: 760px; }
.story-copy h2 {
  margin: 12px 0 24px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.008em;
}
.story-copy p { margin-bottom: 18px; line-height: 1.86; }
.story-closing { margin-top: 24px; padding: 22px 26px; border-left: 3px solid #8b6541; border-radius: 0 22px 22px 0; background: #f4eadc; color: var(--ink); font-family: var(--heading); font-size: clamp(21px, 1.9vw, 29px); line-height: 1.45; }

.collab-strip {
  padding: 70px var(--x);
  background:
    radial-gradient(circle at 12% 18%, rgba(185,200,199,0.18), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(201,133,120,0.16), transparent 30%),
    var(--teal);
  color: var(--paper);
}
.collab-strip h2,
.collab-strip .kicker { color: var(--paper); }
.collab-strip p { color: rgba(255,248,238,0.72); margin-top: 14px; max-width: 620px; }
.collab-strip-visual { display: grid; grid-template-columns: 1fr 0.78fr; align-items: center; gap: clamp(30px, 5vw, 72px); }
.collab-strip-visual .btn { margin-top: 22px; }
.collab-visual { min-height: 360px; margin: 0; overflow: hidden; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.16); }
.collab-visual img { width: 100%; height: 100%; object-fit: cover; }

.cta-luxe {
  padding: 66px var(--x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: rgba(255,248,238,0.58);
}
.cta-luxe p { max-width: 680px; margin-top: 14px; }
.cta-luxe-image { position: relative; min-height: 420px; overflow: hidden; isolation: isolate; }
.cta-luxe-image .section-bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-luxe-image::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to right, rgba(25,18,12,0.72), rgba(25,18,12,0.28)); }
.cta-luxe-image .kicker,
.cta-luxe-image h2,
.cta-luxe-image p { color: #fffaf2; }
.cta-luxe-image .btn.primary { background: #fffaf2; color: #2b2119; border-color: #fffaf2; }


/* =========================================================
   HOMECRAFT PAGE
   ========================================================= */

.homecraft-page { background: linear-gradient(135deg, var(--cream), var(--limewash)); }
.homecraft-opening { position: relative; padding: 145px var(--x) 86px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 76px; align-items: center; }
.craft-hero-copy p { max-width: 620px; margin-top: 22px; font-size: 16px; color: var(--soft-ink); }
.craft-board { position: relative; min-height: 540px; }
.craft-board-images .board-layer,
.board-layer { position: absolute; overflow: hidden; border-radius: 28px; background: #d8c7b2; box-shadow: var(--shadow); }
.board-layer img { width: 100%; height: 100%; object-fit: cover; }
.layer-one { left: 0; top: 0; width: 78%; height: 72%; }
.layer-two { right: 0; bottom: 48px; width: 56%; height: 48%; border: 10px solid var(--cream); }
.craft-note { position: absolute; left: 34px; bottom: 26px; z-index: 3; width: 250px; padding: 22px; background: rgba(255,248,238,0.88); border: 1px solid var(--line); box-shadow: var(--shadow); }
.craft-note span { display: block; margin-bottom: 10px; color: var(--clay); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.craft-note p { font-family: var(--heading); color: var(--ink); font-size: 24px; line-height: 1.16; }

.homecraft-map { padding: 88px var(--x); background: rgba(255,248,238,0.58); }
.map-heading { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: end; margin-bottom: 46px; }
.map-heading p { max-width: 620px; }
.craft-execution-visual { min-height: 380px; margin: 0 0 42px; overflow: hidden; border-radius: 28px; background: #d8c7b2; box-shadow: var(--shadow); }
.craft-execution-visual img { width: 100%; height: 100%; object-fit: cover; }
.craft-path { display: grid; gap: 22px; }
.craft-stage { display: grid; grid-template-columns: 82px 1fr; gap: 28px; max-width: 960px; padding: 30px 34px; border-radius: 28px; background: rgba(255,248,238,0.78); border: 1px solid var(--line); box-shadow: 0 16px 44px rgba(58,39,24,0.07); }
.craft-stage:nth-child(even) { margin-left: auto; }
.stage-number { font-family: var(--heading); font-size: 32px; color: var(--rose); }
.stage-content h3 { margin-bottom: 10px; }
.stage-content ul { margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.stage-content li { padding: 7px 11px; border-radius: 999px; background: rgba(22,56,60,0.08); color: var(--walnut); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 700; }

.clarity-section { padding: 88px var(--x); display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; background: var(--paper); }
.clarity-copy p { max-width: 660px; margin-top: 18px; }
.clarity-visual { min-height: 360px; margin: 0 0 24px; overflow: hidden; border-radius: 28px; background: #d8c7b2; box-shadow: var(--shadow); }
.clarity-visual img { width: 100%; height: 100%; object-fit: cover; }
.clarity-cards { display: grid; gap: 14px; }
.clarity-cards article { padding: 24px 28px; border-radius: 24px; background: #f5ecdf; border: 1px solid var(--line); }
.clarity-cards span { display: block; margin-bottom: 12px; font-family: var(--heading); font-size: 25px; color: var(--rose); }
.clarity-cards h3 { margin-bottom: 8px; }
.homecraft-final { padding: 66px var(--x); display: flex; align-items: center; justify-content: space-between; gap: 42px; background: var(--teal); }
.homecraft-final h2,
.homecraft-final .kicker { color: var(--paper); }
.homecraft-final .btn.primary { background: var(--paper); border-color: var(--paper); color: var(--teal); }


/* =========================================================
   HOMES & STORIES — COMING SOON
========================================================= */

.coming-soon-page {
  min-height: calc(100vh - var(--header));
  padding: calc(var(--header) + 60px) var(--x) 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 133, 120, 0.14), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(22, 56, 60, 0.12), transparent 28%),
    linear-gradient(135deg, #f7efe4 0%, #ead8c4 52%, #f9f3eb 100%);
  overflow: hidden;
}

.homes-coming-soon {
  position: relative;
}

.homes-coming-soon::before {
  content: "Stories";
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: rgba(139, 101, 65, 0.08);
  font-family: var(--heading);
  font-size: clamp(86px, 14vw, 210px);
  line-height: 0.8;
  pointer-events: none;
}

.coming-soon-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  border-radius: 34px;
  border: 1px solid rgba(33, 29, 26, 0.10);
  background: rgba(255, 248, 238, 0.72);
  box-shadow: 0 24px 64px rgba(33, 29, 26, 0.10);
  backdrop-filter: blur(16px);
}

.coming-soon-card .kicker {
  color: #8b6541;
  letter-spacing: 0.18em;
}

.coming-soon-card h1 {
  max-width: 580px;
  margin: 10px auto 16px;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.04;
}

.coming-soon-card p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(95, 85, 77, 0.92);
  font-size: 14.8px;
  line-height: 1.65;
}

.coming-soon-card .btn {
  margin-top: 28px;
}

/* Mobile */

@media (max-width: 640px) {
  .coming-soon-page {
    padding-top: calc(var(--header) + 44px);
    padding-bottom: 52px;
  }

  .coming-soon-card {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .coming-soon-card h1 {
    font-size: 38px;
  }

  .coming-soon-card p {
    font-size: 14px;
  }
}


/* =========================================================
   CONCIERGE PAGE
   ========================================================= */

.concierge-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 224, 220, 0.36), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(201, 133, 120, 0.14), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--limewash));
}

.concierge-compact-page {
  min-height: calc(100vh - var(--header));
}

.concierge-compact {
  min-height: calc(100vh - var(--header));
  padding: calc(var(--header) + 26px) var(--x) 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 34px);
}

.concierge-compact-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.concierge-compact-heading .kicker {
  margin-bottom: 12px;
}

.concierge-compact-heading h1 {
  max-width: 720px;
  margin: 0 auto;
}

.concierge-tagline {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--soft-ink);
  font-family: var(--body);
  font-size: 15.8px;
  line-height: 1.75;
  font-weight: 400;
}

.concierge-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.concierge-pillar {
  position: relative;
  min-height: clamp(300px, 35vh, 390px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 248, 238, 0.18), transparent 34%),
    linear-gradient(145deg, var(--teal), #244f52);
  border: 1px solid rgba(33, 29, 26, 0.10);
  box-shadow: 0 22px 58px rgba(33, 29, 26, 0.12);
  isolation: isolate;
}

.concierge-pillar-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(145deg, rgba(216, 199, 178, 0.58), rgba(22, 56, 60, 0.76)),
    var(--pillar-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.concierge-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      to top,
      rgba(22, 18, 14, 0.88),
      rgba(22, 18, 14, 0.38) 58%,
      rgba(22, 18, 14, 0.10)
    ),
    linear-gradient(
      to right,
      rgba(22, 56, 60, 0.34),
      rgba(201, 133, 120, 0.10)
    );
}

.concierge-pillar-content {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concierge-pillar-content span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 248, 238, 0.70);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.concierge-pillar-content h3 {
  max-width: 340px;
  color: var(--paper);
}

.concierge-pillar-content p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 248, 238, 0.76);
  font-size: 14.5px;
  line-height: 1.65;
}

.concierge-center-cta {
  display: flex;
  justify-content: center;
}

.concierge-center-cta .btn.primary {
  min-width: 170px;
}

/* ---------- Concierge Responsive ---------- */

@media (max-width: 1100px) {
  .concierge-compact {
    min-height: auto;
    padding-top: calc(var(--header) + 44px);
  }

  .concierge-pillars {
    grid-template-columns: 1fr;
  }

  .concierge-pillar {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .concierge-compact {
    padding-top: calc(var(--header) + 34px);
    padding-bottom: 44px;
    gap: 24px;
  }

  .concierge-compact-heading {
    text-align: left;
  }

  .concierge-compact-heading h1,
  .concierge-tagline {
    margin-left: 0;
    margin-right: 0;
  }

  .concierge-pillar {
    min-height: 280px;
    border-radius: 24px;
  }

  .concierge-pillar-content {
    padding: 24px;
  }

  .concierge-center-cta {
    justify-content: flex-start;
  }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(214, 224, 220, 0.36), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(201, 133, 120, 0.14), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--limewash));
}

.contact-page .contact-opening {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 145px var(--x) 84px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: end;
  background:
    radial-gradient(circle at 14% 20%, rgba(201, 133, 120, 0.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(22, 56, 60, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 238, 0.78), rgba(239, 226, 209, 0.82));
}

.contact-page .contact-opening::before {
  content: "Begin";
  position: absolute;
  right: -18px;
  top: 92px;
  z-index: -1;
  color: rgba(59, 42, 34, 0.045);
  font-family: var(--heading);
  font-size: clamp(76px, 13vw, 180px);
  line-height: 1;
  pointer-events: none;
}

.contact-page .contact-title h1 {
  margin-top: 12px;
}

.contact-title-note {
  max-width: 620px;
  margin-top: 18px;
  color: var(--soft-ink);
}

.contact-page .contact-intro {
  padding: 32px 34px;
  border-radius: 30px;
  background: rgba(255, 248, 238, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(58, 39, 24, 0.07);
}

.contact-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-main {
  padding: 88px var(--x);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.62), rgba(246, 239, 229, 0.82));
}

.contact-details-panel {
  position: sticky;
  top: calc(var(--header) + 28px);
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 248, 238, 0.10), transparent 34%),
    var(--teal);
  color: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-details-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.08);
  pointer-events: none;
}

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

.contact-details-panel h2,
.contact-details-panel .kicker {
  color: var(--paper);
}

.contact-box {
  margin-top: 24px;
}

.contact-item,
.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 248, 238, 0.16);
}

.contact-item:last-child,
.contact-detail:last-child {
  border-bottom: 0;
}

.contact-item strong,
.contact-detail span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 248, 238, 0.58);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-item span,
.contact-detail a,
.contact-detail p {
  color: rgba(255, 248, 238, 0.82);
}

.story-form-wrap {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.92), rgba(255, 248, 238, 0.72));
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(58, 39, 24, 0.07);
}

.form-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(33, 29, 26, 0.10);
}

.story-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  color: var(--walnut);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(33, 29, 26, 0.14);
  background: rgba(255, 248, 238, 0.84);
  font-family: var(--body);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(22, 56, 60, 0.36);
  background: rgba(255, 248, 238, 0.96);
  box-shadow: 0 0 0 4px rgba(22, 56, 60, 0.08);
}

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

.form-note,
.form-success {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border-radius: 22px;
  font-size: 13px;
}

.form-note {
  background: rgba(201, 133, 120, 0.12);
  color: var(--walnut);
}

.form-success {
  background: rgba(142, 154, 120, 0.16);
  color: var(--teal);
  font-weight: 600;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-collab {
  padding: 80px var(--x);
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  gap: 42px;
  align-items: center;
  background: var(--paper);
}

.contact-collab p {
  max-width: 620px;
}


/* =========================================================
   FOOTER — SLEEK MINIMAL
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 34px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(33, 29, 26, 0.96),
      rgba(42, 34, 28, 0.96) 48%,
      rgba(22, 56, 60, 0.94)
    );
  border-top: 1px solid rgba(255, 248, 238, 0.10);
}

/* very soft watermark */
.site-footer::before {
  content: "Kalavya";
  position: absolute;
  right: -10px;
  bottom: -30px;
  z-index: -1;
  color: rgba(255, 248, 238, 0.035);
  font-family: var(--heading);
  font-size: clamp(70px, 11vw, 150px);
  line-height: 1;
  pointer-events: none;
}

.footer-nav,
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-nav a,
.footer-socials a {
  color: rgba(255, 248, 238, 0.68);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-nav a:hover,
.footer-socials a:hover {
  color: var(--paper);
}

.footer-socials {
  justify-content: flex-end;
}

.footer-socials a {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 238, 0.13);
  background: rgba(255, 248, 238, 0.055);
}

.footer-socials a:hover {
  background: rgba(255, 248, 238, 0.10);
  border-color: rgba(255, 248, 238, 0.24);
}


/* Responsive */
@media (max-width: 900px) {
  .site-footer {
    padding: 34px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 32px var(--x);
    gap: 22px;
  }

  .footer-nav,
  .footer-socials {
    gap: 9px 13px;
  }

  .footer-nav a,
  .footer-socials a {
    font-size: 9.5px;
  }

  .footer-socials a {
    padding: 7px 10px;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  :root { --header: 86px; }
  .site-header { height: var(--header); padding: 14px 24px; }
  .brand img { width: 50px; height: 50px; }
  .brand-text { font-size: 27px; }
  .brand-text span { font-size: 8.5px; letter-spacing: 0.34em; }
  .menu-toggle { display: block; }
  .nav { display: none; position: fixed; top: var(--header); left: 0; right: 0; padding: 20px 24px; flex-direction: column; align-items: flex-start; background: rgba(243,234,220,0.98); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 12px 0; }

  .atelier-shell,
  .home-story-section,
  .collab-strip-visual,
  .homecraft-opening,
  .map-heading,
  .clarity-section,
  .stories-opening,
  .concierge-opening,
  .testimonial-heading,
  .concierge-contact-strip,
  .contact-final {
    grid-template-columns: 1fr;
  }

  .story-visual { position: relative; top: auto; }
  .story-visual { min-height: 460px; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-tile.large { grid-row: auto; }
  .quote-river { grid-template-columns: 1fr; }
  .craft-stage:nth-child(even),
  .concierge-service.renovation { margin-left: 0; }
  .stories-final,
  .homecraft-final,
  .cta-luxe,
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .tree-line { left: 23px; }
  .tree-node { grid-template-columns: 46px 1fr; gap: 16px; }
  .tree-node .node-number { grid-column: 1; }
  .tree-node.right .node-card,
  .tree-node.left .node-card { grid-column: 2; }
  .quadrant-wrap { grid-template-columns: 1fr; }
  .quadrant-card { min-height: auto; }
}

@media (max-width: 640px) {
  :root { --header: 80px; --x: 20px; }
  .site-header { height: var(--header); padding: 12px 20px; }
  .brand { gap: 11px; }
  .brand img { width: 46px; height: 46px; }
  .brand-text { font-size: 24px; }
  .brand-text span { font-size: 7.5px; letter-spacing: 0.30em; }
  h1 { font-size: 38px; line-height: 1.05; }
  h2 { font-size: 30px; line-height: 1.1; }
  h3 { font-size: 22px; }
  .hero-fullscreen.kalavya-hero { min-height: calc(100vh - var(--header)); padding: 120px var(--x) 92px; align-items: flex-end; }
  .hero-bg-overlay { background: linear-gradient(to top, rgba(24,17,11,0.84), rgba(24,17,11,0.56) 44%, rgba(24,17,11,0.18)); }
  .hero-content h1 { margin-bottom: 26px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-bg-dots { left: var(--x); right: auto; bottom: 34px; }
  .story-visual,
  .collab-visual,
  .cta-luxe-image,
  .node-card,
  .quadrant-card,
  .craft-stage,
  .story-form-wrap,
  .contact-details-panel { border-radius: 22px; }
  .story-visual { min-height: 360px; }
  .story-form { grid-template-columns: 1fr; }
  .craft-board { min-height: 430px; }
  .layer-one { width: 86%; height: 64%; }
  .layer-two { width: 72%; height: 42%; bottom: 54px; }
  .craft-note { left: 18px; right: 18px; width: auto; }
  .craft-stage,
  .concierge-service { grid-template-columns: 1fr; }
  .project-image,
  .project-tile.large .project-image { height: 280px; }
  .site-footer { padding: 38px var(--x); }
}


/* =========================================================
   OUR WAY PAGE — FINAL IMAGE-LED STYLING
   Uses existing files in assets/img/our-way/
========================================================= */

.ourway-page {
  background: var(--limewash);
}

/* ---------- Shared visual background ---------- */

.visual-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.visual-overlay.dark-soft {
  background:
    linear-gradient(
      90deg,
      rgba(24, 18, 14, 0.84) 0%,
      rgba(24, 18, 14, 0.52) 44%,
      rgba(24, 18, 14, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(24, 18, 14, 0.72) 0%,
      rgba(24, 18, 14, 0.08) 70%
    );
}

.visual-overlay.cream-soft {
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 238, 0.94),
      rgba(243, 234, 220, 0.89)
    );
}

.visual-overlay.paper-soft {
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 238, 0.93),
      rgba(232, 216, 196, 0.88)
    );
}

.section-intro,
.ourway-hero-content,
.philosophy-visual-wrap,
.difference-grid,
.model-compass,
.ourway-cta-content {
  position: relative;
  z-index: 2;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.06;
}

.section-intro p {
  max-width: 610px;
  margin-top: 16px;
}

.section-intro.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Our Way Hero ---------- */

.ourway-hero {
  min-height: 72vh;
  padding: 150px var(--x) 86px;
  display: flex;
  align-items: flex-end;
}

.ourway-hero-content {
  max-width: 730px;
}

.ourway-hero-content .kicker,
.ourway-hero-content h1,
.ourway-hero-content p {
  color: var(--paper);
}

.ourway-hero-content h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.02;
}

.ourway-hero-content p {
  max-width: 600px;
  color: rgba(255, 248, 238, 0.78);
}

.ourway-tags {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ourway-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 238, 0.24);
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.86);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Our Philosophy: image-led section ---------- */

.ourway-philosophy-visual {
  padding: 92px var(--x);
}

.philosophy-visual-wrap {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.philosophy-copy-card {
  max-width: 600px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 36px;
  background: rgba(255, 248, 238, 0.78);
  border: 1px solid rgba(33, 29, 26, 0.10);
  box-shadow: 0 20px 56px rgba(33, 29, 26, 0.08);
  backdrop-filter: blur(12px);
}

.philosophy-copy-card h2 {
  margin: 12px 0 20px;
  max-width: 560px;
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.06;
}

.philosophy-image-collage {
  position: relative;
  min-height: 560px;
}

.philosophy-img {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 248, 238, 0.48);
  box-shadow: 0 24px 64px rgba(33, 29, 26, 0.14);
}

.philosophy-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 29, 26, 0.18), transparent 62%);
}

.philosophy-main {
  width: 58%;
  height: 74%;
  left: 0;
  top: 4%;
  border-radius: 140px 140px 26px 26px;
  background-image: url("../img/our-way/Philosophy-01.jpg");
}

.philosophy-side-one {
  width: 42%;
  height: 42%;
  right: 4%;
  top: 0;
  border-radius: 26px 92px 26px 92px;
  background-image: url("../img/our-way/Philosophy-02.jpg");
}

.philosophy-side-two {
  width: 46%;
  height: 40%;
  right: 0;
  bottom: 8%;
  border-radius: 92px 26px 92px 26px;
  background-image: url("../img/our-way/Philosophy-03.jpg");
}

.philosophy-side-three {
  width: 34%;
  height: 28%;
  left: 34%;
  bottom: 0;
  border-radius: 26px 80px 26px 80px;
  background-image: url("../img/our-way/Philosophy-04.jpg");
  border: 8px solid rgba(255, 248, 238, 0.82);
}

/* hide old roadmap if any old HTML remains */
.roadmap,
.road-svg,
.road-step {
  display: none;
}

/* ---------- Kalavya Difference ---------- */

.kalavya-difference {
  padding: 86px var(--x);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.difference-grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 248, 238, 0.82);
  border: 1px solid rgba(33, 29, 26, 0.10);
  box-shadow: 0 18px 46px rgba(33, 29, 26, 0.07);
  backdrop-filter: blur(10px);
}

.difference-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.17;
}

.difference-grid article:nth-child(1)::before {
  background-image: url("../img/our-way/Philosophy-01.jpg");
}

.difference-grid article:nth-child(2)::before {
  background-image: url("../img/our-way/Philosophy-02.jpg");
}

.difference-grid article:nth-child(3)::before {
  background-image: url("../img/our-way/Philosophy-03.jpg");
}

.difference-grid article:nth-child(4)::before {
  background-image: url("../img/our-way/Philosophy-04.jpg");
}

.difference-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 238, 0.92),
      rgba(255, 248, 238, 0.72)
    );
}

.difference-grid small,
.model-compass small {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.difference-grid h3,
.model-compass h3 {
  margin-bottom: 10px;
}

.difference-grid p,
.model-compass p {
  font-size: 14.6px;
  line-height: 1.66;
}

/* ---------- Client Models ---------- */

.client-models {
  padding: 86px var(--x);
}

.model-compass {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.model-compass article {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(33, 29, 26, 0.10);
  box-shadow: 0 18px 46px rgba(33, 29, 26, 0.07);
  backdrop-filter: blur(10px);
}

.model-compass article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.model-compass article:nth-child(1)::before {
  background-image: url("../img/our-way/model-01.jpg");
}

.model-compass article:nth-child(2)::before {
  background-image: url("../img/our-way/model-02.png");
}

.model-compass article:nth-child(3)::before {
  background-image: url("../img/our-way/model-03.png");
}

.model-compass article:nth-child(4)::before {
  background-image: url("../img/our-way/ourway-full-solutions.jpg");
}

.model-compass article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 238, 0.92),
      rgba(255, 248, 238, 0.72)
    );
}

/* ---------- CTA ---------- */

.ourway-cta {
  min-height: 390px;
  padding: 76px var(--x);
  display: flex;
  align-items: center;
}

.ourway-cta-content {
  max-width: 620px;
}

.ourway-cta-content .kicker,
.ourway-cta-content h2,
.ourway-cta-content p {
  color: var(--paper);
}

.ourway-cta-content h2 {
  max-width: 540px;
  margin: 12px 0 16px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.06;
}

.ourway-cta-content p {
  max-width: 540px;
  color: rgba(255, 248, 238, 0.76);
}

.ourway-cta-content .btn {
  margin-top: 26px;
}

.ourway-cta-content .btn.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-compass {
    grid-template-columns: 1fr;
  }

  .philosophy-visual-wrap {
    grid-template-columns: 1fr;
  }

  .philosophy-image-collage {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .ourway-hero {
    min-height: 68vh;
    padding-top: 126px;
  }

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

  .section-intro.center {
    text-align: left;
  }

  .section-intro.center p {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .ourway-hero,
  .ourway-philosophy-visual,
  .kalavya-difference,
  .client-models,
  .ourway-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ourway-hero-content h1 {
    font-size: 42px;
  }

  .difference-grid article,
  .model-compass article,
  .philosophy-copy-card {
    border-radius: 26px;
  }

  .philosophy-image-collage {
    min-height: 420px;
  }

  .philosophy-main {
    width: 68%;
    height: 68%;
  }

  .philosophy-side-one {
    width: 44%;
    height: 34%;
  }

  .philosophy-side-two {
    width: 50%;
    height: 34%;
  }

  .philosophy-side-three {
    width: 40%;
    height: 26%;
    left: 22%;
  }
}


/* =========================================================
   HOMECRAFT MAP — FIXED CLEAN OMBRE BOARD
   Fixes overlap: 04 on 02, 03 entering Questionnaire
========================================================= */

.homecraft-map {
  position: relative;
  padding: 150px var(--x) 110px;
  overflow: visible;
  isolation: isolate;
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 238, 0.94),
      rgba(232, 216, 196, 0.84)
    ),
    url("../img/homecraft/homecraft-board-01.png");
  background-size: cover;
  background-position: center;
}

.homecraft-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 18%, rgba(201, 133, 120, 0.18), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(214, 224, 220, 0.34), transparent 34%),
    radial-gradient(circle at 26% 88%, rgba(184, 148, 78, 0.12), transparent 32%);
  pointer-events: none;
}

.homecraft-map::after {
  content: "Homecraft";
  position: absolute;
  right: -24px;
  top: 88px;
  z-index: -1;
  font-family: var(--heading);
  font-size: clamp(86px, 13vw, 190px);
  line-height: 1;
  color: rgba(59, 42, 34, 0.055);
  pointer-events: none;
}

/* Heading */

.homecraft-map .map-heading {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: end;
}

.homecraft-map .map-heading h2 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
}

.homecraft-map .map-heading p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.82;
}

/* Main process board — NO absolute positioning */

.homecraft-map .craft-path {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  overflow: visible;
}

.homecraft-map .craft-path::before,
.homecraft-map .craft-path::after {
  display: none;
  content: none;
}

/* Cards — force reset from old racetrack CSS */

.homecraft-map .craft-stage,
.homecraft-map .craft-stage:nth-child(1),
.homecraft-map .craft-stage:nth-child(2),
.homecraft-map .craft-stage:nth-child(3),
.homecraft-map .craft-stage:nth-child(4),
.homecraft-map .craft-stage:nth-child(even) {
  position: relative;
  inset: auto;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transform: none;

  width: auto;
  max-width: none;
  min-height: 355px;
  margin: 0;
  padding: 34px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  overflow: hidden;
  border-radius: 38px;
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(33, 29, 26, 0.10);
  box-shadow: 0 22px 60px rgba(33, 29, 26, 0.09);
  backdrop-filter: blur(12px);
}

/* Soft image layer */

.homecraft-map .craft-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  transform: scale(1.02);
}

.homecraft-map .craft-stage:nth-child(1)::before {
  background-image: url("../img/homecraft/homecraft-board-01.png");
}

.homecraft-map .craft-stage:nth-child(2)::before {
  background-image: url("../img/homecraft/homecraft-clarity-collage.png");
}

.homecraft-map .craft-stage:nth-child(3)::before {
  background-image: url("../img/homecraft/homecraft-site-execution.png");
}

.homecraft-map .craft-stage:nth-child(4)::before {
  background-image: url("../img/homecraft/homecraft-clarity-collage.png");
}

/* Ombre readability layer */

.homecraft-map .craft-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      to top,
      rgba(255, 248, 238, 0.97) 0%,
      rgba(255, 248, 238, 0.90) 44%,
      rgba(255, 248, 238, 0.58) 100%
    );
}

/* Big number */

.homecraft-map .stage-number {
  position: absolute;
  top: 24px;
  right: 28px;
  width: auto;
  height: auto;
  margin: 0;

  display: block;
  background: transparent;
  box-shadow: none;

  color: rgba(59, 42, 34, 0.14);
  font-family: var(--heading);
  font-size: clamp(58px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.homecraft-map .stage-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.homecraft-map .stage-content h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}

.homecraft-map .stage-content p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.72;
}

.homecraft-map .stage-content ul {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.homecraft-map .stage-content li {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(22, 56, 60, 0.08);
  color: var(--walnut);
  font-size: 9.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Make 1 and 4 slightly larger for editorial rhythm */

.homecraft-map .craft-stage:nth-child(1),
.homecraft-map .craft-stage:nth-child(4) {
  min-height: 385px;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .homecraft-map .map-heading {
    grid-template-columns: 1fr;
  }

  .homecraft-map .craft-path {
    grid-template-columns: 1fr;
  }

  .homecraft-map .craft-stage,
  .homecraft-map .craft-stage:nth-child(1),
  .homecraft-map .craft-stage:nth-child(2),
  .homecraft-map .craft-stage:nth-child(3),
  .homecraft-map .craft-stage:nth-child(4) {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .homecraft-map {
    padding: 126px var(--x) 76px;
  }

  .homecraft-map .map-heading h2 {
    font-size: 40px;
  }

  .homecraft-map .craft-stage {
    min-height: 310px;
    padding: 28px;
    border-radius: 28px;
  }

  .homecraft-map .stage-content h3 {
    font-size: 34px;
  }
}


/* ---------- Contact Responsive ---------- */

@media (max-width: 1100px) {
  .contact-page .contact-opening,
  .contact-main,
  .form-heading,
  .contact-collab {
    grid-template-columns: 1fr;
  }

  .contact-details-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-opening {
    padding: 124px var(--x) 66px;
    gap: 34px;
  }

  .contact-page .contact-intro,
  .story-form-wrap,
  .contact-details-panel {
    border-radius: 22px;
  }

  .contact-main {
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 28px;
  }

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

/* =========================================================
   KALAVYA — CLEAN FINAL SECTION OVERRIDES
   Homecraft + Concierge only
   Keeps original font, size, and typography system
========================================================= */


/* =========================================================
   HOMECRAFT — MAP INTRO TEXT
========================================================= */

.homecraft-map .map-heading p {
  color: var(--soft-ink);
  font-weight: 500;
  opacity: 1;
}


/* =========================================================
   HOMECRAFT — PROCESS CARDS WITH IMAGE WATERMARK
========================================================= */

.craft-path {
  display: grid;
  gap: 28px;
}

.craft-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  max-width: 1120px;
  min-height: clamp(320px, 36vh, 430px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(58, 39, 24, 0.08);
}

.craft-stage:nth-child(even) {
  margin-left: auto;
}

/* Use actual images already present in your Homecraft HTML */
.craft-stage-media {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.craft-stage-media img {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.82) contrast(0.88) brightness(1.08);
  transform: scale(1.02);
}

/* Soft cream layer above image */
.craft-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 238, 0.98) 0%,
      rgba(255, 248, 238, 0.92) 52%,
      rgba(255, 248, 238, 0.72) 100%
    );
}

.craft-stage .stage-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.craft-stage .stage-number {
  font-family: var(--heading);
  font-size: 32px;
  line-height: 1;
  color: #8b4f3f;
  font-weight: 400;
}

.craft-stage .stage-content h3 {
  color: #171311;
}

.craft-stage .stage-content p {
  color: #211d1a;
  font-weight: 500;
}

.craft-stage .stage-content ul {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.craft-stage .stage-content li {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(22, 56, 60, 0.18);
  color: #171311;
  border: 1px solid rgba(22, 56, 60, 0.22);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 800;
}


/* =========================================================
   CONCIERGE — PILLARS WITH IMAGE WATERMARK
========================================================= */

.concierge-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.concierge-pillar {
  position: relative;
  min-height: clamp(300px, 35vh, 390px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 238, 0.90),
      rgba(239, 226, 209, 0.78)
    );
  border: 1px solid rgba(33, 29, 26, 0.12);
  box-shadow: 0 22px 58px rgba(33, 29, 26, 0.11);
  isolation: isolate;
}

/* Force correct Concierge images */
.concierge-pillar:nth-child(1) .concierge-pillar-image {
  background-image: url("../img/Concierge/repair.png") !important;
}

.concierge-pillar:nth-child(2) .concierge-pillar-image {
  background-image: url("../img/Concierge/renovation.png") !important;
}

.concierge-pillar:nth-child(3) .concierge-pillar-image {
  background-image: url("../img/Concierge/styling.png") !important;
}

.concierge-pillar-image {
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.46;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}

/* Cream readability layer */
.concierge-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(255, 248, 238, 0.76) 0%,
      rgba(255, 248, 238, 0.64) 48%,
      rgba(255, 248, 238, 0.44) 100%
    );
}

.concierge-pillar-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concierge-pillar-content span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.concierge-pillar-content h3 {
  max-width: 340px;
  color: var(--ink);
}

.concierge-pillar-content p {
  max-width: 360px;
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 500;
  opacity: 1;
}


/* =========================================================
   RESPONSIVE — HOMECRAFT + CONCIERGE
========================================================= */

@media (max-width: 1100px) {
  .concierge-pillars {
    grid-template-columns: 1fr;
  }

  .craft-stage:nth-child(even) {
    margin-left: 0;
  }

  .concierge-pillar {
    min-height: 300px;
  }

  .craft-stage {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .craft-stage {
    min-height: 300px;
    padding: 24px;
    border-radius: 24px;
  }

  .craft-stage-media img {
    opacity: 0.14;
  }

  .craft-stage::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 238, 0.98) 0%,
        rgba(255, 248, 238, 0.92) 58%,
        rgba(255, 248, 238, 0.76) 100%
      );
  }

  .concierge-pillar {
    min-height: 280px;
    border-radius: 24px;
  }

  .concierge-pillar-image {
    opacity: 0.38;
  }

  .concierge-pillar::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 238, 0.78) 0%,
        rgba(255, 248, 238, 0.68) 58%,
        rgba(255, 248, 238, 0.50) 100%
      );
  }

  .concierge-pillar-content {
    padding: 24px;
  }
}

/* =========================================================
   UNIVERSAL BEGIN YOUR STORY CTA
   Same styling across all pages
========================================================= */

.begin-story-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(58px, 7vw, 86px) var(--x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 133, 120, 0.16), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(142, 154, 120, 0.16), transparent 34%),
    linear-gradient(
      135deg,
      rgba(255, 248, 238, 0.96) 0%,
      rgba(246, 239, 229, 0.92) 42%,
      rgba(232, 216, 196, 0.86) 100%
    );
  border-top: 1px solid rgba(33, 29, 26, 0.08);
  border-bottom: 1px solid rgba(33, 29, 26, 0.08);
}

/* soft watermark */
.begin-story-cta::before {
  content: "Begin";
  position: absolute;
  right: -18px;
  bottom: -34px;
  z-index: -1;
  color: rgba(59, 42, 34, 0.055);
  font-family: var(--heading);
  font-size: clamp(86px, 14vw, 190px);
  line-height: 1;
  pointer-events: none;
}

.begin-story-content {
  max-width: 720px;
}

.begin-story-content .kicker {
  margin-bottom: 14px;
  color: var(--clay);
}

.begin-story-content h2 {
  max-width: 680px;
  color: var(--ink);
}

.begin-story-content p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--soft-ink);
  font-size: 15.8px;
  line-height: 1.75;
  font-weight: 500;
}

.begin-story-cta .btn.primary {
  flex: 0 0 auto;
  background: var(--teal);
  border-color: var(--teal);
  color: var(--paper);
}


/* Responsive */
@media (max-width: 900px) {
  .begin-story-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .begin-story-cta {
    padding: 54px var(--x);
  }

  .begin-story-cta::before {
    right: -12px;
    bottom: -20px;
    font-size: 92px;
  }

  .begin-story-content p {
    font-size: 15px;
  }
}

/* =========================================================
   OUR WAY — SLEEKER HERO + COMPACT PREMIUM CARDS
========================================================= */

/* ---------- Hero Refinement ---------- */

.ourway-hero {
  min-height: 58vh;
  padding: 128px var(--x) 58px;
  align-items: flex-end;
}

.ourway-hero-content {
  max-width: 620px;
}

.ourway-hero-content h1 {
  max-width: 560px;
  margin: 8px 0 12px;
  font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1.02;
}

.ourway-hero-content p {
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.58;
  color: rgba(255, 248, 238, 0.78);
}

.ourway-tags {
  margin-top: 18px;
  gap: 7px;
}

.ourway-tags span {
  padding: 6px 11px;
  font-size: 9.5px;
  letter-spacing: 0.13em;
  background: rgba(255, 248, 238, 0.075);
  border-color: rgba(255, 248, 238, 0.22);
}

/* ---------- Section Spacing ---------- */

.kalavya-difference {
  padding: 72px var(--x);
}

.client-models {
  padding: 70px var(--x);
}

.kalavya-difference .section-intro,
.client-models .section-intro {
  margin-bottom: 30px;
}

.kalavya-difference .section-intro h2,
.client-models .section-intro h2 {
  font-size: clamp(30px, 2.8vw, 42px);
}

.kalavya-difference .section-intro p,
.client-models .section-intro p {
  font-size: 14.5px;
  line-height: 1.62;
}

/* ---------- Compact Card Grids ---------- */

.difference-grid,
.model-compass {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.model-compass {
  max-width: 1220px;
  margin: 0 auto;
}

/* ---------- Card Styling ---------- */

.difference-grid article,
.model-compass article {
  position: relative;
  min-height: 168px;
  padding: 20px 20px 22px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(33, 29, 26, 0.10);
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.92), rgba(239, 224, 205, 0.80));
  box-shadow: 0 12px 30px rgba(33, 29, 26, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.model-compass article {
  min-height: 178px;
}

.difference-grid article:hover,
.model-compass article:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 101, 77, 0.25);
  box-shadow: 0 20px 42px rgba(33, 29, 26, 0.10);
}

/* Hide old numbers if any still remain */
.difference-grid small,
.model-compass small {
  display: none !important;
}

/* Soft image texture inside cards */

.difference-grid article::before,
.model-compass article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  filter: saturate(0.85) contrast(0.95);
}

.difference-grid article:nth-child(1)::before {
  background-image: url("../img/our-way/Philosophy-01.jpg");
}

.difference-grid article:nth-child(2)::before {
  background-image: url("../img/our-way/Philosophy-02.jpg");
}

.difference-grid article:nth-child(3)::before {
  background-image: url("../img/our-way/Philosophy-03.jpg");
}

.difference-grid article:nth-child(4)::before {
  background-image: url("../img/our-way/Philosophy-04.jpg");
}

.model-compass article:nth-child(1)::before {
  background-image: url("../img/our-way/model-01.jpg");
}

.model-compass article:nth-child(2)::before {
  background-image: url("../img/our-way/model-02.png");
}

.model-compass article:nth-child(3)::before {
  background-image: url("../img/our-way/model-03.png");
}

.model-compass article:nth-child(4)::before {
  background-image: url("../img/our-way/ourway-full-solutions.jpg");
}

/* Premium accent line */

.difference-grid article::after,
.model-compass article::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clay), rgba(201, 133, 120, 0.25));
}

/* Card Text */

.difference-grid h3,
.model-compass h3 {
  margin: 18px 0 8px;
  font-size: clamp(21px, 1.6vw, 26px);
  line-height: 1.06;
}

.difference-grid p,
.model-compass p {
  max-width: 340px;
  font-size: 13.4px;
  line-height: 1.55;
  color: rgba(95, 85, 77, 0.92);
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .difference-grid,
  .model-compass {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .difference-grid article,
  .model-compass article {
    min-height: 160px;
  }
}

@media (max-width: 760px) {
  .ourway-hero {
    min-height: 62vh;
    padding-top: 122px;
    padding-bottom: 46px;
  }

  .difference-grid,
  .model-compass {
    grid-template-columns: 1fr;
  }

  .difference-grid article,
  .model-compass article {
    min-height: auto;
    padding: 20px 20px 22px;
  }
}

@media (max-width: 640px) {
  .ourway-hero-content h1 {
    font-size: 40px;
  }

  .ourway-hero-content p {
    font-size: 14px;
  }

  .kalavya-difference,
  .client-models {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

/* =========================================================
   OUR WAY HERO — SOFTER, SMALLER, PREMIUM
========================================================= */

.ourway-hero-soft {
  position: relative;
  min-height: 430px;
  padding: calc(var(--header) + 56px) var(--x) 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 133, 120, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(22, 56, 60, 0.10), transparent 28%),
    linear-gradient(135deg, #f7efe4 0%, #ead8c4 54%, #f9f3eb 100%);
}

.ourway-hero-soft::before {
  content: "Our Way";
  position: absolute;
  right: -18px;
  bottom: -24px;
  color: rgba(59, 42, 34, 0.055);
  font-family: var(--heading);
  font-size: clamp(78px, 13vw, 190px);
  line-height: 0.8;
  pointer-events: none;
}

.ourway-hero-soft::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(33, 29, 26, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.ourway-hero-soft .ourway-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.ourway-hero-soft .kicker {
  margin-bottom: 12px;
}

.ourway-hero-soft h1 {
  max-width: 500px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.ourway-hero-soft p {
  max-width: 470px;
  color: rgba(95, 85, 77, 0.92);
  font-size: 14.4px;
  line-height: 1.58;
  font-weight: 300;
}

/* right-side floating chips */

.ourway-tags-vertical {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  margin: 0;
}

.ourway-tags-vertical span {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.62);
  border: 1px solid rgba(33, 29, 26, 0.11);
  box-shadow: 0 10px 24px rgba(33, 29, 26, 0.055);
  color: rgba(59, 42, 34, 0.74);
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.ourway-tags-vertical span:nth-child(2) {
  margin-right: 22px;
}

.ourway-tags-vertical span:nth-child(3) {
  margin-right: 44px;
}

.ourway-tags-vertical span:nth-child(4) {
  margin-right: 22px;
}

/* mobile */

@media (max-width: 760px) {
  .ourway-hero-soft {
    min-height: auto;
    padding: calc(var(--header) + 42px) var(--x) 52px;
    display: block;
  }

  .ourway-hero-soft::after {
    inset: 14px;
    border-radius: 26px;
  }

  .ourway-hero-soft h1 {
    font-size: 38px;
  }

  .ourway-hero-soft p {
    font-size: 14px;
  }

  .ourway-tags-vertical {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
  }

  .ourway-tags-vertical span,
  .ourway-tags-vertical span:nth-child(2),
  .ourway-tags-vertical span:nth-child(3),
  .ourway-tags-vertical span:nth-child(4) {
    margin-right: 0;
  }
}

/* OUR WAY — golden brown refinement */

.ourway-hero-soft .kicker {
  color: #8b6541;
  letter-spacing: 0.18em;
}

.ourway-hero-soft::before {
  color: rgba(139, 101, 65, 0.08);
}

/* More hero carousel dots */

.hero-bg-dots {
  max-width: 220px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-dot {
  flex: 0 0 auto;
}

.hero-dot.active {
  width: 26px;
}

@media (max-width: 640px) {
  .hero-bg-dots {
    right: var(--x);
    left: var(--x);
    bottom: 28px;
    max-width: none;
    justify-content: flex-start;
  }

  .hero-dot.active {
    width: 22px;
  }
}