:root {
  --bg: #f6efe2;
  --bg-soft: #fbf7ef;
  --surface: rgba(255, 252, 246, 0.92);
  --surface-strong: #ffffff;
  --surface-alt: #edf5ec;
  --line: rgba(26, 82, 72, 0.14);
  --line-strong: rgba(188, 144, 73, 0.32);
  --text: #173033;
  --text-soft: #4d6266;
  --title: #102c34;
  --green: #2c6e54;
  --green-deep: #1e5a46;
  --blue: #2b5f8f;
  --blue-soft: #dce8f4;
  --gold: #bc9049;
  --gold-soft: #f3e2bf;
  --shadow-xl: 0 46px 100px rgba(16, 44, 52, 0.18);
  --shadow-lg: 0 32px 72px rgba(25, 46, 48, 0.14);
  --shadow-md: 0 18px 40px rgba(25, 46, 48, 0.1);
  --shadow-sm: 0 10px 20px rgba(25, 46, 48, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1280px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(188, 144, 73, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(43, 95, 143, 0.14), transparent 26%),
    linear-gradient(180deg, #fdf9f1 0%, #f5ecde 100%);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 91, 73, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 91, 73, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 84%);
  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  left: -140px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 144, 73, 0.18), rgba(188, 144, 73, 0));
  filter: blur(30px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-main {
  position: relative;
  z-index: 1;
}

.section,
.hero,
.page-hero {
  position: relative;
  padding: clamp(2rem, 2vw, 5rem) 0;
  scroll-margin-top: 110px;
  overflow: clip;
}

.hero {
  padding-top: clamp(5rem, 12vw, 3rem);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(188, 144, 73, 0.2), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(43, 95, 143, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8%;
  height: 280px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(44, 110, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 110, 84, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, black 0%, transparent 100%);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(237, 245, 236, 0.6));
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(135deg, rgba(188, 144, 73, 0.05), rgba(43, 95, 143, 0.04));
}

.section-shell,
.card,
.visual-frame,
.stats-card,
.notice-band,
.cta-band,
.contact-form,
.faq-item,
.filter-row,
.site-header,
.site-footer {
  backdrop-filter: blur(16px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(252, 249, 242, 0.88);
  box-shadow: 0 10px 28px rgba(25, 46, 48, 0.05);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.site-header-scrolled {
  background: rgba(255, 252, 247, 0.94);
  border-color: rgba(25, 46, 48, 0.09);
  box-shadow: 0 16px 34px rgba(25, 46, 48, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: 250px
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fffdf7;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 28px rgba(43, 95, 143, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--title);
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--title);
}

.site-nav a.is-active {
  position: relative;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fffdf7;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(43, 95, 143, 0.16);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(43, 95, 143, 0.18);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(25, 46, 48, 0.12);
  color: var(--title);
  box-shadow: none;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold), #d4aa5c);
  color: #fffdf9;
  margin: 10px 0px;
  white-space: nowrap;
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display-title,
.section-title,
.banner-title,
.card h3,
.stats-card strong,
.faq-item summary {
  font-family: "Cormorant Garamond", serif;
}

.display-title {
  margin: 0;
  color: var(--title);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-title,
.banner-title {
  margin: 0;
  color: var(--title);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.section-intro,
.lede,
.body-copy,
.card p,
.contact-copy p,
.footer-text,
.faq-copy,
.notice-band p {
  color: var(--text-soft);
  font-size: 1rem;
}

.lede {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.section-copy {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.tag-row,
.pill-row,
.hero-actions,
.filter-buttons,
.stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag,
.info-pill,
.outline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(26, 82, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.tag.gold,
.info-pill.gold {
  border-color: rgba(188, 144, 73, 0.26);
  background: rgba(243, 226, 191, 0.72);
}

.hero-grid,
.banner-grid,
.split-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.hero-copy,
.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

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

.metric-strip,
.stats-grid,
.support-grid,
.project-grid,
.feature-grid,
.process-grid,
.reason-grid,
.detail-grid,
.gallery-grid,
.faq-grid,
.contact-cards,
.info-grid,
.timeline-grid {
  display: grid;
  gap: 22px;
}

.metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

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

.support-grid,
.feature-grid,
.detail-grid,
.reason-grid,
.process-grid,
.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

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

.card,
.stats-card,
.notice-band,
.cta-band,
.contact-form,
.faq-item,
.filter-row {
  border: 1px solid rgba(26, 82, 72, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 247, 239, 0.95));
  box-shadow: var(--shadow-md);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.card::before,
.metric-card::before,
.stats-card::before,
.highlight-card::before,
.notice-band::before,
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 104px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
}

.card h3 {
  margin: 0 0 12px;
  color: var(--title);
  font-size: 1.72rem;
  line-height: 1;
}

.card-accent {
  background:
    linear-gradient(180deg, rgba(243, 226, 191, 0.88), rgba(255, 250, 242, 0.96)),
    linear-gradient(135deg, rgba(43, 95, 143, 0.06), rgba(44, 110, 84, 0.06));
  border-color: rgba(188, 144, 73, 0.18);
}

.mini-list,
.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.feature-list li,
.mini-list li {
  margin-bottom: 10px;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-deep);
}

.visual-frame,
.card-media,
.gallery-item,
.image-banner,
.wide-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.visual-frame {
  border: 1px solid rgba(26, 82, 72, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 246, 240, 0.92));
  box-shadow: var(--shadow-lg);
}

.visual-frame::before,
.wide-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-frame::after,
.card-media::after,
.gallery-item::after,
.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 18%, rgba(12, 37, 33, 0.18) 100%);
}

.visual-frame img,
.card-media img,
.gallery-item img,
.image-banner img,
.wide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.4s ease;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-frame {
  min-height: 560px;
}

.banner-frame {
  /* min-height: 460px; */
}

.card-media {
  aspect-ratio: 16 / 11;
  margin-bottom: 18px;
}

.project-card {
  padding: 18px;
}

.project-card .card-body {
  display: grid;
  gap: 12px;
}

.project-card .card-body h3,
.gallery-copy h3 {
  margin-bottom: 0;

}

.metric-card,
.stats-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 82, 72, 0.08);
}

.metric-card strong,
.stats-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--title);
  font-size: 2rem;
  line-height: 1;
}

.metric-card span,
.stats-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.floating-badge,
.floating-panel {
  position: absolute;
  z-index: 2;
  max-width: 280px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 249, 240, 0.78));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-badge {
  top: 26px;
  right: 26px;
  padding: 14px 18px;
}

.floating-panel {
  left: 26px;
  bottom: 26px;
  padding: 18px 20px;
}

.floating-badge strong,
.floating-panel strong {
  display: block;
  color: var(--title);
  font-size: 1rem;
  line-height: 1.3;
}

.floating-badge span,
.floating-panel span,
.floating-panel p {
  color: var(--text-soft);
  font-size: 0.86rem;
}

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

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 82, 72, 0.08);
  box-shadow: var(--shadow-sm);
}

.highlight-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--title);
}

.wide-visual {
  min-height: 500px;
  box-shadow: var(--shadow-xl);
}

.glassmorphic {
  background: rgb(89 107 139 / 14%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.wide-visual-copy {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
}

.wide-visual-copy .banner-title,
.wide-visual-copy p {
  color: #fff8ee;
}

.wide-visual-copy p {
  max-width: 40ch;
  margin: 0;
}

.gallery-item {
  min-height: 230px;
  grid-column: span 4;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  min-height: 320px;
}

.gallery-copy {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 2;
  padding: 10px 20px;
}

.gallery-copy h3,
.gallery-copy p {
  color: #fff8ee;
}

.gallery-copy h3 {
  font-size: 1.7rem;
}

.gallery-copy p {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.image-banner {
  min-height: 520px;
}

.banner-copy-wrap {
  position: absolute;
  inset: auto 28px 28px 28px;
  z-index: 2;
  max-width: 560px;
}

.banner-copy-wrap .eyebrow,
.banner-copy-wrap .banner-title,
.banner-copy-wrap p {
  color: #fff8ee;
}

.notice-band,
.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
}

.notice-band {
  background: linear-gradient(135deg, rgba(237, 245, 236, 0.95), rgba(255, 252, 244, 0.98));
}

.cta-band {
  border-color: rgba(188, 144, 73, 0.18);
  background: linear-gradient(135deg, rgba(16, 44, 52, 0.94), rgba(43, 95, 143, 0.92));
  box-shadow: 0 24px 52px rgba(16, 44, 52, 0.2);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08));
}

.cta-band .eyebrow,
.cta-band .banner-title,
.cta-band p {
  color: #fff8ee;
}

.filter-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.filter-buttons button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(26, 82, 72, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.filter-buttons button.is-active,
.filter-buttons button:hover,
.filter-buttons button:focus-visible {
  border-color: rgba(43, 95, 143, 0.25);
  background: rgba(43, 95, 143, 0.1);
  color: var(--title);
}

.gallery-item.is-hidden {
  display: none;
}

.process-step {
  position: relative;
}

.step-number {
  position: static;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fffdf7;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 22px rgba(43, 95, 143, 0.18);
  margin-bottom: 12px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  cursor: pointer;
  color: var(--title);
  font-size: 1.5rem;
  line-height: 1;
}

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

.faq-copy {
  padding: 0 28px 26px;
}

.contact-layout {
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 14px;
  color: var(--title);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.contact-form {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-grid label {
  display: grid;
  gap: 10px;
  color: var(--title);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26, 82, 72, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: rgba(43, 95, 143, 0.34);
  box-shadow: 0 0 0 4px rgba(43, 95, 143, 0.1);
}

.form-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer {
  margin-top: clamp(4.5rem, 8vw, 6rem);
  padding-top: 42px;
  border-top: 1px solid rgba(26, 82, 72, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(239, 246, 238, 0.92));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--title);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-deep);
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(26, 82, 72, 0.08);
}

.footer-base p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.card,
.metric-card,
.stats-card,
.highlight-card,
.visual-frame,
.wide-visual,
.gallery-item,
.notice-band,
.contact-form,
.filter-row {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (hover: hover) and (pointer: fine) {

  .card:hover,
  .metric-card:hover,
  .stats-card:hover,
  .highlight-card:hover,
  .notice-band:hover,
  .contact-form:hover,
  .filter-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(16, 44, 52, 0.12);
    border-color: rgba(188, 144, 73, 0.2);
  }

  .visual-frame:hover,
  .wide-visual:hover,
  .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .project-card:hover img,
  .visual-frame:hover img,
  .wide-visual:hover img,
  .gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.04);
  }
}

@media (max-width: 1180px) {
  .nav-cta {
    display: none;
  }

  .site-nav {
    gap: 11px;
  }
}

@media (max-width: 1080px) {

  .hero-grid,
  .banner-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-frame,
  .banner-frame {
    min-height: 440px;
  }

  .stats-grid,
  .highlight-strip,
  .project-grid,
  .feature-grid,
  .detail-grid,
  .reason-grid,
  .process-grid,
  .timeline-grid,
  .support-grid,
  .contact-cards,
  .info-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-visual-copy,
  .notice-band,
  .cta-band,
  .filter-row,
  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 82px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(26, 82, 72, 0.08);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a,
  .site-nav .button {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
  }

  .site-nav a.is-active::after {
    bottom: 6px;
  }

  .metric-strip,
  .stats-grid,
  .highlight-strip,
  .feature-grid,
  .detail-grid,
  .reason-grid,
  .process-grid,
  .timeline-grid,
  .support-grid,
  .faq-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 90px 90px;
  }

  .section,
  .hero,
  .page-hero {
    padding: clamp(3rem, 4vw, 5rem) 0;
;
  }

  .display-title {
    font-size: clamp(2.6rem, 11vw, 4.2rem);
  }

  .section-title,
  .banner-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
  }

  .wide-visual-copy,
  .banner-copy-wrap,
  .floating-panel,
  .floating-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: auto;
    max-width: none;
  }

  .wide-visual-copy {
    padding: 24px;
    gap: 16px;
  }

  .floating-badge {
    top: 18px;
    bottom: auto;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 24px, 1280px);
  }

  .card,
  .metric-card,
  .stats-card,
  .notice-band,
  .cta-band,
  .filter-row {
    padding: 22px;
  }

  .hero-frame,
  .banner-frame,
  .image-banner,
  .wide-visual {
    min-height: 360px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Consultation Popup Modal Styles */
body.modal-open {
  overflow: hidden;
}

.consultation-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 44, 52, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.consultation-modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.consultation-modal {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(251, 247, 239, 1));
  border: 1px solid rgba(26, 82, 72, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

/* Custom Scrollbar for Modal */
.consultation-modal::-webkit-scrollbar {
  width: 6px;
}

.consultation-modal::-webkit-scrollbar-track {
  background: transparent;
}

.consultation-modal::-webkit-scrollbar-thumb {
  background: rgba(188, 144, 73, 0.3);
  border-radius: 99px;
}

.consultation-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(188, 144, 73, 0.6);
}

.consultation-modal-overlay.is-active .consultation-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.consultation-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--text-soft);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: rotate(90deg);
  color: var(--title);
  border-color: rgba(188, 144, 73, 0.4);
  background: var(--gold-soft);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
  padding-top: 8px;
}

.modal-header h2 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  color: var(--title);
  line-height: 1.1;
}

.modal-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.consultation-modal .modal-form {
  gap: 16px;
}

.consultation-modal .field-grid {
  gap: 12px;
}

.consultation-modal .field-grid label {
  gap: 6px;
}

.consultation-modal .field-grid input,
.consultation-modal .field-grid select,
.consultation-modal .field-grid textarea {
  padding: 10px 14px;
  border-radius: 12px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Success Screen styles */
.modal-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 10px;
  animation: fadeIn 0.4s ease forwards;
}

.modal-success-screen.is-active {
  display: flex;
}

/* Checkmark SVG Animation */
.success-icon-svg {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.success-icon-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--green);
  fill: none;
  animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: var(--green);
  fill: none;
  animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke-circle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke-check {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spinner for Loading State */
.button-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin-loading 1s ease-in-out infinite;
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.button.is-loading .button-text {
  display: none;
}

.button.is-loading .button-spinner {
  display: inline-block;
}

@keyframes spin-loading {
  to {
    transform: rotate(360deg);
  }
}

.advisory-approach .section-title {
  margin-bottom: 24px;
}
.advisory-approach.section-soft::before{
  display: none;
}
.footer-column.footer-contact{
        margin-top: 24px ;
}

.footer-column.footer-contact .footer-text{
margin: 0;
}