:root {
  --forest: #075c33;
  --forest-dark: #043d22;
  --green: #0a8a4b;
  --green-bright: #2bbf70;
  --mint: #e8f7ee;
  --mint-2: #f4fbf6;
  --lime: #cfeccf;
  --ink: #0f1f17;
  --muted: #5e6e65;
  --line: #dbe9df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 61, 34, 0.12);
  --shadow-soft: 0 14px 40px rgba(6, 77, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--forest-dark);
  color: white;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 233, 223, 0.78);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(6, 61, 35, .08); background: rgba(255,255,255,.96); }
.site-header.compact { position: relative; }
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { width: 190px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a { position: relative; text-decoration: none; font-size: .94rem; font-weight: 700; color: #294138; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 2px; background: var(--green); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 25px; height: 2px; background: var(--forest); display: block; margin: 5px 0; border-radius: 4px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--forest));
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 138, 75, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(10, 138, 75, .27); }
.button-small { min-height: 43px; padding-inline: 18px; font-size: .9rem; border-radius: 12px; }
.button-ghost { background: rgba(255,255,255,.9); color: var(--forest); box-shadow: none; }
.button-ghost:hover { background: white; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--green); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; border-radius: 4px; }
.eyebrow.light { color: #baf1d0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  display: flex;
  align-items: center;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 75% 16%, rgba(58, 205, 119, .11), transparent 27%),
    radial-gradient(circle at 9% 70%, rgba(132, 221, 167, .1), transparent 22%),
    linear-gradient(180deg, #fbfefc 0%, #f5fbf7 100%);
}
.hero-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(74, 188, 119, .22); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -150px; top: 90px; }
.hero-orb-two { width: 160px; height: 160px; left: -50px; bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.9rem); line-height: .99; letter-spacing: -.055em; max-width: 750px; }
.hero h1 strong { color: var(--green); font-weight: 900; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 1.14rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.trust-row { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 42px; padding-top: 27px; border-top: 1px solid var(--line); }
.trust-row div { display: grid; gap: 2px; }
.trust-row strong { color: var(--forest-dark); font-size: .98rem; }
.trust-row span { color: var(--muted); font-size: .82rem; }

.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.visual-shell { width: min(100%, 570px); background: white; border: 1px solid rgba(126, 194, 153, .38); border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.4deg); }
.visual-topbar { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 18px; background: #f7fbf8; border-bottom: 1px solid var(--line); }
.visual-topbar span { width: 9px; height: 9px; border-radius: 50%; background: #bed9c8; }
.visual-topbar small { margin-left: auto; color: #718178; font-size: .72rem; font-weight: 700; }
.visual-canvas { position: relative; min-height: 430px; padding: 28px; background: linear-gradient(135deg, #f8fcf9, #edf8f1); }
.code-panel { position: absolute; top: 34px; left: 28px; width: 62%; min-height: 205px; padding: 24px; background: linear-gradient(145deg, #063f25, #087642); border-radius: 22px; box-shadow: 0 25px 45px rgba(4, 61, 34, .22); color: white; }
.code-title { display: flex; align-items: center; gap: 9px; font-size: .84rem; font-weight: 800; margin-bottom: 27px; }
.code-title i { width: 10px; height: 10px; border-radius: 50%; background: #56dc91; box-shadow: 0 0 0 5px rgba(86,220,145,.14); }
.code-line { height: 9px; border-radius: 8px; background: rgba(255,255,255,.17); margin: 13px 0; }
.code-line::before { content: ""; display: block; width: 26%; height: 100%; border-radius: inherit; background: #6ce4a0; }
.code-line.w90 { width: 90%; }.code-line.w68 { width: 68%; }.code-line.w78 { width: 78%; }
.code-status { display: flex; align-items: center; gap: 8px; margin-top: 25px; color: #d3f7df; font-size: .72rem; }
.code-status span { width: 7px; height: 7px; border-radius: 50%; background: #62e798; }
.property-panel { position: absolute; right: 23px; bottom: 34px; width: 50%; height: 250px; border-radius: 22px; background: linear-gradient(160deg, #daf4e3, #ffffff); border: 1px solid rgba(119, 188, 146, .35); box-shadow: 0 18px 40px rgba(8, 90, 49, .12); overflow: hidden; }
.building { position: absolute; left: 50%; top: 46%; width: 145px; height: 118px; transform: translate(-50%, -50%); background: #f8fffa; border: 6px solid #0b7441; border-radius: 8px 8px 4px 4px; box-shadow: 15px 14px 0 #a6dbba; }
.roof { position: absolute; width: 128px; height: 64px; left: 1px; top: -48px; background: #0a6339; clip-path: polygon(50% 0, 100% 75%, 100% 100%, 0 100%, 0 75%); }
.window { position: absolute; width: 23px; height: 23px; border: 4px solid #0b7441; background: #d7f1e1; }.w1 { left: 18px; top: 18px; }.w2 { right: 18px; top: 18px; }.w3 { left: 18px; top: 60px; }.w4 { right: 18px; top: 60px; }
.door { position: absolute; width: 31px; height: 49px; background: #0b7441; bottom: 0; left: 51px; }
.property-label { position: absolute; bottom: 13px; left: 0; right: 0; text-align: center; color: var(--forest-dark); font-weight: 850; font-size: .8rem; }
.support-bubble { position: absolute; left: 36px; bottom: 27px; display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 16px; background: white; box-shadow: 0 14px 32px rgba(5, 75, 42, .13); border: 1px solid var(--line); }
.support-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-weight: 900; }
.support-bubble div:last-child { display: grid; }
.support-bubble strong { font-size: .78rem; }.support-bubble span { color: var(--muted); font-size: .66rem; }
.floating-card { position: absolute; z-index: 3; padding: 11px 16px; border-radius: 14px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); color: var(--forest-dark); font-size: .78rem; font-weight: 800; }
.floating-card span { color: var(--green); margin-right: 8px; }
.floating-card-one { left: -20px; top: 72px; }.floating-card-two { right: -8px; bottom: 44px; }

section { scroll-margin-top: 92px; }
.service-strip, .software-section, .property-section, .hospitality-section, .about-section { padding: 110px 0; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2, .section-copy h2 { margin: 0; font-size: clamp(2.25rem, 4.5vw, 4.2rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p, .section-copy > p { color: var(--muted); font-size: 1.04rem; line-height: 1.8; }

.service-strip { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, white, #fbfefc); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; right: -75px; bottom: -80px; background: rgba(43,191,112,.08); transition: transform .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #a8d7b9; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.45); }
.icon-badge { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; color: white; background: linear-gradient(145deg, var(--green-bright), var(--forest)); box-shadow: 0 10px 24px rgba(8, 122, 66, .18); }
.icon-badge svg, .product-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 25px; right: 25px; margin: 0; color: #b8cfc0; font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.service-card h3 { margin: 30px 0 12px; font-size: 1.34rem; }
.service-card p:not(.service-number) { margin: 0; color: var(--muted); font-size: .93rem; }
.service-card a { position: absolute; left: 28px; bottom: 28px; text-decoration: none; color: var(--green); font-size: .85rem; font-weight: 850; }

.software-section { background: linear-gradient(135deg, #eff9f3, #fbfefc); border-block: 1px solid var(--line); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: #344b40; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #d9f3e3; color: var(--green); font-size: .75rem; font-weight: 900; }
.text-link { color: var(--green); font-weight: 900; text-decoration: none; }
.product-stack { display: grid; gap: 16px; }
.product-card { display: grid; grid-template-columns: 66px 1fr; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); }
.product-card.product-featured { background: linear-gradient(145deg, #064d2d, #0b7d46); color: white; border-color: transparent; transform: translateX(-18px); }
.product-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: var(--mint); color: var(--green); }
.product-featured .product-icon { background: rgba(255,255,255,.14); color: #d0ffe1; }
.product-card span { display: block; color: var(--green); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 900; }
.product-featured span { color: #b7efd0; }
.product-card h3 { margin: 4px 0 6px; font-size: 1.18rem; }
.product-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.product-featured p { color: rgba(255,255,255,.78); }

.property-section { background: white; }
.property-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.location-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 390px; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(145deg, #073f26, #0d7545); color: white; box-shadow: var(--shadow); }
.location-map { position: relative; min-height: 350px; background: linear-gradient(165deg, #0c6d41, #064026); overflow: hidden; }
.map-shape { position: absolute; display: block; border-radius: 40% 60% 55% 45% / 55% 35% 65% 45%; background: rgba(198, 242, 214, .14); border: 1px solid rgba(225,255,236,.19); }
.shape-one { width: 170px; height: 225px; left: 18%; top: 14%; transform: rotate(-18deg); }
.shape-two { width: 100px; height: 150px; left: 49%; top: 41%; transform: rotate(18deg); }
.shape-three { width: 85px; height: 90px; left: 53%; top: 9%; }
.map-pin { position: absolute; width: 18px; height: 18px; border-radius: 50% 50% 50% 0; background: #8becae; transform: rotate(-45deg); box-shadow: 0 0 0 8px rgba(139,236,174,.12); }
.pin-one { left: 39%; top: 31%; }.pin-two { left: 57%; top: 59%; }.pin-three { left: 42%; top: 73%; }
.location-copy { padding: 42px 34px; display: flex; flex-direction: column; justify-content: center; }
.location-copy > span { color: #aee8c5; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.location-copy h3 { margin: 9px 0 24px; font-size: 1.9rem; line-height: 1.16; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.08); color: #e6fff0; font-size: .75rem; }
.property-types { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card { min-height: 184px; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--mint-2); }
.mini-card span { color: var(--forest); font-size: 1.02rem; font-weight: 900; }
.mini-card p { margin: 12px 0 0; color: var(--muted); font-size: .87rem; }

.hospitality-section { background: linear-gradient(180deg, #f8fcf9, #eef9f2); border-block: 1px solid var(--line); }
.hospitality-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 76px; align-items: center; }
.hospitality-visual { position: relative; min-height: 480px; }
.room-scene { position: absolute; inset: 0 40px 35px 0; border-radius: var(--radius-xl); background: linear-gradient(165deg, #f5ead9, #dceadd); overflow: hidden; box-shadow: var(--shadow); }
.room-scene::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 24%; background: #b98f6f; clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%); opacity: .44; }
.room-window { position: absolute; right: 42px; top: 45px; width: 170px; height: 180px; border: 12px solid white; background: linear-gradient(#91c8b0, #d4ead9); box-shadow: 0 13px 20px rgba(49,85,63,.12); }
.room-window::before, .room-window::after { content: ""; position: absolute; background: rgba(255,255,255,.85); }.room-window::before { width: 8px; top: 0; bottom: 0; left: 50%; }.room-window::after { height: 8px; left: 0; right: 0; top: 50%; }
.room-window span { position: absolute; bottom: 0; left: 0; right: 0; height: 48%; background: linear-gradient(150deg, transparent 49%, #3d8a60 50%); opacity: .7; }
.room-bed { position: absolute; left: 45px; bottom: 75px; width: 300px; height: 115px; border-radius: 18px 18px 7px 7px; background: #fff; box-shadow: 0 18px 25px rgba(83,64,47,.16); }
.room-bed::before { content: ""; position: absolute; top: 38px; left: 0; right: 0; bottom: 0; background: linear-gradient(120deg, #eaf6ee, #c9e6d2); border-radius: 12px 12px 7px 7px; }
.pillow { position: absolute; top: 10px; width: 80px; height: 48px; border-radius: 14px; background: #f7f7f2; box-shadow: 0 3px 10px rgba(0,0,0,.06); z-index: 2; }.p1 { left: 29px; }.p2 { left: 119px; }
.room-table { position: absolute; right: 50px; bottom: 80px; width: 74px; height: 54px; background: #7e5d47; border-radius: 5px; }.room-table::after { content: ""; position: absolute; width: 7px; height: 47px; background: #6b4b38; left: 34px; top: 54px; }.room-table span { position: absolute; width: 26px; height: 22px; border-radius: 50% 50% 40% 40%; background: #5a9c6c; top: -18px; left: 24px; }
.room-lamp { position: absolute; right: 67px; bottom: 151px; width: 39px; height: 45px; background: #f4d497; clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%); }
.stay-badge { position: absolute; right: 0; bottom: 0; padding: 18px 22px; border-radius: 18px; background: #075c33; color: white; box-shadow: var(--shadow); display: grid; }
.stay-badge strong { font-size: .9rem; }.stay-badge span { color: #bde8cc; font-size: .72rem; }
.stay-options { display: grid; gap: 12px; margin: 28px 0 30px; }
.stay-options div { display: grid; padding: 16px 18px; border: 1px solid #d5eadc; border-radius: 15px; background: rgba(255,255,255,.7); }
.stay-options strong { color: var(--forest); }.stay-options span { color: var(--muted); font-size: .85rem; }

.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card { min-height: 170px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, white, #f5fbf7); }
.value-card strong { display: block; margin-bottom: 8px; color: var(--forest); font-size: 1.1rem; }
.value-card span { color: var(--muted); font-size: .87rem; }

.contact-section { padding: 110px 0; background: linear-gradient(145deg, #043b22, #087744); color: white; overflow: hidden; position: relative; }
.contact-section::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); right: -220px; top: -180px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; position: relative; z-index: 2; }
.contact-copy h2 { margin: 0; font-size: clamp(2.45rem, 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.045em; }
.contact-copy > p { color: #c9e5d4; }
.contact-cards { display: grid; gap: 11px; margin-top: 30px; }
.contact-cards a, .contact-cards div { display: grid; padding: 14px 17px; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.contact-cards span { color: #a9d5b9; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-cards strong { color: white; font-size: .94rem; }
.contact-form { padding: 32px; border-radius: var(--radius-xl); background: white; color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 15px; color: #254033; font-size: .8rem; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d5e5da; border-radius: 12px; background: #f8fbf9; color: var(--ink); padding: 12px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(10, 138, 75, .1); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-submit { border: 0; width: 100%; }
.form-note { margin: 11px 0 0; color: #75847b; text-align: center; font-size: .72rem; }

.site-footer { padding: 65px 0 20px; background: #f8fbf9; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; padding-bottom: 40px; }
.footer-brand img { width: 188px; }.footer-brand p { max-width: 320px; color: var(--muted); font-size: .88rem; }
.footer-grid h3 { margin: 8px 0 16px; color: var(--forest); font-size: .88rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { color: var(--muted); text-decoration: none; font-size: .84rem; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: #6f8177; font-size: .75rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.legal-body { background: #f2f8f4; }
.legal-main { padding: 60px 0 90px; }
.legal-card { max-width: 880px; padding: 52px; border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow-soft); }
.legal-card h1 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.3rem); letter-spacing: -.05em; }
.legal-card h2 { margin-top: 35px; color: var(--forest); font-size: 1.25rem; }
.legal-card p { color: var(--muted); }
.legal-card a { color: var(--green); font-weight: 750; }
.legal-updated { font-size: .82rem; }
.legal-footer { padding: 25px; text-align: center; background: var(--forest-dark); color: #d9f3e3; font-size: .8rem; }
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg, #f2faf5, #fff); text-align: center; }
.not-found main { max-width: 600px; }.not-found img { margin: 0 auto 45px; }.not-found h1 { font-size: clamp(2.3rem, 6vw, 4.5rem); margin: 0 0 10px; }.not-found p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: .87rem; }
  .hero-grid, .two-column, .hospitality-grid, .contact-grid { gap: 46px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 320px; }
  .hero h1 { font-size: clamp(3rem, 7vw, 5rem); }
  .product-card.product-featured { transform: none; }
}

@media (max-width: 850px) {
  .nav-shell { min-height: 72px; }
  .brand img { width: 165px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 18px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 9px; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 55px; }
  .hero-grid, .two-column, .property-layout, .hospitality-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }.hero-copy .eyebrow { justify-content: center; }.hero-lead { margin-inline: auto; }.hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .visual-shell { max-width: 560px; }
  .two-column, .property-layout, .hospitality-grid, .about-grid, .contact-grid { gap: 42px; }
  .hospitality-visual { order: 2; }
  .contact-copy { text-align: center; }.contact-copy .eyebrow { justify-content: center; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--container)); }
  .hero { min-height: auto; padding-bottom: 65px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }.hero-actions .button { width: 100%; }
  .trust-row { gap: 18px; }.trust-row div { min-width: 120px; }
  .hero-visual { min-height: 380px; }
  .visual-shell { transform: none; }
  .visual-canvas { min-height: 325px; padding: 16px; }
  .code-panel { left: 14px; top: 22px; width: 65%; min-height: 165px; padding: 18px; }
  .property-panel { right: 12px; bottom: 20px; width: 51%; height: 190px; }
  .building { width: 104px; height: 86px; border-width: 4px; box-shadow: 10px 9px 0 #a6dbba; }
  .roof { width: 92px; height: 46px; top: -35px; }.window { width: 16px; height: 16px; border-width: 3px; }.w1 { left: 12px; top: 13px; }.w2 { right: 12px; top: 13px; }.w3 { left: 12px; top: 44px; }.w4 { right: 12px; top: 44px; }.door { width: 24px; height: 37px; left: 36px; }
  .support-bubble { left: 12px; bottom: 15px; padding: 10px 12px; }.support-bubble span { display: none; }
  .floating-card-one { left: 2px; top: 20px; }.floating-card-two { right: 0; bottom: -3px; }
  .service-strip, .software-section, .property-section, .hospitality-section, .about-section, .contact-section { padding: 78px 0; }
  .section-heading h2, .section-copy h2, .contact-copy h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .service-grid, .property-types, .values-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .location-card { grid-template-columns: 1fr; }.location-map { min-height: 260px; }.location-copy { padding: 28px; }
  .room-scene { inset: 0 10px 35px 0; }.room-bed { width: 230px; left: 22px; }.room-window { right: 22px; width: 130px; }
  .contact-form { padding: 23px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / 3; }.footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-card { padding: 32px 23px; }
}

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

/* v1.3 content updates */
.service-grid-two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }
.software-layout { align-items: start; }
.systems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.system-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--shadow-soft); }
.system-card.featured { background: linear-gradient(145deg, #064d2d, #0b7d46); color: white; border-color: transparent; }
.system-label { display: inline-block; color: var(--green); text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 900; }
.system-card.featured .system-label { color: #bcefd2; }
.system-card h3 { margin: 8px 0 14px; font-size: 1.22rem; line-height: 1.2; }
.system-card ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.system-card li { color: var(--muted); font-size: .9rem; }
.system-card.featured li, .system-card.featured h3 { color: white; }
.support-section { padding: 110px 0; background: white; }
.support-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 68px; align-items: start; }
.support-points { display: grid; gap: 12px; margin-top: 28px; }
.support-points div { display: grid; padding: 16px 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--mint-2); }
.support-points strong { color: var(--forest); }
.support-points span { color: var(--muted); font-size: .85rem; }
.reference-section { padding: 110px 0; background: linear-gradient(180deg, #f8fcf9, #eef8f2); border-block: 1px solid var(--line); }
.reference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reference-card { min-height: 150px; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: white; box-shadow: var(--shadow-soft); display: grid; align-content: center; gap: 8px; text-align: center; }
.reference-card strong { color: var(--forest); font-size: 1.08rem; }
.reference-card span { color: var(--muted); font-size: .84rem; }
.quick-contact .button { width: 100%; border: 0; }
.quick-contact select[disabled], .quick-contact textarea[disabled] { color: #607068; }

@media (max-width: 1080px) {
  .service-grid-two, .systems-grid, .reference-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { gap: 42px; }
}

@media (max-width: 850px) {
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .service-grid-two, .systems-grid, .reference-grid { grid-template-columns: 1fr; }
  .support-section, .reference-section { padding: 78px 0; }
}


/* v1.5 IT support and quotation form refinements */
.service-card { display: flex; flex-direction: column; }
.service-card a { position: static; margin-top: auto; padding-top: 24px; z-index: 1; }
.quote-status { margin-top: 16px; padding: 15px 16px; border: 1px solid #b9dfc7; border-radius: 14px; background: #eff9f3; color: var(--forest-dark); text-align: left; }
.quote-status[hidden] { display: none; }
.quote-status strong, .quote-status span { display: block; }
.quote-status span { margin-top: 4px; color: var(--muted); font-size: .84rem; }
.quote-status a { display: inline-block; margin-top: 9px; color: var(--green); font-size: .82rem; font-weight: 850; }
