:root{
  --green-dark:#3f4a2e;
  --green-mid:#5a6b3f;
  --green-pale:#e7e3d4;
  --cream:#f4f1e8;
  --gold:#c9a227;
  --maroon:#7a2e2e;
  --text-dark:#2c3320;
  --text-light:#f4f1e8;
  --radius:14px;
  --max-w:1240px;
  --header-h-desktop:74px;
  --header-h-mobile:64px;
}
@font-face{
  font-family:'DM Serif Display';
  src:url('fonts/DMSerifDisplay-Regular.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'DM Serif Display';
  src:url('fonts/DMSerifDisplay-Italic.ttf') format('truetype');
  font-weight:400;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:'Outfit';
  src:url('fonts/Outfit-VariableFont_wght.ttf') format('truetype-variations');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent;}
html,body{
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
}
body{
  font-family:'Outfit',sans-serif;
  color:var(--text-dark);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  padding-top:var(--header-h-desktop);
}
h1,h2,h3{
  font-family:'DM Serif Display',serif;
  font-weight:400;
}
img{display:block;width:100%;height:100%;object-fit:cover;}
a,
a:link,
a:visited,
a:hover,
a:active{
  text-decoration:none;
  color:inherit;
}
.wrap{max-width:var(--max-w);margin:0 auto;padding:0 32px;}

/* ===== Image placeholders ===== */
.img-box{
  position:relative;
  overflow:hidden;
  background:repeating-linear-gradient(45deg,#ded8c4,#ded8c4 10px,#e7e2d0 10px,#e7e2d0 20px);
}
.img-box::before{
  content:attr(data-label);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:8px;
  font-size:12px;
  letter-spacing:.05em;
  color:#8a8268;
  background:rgba(244,241,232,.55);
  font-family:'Jost',sans-serif;
}
.img-box img{position:relative;z-index:1;}
.img-box img:not([src]),
.img-box img[src=""]{display:none;}

/* ===== Header ===== */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  background:#394d1e;
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:100;
}
.logo{
  font-size:25px;
  font-weight:500;
  color:white;
  flex-shrink:0;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}
.logo img{
  width:48px;
  height:28px;
  object-fit:contain;
}
nav.main-nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-btn{
  padding:10px 20px;
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  border:1px solid transparent;
  cursor:pointer;
}
.nav-btn.outline{background:#d3d1c3; border:1px solid black;color:black;}
.nav-btn.gold{background:#ac9129; border:1px solid #ac9129;color:#fff;}
.nav-btn.maroon{background:var(--maroon);color:#fff;border:1px solid var(--maroon);}
.icon-btn{
  width:38px;height:38px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid #d8d2bd;
  background:#fff;
  cursor:pointer;
  font-size:18px;
}
.account-menu{position:relative;}
.account-dropdown{
  position:absolute;
  top:calc(100% + 2px);
  right:0;
  background:#fff;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  padding:8px;
  min-width:160px;
  display:none;
  flex-direction:column;
  gap:2px;
  z-index:200;
}
.account-dropdown.open{display:flex;}
.account-dropdown a{
  display:block;
  padding:10px 14px;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  color:var(--text-dark);
  transition:background .15s ease;
}
.account-dropdown a:hover{background:var(--green-pale);}
@media(min-width:901px){
  .account-menu:hover .account-dropdown{display:flex;}
}
.account-btn--named{
  width:auto;
  height:38px;
  border-radius:20px;
  padding:0 16px;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}

.nav-right{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;height:38px;
  border-radius:50%;
  border:1px solid #d8d2bd;
  background:#fff;
  cursor:pointer;
  padding:0 10px;
  flex-shrink:0;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--green-dark);
  border-radius:2px;
  transition:all .25s;
}
.mobile-nav{
  display:none;
  flex-direction:column;
  gap:10px;
  background:var(--cream);
  padding:20px 32px 24px;
  border-top:1px solid #ddd8c6;
  position:absolute;
  top:100%;left:0;right:0;
  z-index:99;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.mobile-nav.open{display:flex;}
.mobile-nav .nav-btn{display:block;text-align:center;padding:12px 20px;}

/* ===== Hero ===== */
.hero{
  position:relative;
  height:560px;
  overflow:hidden;
  width:100%;
}
.hero .img-box{position:absolute;inset:0;}
.hero .img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 80%;
  filter:brightness(1) saturate(1) contrast(1);
}
.hero-deco-left,
.hero-deco-right{
  position:absolute;
  top:15%;
  width:44px;
  height:auto;
  z-index:3;
}
.hero-deco-left{left:0;}
.hero-deco-right{right:0;}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(20,30,15,0) 0%,rgba(20,30,15,.12) 100%);
  z-index:2;
}
.hero-content{
  position:relative;
  z-index:3;
  height:100%;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  padding-top:20px;
  padding-left:48px;
  padding-right:48px;
  max-width:var(--max-w);
  margin:0 auto;
  text-align:left;
}

@media (min-width:1024px){
  .hero{
    height:70vh;
    min-height:560px;
  }
}

@media (min-width:1440px){
  .hero{
    height:75vh;
  }
}

.hero-content h1{
  font-size:clamp(26px, 3.8vw, 52px);
  line-height:1.15;
  text-align:left;
  margin-top:60px;
  margin-left:40px;
  max-width:100%;
}
.hero-line{
  display:block;
}
.hero-line--accent{
  color:#8ba63f;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero-line--light{
  color:#f4f1e8;
  font-weight:600;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.journey-buttons{
  position:absolute;
  bottom:36px;left:0;right:0;
  display:flex;
  justify-content:space-between;
  padding:0 48px;
  max-width:var(--max-w);
  margin:0 auto;
  z-index:3;
}
.journey-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-radius:20px;
  padding:14px 16px 14px 24px;
  cursor:pointer;
  border:none;
  text-align:left;
  min-width:230px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.journey-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.journey-btn--light{
  background:#ffffff;
  color:var(--green-dark);
}
.journey-btn--dark{
  background:#425a20;
  color:#ffffff;
}
.journey-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.journey-text b{
  font-size:15px;
  font-weight:700;
  line-height:1.25;
}
.journey-sub{
  font-size:14px;
  font-weight:400;
  opacity:.8;
}
.play-circle.outline{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.play-circle.outline svg{width:13px;height:13px;fill:currentColor;}
.play-circle.outline img{width:44px;height:44px;object-fit:contain;}

/* ===== Persona Strip ===== */
.persona-strip{
  background:#5a6f27;
  color:var(--text-light);
  padding:20px 0;
}
.persona-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.persona-card{
  position:relative;
  display:block;
  background:#f1eedf;
  border-radius:20px;
  padding:26px 130px 28px 28px;
  cursor:pointer;
  overflow:hidden;
  transition:background .2s ease, transform .2s ease, color .2s ease;
}
.persona-card,
.persona-card:link,
.persona-card:visited{
  color:#425a20;
}
.persona-card:hover{
  background:#425a20;
  transform:translateY(-2px);
}
.persona-card:hover h3,
.persona-card:hover .persona-role,
.persona-card:hover .persona-sub{
  color:#f1eedf;
}
.persona-card:hover .persona-card-icon{
  background-color:#f1eedf;
}
.persona-card-pattern-wrap{
  position:absolute;
  top:0;
  bottom:0;
  right:22px;
  width:56px;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}
.persona-card-pattern{
  width:100%;
  height:160%;
  display:block;
  object-fit:fill;
  position:relative;
  top:-30%;
}
.persona-card-icon{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:88px;
  width:40px;
  height:36px;
  background-color:#425a20;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
  transition:background-color .2s ease;
  z-index:2;
}
.persona-card-icon.icon-nest{
  -webkit-mask-image:url('NA_Assets/NA_LogoHouseWhite.svg');
  mask-image:url('NA_Assets/NA_LogoHouseWhite.svg');
}
.persona-card-icon.icon-person{
  -webkit-mask-image:url('NA_Assets/NA_IconNestPerson.svg');
  mask-image:url('NA_Assets/NA_IconNestPerson.svg');
}
.persona-card h3{
  position:relative;
  z-index:2;
  font-family:'DM Serif Display',serif;
  font-weight:400;
  font-size:28px;
  margin-bottom:8px;
  transition:color .2s ease;
}
.persona-card .persona-role{
  position:relative;
  z-index:2;
  font-size:15px;
  font-weight:400;
  opacity:.95;
  margin-bottom:16px;
  transition:color .2s ease;
}
.persona-card .persona-sub{
  position:relative;
  z-index:2;
  font-size:13px;
  line-height:1.5;
  opacity:.95;
  transition:color .2s ease;
}

/* ===== Feature Grid ===== */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:5px;
  max-width:var(--max-w);
  margin:32px auto 0;
  padding:0 32px 24px;
}
.feature-card{
  background:#425a20;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.feature-card .img-box{
  order:-1;
  aspect-ratio:3/2;
  height:auto;
  margin:0;
  border-radius:20px 20px 0 0;
  overflow:hidden;
}
.feature-card .img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.35s ease;
}
.feature-card .img-box:hover img{
  transform:scale(1.08);
}
.feature-card .feature-text{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:22px 18px 16px;
  text-align:center;
  border-radius:0 0 20px 20px;
}
.feature-card .feature-icon{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}
.feature-card .feature-icon img{
  width:64px;
  height:64px;
  object-fit:contain;
}
.feature-card h4{
  font-weight:800;
  font-size:23px;
  margin-bottom:6px;
  color:var(--text-light);
}
.feature-card p{
  font-size:12px;
  line-height:1.5;
  opacity:.88;
  color:white;
}

/* ===== Welcome / Categories ===== */
.welcome-section{
  background:var(--green-pale);
  padding:70px 0 60px;
  position:relative;
  overflow:hidden;
}
.welcome-section h2{
  text-align:center;
  color:#5a6f27;
  font-size:35px;
  margin-bottom:36px;
}
.welcome-illustration-row{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  width:100%;
  margin-bottom:30px;
}
.welcome-illustration{
  grid-column:2;
  display:flex;
  align-items:center;
  justify-content:center;
}
.welcome-illustration .illustration-center{
  width:420px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}
.deco-left,
.deco-right{
  position:absolute;
  top:0;
  width:40px;
  height:auto;
  object-fit:contain;
  z-index:1;
}
.deco-left{left:0;}
.deco-right{right:0;}
.welcome-section .lede{
  text-align:center;
  max-width:660px;
  margin:0 auto 50px;
  font-size:19px;
  font-weight:500;
  line-height:1.6;
  color:#586c26;
}
.category-grid,
.category-cards,
.categories,
.category-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:5px;
  max-width:100%;
}
.category-card{
  background:#f1eedf;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:0;
  box-shadow:0 8px 20px rgba(58,66,38,.08);
}
.category-text{
  position:relative;
  z-index:2;
  background:#f1eedf;
  border-radius:20px 20px 0 0;
  padding:16px 16px 14px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.category-text h3{
  font-size:25px;
  color:#5a6f27;
  margin:0 0 2px;
  font-weight:500;
  text-align:center;
}
.category-text span{
  display:block;
  font-size:13px;
  letter-spacing:.1em;
  color:#8e9b67;
  font-weight:400;
  text-align:center;
}
.category-card .img-box{
  flex:1;
  aspect-ratio:4/3;
  margin:0;
  border-radius:0 0 20px 20px;
  overflow:hidden;
  position:relative;
  z-index:1;
}

/* ===== Booking Banner ===== */
.booking-banner{
  background:#394d1e;
  padding:28px 0;
}

.banner-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:9px;
  object-fit:contain;
}

/* ===== Footer ===== */
footer{
  background:#394d1e;
  color:var(--text-light);
  padding:50px 0 30px;
  text-align:center;
}
footer h2{
  font-size:24px;
  margin-bottom:36px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-brand{
  font-size:22px;
  letter-spacing:.02em;
  font-weight:500;
}

.footer-bottom{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12px;
  opacity:.85;
  text-align:left;
}
.footer-contact{
  text-align:left;
  line-height:1.6;
  flex:1;
  color:rgb(255, 255, 255);
}
.footer-logo-mark{
  display:flex;
  justify-content:center;
  margin-bottom:0;
  flex:1;
}
.footer-logo-mark svg{width:34px;height:34px;}
.social-icons{display:flex;gap:10px;justify-content:flex-end;flex:1;}
.social-icons a{
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-light);
  transition:background-color .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.social-icons a svg{
  display:block;
}
.social-icons a:hover{
  background-color:var(--text-light);
  color:var(--green-dark);
  border-color:var(--text-light);
  transform:translateY(-2px);
}

/* ===== Video Modal ===== */
.video-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.video-modal.open{display:flex;}
.video-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,25,15,.82);
}
.video-modal-content{
  position:relative;
  width:100%;
  max-width:900px;
  background:#000;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.video-modal-content video{
  width:100%;
  height:auto;
  max-height:80vh;
  display:block;
}
.video-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  width:36px;height:36px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.9);
  color:var(--green-dark);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
}
.video-modal-close:hover{background:#fff;}

@media(max-width:560px){
  .video-modal{padding:0;}
  .video-modal-content{border-radius:0;max-width:100%;}
  .video-modal-content video{max-height:100vh;}
}

/* ===== Responsive ===== */
@media(max-width:900px){
  nav.main-nav{display:none;}
  .hamburger{display:flex;}
  .feature-grid{grid-template-columns:repeat(2,1fr);gap:5px;}
  .persona-cols{grid-template-columns:1fr;}
  .category-grid{grid-template-columns:repeat(2,1fr);gap:5px;}
  .category-text h3{font-size:20px;}
  .category-text span{font-size:11px;}
  .hero{height:500px;}
  .hero-content{padding:20px 28px 0;}
  .hero-content h1{font-size:36px;}
  .journey-buttons{padding:0 28px;bottom:24px;}
  .journey-btn{min-width:0;flex:1;padding:12px 14px 12px 20px;gap:12px;}
  .journey-text b{font-size:14px;}
  .journey-sub{font-size:13px;}
  .play-circle.outline{width:40px;height:40px;}
  .play-circle.outline img{width:36px;height:36px;}
  .persona-card{padding:22px 104px 24px 24px;}
  .persona-card h3{font-size:24px;}
  .persona-card-pattern-wrap{width:36px;right:16px;top:0;bottom:0;}
  .persona-card-icon{width:34px;height:30px;top:50%;transform:translateY(-50%);right:64px;}
  .welcome-illustration .illustration-center{width:320px;}
  .booking-banner{padding:20px 0;}
  .banner-inner{
    gap:10px;
    border-radius:24px;
    padding:14px 20px;
  }
  .banner-inner .icon-left,
  .banner-inner .icon-right{gap:6px;}
  .banner-inner .icon-left img,
  .banner-inner .icon-right img,
  .banner-inner .icon-left svg,
  .banner-inner .icon-right svg{width:22px;height:22px;}
  .banner-text h3{font-size:15px;}
  .banner-text span{font-size:10px;}
}

@media(max-width:900px){
  .category-card:last-child{
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media(max-width:560px){
  body{padding-top:var(--header-h-mobile);}
  header{padding:14px 20px;height:var(--header-h-mobile);}
  .logo{font-size:20px;}
  .logo img{width:38px;height:22px;}
  .icon-btn,.hamburger{width:34px;height:34px;}
  .hamburger{padding:0 8px;gap:4px;}
  .hamburger span{width:16px;}
  .mobile-nav{padding:16px 20px 20px;}
  .feature-grid{grid-template-columns:1fr 1fr;padding:0 12px 12px;gap:5px;margin-top:20px;}
  .feature-card .feature-icon img{width:40px;height:40px;}
  .feature-card h4{font-size:18px;}
  .feature-card p{font-size:11px;}
  .feature-card .feature-text{padding:10px 12px 16px;}
  .category-grid{grid-template-columns:repeat(2,1fr);gap:5px;}
  .category-card{border-radius:14px;box-shadow:0 6px 14px rgba(58,66,38,.08);}
  .category-text{padding:10px 10px 8px;border-radius:12px 12px 0 0;}
  .category-text h3{font-size:16px;line-height:1.2;font-weight:500;}
  .category-text span{font-size:9px;letter-spacing:.06em;}
  .category-card .img-box{margin-top:0;border-radius:0 0 14px 14px;}
  .hero{height:340px;}
  .hero-content{padding-left:20px;padding-right:20px;padding-top:0;}
  .hero-content h1{font-size:26px;margin-top:55px;}
  .journey-buttons{flex-direction:row;justify-content:space-between;align-items:flex-end;gap:8px;bottom:16px;padding:0 16px;}
  .journey-btn{display:flex;align-items:center;min-width:0;flex:none;max-width:150px;padding:8px 8px 8px 14px;gap:8px;border-radius:12px;box-shadow:0 4px 14px rgba(0,0,0,.25);}
  .journey-text{gap:0;}
  .journey-text b{font-size:11px;line-height:1.2;}
  .journey-sub{font-size:10px;}
  .play-circle.outline{width:30px;height:30px;}
  .play-circle.outline img{width:26px;height:26px;}
  .play-circle.outline svg{width:9px;height:9px;}
  .persona-cols{gap:12px;}
  .persona-card{padding:20px 84px 22px 20px;border-radius:16px;}
  .persona-card h3{font-size:22px;margin-bottom:6px;}
  .persona-card-pattern-wrap{width:28px;right:12px;top:0;bottom:0;}
  .persona-card-icon{width:26px;height:24px;top:50%;transform:translateY(-50%);right:50px;}
  .persona-card .persona-role{font-size:13px;margin-bottom:12px;}
  .persona-card .persona-sub{font-size:12px;}
  .welcome-illustration .illustration-center{width:220px;}
  .wrap{padding:0 20px;}
  .welcome-section{padding:50px 0 40px;}
  .welcome-section h2{font-size:22px;margin-bottom:24px;}
  .welcome-section .lede{font-size:13px;margin-bottom:32px;}
  footer h2{font-size:20px;}
  footer{padding:36px 0 24px;}
  .social-icons{gap:8px;}
  .social-icons a{width:28px;height:28px;}
  .social-icons a svg{width:14px;height:14px;}
  .banner-inner{
    gap:8px;
    padding:12px 16px;
    border-radius:20px;
  }
  .banner-inner .icon-left,
  .banner-inner .icon-right{gap:4px;}
  .banner-inner .icon-left img,
  .banner-inner .icon-right img,
  .banner-inner .icon-left svg,
  .banner-inner .icon-right svg{width:18px;height:18px;}
  .banner-text h3{font-size:13px;}
  .banner-text span{font-size:9px;}
}

/* Extra-small phones */
@media(max-width:400px){
  body{padding-top:54px;}
  header{padding:12px 16px;height:54px;}
  .logo{font-size:18px;gap:6px;}
  .logo img{width:32px;height:19px;}
  .nav-right{gap:6px;}
  .icon-btn,.hamburger{width:30px;height:30px;}
  .hamburger{padding:0 7px;gap:3px;}
  .hamburger span{width:14px;}
  .hero{height:320px;}
  .hero-content h1{font-size:22px;margin-top:45px;}
  .journey-buttons{bottom:14px;padding:0 14px;gap:6px;}
  .journey-btn{max-width:130px;padding:6px 6px 6px 12px;gap:6px;}
  .journey-text b{font-size:10px;}
  .journey-sub{font-size:9px;}
  .play-circle.outline{width:26px;height:26px;}
  .play-circle.outline img{width:22px;height:22px;}
  .feature-grid{grid-template-columns:1fr 1fr;gap:4px;}
  .feature-card h4{font-size:15px;}
  .feature-card p{font-size:10px;}
  .category-grid{gap:4px;}
  .category-text{padding:8px 8px 6px;}
  .category-text h3{font-size:14px;}
  .category-text span{font-size:8px;}
  .persona-card h3{font-size:20px;}
  .persona-card{padding:16px 72px 18px 16px;}
  .persona-card-pattern-wrap{width:24px;right:10px;top:0;bottom:0;}
  .persona-card-icon{width:22px;height:20px;top:50%;transform:translateY(-50%);right:42px;}
  .welcome-illustration .illustration-center{width:180px;}
  .footer-contact{font-size:11px;}
  .social-icons{gap:6px;}
  .social-icons a{width:26px;height:26px;}
  .social-icons a svg{width:13px;height:13px;}
}

/* Side tribal pattern images: anchored to the top corners of the welcome
   section (see .deco-left/.deco-right above) and shrink progressively on
   smaller screens so they scale down without needing repositioning. */
@media(max-width:900px){
  .deco-left,
  .deco-right{width:32px;}
}

@media(max-width:767px){
  .deco-left,
  .deco-right{width:24px;}
  .hero-deco-left,
  .hero-deco-right{
    width:26px;
    top:22%;
  }
  .hero-deco-left{left:0;}
  .hero-deco-right{right:0;}

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .footer-contact{
    text-align:center;
    flex:none;
  }
  .footer-logo-mark{flex:none;}
  .social-icons{justify-content:center;flex:none;}
}

@media(max-width:560px){
  .deco-left,
  .deco-right{width:18px;}
}

@media(max-width:400px){
  .deco-left,
  .deco-right{width:14px;}
  .hero-deco-left,
  .hero-deco-right{
    width:20px;
  }
}