:root {
  --ink: #172019;
  --ink-soft: #657068;
  --green-950: #0d291d;
  --green-900: #173a2a;
  --green-800: #23513c;
  --green-100: #e6f1e9;
  --green-50: #f2f7f3;
  --lime: #d8ef8d;
  --orange: #f4a45f;
  --cream: #f6f5ef;
  --white: #fff;
  --line: #dce2db;
  --shadow: 0 22px 55px rgba(21, 53, 38, .09);
  --radius-lg: 26px;
  --radius-md: 18px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; min-width: 320px; }
body { margin: 0; min-width: 320px; background: var(--cream); color: var(--ink); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.05em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(48px, 6.2vw, 84px); line-height: .99; }
h1 em { color: var(--green-800); font-style: normal; }
h2 { margin-bottom: 0; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.05; }
h3 { margin-bottom: 10px; font-size: 22px; }
p { color: var(--ink-soft); line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220,226,219,.82);
  background: rgba(246,245,239,.9);
  backdrop-filter: blur(18px);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 82px; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo img { width: 43px; height: 43px; }
.logo strong { display: block; font: 800 19px/1 "Manrope", sans-serif; }
.logo small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.main-menu { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 3vw, 38px); }
.main-menu a { color: #3f4942; font-size: 14px; font-weight: 600; text-decoration: none; }
.main-menu a:hover { color: var(--green-800); }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-900); color: var(--white); box-shadow: 0 11px 24px rgba(23,58,42,.2); }
.button-primary:hover { background: var(--green-800); }
.button-light { background: var(--lime); color: var(--green-950); }
.button-outline { border-color: #b9c5bc; background: transparent; color: var(--green-900); }
.button-large { min-height: 54px; padding-inline: 24px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 110px) 0 78px;
  background:
    radial-gradient(circle at 86% 17%, rgba(216,239,141,.35), transparent 27%),
    linear-gradient(180deg, #f8f7f2 0%, var(--cream) 100%);
}
.hero::before { content: ""; position: absolute; width: 250px; height: 250px; left: -130px; bottom: -80px; border: 1px solid rgba(23,58,42,.12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(23,58,42,.025), 0 0 0 84px rgba(23,58,42,.018); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(370px, .82fr); align-items: center; gap: clamp(40px, 7vw, 92px); }
.hero-copy > p { max-width: 650px; margin-bottom: 30px; font-size: 18px; }
.kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--green-800); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.kicker > span { width: 26px; height: 2px; background: var(--orange); }
.kicker.light { color: rgba(255,255,255,.7); }

.search-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 7px;
  max-width: 790px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.search-panel label { display: grid; gap: 3px; min-width: 0; padding: 3px 12px; border-right: 1px solid var(--line); }
.search-panel label:nth-child(3) { border-right: 0; }
.search-panel label span { color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.search-panel select { width: 100%; border: 0; padding: 3px 20px 3px 0; outline: 0; background: transparent; color: var(--ink); font-weight: 700; }
.search-panel .button { min-height: 51px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; color: var(--ink-soft); font-size: 12px; }
.hero-trust b { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: 10px; }

.hero-visual { position: relative; min-height: 500px; }
.hero-visual::before { content: ""; position: absolute; inset: 18px 0 0 30px; border-radius: 45% 45% 18px 18px; background: linear-gradient(145deg, #dbe7dc, #abc6ae); transform: rotate(2deg); }
.hero-building { position: absolute; inset: 63px 45px 24px 75px; overflow: hidden; border-radius: 160px 160px 18px 18px; background: #d5b78f; box-shadow: 0 28px 55px rgba(50,56,40,.14); }
.hero-building::before { content: ""; position: absolute; inset: 42px 0 0; background: repeating-linear-gradient(0deg, transparent 0 48px, rgba(111,74,45,.1) 49px 51px); }
.building-top { position: absolute; top: 0; left: 50%; width: 62%; height: 58px; transform: translateX(-50%); border-radius: 50% 50% 0 0; background: #bf976b; }
.building-windows { position: absolute; inset: 105px 45px 92px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px 42px; }
.building-windows i { position: relative; overflow: hidden; border: 8px solid #f1ddbe; border-radius: 45px 45px 3px 3px; background: linear-gradient(140deg, #5e7c78, #253f3d); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.building-windows i::before { content: ""; position: absolute; inset: 50% 0 auto; height: 5px; background: #f1ddbe; }
.building-windows i::after { content: ""; position: absolute; inset: 0 auto 0 50%; width: 5px; background: #f1ddbe; }
.building-door { position: absolute; bottom: 0; left: 50%; width: 62px; height: 92px; transform: translateX(-50%); border: 8px solid #f1ddbe; border-bottom: 0; border-radius: 40px 40px 0 0; background: var(--green-900); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.82); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 18px 38px rgba(24,49,34,.15); backdrop-filter: blur(12px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 3px; color: var(--ink-soft); font-size: 10px; }
.floating-card-top { top: 28px; right: -9px; }
.floating-card-bottom { bottom: 8px; left: -4px; }
.floating-icon, .floating-avatar { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; background: var(--green-100); color: var(--green-800); font-weight: 800; }
.floating-avatar { border-radius: 50%; background: var(--green-900); color: var(--lime); font-size: 10px; }
.hero-key { position: absolute; right: 8px; bottom: 97px; width: 78px; height: 78px; border: 15px solid var(--orange); border-radius: 50%; transform: rotate(-28deg); filter: drop-shadow(0 10px 20px rgba(98,60,24,.2)); }
.hero-key::after { content: ""; position: absolute; top: 17px; left: -58px; width: 62px; height: 15px; border-radius: 9px; background: var(--orange); }
.hero-key span { position: absolute; top: 17px; left: -43px; width: 12px; height: 28px; border-left: 10px solid var(--orange); border-bottom: 10px solid var(--orange); }

.strip { border-block: 1px solid var(--line); background: var(--white); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-inner div { display: flex; align-items: baseline; gap: 9px; padding: 23px 28px; border-left: 1px solid var(--line); }
.strip-inner div:last-child { border-right: 1px solid var(--line); }
.strip-inner strong { font: 800 18px/1 "Manrope", sans-serif; color: var(--green-800); }
.strip-inner span { color: var(--ink-soft); font-size: 12px; }

.section { padding: clamp(78px, 9vw, 125px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-head > div { max-width: 680px; }
.section-head > p { max-width: 420px; margin-bottom: 4px; }
.section-head.centered { display: block; max-width: 740px; margin-inline: auto; text-align: center; }
.section-head.centered .kicker { justify-content: center; }
.section-head.centered p { margin: 17px auto 0; }

.filter-row { display: grid; grid-template-columns: minmax(260px, 1fr) 220px 220px; gap: 10px; margin-bottom: 14px; }
.filter-row select, .search-input { min-height: 48px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.filter-row select { padding: 0 36px 0 14px; color: var(--ink); }
.search-input { display: flex; align-items: center; gap: 9px; padding: 0 14px; }
.search-input span { color: var(--ink-soft); font-size: 20px; }
.search-input input { width: 100%; border: 0; outline: 0; background: transparent; }
.catalog-summary { display: flex; justify-content: space-between; gap: 15px; margin: 0 3px 17px; color: var(--ink-soft); font-size: 12px; }
.catalog-summary strong { color: var(--ink); }
.property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.property-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); transition: transform 180ms ease, box-shadow 180ms ease; }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(21,53,38,.14); }
.property-image { position: relative; height: 240px; overflow: hidden; background: linear-gradient(145deg, #dae9dc, #78967c); }
.property-card:nth-child(3n+2) .property-image { background: linear-gradient(145deg, #ecdcc8, #b6865d); }
.property-card:nth-child(3n+3) .property-image { background: linear-gradient(145deg, #dfe4ef, #788aa8); }
.property-image::before { content: ""; position: absolute; width: 76%; height: 72%; left: 12%; bottom: 0; border-radius: 100px 100px 0 0; border: 18px solid rgba(255,255,255,.35); border-bottom: 0; }
.property-image::after { content: ""; position: absolute; width: 28%; height: 42%; left: 36%; bottom: 0; border-radius: 50px 50px 0 0; background: rgba(21,53,38,.48); }
.property-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; z-index: 2; top: 14px; left: 14px; border-radius: 999px; padding: 6px 10px; background: rgba(255,255,255,.88); color: var(--green-900); font-size: 10px; font-weight: 800; backdrop-filter: blur(7px); }
.property-favorite { position: absolute; z-index: 2; top: 13px; right: 13px; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); color: var(--green-900); font-size: 18px; }
.property-body { padding: 18px; }
.property-place { display: flex; align-items: center; gap: 6px; margin-bottom: 7px; color: var(--ink-soft); font-size: 11px; }
.property-body h3 { margin-bottom: 10px; font-size: 19px; }
.property-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.property-meta span { border-radius: 8px; padding: 6px 8px; background: var(--green-50); color: var(--green-800); font-size: 10px; font-weight: 600; }
.property-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid var(--line); }
.property-price strong, .property-price small { display: block; }
.property-price strong { font: 800 21px/1 "Manrope", sans-serif; }
.property-price small { margin-top: 5px; color: var(--ink-soft); font-size: 10px; }
.property-link { color: var(--green-800); font-size: 12px; font-weight: 800; text-decoration: none; }
.empty-state { grid-column: 1/-1; padding: 60px 20px; border: 1px dashed #bec9c0; border-radius: var(--radius-lg); color: var(--ink-soft); text-align: center; }
.empty-state strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: "Manrope", sans-serif; }

.process-section { background: var(--white); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; counter-reset: steps; }
.step-grid article { position: relative; min-height: 265px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream); }
.step-grid article:nth-child(2) { background: var(--green-900); color: var(--white); }
.step-grid article:nth-child(2) p { color: rgba(255,255,255,.67); }
.step-number { position: absolute; top: 22px; right: 24px; color: rgba(23,58,42,.2); font: 800 44px/1 "Manrope", sans-serif; }
.step-grid article:nth-child(2) .step-number { color: rgba(255,255,255,.12); }
.step-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 42px; border-radius: 15px; background: var(--green-100); color: var(--green-800); font-size: 23px; }
.step-grid article:nth-child(2) .step-icon { background: var(--lime); color: var(--green-950); }
.step-grid p { margin-bottom: 0; }

.areas-section { overflow: hidden; background: var(--green-950); }
.areas-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(40px, 8vw, 100px); }
.areas-copy h2 { max-width: 570px; color: var(--white); }
.areas-copy p { max-width: 540px; margin: 22px 0 30px; color: rgba(255,255,255,.64); font-size: 17px; }
.area-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; transform: rotate(-2deg); }
.area-cards article { display: grid; min-height: 155px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 21px; background: rgba(255,255,255,.07); color: var(--white); backdrop-filter: blur(10px); }
.area-cards article:nth-child(2), .area-cards article:nth-child(3) { background: var(--lime); color: var(--green-950); }
.area-cards strong { font: 800 23px/1 "Manrope", sans-serif; }
.area-cards span { align-self: center; color: rgba(255,255,255,.65); font-size: 12px; }
.area-cards article:nth-child(2) span, .area-cards article:nth-child(3) span { color: rgba(13,41,29,.62); }
.area-cards small { align-self: end; opacity: .72; }

.contact-section { padding-bottom: 95px; }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(34px, 5vw, 65px); border-radius: 32px; background: linear-gradient(135deg, #e4f0e6, #f7eddc); box-shadow: var(--shadow); }
.contact-card::after { content: "K"; position: absolute; right: -12px; bottom: -80px; color: rgba(23,58,42,.055); font: 800 270px/1 "Manrope", sans-serif; }
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2 { max-width: 700px; }
.contact-card p { max-width: 600px; margin: 17px 0 0; }
.contact-actions { display: grid; gap: 9px; min-width: 220px; }
.email-link { margin-top: 5px; color: var(--green-800); font-size: 12px; font-weight: 700; text-align: center; }

.site-footer { padding: 60px 0 24px; background: #0a2118; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 38px; }
.footer-logo strong { color: var(--white); }
.footer-logo small { color: rgba(255,255,255,.5); }
.footer-grid p { max-width: 300px; margin: 18px 0 0; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 5px; font-size: 13px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.56); font-size: 12px; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 11px; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .7fr; gap: 34px; }
  .hero-visual { min-height: 430px; }
  .hero-building { inset: 65px 15px 20px 45px; }
  .search-panel { grid-template-columns: repeat(3, 1fr); }
  .search-panel .button { grid-column: 1/-1; }
  .property-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 800px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .menu-button { display: grid; width: 42px; height: 42px; align-content: center; gap: 5px; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
  .menu-button > span:not(.sr-only) { height: 2px; border-radius: 2px; background: var(--green-900); }
  .main-menu { position: fixed; inset: 82px 0 auto; display: none; padding: 24px 20px 30px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(21,53,38,.12); }
  .main-menu.is-open { display: grid; }
  .main-menu a { padding: 10px; font-size: 16px; }
  .header-cta { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { min-height: 430px; max-width: 520px; width: 100%; margin: 0 auto; }
  .strip-inner { grid-template-columns: repeat(2,1fr); }
  .strip-inner div:nth-child(3) { border-top: 1px solid var(--line); }
  .strip-inner div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .section-head { display: block; }
  .section-head > p { margin: 18px 0 0; }
  .filter-row { grid-template-columns: 1fr 1fr; }
  .search-input { grid-column: 1/-1; }
  .step-grid { grid-template-columns: 1fr; }
  .step-grid article { min-height: 220px; }
  .step-icon { margin-bottom: 30px; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-cards { transform: none; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { width: min(100%, 390px); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; gap: 9px; }
  .main-menu { top: 72px; }
  .logo img { width: 39px; height: 39px; }
  .logo strong { font-size: 17px; }
  .header-cta { min-height: 40px; padding: 8px 10px; font-size: 11px; }
  .hero { padding-top: 60px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy > p { font-size: 16px; }
  .search-panel { grid-template-columns: 1fr; padding: 12px; }
  .search-panel label { padding: 8px 7px; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-panel .button { grid-column: auto; }
  .hero-trust { gap: 9px 15px; }
  .hero-visual { min-height: 350px; }
  .hero-visual::before { left: 0; }
  .hero-building { inset: 54px 20px 15px 38px; }
  .building-windows { inset: 95px 35px 78px; gap: 25px 32px; }
  .floating-card-top { right: -5px; }
  .floating-card-bottom { left: -5px; }
  .hero-key { width: 58px; height: 58px; border-width: 11px; bottom: 78px; }
  .hero-key::after { left: -45px; width: 48px; height: 11px; }
  .hero-key span { display: none; }
  .strip-inner div { padding: 18px 12px; display: grid; gap: 4px; }
  .property-grid { grid-template-columns: 1fr; }
  .filter-row { grid-template-columns: 1fr; }
  .search-input { grid-column: auto; }
  .property-image { height: 225px; }
  .area-cards { grid-template-columns: 1fr; }
  .contact-card { padding: 31px 22px; border-radius: 23px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

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

/* Property detail */
.detail-body { background: #f8f7f2; }
.detail-header { grid-template-columns: auto 1fr auto; }
.back-link { justify-self: center; color: var(--green-800); font-size: 13px; font-weight: 700; text-decoration: none; }
.detail-main { padding: 32px 0 95px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; color: var(--ink-soft); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.detail-title-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.detail-title-row h1 { max-width: 850px; margin-bottom: 12px; font-size: clamp(37px, 5vw, 66px); }
.detail-title-row .kicker { margin-bottom: 11px; }
.detail-location { margin-bottom: 0; }
.detail-price { flex: 0 0 auto; padding-bottom: 9px; text-align: right; }
.detail-price strong, .detail-price span { display: block; }
.detail-price strong { font: 800 35px/1 "Manrope", sans-serif; }
.detail-price span { margin-top: 7px; color: var(--ink-soft); font-size: 11px; }
.gallery { position: relative; display: grid; grid-template-columns: 1.7fr .7fr; gap: 10px; height: 490px; margin-bottom: 50px; }
.gallery-main, .gallery-side > div { position: relative; overflow: hidden; border-radius: 24px; background: linear-gradient(145deg, #d9e6da, #708c75); }
.gallery-main::before, .gallery-side > div::before { content: ""; position: absolute; width: 70%; height: 70%; left: 15%; bottom: 0; border: 20px solid rgba(255,255,255,.3); border-bottom: 0; border-radius: 120px 120px 0 0; }
.gallery-main::after, .gallery-side > div::after { content: ""; position: absolute; width: 28%; height: 45%; left: 36%; bottom: 0; border-radius: 60px 60px 0 0; background: rgba(23,58,42,.48); }
.gallery-main img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.gallery-main > span, .gallery-side span { position: absolute; z-index: 3; left: 20px; bottom: 18px; border-radius: 999px; padding: 7px 10px; background: rgba(255,255,255,.88); color: var(--green-900); font-size: 10px; font-weight: 800; }
.gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 10px; }
.gallery-side > div:first-child { background: linear-gradient(145deg, #eadcc9, #aa805d); }
.gallery-side > div:last-child { background: linear-gradient(145deg, #e0e5ef, #7689a6); }
.demo-chip { position: absolute; z-index: 4; top: 16px; left: 16px; border-radius: 999px; padding: 7px 11px; background: var(--lime); color: var(--green-950); font-size: 10px; font-weight: 800; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 355px; align-items: start; gap: clamp(35px, 7vw, 90px); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 45px; }
.fact { padding: 18px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.fact strong, .fact span { display: block; }
.fact strong { margin-bottom: 6px; font: 800 16px/1.1 "Manrope", sans-serif; }
.fact span { color: var(--ink-soft); font-size: 10px; }
.detail-section { padding: 35px 0; border-top: 1px solid var(--line); }
.detail-section h2 { margin-bottom: 18px; font-size: 27px; }
.detail-section > p { max-width: 760px; margin-bottom: 0; font-size: 16px; }
.cost-list { display: grid; gap: 2px; }
.cost-list div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cost-list div:last-child { border-bottom: 0; }
.cost-list span { color: var(--ink-soft); }
.location-box { display: flex; gap: 18px; padding: 24px; border-radius: 19px; background: var(--green-50); }
.location-pin { display: grid; place-items: center; flex: 0 0 46px; height: 46px; border-radius: 14px; background: var(--green-900); color: var(--lime); }
.location-box strong, .location-box span { display: block; }
.location-box span { margin-top: 5px; color: var(--green-800); font-size: 12px; font-weight: 700; }
.location-box p { margin: 14px 0 0; font-size: 12px; }
.inquiry-card { position: sticky; top: 110px; padding: 25px; border: 1px solid var(--line); border-radius: 23px; background: var(--white); box-shadow: var(--shadow); }
.inquiry-card h2 { margin: 6px 0 10px; font-size: 27px; }
.inquiry-card > p { font-size: 13px; }
.inquiry-label { color: var(--green-800); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.inquiry-card form { display: grid; gap: 11px; margin: 20px 0 12px; }
.inquiry-card label { display: grid; gap: 5px; color: #49534c; font-size: 11px; font-weight: 700; }
.inquiry-card input { width: 100%; min-height: 43px; border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; outline: 0; background: #fbfcfa; }
.inquiry-card input:focus { border-color: #75927c; box-shadow: 0 0 0 3px rgba(117,146,124,.14); }
.inquiry-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.inquiry-card .button { width: 100%; margin-top: 4px; }
.inquiry-card > small { display: block; color: var(--ink-soft); font-size: 9px; line-height: 1.5; }
.detail-contact { padding: 25px 0; background: var(--lime); }
.detail-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.detail-contact strong, .detail-contact span { display: block; }
.detail-contact span { margin-top: 3px; color: rgba(13,41,29,.65); font-size: 12px; }
.detail-contact-inner > div:last-child { display: flex; gap: 22px; }
.detail-contact a { color: var(--green-950); font-weight: 800; text-decoration: none; }
.detail-footer { padding-top: 22px; }
.detail-footer .footer-bottom { margin-top: 0; }
.detail-footer a { color: rgba(255,255,255,.6); text-decoration: none; }

@media (max-width: 900px) {
  .gallery { height: 410px; }
  .detail-layout { grid-template-columns: 1fr; }
  .inquiry-card { position: static; max-width: 620px; }
}

@media (max-width: 650px) {
  .detail-header { grid-template-columns: auto 1fr; }
  .detail-header .back-link { display: none; }
  .detail-header .header-cta { justify-self: end; }
  .detail-title-row { display: block; }
  .detail-price { margin-top: 22px; text-align: left; }
  .gallery { grid-template-columns: 1fr; height: 350px; }
  .gallery-side { display: none; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .detail-contact-inner, .detail-contact-inner > div:last-child { display: grid; }
  .inquiry-fields { grid-template-columns: 1fr; }
}

/* Expanded public experience */
.header-tools { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.language-switch { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; background: rgba(255,255,255,.78); color: var(--ink-soft); font-size: 10px; font-weight: 800; }
.language-switch button { border: 0; padding: 3px 4px; background: transparent; color: inherit; font-weight: 800; }
.language-switch button.is-active { color: var(--green-800); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.hero-trust i, .request-benefits i { font-style: normal; }
.kicker b { font: inherit; }
.demo-notice { display: flex; align-items: center; gap: 10px; margin: -13px 0 20px; border: 1px solid #ecd7bd; border-radius: 13px; padding: 11px 14px; background: #fff8ed; color: #796148; font-size: 11px; }
.demo-notice strong { border-radius: 999px; padding: 4px 8px; background: #f9dfba; color: #654321; }
.availability-line { display: flex; justify-content: space-between; gap: 10px; margin: -5px 0 15px; color: var(--ink-soft); font-size: 10px; }
.availability-line strong { color: var(--ink); }

.about-section { background: #edf3ed; }
.about-grid { display: grid; grid-template-columns: minmax(340px,.8fr) minmax(0,1.2fr); align-items: center; gap: clamp(45px, 9vw, 115px); }
.about-visual { position: relative; display: grid; place-items: center; min-height: 470px; overflow: hidden; border-radius: 38px 180px 38px 38px; background: linear-gradient(145deg, #173a2a, #527b61); box-shadow: var(--shadow); }
.about-visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 34px solid rgba(216,239,141,.18); border-radius: 50%; }
.about-visual > span { position: relative; z-index: 1; color: var(--lime); font: 800 175px/1 "Manrope", sans-serif; }
.about-pin { position: absolute; right: 24px; bottom: 24px; border-radius: 999px; padding: 10px 15px; background: var(--white); color: var(--green-900); font-size: 11px; font-weight: 800; }
.about-copy h2 { max-width: 720px; font-size: clamp(36px,4.7vw,62px); }
.about-copy > p { max-width: 720px; margin-top: 24px; font-size: 16px; }
.about-copy .temporary-copy { border-left: 3px solid var(--orange); padding-left: 16px; font-size: 13px; }
.about-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.about-points span { border: 1px solid #bfd0c2; border-radius: 999px; padding: 8px 12px; color: var(--green-800); font-size: 11px; font-weight: 700; }

.verification-section { background: var(--white); }
.verification-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.verification-grid article { min-height: 245px; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.verification-grid article > span { display: grid; place-items: center; width: 37px; height: 37px; margin-bottom: 36px; border-radius: 12px; background: var(--green-100); color: var(--green-800); font-size: 11px; font-weight: 800; }
.verification-grid h3 { font-size: 19px; }
.verification-grid p { margin-bottom: 0; font-size: 13px; }

.request-section { background: var(--green-950); color: var(--white); }
.request-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(45px,8vw,105px); }
.request-copy { position: sticky; top: 120px; }
.request-copy h2 { max-width: 560px; }
.request-copy > p { max-width: 540px; margin: 22px 0; color: rgba(255,255,255,.64); font-size: 16px; }
.request-benefits { display: grid; gap: 9px; color: rgba(255,255,255,.72); font-size: 12px; }
.request-benefits span { display: flex; gap: 8px; }
.request-benefits span::first-letter { color: var(--lime); }
.student-request-form { display: grid; gap: 13px; border-radius: 28px; padding: clamp(25px,4vw,42px); background: var(--white); color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-three { grid-template-columns: 1fr 1fr .8fr; }
.student-request-form label { display: grid; gap: 6px; color: #485249; font-size: 11px; font-weight: 700; }
.student-request-form input, .student-request-form select, .student-request-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px; outline: 0; background: #fbfcfa; color: var(--ink); resize: vertical; }
.student-request-form input, .student-request-form select { min-height: 45px; }
.student-request-form input:focus, .student-request-form select:focus, .student-request-form textarea:focus { border-color: #75927c; box-shadow: 0 0 0 3px rgba(117,146,124,.14); }
.student-request-form .button { justify-self: start; margin-top: 4px; }
.consent-row { grid-template-columns: auto 1fr !important; align-items: start; gap: 9px !important; font-weight: 500 !important; line-height: 1.5; }
.consent-row input { width: 16px !important; min-height: 16px !important; margin-top: 2px; accent-color: var(--green-800); }
.consent-row a { color: var(--green-800); font-weight: 800; }
.consent-row.compact { font-size: 9px; }
.form-status { min-height: 18px; margin: 0; color: var(--green-800); font-size: 11px; font-weight: 700; }

.guide-section { background: #f8f7f2; }
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.guide-grid article { position: relative; min-height: 230px; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 12px 32px rgba(21,53,38,.05); }
.guide-grid article::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 140px; height: 140px; border-radius: 50%; background: var(--green-50); }
.campus-mark { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 27px; border-radius: 14px; background: var(--green-900); color: var(--lime); font: 800 16px/1 "Manrope", sans-serif; }
.guide-grid h3 { margin-bottom: 7px; font-size: 20px; }
.guide-grid strong { display: block; color: var(--green-800); font-size: 11px; }
.guide-grid p { position: relative; z-index: 1; margin: 14px 0 0; font-size: 13px; }

.faq-section { background: #e7f0e8; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(45px,8vw,105px); }
.faq-grid > div:first-child { position: sticky; top: 120px; }
.faq-grid > div:first-child p { margin-top: 20px; }
.faq-list { display: grid; gap: 9px; }
.faq-list details { border: 1px solid #cad8cc; border-radius: 16px; background: rgba(255,255,255,.75); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 20px 52px 20px 20px; font: 700 15px/1.4 "Manrope", sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 16px; color: var(--green-800); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 20px 20px; font-size: 13px; }

.cookie-banner { position: fixed; z-index: 100; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 15px; width: min(560px,calc(100% - 40px)); border: 1px solid var(--line); border-radius: 17px; padding: 14px; background: rgba(255,255,255,.96); box-shadow: 0 24px 60px rgba(13,41,29,.2); backdrop-filter: blur(14px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 11px; line-height: 1.5; }
.cookie-banner a { color: var(--green-800); font-weight: 800; }
.cookie-banner .button { flex: 0 0 auto; min-height: 40px; padding: 8px 14px; font-size: 11px; }

/* Expanded detail page */
.detail-badges { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 12px; }
.detail-badges .demo-chip { position: static; display: inline-flex; }
.verification-badge { border-radius: 999px; padding: 7px 11px; background: #e7eef8; color: #425f82; font-size: 10px; font-weight: 800; }
.gallery-side img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.facts { grid-template-columns: repeat(4,1fr); }
.detail-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.detail-section-heading h2 { margin-bottom: 0; }
.detail-section-heading > span { max-width: 280px; color: var(--ink-soft); font-size: 10px; text-align: right; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.feature-list span { border-radius: 12px; padding: 12px 14px; background: var(--green-50); color: var(--green-800); font-size: 12px; font-weight: 700; }
.detail-disclaimer { margin-top: 15px !important; border-left: 3px solid var(--orange); padding-left: 13px; color: #80664d; font-size: 11px !important; }
.map-link, .text-link { display: inline-flex; margin-top: 13px; color: var(--green-800); font-size: 11px; font-weight: 800; text-decoration: none; }
.media-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.media-options > div { border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: var(--white); }
.media-options h3 { margin: 14px 0 7px; font-size: 17px; }
.media-options p { margin: 0; font-size: 11px; }
.media-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--green-100); color: var(--green-800); }
.is-hidden { display: none !important; }
.detail-footer .footer-bottom > div { display: flex; gap: 18px; }

/* Draft legal pages */
.legal-body { background: #f8f7f2; }
.legal-main { padding: 55px 0 100px; }
.legal-container { width: min(860px,calc(100% - 40px)); }
.legal-alert { display: grid; gap: 5px; margin-bottom: 30px; border: 1px solid #e3c798; border-radius: 16px; padding: 16px 18px; background: #fff6e7; color: #765a34; font-size: 12px; line-height: 1.5; }
.legal-document { border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px,6vw,65px); background: var(--white); box-shadow: var(--shadow); }
.legal-document[hidden] { display: none; }
.legal-document h1 { margin-bottom: 10px; font-size: clamp(38px,6vw,62px); }
.legal-document h2 { margin: 36px 0 10px; font-size: 21px; letter-spacing: -.035em; }
.legal-document p { margin-bottom: 0; }
.legal-document a { color: var(--green-800); font-weight: 700; }
.legal-updated { font-size: 12px; }

@media (max-width: 1100px) {
  .main-menu { gap: 18px; }
  .main-menu a { font-size: 12px; }
  .header-tools { gap: 7px; }
  .verification-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
  .header-tools .language-switch { order: 2; }
  .about-grid, .request-grid, .faq-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 390px; }
  .request-copy, .faq-grid > div:first-child { position: static; }
  .guide-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 650px) {
  .detail-header { grid-template-columns: auto 1fr; }
  .detail-header .header-tools { justify-self: end; }
  .detail-header .language-switch { display: none; }
  .facts { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .header-tools { gap: 5px; }
  .header-tools .language-switch { position: absolute; right: 14px; top: 75px; z-index: 2; box-shadow: 0 8px 20px rgba(13,41,29,.12); }
  .demo-notice { align-items: flex-start; }
  .about-visual { min-height: 330px; border-radius: 28px 120px 28px 28px; }
  .about-visual > span { font-size: 130px; }
  .verification-grid, .guide-grid { grid-template-columns: 1fr; }
  .form-row, .form-row-three { grid-template-columns: 1fr; }
  .student-request-form { padding: 22px 17px; }
  .feature-list, .media-options { grid-template-columns: 1fr; }
  .detail-section-heading { display: block; }
  .detail-section-heading > span { display: block; margin-top: 8px; text-align: left; }
  .cookie-banner { right: 14px; bottom: 14px; width: calc(100% - 28px); align-items: stretch; display: grid; }
  .cookie-banner .button { justify-self: start; }
  .legal-container { width: min(100% - 28px,860px); }
  .legal-document { border-radius: 20px; }
}
