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

:root {
  --font-stack: "Google Sans", "Product Sans", "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gold: #b39770;
  --gold-dark: #987b53;
  --gold-light: #c5ad89;
  --ink: #10110f;
  --muted: #555550;
  --paper: #fafaf8;
  --line: #b6ac9b;
  font-size: clamp(14px, 1.5625vw, 22.5px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-stack);
  font-size: 0.75rem;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

button, input, textarea {
  font: inherit;
  font-family: var(--font-stack);
}

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

button {
  color: inherit;
  cursor: pointer;
}

button, a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

h1, h2, h3, p {
  margin: 0;
}

h2 {
  font-size: 1.6875rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.025rem;
}

.container {
  width: 89.25%;
  max-width: 80.325rem;
  margin-inline: auto;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: -5rem;
  left: 1rem;
  padding: 0.75rem;
  background: white;
}

.skip-link:focus {
  top: 0.625rem;
}

.eyebrow {
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: #a18d6e;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Header */
.site-header {
  background: #fafaf8;
}

.header-inner {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.brand:hover .brand-logo {
  opacity: 0.88;
}

.brand-art {
  display: block;
  height: 2.35rem;
  width: 10rem;
  background: url('assets/logo.png') left center / contain no-repeat;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 29.3rem;
  justify-content: space-between;
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: -0.005rem;
  white-space: nowrap;
}

.desktop-nav > a {
  position: relative;
}

.desktop-nav > a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 1px;
  background: #858176;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.desktop-nav > a:hover:after,
.desktop-nav > a.active:after {
  transform: scaleX(1);
}

.text-button {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 2.0625rem;
  padding: 0.45rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background: var(--gold-dark);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.015rem;
  line-height: 1.5;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(152, 123, 83, 0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.button:hover {
  background: #846740;
  box-shadow: 0 4px 14px rgba(152, 123, 83, 0.35);
}

.button svg, .text-link svg {
  width: 1rem;
  height: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.header-contact {
  min-width: 7.75rem;
  margin-left: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(182, 172, 155, 0.5);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  backdrop-filter: blur(6px);
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.18rem 0.45rem;
  font: inherit;
  font-size: 0.625rem;
  font-weight: 700;
  color: #55534c;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.lang-btn:hover {
  color: #10110f;
}

.lang-btn.active {
  color: #ffffff;
  background: #10110f;
}

.lang-sep {
  color: rgba(182, 172, 155, 0.6);
  font-size: 0.6rem;
  user-select: none;
}

.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eae6df;
}

.mobile-lang-switch .lang-btn {
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0.3rem;
  border: 1px solid rgba(182, 172, 155, 0.45);
  color: #383733;
}

.mobile-lang-switch .lang-btn.active {
  background: #10110f;
  color: #fff;
  border-color: #10110f;
}

.audience {
  position: relative;
}

.audience summary {
  cursor: pointer;
  list-style: none;
}

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

.chevron {
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  vertical-align: 0.15rem;
  margin-left: 0.4rem;
}

.audience-menu {
  position: absolute;
  top: 1.8rem;
  left: -1rem;
  z-index: 10;
  min-width: 12rem;
  padding: 0.5rem;
  background: var(--paper);
  border: 1px solid #e5dfd5;
  border-radius: 0.3rem;
  box-shadow: 0 0.5rem 1.5rem #0001;
}

.audience-menu a {
  display: block;
  padding: 0.65rem;
}

.audience-menu a:hover {
  background: #ede8df;
}

.menu-toggle, .mobile-nav {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #171915;
  color: white;
}

.hero-media-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  --hero-ba-pos: 0%;
  --hero-scan-opacity: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-before-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: inset(0 calc(100% - var(--hero-ba-pos, 0%)) 0 0);
  will-change: clip-path;
}

.hero-scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--hero-ba-pos, 0%);
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 235, 190, 0.95) 25%, #ffffff 50%, rgba(255, 235, 190, 0.95) 75%, transparent 100%);
  box-shadow: 0 0 16px rgba(182, 154, 114, 0.9), 0 0 6px #fff;
  opacity: var(--hero-scan-opacity, 0);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.hero-ambient-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(255, 230, 180, 0.16) 0%, rgba(255, 210, 150, 0.05) 50%, transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

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

.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #070906eb 0%, #070906cc 34%, #07090620 62%, #07090650 100%);
}

.hero-inner {
  min-height: 21rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 2.3125rem 1.9375rem;
}

.hero-copy {
  max-width: 27rem;
}

.hero .eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.12rem;
  color: #d0c4ae;
  margin-bottom: 0.45rem;
}

.highlight-wrap {
  position: relative;
  display: inline-block;
}

.handwritten-stroke {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -4px;
  width: calc(100% + 4px);
  height: 12px;
  pointer-events: none;
  overflow: visible;
}

.handwritten-stroke path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.highlight-wrap.active-stroke .handwritten-stroke path {
  stroke-dashoffset: 0;
}

.pulse-glow {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pulse-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(179, 151, 112, 0.4);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035rem;
}

h1 span {
  color: #b69a72;
}

.hero-description {
  max-width: 23.6rem;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005rem;
  margin-top: 0.9375rem;
  color: #f1ede6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.0625rem;
}

.hero-actions .button:first-child {
  min-width: 10rem;
}

.button-outline {
  background: #ffffff;
  color: #10110f;
  border: 1.5px solid rgba(182, 172, 155, 0.65);
  min-width: 8.4rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.button-outline:hover {
  background: #f7f5f0;
  border-color: var(--gold-dark);
  color: #10110f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-actions .button-outline {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.hero-actions .button-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

.small-circle {
  font-size: 1rem;
  line-height: 1;
}

.hero-caption-wrap {
  position: absolute;
  bottom: 1.05rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  z-index: 5;
}

.hero-caption {
  position: static;
  text-align: right;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11rem;
  line-height: 1.6;
}

.hero-caption:before, .hero-caption:after {
  content: '';
  display: block;
  height: 1px;
  width: 4.75rem;
  background: #ffffff50;
  margin: 0.5rem 0 0.5rem auto;
}

.hero-transformation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.22rem 0.65rem;
  background: rgba(14, 16, 13, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 9999px;
  font-size: 0.54rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 243, 237, 0.95);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
}

.hero-transformation-pill .pill-dot {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 7px rgba(52, 211, 153, 0.85);
  transition: background 0.45s ease, box-shadow 0.45s ease;
  flex-shrink: 0;
}

.hero-transformation-pill.is-before {
  border-color: rgba(251, 191, 36, 0.38);
  background: rgba(18, 16, 11, 0.62);
  color: #fff9ed;
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(251, 191, 36, 0.2);
}

.hero-transformation-pill.is-before .pill-dot {
  background: #fbbf24;
  box-shadow: 0 0 7px rgba(251, 191, 36, 0.85);
}

/* Benefits Section */
.benefits {
  padding: 1.45rem 0 1.375rem;
  background: #f6f6f4;
}

.benefits-grid {
  width: 95.3%;
  max-width: 85.77rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.line-icon {
  width: 1.875rem;
  height: 1.875rem;
}

.benefits h2 {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.015rem;
  font-weight: 600;
  margin: 0.15rem 0 0.25rem;
}

.benefits p {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Mission Section */
.mission {
  display: grid;
  grid-template-columns: 52.15% 47.85%;
  background: #f7f7f5;
}

.mission-media {
  position: relative;
  min-height: 20rem;
  isolation: isolate;
  overflow: hidden;
  display: flex;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: #171915;
  --ba-pos: 95%;
}

.ba-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ba-after {
  z-index: 1;
}

.ba-after:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 9, 6, 0.75) 0%, rgba(7, 9, 6, 0.1) 45%, transparent 100%);
  pointer-events: none;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
  will-change: clip-path;
}

.ba-before:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 9, 6, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 44px;
  margin-left: -22px;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

.ba-handle-line {
  width: 2px;
  flex: 1;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.ba-handle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.9);
  transition: transform 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}

.ba-handle:hover .ba-handle-btn,
.ba-handle:focus-visible .ba-handle-btn {
  transform: scale(1.12);
  background: var(--gold-dark);
}

.ba-handle-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.ba-badge {
  position: absolute;
  top: 1rem;
  z-index: 5;
  padding: 0.35rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  border-radius: 0.35rem;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.after-badge {
  right: 1rem;
  background: rgba(16, 17, 15, 0.8);
  color: #f1ede6;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.before-badge {
  left: 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: #10110f;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.ba-hint {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  padding: 0.3rem 0.85rem;
  background: rgba(16, 17, 15, 0.8);
  color: #ede8df;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.before-after-container.has-interacted .ba-hint {
  opacity: 0;
  pointer-events: none;
}

.mission-quote-overlay {
  position: absolute;
  left: 10%;
  bottom: 1.5rem;
  right: 10%;
  margin: 0;
  color: white;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 500;
  z-index: 5;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mission-quote-overlay:after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
}

.mission-copy {
  max-width: 43rem;
  padding: 1.8125rem 3.25rem 1.875rem 2.3125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mission-copy h2 {
  font-size: 1.6875rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025rem;
}

.mission-copy > p:not(.eyebrow) {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 1rem 0 1.05rem;
}

.mission-copy .button {
  min-width: 8.375rem;
}

/* Properties Section */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 0.8125rem;
}

.properties {
  padding-top: 1.375rem;
  padding-bottom: 1rem;
}

.properties .eyebrow {
  color: #383b33;
  letter-spacing: 0.17rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0 0.25rem;
  border: 0;
  background: none;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
}

.text-link:hover, .text-button:hover {
  color: #94754a;
}

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

.property-card {
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0;
  text-align: left;
  background: #f2f1ed;
  transition: transform 0.2s, box-shadow 0.2s;
}

.property-image {
  display: block;
  width: 100%;
  aspect-ratio: 292/117;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transition: filter 0.2s;
}

.photo-home {
  background-image: url('assets/apartment-studio.jpg');
}

.photo-office {
  background-image: url('assets/apartment-family.jpg');
}

.photo-retail {
  background-image: url('assets/apartment-signature.jpg');
}

.property-card:hover .property-image {
  filter: brightness(1.06);
}

.property-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.0625rem;
  padding: 0.5rem 0.8125rem;
}

.property-info > span:first-child {
  min-width: 0;
}

.property-info strong {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015rem;
}

.property-description {
  display: block;
  margin-top: 0.15rem;
  color: #5b5b54;
  font-size: 0.625rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.circle-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 1.9375rem;
  width: 1.9375rem;
  height: 1.9375rem;
  border: 1px solid #b2a185;
  border-radius: 50%;
  color: #9b815b;
  transition: border-color 0.2s, color 0.2s;
}

.circle-arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

.property-card:hover .circle-arrow {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

/* Process Section */
.process {
  padding-top: 1.125rem;
  padding-bottom: 1.25rem;
}

.process .section-heading {
  margin-bottom: 1.125rem;
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.125rem;
  margin: 0;
  padding: 0;
}

.process-grid li > div:last-of-type {
  flex: 0 0 10rem;
}

.process-grid li {
  display: flex;
  position: relative;
  gap: 0.8125rem;
}

.process-icon {
  width: 3.625rem;
  height: 3.625rem;
  flex: 0 0 3.625rem;
  display: grid;
  place-items: center;
  border: 1px solid #afa593;
  border-radius: 50%;
}

.process-icon svg {
  width: 2.1rem;
  height: 2.1rem;
}

.step-number {
  display: block;
  color: #555750;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0.0625rem 0 0.25rem;
  font-feature-settings: "tnum";
}

.process-grid h3 {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.015rem;
  white-space: nowrap;
  font-weight: 600;
}

.process-grid p {
  font-size: 0.65rem;
  line-height: 1.5;
  color: #62635d;
  margin-top: 0.5rem;
}

.step-arrow {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: -1.2rem;
  top: 1rem;
  color: #898174;
  stroke-width: 0.8;
}

/* App Showcase Section */
.app-section {
  padding-block: 2.75rem 3.25rem;
  border-top: 1px solid #e7e2d9;
}

.app-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #f7f4ed 0%, #faf8f4 100%);
  border: 1px solid #e4dfd5;
  border-radius: 0.85rem;
  padding: 2.75rem 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.app-copy h2 {
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02rem;
}

.app-copy > p {
  font-size: 0.725rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.85rem;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.app-feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.55rem;
  background: #ffffff;
  border: 1px solid #dfd7cc;
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.app-feature-item strong {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--ink);
}

.app-feature-item p {
  font-size: 0.675rem;
  line-height: 1.5;
  color: #63645e;
  margin-top: 0.15rem;
}

.app-cta-btn {
  gap: 0.65rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.68rem;
}

.app-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.app-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.app-card-preview {
  position: relative;
  width: 100%;
  max-width: 20.5rem;
  background: #ffffff;
  border: 1px solid #dfd8cc;
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(16, 17, 15, 0.09);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.4s ease;
}

.app-card-preview:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 24px 50px rgba(16, 17, 15, 0.14);
}

.app-phone-header {
  height: 2.35rem;
  background: #10110f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.15rem;
  color: #fff;
  font-size: 0.625rem;
  letter-spacing: 0.05rem;
}

.phone-notch {
  width: 2.75rem;
  height: 0.35rem;
  background: #2b2d28;
  border-radius: 1rem;
}

.phone-title {
  color: #c5ad89;
  font-weight: 600;
}

.app-phone-body {
  padding: 1.35rem;
}

.app-mock-status {
  background: #faf8f5;
  border: 1px solid #ece5da;
  border-radius: 0.65rem;
  padding: 0.95rem;
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-badge {
  align-self: flex-start;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  background: #e7f4e8;
  color: #2e6930;
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
}

.mock-rent {
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 700;
}

.mock-date {
  font-size: 0.625rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.app-mock-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.65rem;
  color: #4b4c47;
}

.mock-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot.green { background: #34a853; }
.mock-dot.blue { background: #1a73e8; }
.mock-dot.gold { background: var(--gold); }

/* Live Toast Notification inside App */
.app-toast-notification {
  position: absolute;
  top: 3.25rem;
  left: 1rem;
  right: 1rem;
  z-index: 25;
  background: rgba(16, 17, 15, 0.96);
  border: 1px solid rgba(179, 151, 112, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 0.55rem;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: toastSlideInOut 7s infinite cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #2e6930;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.toast-body strong {
  font-size: 0.65rem;
  color: #ffffff;
  font-weight: 600;
}

.toast-body span {
  font-size: 0.575rem;
  color: #baa17d;
  margin-top: 0.1rem;
}

.toast-time {
  font-size: 0.55rem;
  color: #8c8b84;
}

@keyframes toastSlideInOut {
  0%, 15% { opacity: 0; transform: translateY(-18px) scale(0.95); }
  25%, 85% { opacity: 1; transform: translateY(0) scale(1); }
  95%, 100% { opacity: 0; transform: translateY(-18px) scale(0.95); }
}

/* ==========================================
   LUXURY PRELOADER (LIGHT THEME)
   ========================================== */
body.is-loading {
  overflow: hidden !important;
  height: 100vh;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbfbf9;
  color: #1a1b18;
  transition: transform 0.88s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.55s ease;
  will-change: transform;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.site-preloader::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(179, 151, 112, 0.85) 50%, transparent);
  box-shadow: 0 0 14px rgba(179, 151, 112, 0.5);
  pointer-events: none;
}

.site-preloader.is-loaded {
  transform: translateY(-100%);
  pointer-events: none;
}

.site-preloader.is-hidden {
  display: none !important;
}

.preloader-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 197, 169, 0.35) 0%, rgba(245, 242, 237, 0.1) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.preloader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 1.5rem;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 146px;
  max-width: 58vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(179, 151, 112, 0.2));
  animation: preloaderLogoPulseLight 2.4s ease-in-out infinite alternate;
}

@keyframes preloaderLogoPulseLight {
  0% { transform: scale(1); opacity: 0.94; }
  100% { transform: scale(1.025); opacity: 1; }
}

.preloader-tagline {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a766e;
  margin-top: 0.75rem;
}

.preloader-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 190px;
  max-width: 72vw;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.preloader-track {
  width: 100%;
  height: 2px;
  background: rgba(182, 172, 155, 0.25);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #987b53, #b39770, #c5ad89);
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(179, 151, 112, 0.5);
  transition: width 0.14s ease-out;
}

.preloader-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preloader-phase {
  color: #88847c;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.preloader-counter {
  color: #8c6f47;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

@media (max-width: 680px) {
  .preloader-logo {
    width: 126px;
  }
  .preloader-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
  .preloader-meter {
    width: 160px;
  }
}

/* Staggered Scroll Reveal Animations */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

/* Counter-Up Numbers */
.counter-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 1.2ch;
}

.counter-suffix {
  color: var(--gold);
}

/* Interactive Process Step Glow */
.process-grid li {
  transition: transform 0.3s ease;
}

.process-grid li:hover {
  transform: translateY(-4px);
}

.process-grid li.active-step .process-icon {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(179, 151, 112, 0.22);
  transform: scale(1.06);
  transition: all 0.35s ease;
}

.process-grid li.active-step .step-number {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Property Card Badge & Hover */
.property-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.property-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.55rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
  background: rgba(16, 17, 15, 0.85);
  color: #eeddbb;
  border-radius: 0.25rem;
  border: 1px solid rgba(179, 151, 112, 0.45);
  backdrop-filter: blur(4px);
}

@media (max-width: 820px) {
  .app-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-cta-btn, .app-cta-btn svg { transition: none; }
}

/* Contact / Statistics */
.contact-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #191e18;
  color: white;
}

.contact-band > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: center;
  z-index: -2;
  filter: brightness(0.85);
}

.contact-band:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #080c0830;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 10rem;
  padding-block: 1.875rem 1.5rem;
}

.contact-inner h2 {
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: -0.025rem;
  margin-bottom: 0.875rem;
  font-weight: 500;
}

.contact-inner .button {
  min-width: 8.75rem;
}

.statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0;
  text-align: center;
}

.statistics dt {
  color: #baa17d;
  font-size: 2.0625rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.035rem;
}

.statistics dd {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  font-weight: 400;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: #f7f7f4;
}

.footer-inner {
  min-height: 5.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer .brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
}

.site-footer .brand-logo {
  height: 2.1rem;
  width: auto;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.65rem;
  font-weight: 500;
}

.footer-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 0.65rem;
  text-align: right;
}

.footer-end small {
  font-size: 0.5rem;
  color: #787974;
  white-space: nowrap;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 0.875rem;
}

.social-links button {
  border: 0;
  background: none;
  padding: 0;
  color: #666760;
}

.social-links svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

.linkedin {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1;
}

.social-links button:hover {
  color: var(--gold);
}

.footer-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid #e7e2d8;
  font-size: 0.65rem;
  color: var(--muted);
}

.footer-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.footer-contact-bar a:hover {
  color: var(--gold-dark);
}

.footer-icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--gold);
}

.footer-sep {
  color: #cfc8bd;
  font-size: 0.5rem;
}

/* Contact Modal Details */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.95rem;
  background: #f3f0e8;
  border: 1px solid #e3ddcf;
  border-radius: 0.45rem;
  color: var(--ink);
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-item:hover {
  background: #eae4d8;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contact-item-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: #ffffff;
  color: var(--gold);
  border: 1px solid #dfd8c9;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.contact-item-value {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink);
}

/* Modal Dialog */
dialog {
  border: 1px solid #e1ddd4;
  border-radius: 0.5rem;
  padding: 2.5rem;
  width: min(550px, calc(100% - 32px));
  max-height: 85vh;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 20px 100px #0003;
}

dialog::backdrop {
  background: #111a;
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 8px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 30px;
  color: #67645b;
}

.dialog-image {
  height: 210px;
  border-radius: 4px;
  margin-bottom: 24px;
}

dialog h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025rem;
}

dialog p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

dialog .eyebrow {
  color: #957750;
  font-size: 0.75rem;
}

dialog .dialog-note {
  font-size: 0.8125rem;
  border-top: 1px solid #dedbd3;
  padding-top: 1rem;
  margin-top: 1.5rem;
}

dialog ol {
  padding-left: 20px;
}

dialog li {
  line-height: 1.6;
  margin: 13px 0;
  font-size: 15px;
}

.category-options {
  display: grid;
  gap: 9px;
}

.category-options button {
  border: 1px solid #d4ccbc;
  background: #f4f1eb;
  padding: 15px;
  text-align: left;
  border-radius: 4px;
  font-weight: 500;
}

.category-options button:hover {
  background: #e9e1d3;
}

.property-image.dialog-image {
  height: auto;
  aspect-ratio: 3/2;
}


/* Responsive Media Queries */
@media (min-width: 1500px) {
  .hero-inner {
    min-height: 24rem;
  }
  .hero-image {
    object-position: center 55%;
  }
  .mission-photo {
    min-height: 20rem;
  }
  .mission-copy {
    padding-block: 2.5rem;
  }
}

@media (min-width: 761px) and (max-width: 950px) {
  .desktop-nav {
    gap: 0.9rem;
  }
  .header-inner {
    gap: 1rem;
  }
  .brand {
    width: auto;
    height: auto;
  }
  .brand-logo {
    height: 2.1rem;
  }
  .header-contact {
    min-width: 7rem;
    margin-left: 0;
    padding-inline: 0.75rem;
  }
  .mission-copy {
    padding-inline: 1.75rem;
  }
  .site-footer nav {
    gap: 0.8rem;
  }
  .footer-inner {
    gap: 1.2rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .process-grid li {
    gap: 0.75rem;
  }
  .process-grid h3 {
    font-size: 0.7rem;
  }
  .process-icon {
    flex-basis: 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
  }
  .step-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    font-size: 16px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 76px;
  }
  .brand {
    width: auto;
    height: auto;
  }
  .brand-logo {
    height: 36px;
  }
  .desktop-nav, .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 4px;
    background: none;
    border: 0;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #242722;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav:not([hidden]) {
    display: grid;
    padding: 4px 20px 20px;
    border-top: 1px solid #e4e0d8;
  }
  .mobile-nav a, .mobile-nav button {
    padding: 13px 0;
    font-size: 15px;
    border: 0;
    border-bottom: 1px solid #eae6df;
    background: none;
    text-align: left;
  }
  .hero-inner {
    min-height: 535px;
    padding-block: 50px 78px;
    align-items: flex-start;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero:after {
    background: linear-gradient(90deg, #090b09e6, #090b0960);
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero .eyebrow {
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 1.5px;
    max-width: 310px;
    margin-bottom: 17px;
  }
  h1 {
    font-size: clamp(29px, 7.7vw, 46px);
    letter-spacing: -0.8px;
    line-height: 1.15;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.7;
    max-width: 450px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .button {
    font-size: 12px;
    min-height: 44px;
    padding: 11px 17px;
  }
  .hero-actions .button:first-child {
    min-width: 0;
  }
  .button-outline {
    min-width: 0;
  }
  .hero-caption {
    bottom: 12px;
    font-size: 9px;
    letter-spacing: 1.3px;
  }
  .hero-caption:before {
    margin-block: 8px;
  }
  .hero-caption:after {
    display: none;
  }
  .hero-transformation-pill {
    padding: 0.18rem 0.52rem;
    font-size: 0.48rem;
    letter-spacing: 0.06em;
    gap: 0.3rem;
  }
  .hero-transformation-pill .pill-dot {
    width: 0.24rem;
    height: 0.24rem;
  }
  .benefits {
    padding: 28px 0;
  }
  .benefits-grid {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 14px;
  }
  .line-icon {
    width: 32px;
    height: 32px;
  }
  .benefits h2 {
    font-size: 13px;
    margin-block: 5px;
  }
  .benefits p {
    font-size: 12px;
    line-height: 1.6;
  }
  .mission {
    grid-template-columns: 1fr;
  }
  .mission-photo {
    min-height: 285px;
  }
  .mission-photo blockquote {
    left: 24px;
    bottom: 25px;
    font-size: 21px;
  }
  .mission-copy {
    max-width: none;
    padding: 32px 24px 35px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 2.6px;
  }
  .mission-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .mission-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
    margin: 18px 0 21px;
  }
  .mission-copy > p br {
    display: none;
  }
  h2 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .properties {
    padding: 30px 0 8px;
  }
  .section-heading {
    display: block;
    margin-bottom: 20px;
  }
  .section-heading .text-link {
    margin-top: 13px;
    font-size: 12px;
  }
  .property-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .property-info {
    padding: 13px;
    min-height: 64px;
  }
  .property-info strong {
    font-size: 17px;
  }
  .property-description {
    font-size: 12px;
    margin-top: 4px;
  }
  .circle-arrow {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .process {
    padding: 30px 0 34px;
  }
  .process .section-heading {
    margin-bottom: 25px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .process-grid li {
    gap: 20px;
  }
  .process-grid li > div:last-of-type {
    flex: 1;
    min-width: 0;
  }
  .process-icon {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }
  .process-icon svg {
    width: 35px;
    height: 35px;
  }
  .step-number {
    font-size: 15px;
  }
  .process-grid h3 {
    font-size: 16px;
    white-space: normal;
  }
  .process-grid p {
    font-size: 14px;
    margin-top: 7px;
  }
  .process-grid p br {
    display: none;
  }
  .step-arrow {
    display: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 34px;
  }
  .contact-inner h2 {
    font-size: 26px;
    margin-bottom: 19px;
  }
  .statistics {
    gap: 14px;
    text-align: left;
  }
  .statistics dt {
    font-size: 33px;
  }
  .statistics dd {
    font-size: 11px;
  }
  .footer-inner {
    flex-wrap: wrap;
    padding-block: 26px;
    gap: 26px;
  }
  .site-footer .brand {
    width: auto;
    height: auto;
  }
  .site-footer .brand-logo {
    height: 32px;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    font-size: 12px;
  }
  .site-footer nav button {
    text-align: left;
  }
  .footer-end {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer-end small {
    font-size: 10px;
  }
  .social-links {
    gap: 18px;
  }
  .social-links button {
    min-width: 24px;
    min-height: 24px;
  }
  .social-links svg {
    width: 18px;
    height: 18px;
  }
  .linkedin {
    font-size: 20px;
  }
  dialog {
    padding: 35px 23px;
  }
  dialog h2 {
    font-size: 27px;
  }
  .footer-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-block: 16px 20px;
    font-size: 13px;
  }
  .footer-sep {
    display: none;
  }
  .footer-icon {
    width: 15px;
    height: 15px;
  }
}

/* ==========================================
   SUBPAGE DESIGN SYSTEM (Kantro Luxury Style)
   ========================================== */
.subpage-hero {
  background: linear-gradient(180deg, #f6f5f0 0%, #fafaf8 100%);
  border-bottom: 1px solid rgba(182, 172, 155, 0.3);
  padding: 4.5rem 0 3.2rem;
  text-align: center;
  position: relative;
}

.subpage-hero-inner {
  width: 92%;
  max-width: 52rem;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #65645d;
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: #1a1b18;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #856338;
}

.breadcrumb-sep {
  opacity: 0.5;
}

.subpage-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #10110f;
  margin: 0 0 1.1rem;
}

.subpage-hero h1 span {
  color: #856338;
  display: inline-block;
}

.subpage-lead {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.65;
  color: #383733;
  max-width: 40rem;
  margin: 0 auto 1.8rem;
}

.subpage-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.subpage-actions .button {
  background: var(--gold-dark);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(152, 123, 83, 0.25);
}

.subpage-actions .button:hover {
  background: #846740;
  box-shadow: 0 6px 18px rgba(152, 123, 83, 0.35);
}

.subpage-actions .button-outline {
  background: #ffffff;
  color: #10110f;
  border: 1.5px solid rgba(182, 172, 155, 0.65);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.subpage-actions .button-outline:hover {
  background: #fbf9f5;
  border-color: var(--gold-dark);
  color: #10110f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.subpage-body {
  padding: 3.5rem 0 5rem;
}

.subpage-section {
  margin-bottom: 4.5rem;
}

.subpage-section:last-child {
  margin-bottom: 0;
}

.section-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #10110f;
  margin: 0.35rem 0 0.75rem;
}

.section-head p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: #383733;
  margin: 0;
}

/* 4 Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.75rem;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.pillar-badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #856338;
  background: rgba(179, 151, 112, 0.14);
  border: 1px solid rgba(179, 151, 112, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #10110f;
}

.pillar-card p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: #383733;
  margin: 0 0 1.25rem;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar-list li {
  font-size: 0.74rem;
  line-height: 1.55;
  color: #1f201d;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.pillar-list li::before {
  content: '✓';
  color: #856338;
  font-weight: 800;
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
  border: 1px solid rgba(182, 172, 155, 0.35);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.76rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(182, 172, 155, 0.25);
  vertical-align: middle;
}

.comparison-table th {
  background: #f7f6f2;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #383733;
  font-weight: 700;
}

.comparison-table th.col-arone {
  background: #fdfaf4;
  color: #856338;
  font-weight: 800;
  border-top: 3px solid #b39770;
  border-left: 1px solid rgba(179, 151, 112, 0.25);
  border-right: 1px solid rgba(179, 151, 112, 0.25);
}

.comparison-table td.col-arone {
  background: rgba(179, 151, 112, 0.05);
  font-weight: 600;
  color: #10110f;
  border-left: 1px solid rgba(179, 151, 112, 0.18);
  border-right: 1px solid rgba(179, 151, 112, 0.18);
}

.comparison-table td strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #10110f;
  display: block;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Elegant Luxury Badges (Quiet Luxury contrast) */
.tag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.tag-badge.best {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.tag-badge.warn {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.tag-badge.neutral {
  background: #f4f4f2;
  color: #4b4b45;
  border: 1px solid #e2e1dc;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.9rem 0 0.6rem;
  color: #10110f;
}

.value-card p {
  font-size: 0.76rem;
  line-height: 1.65;
  color: #383733;
  margin: 0;
}

/* Story Split (About Page) */
.story-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Key Stats (About Page) */
.about-stats-wrap {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.75rem;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0;
  text-align: center;
}

.about-stats-grid dt {
  color: #856338;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-stats-grid dd {
  margin: 0.4rem 0 0;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4a4943;
  line-height: 1.4;
}

/* Interactive Contact & Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.75rem;
  padding: 2.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #10110f;
}

.contact-info-card p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: #383733;
  margin-bottom: 1.8rem;
}

.contact-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: #1f201d;
  font-weight: 500;
}

.contact-meta-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #856338;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.form-card {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.4);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1b18;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #cfc7b9;
  border-radius: 0.4rem;
  background: #fdfdfc;
  font-size: 0.78rem;
  color: #10110f;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #856338;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(179, 151, 112, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-estimator-pill {
  background: #fcfaf6;
  border: 1px dashed #b39770;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-estimator-pill strong {
  font-size: 0.76rem;
  color: #10110f;
}

.form-estimator-pill span {
  font-size: 0.85rem;
  font-weight: 800;
  color: #065f46;
  text-transform: uppercase;
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #b39770;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item summary {
  padding: 1.2rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #10110f;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #856338;
  transition: transform 0.2s ease;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
  font-size: 0.76rem;
  line-height: 1.7;
  color: #383733;
}

/* Legal Content System (Privacy & Terms) */
.legal-wrap {
  max-width: 48rem;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(182, 172, 155, 0.35);
  border-radius: 0.75rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.legal-wrap h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #10110f;
  margin: 2rem 0 0.75rem;
  border-bottom: 1px solid rgba(182, 172, 155, 0.25);
  padding-bottom: 0.5rem;
}

.legal-wrap h2:first-of-type {
  margin-top: 0;
}

.legal-wrap p {
  font-size: 0.76rem;
  line-height: 1.75;
  color: #383733;
  margin: 0 0 1.15rem;
}

.legal-wrap ul {
  font-size: 0.76rem;
  line-height: 1.75;
  color: #383733;
  margin: 0 0 1.35rem;
  padding-left: 1.4rem;
}

.legal-wrap li {
  margin-bottom: 0.45rem;
}

.legal-date {
  font-size: 0.65rem;
  color: #6d6b63;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
  display: block;
  font-weight: 600;
}

/* Subpage Responsive */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .story-split {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-wrap {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 680px) {
  .subpage-hero {
    padding: 3.2rem 0 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 1.6rem;
  }
  .contact-info-card {
    padding: 1.6rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    transition: none !important;
  }
}
