:root {
  --bg: #f4eee6;
  --bg-deep: #e8dfd3;
  --bg-soft: #faf6f0;
  --surface: rgba(255, 252, 247, 0.72);
  --surface-strong: rgba(255, 250, 244, 0.9);
  --line: rgba(76, 61, 47, 0.12);
  --line-strong: rgba(76, 61, 47, 0.2);
  --text: #231a16;
  --muted: #7f6e63;
  --accent: #b98a57;
  --accent-strong: #8b5e3c;
  --accent-violet: #6f5d52;
  --accent-gold: #d7b47f;
  --shadow-lg: 0 30px 80px rgba(74, 48, 26, 0.14);
  --shadow-md: 0 18px 40px rgba(74, 48, 26, 0.1);
  --shadow-sm: 0 10px 24px rgba(74, 48, 26, 0.08);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --sidebar-width: 292px;
  --content-max: 1360px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  background:
    radial-gradient(circle at 14% 18%, rgba(215, 180, 127, 0.22), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(185, 138, 87, 0.12), transparent 18%),
    radial-gradient(circle at 74% 42%, rgba(255, 255, 255, 0.45), transparent 20%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ede4 48%, #ece1d4 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(92, 73, 57, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 73, 57, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 92%);
  opacity: 0.34;
}

body::after {
  inset: auto auto -18vh 68vw;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 127, 0.18), transparent 64%);
  filter: blur(24px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
a,
li,
summary,
strong,
span {
  overflow-wrap: anywhere;
}

.page-shell {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  height: 100vh;
  padding: 1.2rem;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(250, 244, 235, 0.92), rgba(239, 229, 215, 0.88)),
    rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(130%);
}

.brand-block {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.brand-copy {
  min-width: 0;
}

.brand-block h1,
.section-heading h3,
.hero-copy h2,
.inquiry-card h3,
.trust-card h3,
.feature-card h4,
.location-card h4,
.service-list-heading,
.service-item h4,
.metric-value,
.map-copy strong {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-block h1 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, var(--accent-gold), var(--accent-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 16px 36px rgba(155, 111, 67, 0.18);
  color: #fffdf8;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 0.42rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.site-nav {
  display: grid;
  gap: 0.35rem;
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateX(4px);
}

.sidebar-card,
.glass-card,
.metrics-card,
.location-card,
.map-card,
.inquiry-card,
.feature-card,
.trust-card,
.hero-strip-card,
.floating-insight,
.faq-list details {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    var(--surface);
  backdrop-filter: blur(18px) saturate(125%);
  box-shadow: var(--shadow-md);
}

.sidebar-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.sidebar-label,
.location-label,
.call-panel-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.sidebar-address {
  margin: 0 0 0.8rem;
  line-height: 1.65;
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.sidebar-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 0.7rem;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.sidebar-call {
  width: 100%;
  margin: 0.15rem 0 0.2rem;
  background:
    linear-gradient(135deg, rgba(215, 180, 127, 0.36), rgba(185, 138, 87, 0.22)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line-strong);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.sidebar-call:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.content {
  order: 1;
  width: min(calc(100% - 3rem), var(--content-max));
  margin: 0 auto;
  padding: 1.35rem 0 5rem;
}

.sidebar {
  order: 2;
}

.section {
  position: relative;
  padding: 1.1rem 0 1.6rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 1.6rem;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-copy h2 {
  max-width: 11.5ch;
  font-size: clamp(2.8rem, 4.8vw, 4.85rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-signal {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 252, 247, 0.62);
  color: var(--accent-strong);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lead,
.glass-card p,
.trust-card p,
.feature-card p,
.location-card p,
.map-copy p,
.faq-list p,
.inquiry-card p {
  color: #56473f;
  line-height: 1.74;
  font-size: 1rem;
  max-width: 68ch;
  letter-spacing: -0.01em;
}

.lead {
  max-width: 60ch;
  font-size: 1.06rem;
}

.trust-pills,
.hero-actions,
.hero-strip,
.feature-grid,
.trust-grid,
.gallery-strip,
.faq-list,
.call-panel {
  display: flex;
  flex-wrap: wrap;
}

.trust-pills {
  gap: 0.65rem;
  margin: 1.25rem 0 1.4rem;
}

.trust-pills span {
  padding: 0.7rem 0.95rem;
  border-radius: 0.65rem;
  background: rgba(255, 252, 247, 0.62);
  border: 1px solid var(--line);
  color: #3b2d25;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-actions {
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.button {
  padding: 0.95rem 1.3rem;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 34px rgba(185, 138, 87, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.42);
}

.hero-strip {
  gap: 0.9rem;
}

.hero-strip-card {
  flex: 1 1 170px;
  min-width: 0;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
}

.hero-strip-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-strip-card strong,
.panel-caption strong,
.floating-insight strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.image-stack {
  position: relative;
  min-height: 42rem;
  transform-style: preserve-3d;
  transition: transform 280ms ease;
}

.image-stack::before,
.image-stack::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.image-stack::before {
  inset: 6% auto auto -4%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(215, 180, 127, 0.28), transparent 70%);
}

.image-stack::after {
  inset: auto -4% 8% auto;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(185, 138, 87, 0.2), transparent 70%);
}

.image-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.image-panel img {
  height: 100%;
  object-fit: cover;
}

.image-panel-main {
  inset: 4% 10% 10% 0;
}

.image-panel-float {
  inset: auto 0 0 auto;
  width: 42%;
  height: 42%;
}

.panel-caption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 0.8rem;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(18px);
}

.panel-caption span,
.floating-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-insight {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 0.8rem;
  max-width: 17rem;
}

.floating-insight-top {
  top: 0;
  right: 4%;
  animation: floaty 6s ease-in-out infinite;
}

.floating-insight-bottom {
  left: 6%;
  bottom: 2%;
  animation: floaty 7.5s ease-in-out infinite reverse;
}

.floating-value {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-strong);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.section-heading h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1.12;
  text-wrap: balance;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.glass-card,
.metrics-card,
.location-card,
.map-card,
.inquiry-card {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.metrics-card {
  display: grid;
  gap: 0.9rem;
}

.metric {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(76, 61, 47, 0.08);
}

.metric-value {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
  color: #231a16;
}

.metric-label {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

.trust-grid {
  gap: 1rem;
  align-items: stretch;
}

.trust-card {
  flex: 1 1 240px;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.trust-card:first-child {
  flex-basis: 100%;
}

.trust-card-compact {
  min-height: 13rem;
}

.trust-number {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-strong);
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-grid {
  gap: 1rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1rem;
  align-items: start;
}

.feature-card {
  flex: 1 1 280px;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-intro,
.service-list-card,
.goal-card {
  min-width: 0;
}

.service-list-heading {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-list {
  display: grid;
  gap: 0.9rem;
}

.service-item {
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(76, 61, 47, 0.08);
}

.service-item h4 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-item p {
  margin: 0;
  color: #56473f;
  line-height: 1.68;
  font-size: 0.97rem;
}

.goal-card {
  margin-top: 1rem;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.gallery-strip {
  gap: 1rem;
}

.gallery-strip img {
  flex: 1 1 280px;
  min-height: 21rem;
  max-height: 26rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.map-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 22rem;
  overflow: hidden;
}

.map-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 19rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  border: 0;
  display: block;
}

.map-glow {
  position: absolute;
  inset: 12%;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(215, 180, 127, 0.28), transparent 24%),
    radial-gradient(circle at 72% 46%, rgba(139, 94, 60, 0.12), transparent 20%),
    radial-gradient(circle at 55% 72%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--line);
  filter: blur(0.2px);
}

.map-copy {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  text-align: center;
}

.map-copy span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

.map-copy strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

.faq-list {
  gap: 1rem;
  flex-direction: column;
}

.faq-list details {
  border-radius: 0.85rem;
  padding: 1rem 1.15rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  list-style: none;
}

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

.faq-list p {
  margin: 0.9rem 0 0;
}

.inquiry-card {
  position: relative;
  overflow: hidden;
}

.inquiry-card::after {
  content: "";
  position: absolute;
  inset: auto -5rem -5rem auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 127, 0.22), transparent 66%);
}

.call-panel {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(76, 61, 47, 0.08);
}

.call-panel strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.25;
}

.js-ready [data-section],
.js-ready .reveal-item {
  opacity: 0;
  transform: translateY(22px);
}

.js-ready [data-section].is-visible,
.js-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .content {
    width: min(calc(100% - 2rem), var(--content-max));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .image-stack {
    min-height: 34rem;
  }
}

@media (max-width: 760px) {
  .sidebar {
    padding: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
  }

  .content {
    width: min(calc(100% - 1.1rem), var(--content-max));
    padding-top: 0.8rem;
  }

  .hero-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 9.8vw, 3.4rem);
    line-height: 1.06;
  }

  .lead,
  .glass-card p,
  .trust-card p,
  .location-card p,
  .faq-list p,
  .inquiry-card p,
  .service-item p {
    font-size: 0.98rem;
  }

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

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

  .image-stack {
    min-height: 26rem;
  }

  .image-panel-main {
    inset: 0 0 18% 0;
  }

  .image-panel-float {
    width: 52%;
    height: 38%;
  }

  .floating-insight-top {
    top: 3%;
    right: 2%;
  }

  .floating-insight-bottom {
    left: 2%;
    bottom: 2%;
  }

  .gallery-strip img {
    min-height: 15rem;
  }

  .call-panel {
    flex-direction: column;
    align-items: stretch;
  }
}
