:root{
  --bg:#F8F6F1;
  --surface:#FFFFFF;
  --surface-soft:#F1EEE8;
  --ink:#1E1E22;
  --muted:#6D6A72;
  --line:#E5E0D8;
  --lilac:#A89BB5;
  --lilac-soft:#E7E1EB;
  --wheat:#C6A66A;
  --wheat-soft:#EFE4CC;
  --shadow:0 30px 90px rgba(30,30,34,.12);
  --radius-lg:30px;
  --radius-md:22px;
  --radius-sm:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{color:inherit}
img,svg{display:block;max-width:100%}
h1,h2,h3,p{margin-top:0}
h1,h2,h3{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
section{scroll-margin-top:92px}

.skip-link{
  position:fixed;
  left:12px;top:12px;
  z-index:999;
  background:var(--ink);
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  transform:translateY(-150%);
}
.skip-link:focus{transform:none}

:focus-visible{
  outline:3px solid rgba(168,155,181,.55);
  outline-offset:3px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px clamp(20px,5vw,76px);
  background:rgba(248,246,241,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(229,224,216,.8);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:11px;
  min-width:max-content;
}
.brand-mark{
  width:39px;
  height:39px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--ink);
  color:#fff;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-weight:800;
}
.brand-copy{display:grid;line-height:1}
.brand-copy strong{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:14px;
  letter-spacing:.15em;
}
.brand-copy small{
  margin-top:5px;
  font-size:8px;
  color:var(--muted);
  letter-spacing:.14em;
  white-space:nowrap;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
}
.main-nav a{color:#4E4B52}
.main-nav a:hover{color:var(--ink)}
.main-nav .nav-cta{
  color:#fff;
  background:var(--ink);
  border-radius:999px;
  padding:10px 16px;
}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}
.menu-toggle span{
  width:20px;
  height:1.5px;
  background:var(--ink);
  transition:transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(3.75px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-3.75px) rotate(-45deg)}


.hero-brand-lockup{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  padding:8px 12px 8px 0;
}
.hero-brand-name{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.16em;
  color:var(--ink);
}
.hero-brand-separator{
  width:1px;
  height:19px;
  background:var(--line);
}
.hero-brand-service{
  font-size:11px;
  font-weight:600;
  color:var(--muted);
  letter-spacing:.04em;
}
.hero-brandline{
  display:none;
}
.footer-brand strong{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  letter-spacing:.13em;
}
.footer-note{
  margin:0;
  text-align:center;
}

.eyebrow{
  margin-bottom:17px;
  color:var(--lilac);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
}
.hero{
  min-height:760px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(500px,.92fr);
  align-items:center;
  gap:clamp(34px,4vw,58px);
  padding:82px clamp(20px,6vw,94px) 96px;
  overflow:hidden;
}
.hero-copy{max-width:700px;min-width:0}
.hero h1{
  max-width:700px;
  margin-bottom:26px;
  font-size:clamp(48px,4.5vw,72px);
  line-height:1.01;
  letter-spacing:-.055em;
  font-weight:700;
  text-wrap:balance;
}
.hero h1 span{display:block;color:var(--lilac)}
.hero-lead{
  max-width:660px;
  margin-bottom:32px;
  color:var(--muted);
  font-size:18px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}
.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border:1px solid transparent;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--ink);color:#fff}
.btn-secondary{border-color:var(--line);background:rgba(255,255,255,.55)}
.btn-lilac{background:var(--lilac);color:#fff}
.hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  padding:0;
  margin:0;
  list-style:none;
  color:var(--muted);
  font-size:13px;
}
.hero-benefits li::before{
  content:"•";
  color:var(--wheat);
  margin-right:7px;
  font-size:18px;
  line-height:0;
}

.hero-demo{min-width:0}
.viewer-card{
  padding:12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.viewer-head{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:3px 5px 10px;
  color:#807C84;
  font-size:10px;
  letter-spacing:.13em;
}
.viewer-head>div{display:flex;align-items:center;gap:8px}
.status-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--wheat);
  box-shadow:0 0 0 4px rgba(198,166,106,.12);
}
.demo-label{
  border-radius:999px;
  padding:6px 9px;
  background:var(--lilac-soft);
  color:#75657F;
  letter-spacing:.03em;
}
.viewer-stage{
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:20px;
  background:#d9d4ce;
  user-select:none;
  touch-action:pan-y;
  cursor:grab;
}
.viewer-stage.is-dragging{cursor:grabbing}
.panorama{
  position:absolute;
  inset:0;
  overflow:hidden;
  opacity:0;
  transform:scale(1.03);
  pointer-events:none;
  transition:opacity .25s ease,transform .25s ease;
  --pan:0px;
  --zoom:1;
}
.panorama.is-active{
  opacity:1;
  transform:translateX(var(--pan)) scale(var(--zoom));
  pointer-events:auto;
}
.panorama::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(255,255,255,.13),transparent 18%,transparent 82%,rgba(255,255,255,.10));
}

/* Living room */
.room-living{background:linear-gradient(#dcd7d1 0 61%,#c8b693 61%)}
.room-wall{position:absolute;inset:0;background:linear-gradient(90deg,transparent 49.5%,rgba(255,255,255,.23) 50%,transparent 50.5%)}
.room-window{position:absolute;left:8%;top:11%;width:28%;height:37%;background:linear-gradient(#cfdfe1,#edf1ec);border:11px solid #f5f2ed;box-shadow:0 8px 22px rgba(0,0,0,.05)}
.room-window i{position:absolute;background:#f5f2ed}
.room-window i:first-child{width:100%;height:5px;left:0;top:48%}
.room-window i:last-child{height:100%;width:5px;left:49%;top:0}
.room-art{position:absolute;right:12%;top:14%;width:17%;height:24%;background:#b8aa9f;border:9px solid #eee9e2;box-shadow:0 6px 18px rgba(0,0,0,.07)}
.room-sofa{position:absolute;left:20%;bottom:19%;width:49%;height:23%;background:#57535d;border-radius:29px 29px 10px 10px;box-shadow:0 18px 32px rgba(0,0,0,.09)}
.room-sofa i{position:absolute;bottom:48%;width:23%;height:30%;border-radius:9px}
.room-sofa i:first-child{left:21%;background:var(--lilac)}
.room-sofa i:last-child{right:18%;background:#d6c6ad}
.room-rug{position:absolute;left:16%;right:10%;bottom:5%;height:19%;background:#e7ded2;border-radius:50%;transform:perspective(240px) rotateX(54deg)}
.room-table{position:absolute;right:14%;bottom:12%;width:23%;height:10%;border-radius:50%;background:#d2b783;box-shadow:0 18px 0 -7px #725e47}
.room-plant{position:absolute;right:7%;top:25%;width:8%;height:36%;border-left:7px solid #67705b;transform:rotate(-7deg)}
.room-plant::before,.room-plant::after{content:"";position:absolute;width:44px;height:18px;border-radius:50%;background:#77816a;transform:rotate(-28deg)}
.room-plant::before{left:-28px;top:4px}
.room-plant::after{left:-8px;top:48px;transform:rotate(22deg)}

/* Kitchen */
.room-kitchen{background:linear-gradient(#dedbd4 0 62%,#bca888 62%)}
.kitchen-wall{position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.18),transparent 30%,transparent 72%,rgba(255,255,255,.12))}
.kitchen-window{position:absolute;left:8%;top:12%;width:23%;height:30%;background:linear-gradient(#d8e5e5,#f0f3ee);border:10px solid #f5f1eb}
.kitchen-units{position:absolute;left:38%;right:7%;top:14%;height:37%;background:linear-gradient(90deg,#e8e4df 0 32%,#d2cbc2 32% 34%,#e8e4df 34% 65%,#d2cbc2 65% 67%,#e8e4df 67%);box-shadow:0 10px 22px rgba(0,0,0,.06)}
.kitchen-units::after{content:"";position:absolute;left:0;right:0;bottom:-13px;height:13px;background:#4d4948}
.kitchen-island{position:absolute;left:27%;bottom:14%;width:48%;height:26%;background:#c9bdaf;border-radius:5px;box-shadow:0 18px 30px rgba(0,0,0,.10)}
.kitchen-island::after{content:"";position:absolute;left:-3%;right:-3%;top:-9px;height:14px;background:#595657;border-radius:4px}
.kitchen-stools{position:absolute;left:39%;bottom:5%;width:32%;height:20%;background:repeating-linear-gradient(90deg,transparent 0 28%,#6e5c4d 28% 31%,transparent 31% 50%)}
.kitchen-light{position:absolute;left:47%;top:0;width:7px;height:18%;background:#393638}
.kitchen-light::after{content:"";position:absolute;left:-18px;bottom:-10px;width:42px;height:24px;border-radius:50% 50% 8px 8px;background:#403c3e}

/* Bedroom */
.room-bedroom{background:linear-gradient(#dcd6d5 0 63%,#bca98b 63%)}
.bedroom-wall{position:absolute;inset:0;background:linear-gradient(90deg,rgba(168,155,181,.12),transparent 46%,transparent 78%,rgba(255,255,255,.12))}
.bedroom-window{position:absolute;right:10%;top:12%;width:25%;height:34%;background:linear-gradient(#d9e6e7,#edf1ed);border:10px solid #f5f1ec}
.bed{position:absolute;left:15%;bottom:14%;width:56%;height:26%;background:#e9e2d8;border-radius:14px 14px 5px 5px;box-shadow:0 20px 34px rgba(0,0,0,.10)}
.bed::before{content:"";position:absolute;left:0;right:0;top:-32%;height:40%;background:#a79dab;border-radius:18px 18px 5px 5px}
.bed::after{content:"";position:absolute;left:12%;top:11%;width:28%;height:30%;background:#fff;border-radius:10px;box-shadow:105px 0 0 #ddd1c0}
.bedside{position:absolute;right:16%;bottom:17%;width:14%;height:17%;background:#8d755f;border-radius:4px}
.bedroom-lamp{position:absolute;right:20%;bottom:34%;width:5px;height:19%;background:#625851}
.bedroom-lamp::after{content:"";position:absolute;left:-15px;top:-8px;width:35px;height:22px;border-radius:50% 50% 5px 5px;background:#d8c5a1}
.bedroom-rug{position:absolute;left:12%;right:12%;bottom:4%;height:17%;background:#ded4c7;border-radius:50%;transform:perspective(240px) rotateX(55deg)}

.hotspot{
  position:absolute;
  z-index:8;
  width:44px;height:44px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:50%;
  background:#fff;
  color:var(--lilac);
  font-size:22px;
  font-weight:700;
  box-shadow:0 10px 28px rgba(0,0,0,.16);
  cursor:pointer;
}
.hotspot::after{
  content:"";
  position:absolute;
  inset:-6px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:50%;
}
.hotspot-a{left:49%;top:47%}
.hotspot-b{right:20%;top:56%}
.viewer-ui-top{
  position:absolute;
  z-index:12;
  left:15px;right:15px;top:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  pointer-events:none;
}
.room-pill{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(30,30,34,.85);
  color:#fff;
  font-size:12px;
  font-weight:700;
  backdrop-filter:blur(8px);
}
.viewer-controls{
  display:flex;
  gap:7px;
  pointer-events:auto;
}
.viewer-controls button{
  width:36px;height:36px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  background:rgba(255,255,255,.92);
  cursor:pointer;
}
.drag-hint{
  position:absolute;
  z-index:12;
  left:15px;
  bottom:15px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(248,246,241,.92);
  font-size:11px;
}
.hotspot-panel{
  position:absolute;
  z-index:18;
  right:15px;
  bottom:15px;
  max-width:240px;
  padding:12px 42px 12px 14px;
  border:1px solid rgba(255,255,255,.7);
  border-radius:14px;
  background:rgba(255,255,255,.95);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
  font-size:12px;
}
.hotspot-panel button{
  position:absolute;
  top:6px;right:7px;
  width:28px;height:28px;
  border:0;background:transparent;
  cursor:pointer;
  font-size:18px;
}
.room-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
  margin-top:10px;
}
.room-tab{
  min-width:0;
  display:grid;
  grid-template-columns:62px 1fr;
  align-items:center;
  gap:10px;
  padding:9px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  text-align:left;
  cursor:pointer;
}
.room-tab.is-active{
  border-color:rgba(168,155,181,.65);
  box-shadow:inset 0 0 0 1px rgba(168,155,181,.28);
}
.room-thumb{
  height:48px;
  border-radius:9px;
  background:#ddd;
  overflow:hidden;
}
.living-thumb{background:linear-gradient(#dcd7d1 0 60%,#c8b693 60%)}
.kitchen-thumb{background:linear-gradient(135deg,#e4dfd8 0 48%,#bca888 48%)}
.bedroom-thumb{background:linear-gradient(135deg,#dcd6d5 0 60%,#bca98b 60%)}
.room-tab strong{
  display:block;
  margin-bottom:2px;
  font-size:12px;
  white-space:nowrap;
}
.room-tab small{
  display:block;
  color:var(--muted);
  font-size:10px;
  white-space:nowrap;
}

.value-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin:0 clamp(20px,6vw,94px);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.value-strip>div{
  padding:25px 20px;
  border-right:1px solid var(--line);
}
.value-strip>div:last-child{border-right:0}
.value-strip strong{
  display:block;
  margin-bottom:3px;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:22px;
}
.value-strip span{color:var(--muted);font-size:12px}

.section{padding:108px clamp(20px,6vw,94px)}
.section-soft{background:var(--surface-soft)}
.section-dark{background:var(--ink);color:#fff}
.section-intro{
  max-width:810px;
  margin-bottom:46px;
}
.section-intro h2{
  margin-bottom:18px;
  font-size:clamp(40px,4.8vw,66px);
  line-height:1.03;
  letter-spacing:-.05em;
  font-weight:700;
}
.section-intro h2 span{color:var(--lilac)}
.section-intro>p:last-child{
  max-width:720px;
  color:var(--muted);
  font-size:17px;
}
.section-intro-split{
  max-width:none;
  display:grid;
  grid-template-columns:1.15fr .65fr;
  gap:72px;
  align-items:end;
}
.section-intro-split>p{margin-bottom:0}

.compare-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.compare-card{
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:var(--surface);
}
.compare-featured{
  border-color:rgba(168,155,181,.48);
  box-shadow:0 18px 50px rgba(102,86,113,.08);
}
.compare-type{
  display:inline-block;
  margin-bottom:16px;
  color:var(--muted);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:10px;
  font-weight:800;
  letter-spacing:.15em;
}
.compare-visual{
  position:relative;
  height:190px;
  margin-bottom:22px;
  overflow:hidden;
  border-radius:16px;
  background:linear-gradient(#ddd7d1 0 60%,#c8b693 60%);
}
.compare-visual::before{
  content:"";
  position:absolute;
  left:10%;top:14%;
  width:30%;height:35%;
  border:8px solid #f4f0ea;
  background:#dce6e5;
}
.compare-visual::after{
  content:"";
  position:absolute;
  left:25%;bottom:13%;
  width:46%;height:24%;
  border-radius:18px 18px 8px 8px;
  background:#5d5961;
}
.visual-photo{filter:saturate(.75)}
.visual-video{filter:saturate(.75)}
.visual-video span{
  position:absolute;
  z-index:4;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:52px;height:52px;
  display:grid;place-items:center;
  border-radius:50%;
  background:rgba(30,30,34,.84);
  color:#fff;
}
.visual-tour{
  box-shadow:inset 0 0 0 3px rgba(168,155,181,.18);
}
.mini-hotspot{
  position:absolute;
  z-index:4;
  right:22%;top:44%;
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--lilac);
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,.13);
}
.mini-arrow{
  position:absolute;
  z-index:4;
  left:14px;bottom:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(248,246,241,.92);
  font-size:12px;
}
.compare-card h3{font-size:20px;margin-bottom:8px}
.compare-card p{margin:0;color:var(--muted);font-size:14px}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.benefit-card{
  min-height:250px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:var(--surface);
}
.benefit-lilac{background:var(--lilac-soft);border-color:transparent}
.benefit-wheat{background:var(--wheat-soft);border-color:transparent}
.benefit-number{
  display:block;
  margin-bottom:38px;
  color:var(--muted);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:.15em;
}
.benefit-card h3{font-size:21px;margin-bottom:9px}
.benefit-card p{margin:0;color:var(--muted);font-size:14px}

.sector-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.sector-card{
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:var(--surface);
}
.sector-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  margin-bottom:28px;
  border-radius:14px;
  background:var(--lilac-soft);
  color:var(--lilac);
  font-size:21px;
}
.sector-wheat{background:var(--wheat-soft);color:var(--wheat)}
.sector-label{
  margin-bottom:12px;
  color:var(--muted);
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
}
.sector-card h3{font-size:22px;line-height:1.2;margin-bottom:10px}
.sector-card>p:not(.sector-label){color:var(--muted);font-size:14px}
.sector-card ul{
  margin:22px 0 0;
  padding:18px 0 0;
  border-top:1px solid var(--line);
  list-style:none;
}
.sector-card li{
  position:relative;
  padding-left:17px;
  margin:7px 0;
  color:#504D54;
  font-size:13px;
}
.sector-card li::before{
  content:"";
  position:absolute;
  left:0;top:.65em;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--wheat);
}

.section-intro-dark h2 span{color:#C4B9CC}
.section-intro-dark>p:last-child{color:#BDB8C1}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.18);
}
.service-grid article{
  min-height:280px;
  padding:28px 30px 0 0;
  border-right:1px solid rgba(255,255,255,.14);
}
.service-grid article+article{padding-left:30px}
.service-grid article:last-child{border-right:0}
.service-grid span{
  color:var(--wheat);
  font-size:11px;
  font-weight:800;
  letter-spacing:.15em;
}
.service-grid h3{margin:56px 0 10px;font-size:23px}
.service-grid p{color:#BFB9C2;font-size:14px;max-width:340px}

.process-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:0;
  margin:0;
  border-top:1px solid var(--line);
  list-style:none;
}
.process-list li{padding:28px 28px 0 0}
.process-list>li>span{
  width:38px;height:38px;
  display:grid;place-items:center;
  margin-bottom:28px;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  font-size:11px;
  font-weight:700;
}
.process-list li:nth-child(even)>span{background:var(--lilac)}
.process-list h3{font-size:18px;margin-bottom:7px}
.process-list p{margin:0;color:var(--muted);font-size:14px}

.portfolio-section{padding-top:28px}
.portfolio-card{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:50px;
  padding:clamp(38px,6vw,74px);
  overflow:hidden;
  border-radius:var(--radius-lg);
  background:var(--ink);
  color:#fff;
}
.portfolio-card>div{max-width:730px}
.portfolio-card h2{
  margin-bottom:16px;
  font-size:clamp(38px,4.5vw,62px);
  line-height:1.03;
  letter-spacing:-.05em;
}
.portfolio-card p:last-child{margin:0;color:#BEB8C1}
.portfolio-card .eyebrow{color:var(--wheat)}

.faq-list{max-width:920px}
.faq-list details{
  padding:21px 0;
  border-top:1px solid var(--line);
}
.faq-list details:last-child{border-bottom:1px solid var(--line)}
.faq-list summary{
  cursor:pointer;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:17px;
  font-weight:600;
}
.faq-list details p{
  max-width:760px;
  margin:13px 0 0;
  color:var(--muted);
  font-size:14px;
}

.contact-section{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:clamp(42px,6vw,84px);
  background:linear-gradient(135deg,#F0ECE6,#ECE8EF);
}
.contact-copy h2{
  margin-bottom:16px;
  font-size:clamp(40px,4.8vw,64px);
  line-height:1.03;
  letter-spacing:-.05em;
}
.contact-copy>p{
  max-width:560px;
  color:var(--muted);
}
.contact-note{
  display:grid;
  gap:4px;
  margin-top:30px;
  padding:16px;
  border:1px solid rgba(168,155,181,.32);
  border-radius:14px;
  background:rgba(255,255,255,.42);
  font-size:12px;
}
.contact-note span{color:var(--muted)}

.contact-form{
  padding:28px;
  border:1px solid rgba(255,255,255,.88);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 50px rgba(68,59,73,.06);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form label{
  display:grid;
  gap:7px;
  font-size:12px;
  font-weight:600;
}
.contact-form label.full{grid-column:1/-1}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:13px 14px;
  color:var(--ink);
  outline:none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--lilac);
  box-shadow:0 0 0 3px rgba(168,155,181,.13);
}
.contact-form textarea{resize:vertical}
.contact-form .btn{margin-top:18px}
.form-status{
  margin:10px 0 0;
  color:var(--muted);
  font-size:11px;
}
.form-status.is-error{color:#7A3F3F}

.site-footer{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:28px clamp(20px,6vw,94px);
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
}
.footer-brand{display:flex;align-items:center;gap:10px;color:var(--ink)}
.footer-brand div{display:grid}
.footer-brand small{color:var(--muted);font-size:9px;margin-top:2px}

@media (max-width:1220px){
  .hero{
    grid-template-columns:1fr;
  }
  .hero-copy{max-width:820px}
  .hero h1{max-width:820px}
  .hero-demo{max-width:850px;width:100%}
}

@media (max-width:1080px){
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .hero-copy{max-width:820px}
  .hero-demo{max-width:850px;width:100%}
  .benefit-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:900px){
  .menu-toggle{display:flex}
  .main-nav{
    position:absolute;
    top:74px;
    left:14px;right:14px;
    display:none;
    padding:14px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 50px rgba(30,30,34,.08);
    flex-direction:column;
    align-items:stretch;
    gap:4px;
  }
  .main-nav.is-open{display:flex}
  .main-nav a{padding:11px 10px;border-radius:10px}
  .main-nav .nav-cta{text-align:center;margin-top:4px}
  .compare-grid,.sector-grid{grid-template-columns:1fr}
  .section-intro-split{grid-template-columns:1fr;gap:18px}
  .service-grid{grid-template-columns:1fr}
  .service-grid article{
    min-height:auto;
    padding:28px 0;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.14);
  }
  .service-grid article+article{padding-left:0}
  .service-grid article:last-child{border-bottom:0}
  .service-grid h3{margin:24px 0 8px}
  .process-list{grid-template-columns:1fr 1fr}
  .contact-section{grid-template-columns:1fr}
  .portfolio-card{flex-direction:column;align-items:flex-start}
}

@media (max-width:640px){
  .site-header{padding:14px 18px}
  .brand-copy{display:grid}
  .brand-copy small{display:none}
  .hero{padding:64px 18px 78px}
  .hero h1{font-size:clamp(44px,13vw,58px)}
  .hero-lead{font-size:16px}
  .hero-actions{display:grid}
  .hero-actions .btn{width:100%}
  .hero-benefits{display:grid;gap:6px}
  .viewer-stage{min-height:360px}
  .viewer-head{align-items:flex-start}
  .demo-label{max-width:135px;text-align:center}
  .room-tabs{grid-template-columns:1fr}
  .room-tab{grid-template-columns:56px 1fr}
  .value-strip{
    grid-template-columns:1fr 1fr;
    margin:0 18px;
  }
  .value-strip>div:nth-child(2){border-right:0}
  .value-strip>div{padding:18px 12px}
  .section{padding:78px 18px}
  .section-intro h2{font-size:clamp(38px,10vw,52px)}
  .benefit-grid{grid-template-columns:1fr}
  .process-list{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .contact-form label.full{grid-column:auto}
  .site-footer{flex-direction:column;align-items:flex-start;padding:28px 18px}

  .hero-brand-lockup{
    margin-bottom:14px;
  }
  .hero-brand-name{
    font-size:16px;
  }
  .hero-brand-service{
    font-size:10px;
  }
  .footer-note{
    text-align:left;
  }

}

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

.hero-meta{display:grid;grid-template-columns:1fr;gap:12px;margin-top:24px;max-width:360px}.hero-meta>span{display:grid;gap:3px;padding:14px 15px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.45)}.hero-meta strong{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;font-size:14px}.hero-meta small{color:var(--muted);font-size:10px}.contact-options{display:grid;gap:9px;margin-top:28px}.contact-option{display:grid;gap:2px;padding:13px 14px;border:1px solid rgba(168,155,181,.25);border-radius:13px;background:rgba(255,255,255,.48)}.contact-option:hover{border-color:rgba(168,155,181,.52);background:rgba(255,255,255,.72)}.contact-option-label{color:var(--muted);font-size:9px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.contact-option strong{font-size:13px;overflow-wrap:anywhere}.service-grid-two{grid-template-columns:repeat(2,1fr)}.site-footer{min-height:150px;display:grid;grid-template-columns:1.1fr 1fr 1.2fr auto;align-items:start}.footer-info,.footer-privacy{display:grid;gap:5px}.footer-info a:hover{text-decoration:underline}.footer-privacy{color:var(--muted)}@media (max-width:900px){.service-grid-two{grid-template-columns:1fr}.site-footer{grid-template-columns:1fr 1fr}}@media (max-width:640px){.hero-meta{grid-template-columns:1fr}.site-footer{grid-template-columns:1fr}}

/* Language selector */
.language-switcher{
  margin-left:auto;
}
.language-switcher select{
  min-width:66px;
  height:40px;
  padding:0 30px 0 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--ink);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
}
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.form-actions .btn{margin-top:0}
.footer-privacy a:hover{text-decoration:underline}

@media (max-width:900px){
  .language-switcher{
    margin-left:auto;
  }
}
@media (max-width:640px){
  .language-switcher select{
    min-width:60px;
    height:38px;
  }
  .form-actions{
    display:grid;
  }
  .form-actions .btn{
    width:100%;
  }
}

.legal-page{
  max-width:820px;
  margin:0 auto;
  padding:70px 22px 100px;
}
.legal-brand{margin-bottom:64px}
.legal-page h1{
  font-size:clamp(42px,7vw,70px);
  line-height:1;
  letter-spacing:-.05em;
  margin-bottom:24px;
}
.legal-page h2{
  margin-top:38px;
  margin-bottom:8px;
  font-size:20px;
}
.legal-page p{
  color:var(--muted);
  max-width:760px;
}
.legal-page a:not(.btn):not(.brand){text-decoration:underline}


/* AURA brand assets */
.brand-logo-link{
  display:flex;
  align-items:center;
  min-width:0;
}
.header-logo{
  display:block;
  width:190px;
  height:auto;
  max-height:48px;
  object-fit:contain;
  object-position:left center;
}
.footer-brand-logo{
  min-width:0;
}
.footer-logo{
  display:block;
  width:210px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  object-position:left center;
}
@media (max-width:900px){
  .header-logo{width:165px;max-height:44px}
}
@media (max-width:640px){
  .header-logo{width:138px;max-height:40px}
  .footer-logo{width:185px}
}

.site-header .brand-logo-link{flex:0 0 auto}


/* Cloudflare-safe header/layout fixes */
html, body{
  max-width:100%;
  overflow-x:hidden;
}
.site-header{
  width:100%;
  box-sizing:border-box;
}
.site-header .brand-logo-link{
  flex:0 0 auto;
  width:190px;
  max-width:190px;
  overflow:hidden;
}
.header-logo{
  display:block!important;
  width:190px!important;
  max-width:190px!important;
  min-width:0!important;
  height:auto!important;
  max-height:48px!important;
  object-fit:contain!important;
  object-position:left center!important;
}
.main-nav{
  min-width:0;
}
@media (max-width:1180px){
  .main-nav{gap:16px;font-size:13px}
  .site-header .brand-logo-link{width:170px;max-width:170px}
  .header-logo{width:170px!important;max-width:170px!important;max-height:44px!important}
}
@media (max-width:900px){
  .site-header .brand-logo-link{width:155px;max-width:155px}
  .header-logo{width:155px!important;max-width:155px!important;max-height:42px!important}
}
@media (max-width:640px){
  .site-header .brand-logo-link{width:130px;max-width:130px}
  .header-logo{width:130px!important;max-width:130px!important;max-height:38px!important}
}

/* keep hero inside viewport at laptop sizes */
@media (min-width:1081px) and (max-width:1450px){
  .hero{
    grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);
    gap:32px;
    padding-left:clamp(28px,4vw,58px);
    padding-right:clamp(28px,4vw,58px);
  }
  .hero h1{
    font-size:clamp(46px,4.2vw,62px);
    max-width:620px;
  }
  .hero-copy{max-width:620px}
}


/* Mobile hero title fix — prevents "appuntamento" from being clipped */
@media (max-width:640px){
  .hero{
    padding-left:20px;
    padding-right:20px;
  }
  .hero-copy{
    width:100%;
    max-width:100%;
    min-width:0;
  }
  .hero h1{
    width:100%;
    max-width:100%;
    font-size:clamp(35px,10.8vw,44px);
    line-height:1.03;
    letter-spacing:-.045em;
    text-wrap:balance;
  }
}
@media (max-width:360px){
  .hero{
    padding-left:16px;
    padding-right:16px;
  }
  .hero h1{
    font-size:clamp(33px,10.4vw,38px);
    letter-spacing:-.04em;
  }
}
