:root{
  --bg: #f8f4ee;
  --bg-2: #f3ede4;
  --card: rgba(255,255,255,0.72);
  --card-strong: rgba(255,255,255,0.88);
  --text: #1f2c38;
  --text-soft: #55616b;
  --accent: #b65447;
  --accent-soft: #d77e72;
  --navy: #203345;
  --line: rgba(31, 44, 56, 0.09);
  --shadow: 0 18px 40px rgba(40, 52, 66, 0.08);
  --shadow-soft: 0 10px 24px rgba(40, 52, 66, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin:0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(190, 127, 108, 0.10), transparent 28%),
    linear-gradient(180deg, #fbf8f4 0%, #f7f2ea 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open{
  overflow: hidden;
}

body.has-home-overlay-header{
  padding-top: 0;
}

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

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

.page-blur{
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.blur-one{
  width: 300px;
  height: 300px;
  background: rgba(190, 95, 76, 0.17);
  top: 90px;
  left: -70px;
}

.blur-two{
  width: 340px;
  height: 340px;
  background: rgba(146, 173, 199, 0.12);
  right: -120px;
  top: 360px;
}

.site-header,
.hero-section,
.intro-strip,
.main-content,
.site-footer{
  position: relative;
  z-index: 2;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  padding: 16px 22px 0;
  z-index: 20;
  transition: padding .28s ease;
}

.site-header.is-scrolled{
  padding-top: 10px;
}

.site-header.is-home-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.site-header.is-home-overlay .header-info-bar{
  display: none;
}

.site-header.is-home-overlay:not(.is-scrolled){
  padding-top: 18px;
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-shell{
  background: transparent;
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-home-overlay:not(.is-scrolled) .logo-top,
.site-header.is-home-overlay:not(.is-scrolled) .logo-accent,
.site-header.is-home-overlay:not(.is-scrolled) .main-nav a,
.site-header.is-home-overlay:not(.is-scrolled) .nav-link-button{
  color: #fffaf6;
}

.site-header.is-home-overlay:not(.is-scrolled) .main-nav a:hover,
.site-header.is-home-overlay:not(.is-scrolled) .nav-link-button:hover,
.site-header.is-home-overlay:not(.is-scrolled) .main-nav a.is-active,
.site-header.is-home-overlay:not(.is-scrolled) .nav-link-button.is-active{
  color: #ffffff;
  background: rgba(255,255,255,0.10);
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-caret{
  border-color: rgba(255,250,246,0.85);
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-cta{
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 30px rgba(8,16,28,0.10);
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-menu-button span{
  background: #fffaf6;
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-dropdown a{
  color: var(--navy);
}

.site-header.is-home-overlay:not(.is-scrolled) .nav-dropdown a:hover{
  color: var(--navy);
  background: rgba(240,232,223,0.78);
}

.header-info-bar{
  max-width: var(--max);
  margin: 0 auto 10px;
  padding: 0 8px;
}

.header-info-inner{
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 10px 28px rgba(31,44,56,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-info-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #616d77;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.header-info-link{
  transition: color .24s ease, transform .24s ease;
}

.header-info-link:hover{
  color: var(--accent);
  transform: translateY(-1px);
}

.header-info-icon{
  color: #ef5f4b;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.header-info-icon svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-info-divider{
  width: 1px;
  height: 22px;
  background: rgba(31,44,56,0.10);
}

.nav-shell{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px 14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(31,44,56,0.07);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled .nav-shell,
.site-header.menu-open .nav-shell{
  background: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.92);
  box-shadow: 0 18px 44px rgba(31,44,56,0.10);
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-shrink: 0;
}

.logo-link{
  text-decoration: none;
}

.logo-mark{
  width: 70px;
  height: 70px;
  display:block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text{
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-top{
  color: var(--navy);
}

.logo-accent{
  color: var(--accent);
}

.main-nav{
  display:flex;
  align-items:center;
  gap: 10px;
}

.main-nav a,
.nav-link-button{
  font-size: 14px;
  color: var(--text-soft);
  transition: color .25s ease, transform .25s ease, background .25s ease;
  padding: 12px 14px;
  border-radius: 999px;
}

.main-nav a:hover,
.nav-link-button:hover{
  color: var(--text);
  background: rgba(255,255,255,0.58);
}

.main-nav a.is-active,
.nav-link-button.is-active{
  color: var(--navy);
  font-weight: 600;
  background: rgba(255,255,255,0.74);
}

.nav-item{
  position: relative;
}

.nav-link-button{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-family: inherit;
  font-weight: 500;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-caret{
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .24s ease;
}

.nav-item-dropdown.is-open .nav-caret,
.mobile-nav-group.is-open .nav-caret{
  transform: rotate(-135deg) translateY(1px);
}

.nav-dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 20px 46px rgba(31,44,56,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.nav-dropdown a{
  display:flex;
  align-items:center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
}

.nav-dropdown a:hover{
  transform: translateX(4px);
  background: rgba(240,232,223,0.72);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.is-open .nav-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta{
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #bb5c4c, #d67b6e);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(182,84,71,0.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(182,84,71,0.28);
}

.nav-menu-button{
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 10px 24px rgba(31,44,56,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-menu-button span{
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform .24s ease, opacity .24s ease;
}

.site-header.menu-open .nav-menu-button span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .nav-menu-button span:nth-child(2){
  opacity: 0;
}

.site-header.menu-open .nav-menu-button span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel{
  max-width: var(--max);
  margin: 10px auto 0;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: 0 20px 46px rgba(31,44,56,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-nav{
  display: grid;
  gap: 8px;
}

.mobile-nav a,
.mobile-nav-accordion{
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(31,44,56,0.06);
  box-shadow: 0 10px 24px rgba(31,44,56,0.04);
  font-size: 15px;
  font-family: inherit;
  font-weight: 600;
}

.mobile-nav-accordion{
  cursor: pointer;
}

.mobile-submenu{
  display: grid;
  gap: 8px;
  padding: 10px 0 2px;
}

.mobile-submenu a{
  min-height: 50px;
  margin-left: 14px;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-soft);
  background: rgba(246,240,233,0.85);
}

.mobile-nav a.is-active,
.mobile-submenu a.is-active,
.mobile-nav-accordion.is-active{
  color: var(--navy);
  border-color: rgba(182,84,71,0.14);
}

.mobile-nav-cta{
  margin-top: 6px;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #bb5c4c, #d67b6e);
  box-shadow: 0 12px 30px rgba(182,84,71,0.20);
}

/* Hero */
.hero-section{
  padding: 42px 22px 10px;
}

.hero-grid{
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.hero-copy{
  padding: 32px 6px 32px 4px;
}

.eyebrow{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(182,84,71,0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero-copy h1{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.92;
  margin: 0 0 18px;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-subtitle{
  font-size: 19px;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 660px;
  margin: 0;
}

.hero-actions{
  display:flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary{
  background: linear-gradient(135deg, #bb5b4c 0%, #d47a6d 100%);
  color:#fff;
  box-shadow:
    0 12px 30px rgba(182,84,71,0.22),
    0 0 18px rgba(182,84,71,0.08);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(182,84,71,0.28),
    0 0 24px rgba(182,84,71,0.12);
}

.btn-secondary{
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  border: 1px solid rgba(31,44,56,0.08);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31,44,56,0.08);
}

.hero-note{
  margin-top: 22px;
  color: #7b868f;
  font-size: 14px;
}

.hero-visual{
  position: relative;
}
 .hero-image-card{
  position: relative;
  min-height: 580px;
  border-radius: 34px;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 30px 60px rgba(31, 44, 56, 0.09);
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-main-image{

  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.hero-image-card::after{

  content:"";
  position:absolute;
  inset:0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(249,243,236,0.12), rgba(249,243,236,0.22)),
    linear-gradient(135deg, rgba(182,84,71,0.10), rgba(32,51,69,0.08));
}

.hero-ring{
  position:absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(38,112,82,0.55);
  box-shadow: 0 0 60px rgba(38,112,82,0.18);
  top: 46px;
  right: 30px;
  z-index: 3;
  background:
  conic-gradient(
    rgba(73,195,138,0) 0deg,
    rgba(73,195,138,0) 300deg,
    rgba(73,195,138,0.6) 330deg,
    rgba(73,195,138,0) 360deg
  );

  mask: radial-gradient(circle, transparent 178px, black 180px);
  animation: spin 12s linear infinite;
}

.hero-ring::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.hero-glow{
  position:absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  
  top: 110px;
  left: 30px;
  z-index: 0;
  filter: blur(6px);
  animation: pulseGlow 5s ease-in-out infinite;

    background: radial-gradient(circle,
    rgba(73,195,138,0.28) 0%,
    rgba(73,195,138,0.10) 40%,
    transparent 70%);
}

.hero-overlay-card{
  position:absolute;
  left: 26px;
  bottom: 26px;
  z-index: 4;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 16px 28px rgba(31,44,56,0.10);
  max-width: 260px;
}

.orbit-wrap{
  position: absolute;
  top: 46px;
  right: 30px;
  width: 380px;
  height: 380px;
  z-index: 4;
  pointer-events: none;
  animation: orbitLogo 16s linear infinite;
}

.orbit-logo{
  position: absolute;
  width: 108px;
  height: 108px;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
  animation: keepUpright 16s linear infinite;
}

@keyframes orbitLogo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes keepUpright {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes mobileScanPulse{
  0%, 100%{
    opacity: 0.52;
    transform: scaleX(0.995);
    box-shadow:
      0 0 0 1px rgba(73,195,138,0.05),
      0 0 10px rgba(73,195,138,0.06);
  }
  50%{
    opacity: 0.72;
    transform: scaleX(1);
    box-shadow:
      0 0 0 1px rgba(73,195,138,0.08),
      0 0 14px rgba(73,195,138,0.10);
  }
}

@keyframes mobileScanShimmer{
  0%{
    transform: translateX(-140%);
    opacity: 0;
  }
  18%{
    opacity: 0.8;
  }
  50%{
    opacity: 0.95;
  }
  82%{
    opacity: 0.8;
  }
  100%{
    transform: translateX(140%);
    opacity: 0;
  }
}

@keyframes mobileLogoScan{
  0%{
    left: 0;
  }
  100%{
    left: calc(100% - 102px);
  }
}

@keyframes mobileLogoHover{
  0%, 100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-4px);
  }
}

.overlay-label{
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.overlay-title{
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
  color: var(--navy);
}

/* Intro strip */
.intro-strip{
  padding: 20px 22px 10px;
}

.intro-strip-inner{
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: 24px 28px;
  border-radius: 22px;
}

.intro-strip p{
  margin:0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
}

.accent-text{
  color: var(--navy);
  font-weight: 600;
}

/* Main content */
.main-content{
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 90px;
}

.update-card{
  padding: 34px;
  margin-top: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: 0 18px 44px rgba(31,44,56,0.05);
}

.update-topline{
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.update-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.update-header h2{
  margin:0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.update-icon-badge{
  min-width: 64px;
  height: 64px;
  padding: 0 12px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(182,84,71,0.16), rgba(255,255,255,0.9));
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(182,84,71,0.14);
  box-shadow: 0 0 30px rgba(182,84,71,0.08);
}

.content-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}


 
.accent-panel:hover{
  box-shadow: 0 22px 40px rgba(24,36,48,0.22);
}
.content-panel{
	  transition: transform .28s ease, box-shadow .28s ease;
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
    /*border: 1px solid rgba(210, 152, 132, 0.16);
   box-shadow: 0 16px 40px rgba(24, 36, 48, 0.06);*/
}

.content-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events:none;
}

.content-panel.soft{
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 120, 90, 0.06),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.84) 0%,
      rgba(250,246,241,0.82) 100%
    );
    border: 1px solid rgba(31, 44, 56, 0.06);
}

.content-panel.warm{
  background: linear-gradient(
    180deg,
    rgba(252,244,240,0.98) 0%,
    rgba(247,236,230,0.94) 100%
  );
  border: 1px solid rgba(210, 152, 132, 0.16);
   box-shadow: 0 16px 40px rgba(24, 36, 48, 0.06);
}

.content-panel::after{
  content:"";
  position:absolute;
  top:0;
  left:24px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, #c65a4c, #d9776a);
  transition: width .9s ease;
}

.observe-section.in-view .content-panel::after{
  width:120px;
}

.accent-panel{
  background: linear-gradient(180deg, rgba(40,60,78,0.95), rgba(30,46,62,0.96));
  color: #f7fbff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 36px rgba(24,36,48,0.18);
}

.accent-panel h3,
.accent-panel p{
  color: #f7fbff;
}

.accent-panel p,
.accent-panel li{
  color: rgba(247,251,255,0.9);
}

.wide-panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,238,229,0.82));
}

.content-panel h3{
  margin: 0 0 14px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.content-panel p{
  margin:0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-soft);
}

.content-panel p + p{
  margin-top: 14px;
}

.accent-panel p,
.accent-panel li,
.accent-panel .key-line,
.accent-panel .underline-on-view{
  color: rgba(247,251,255,0.96);
}

/* Animated checks */
.animated-checks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 14px;
}

.animated-checks li{
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  line-height: 1.75;
  color: inherit;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}

.animated-checks li::before{
  content:"";
  position:absolute;
  left:0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d78678, #b65447);
  box-shadow: 0 0 18px rgba(182,84,71,0.24);
  transform: scale(0.92);
}

.animated-checks li::after{
  content:"✓";
  position:absolute;
  left: 6px;
  top: 2px;
  color:#fff;
  font-size: 13px;
  font-weight: 700;
}

.observe-section.in-view .animated-checks li.show{
  opacity: 1;
  transform: translateY(0);
}

/* Reading highlight effect */
.key-line span,
.underline-on-view span {
  position: relative;
  z-index: 0;
}

.key-line span::after,
.underline-on-view span::after {
  content: "";
  position: absolute;
  left: -0.16em;
  right: -0.16em;
  bottom: 0.02em;
  height: 0.72em;
  background: linear-gradient(90deg, rgba(232, 122, 99, 0.26), rgba(214, 137, 111, 0.34));
  border-radius: 0.32em;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity .45s ease;
  z-index: -1;
  box-shadow: 0 2px 10px rgba(214, 137, 111, 0.12);
}

.key-line.underline-active span::after,
.underline-on-view.underline-active span::after {
  transform: scaleX(1);
  opacity: 1;
}

/* CTA */
.cta-section{
  margin-top: 34px;
}

.cta-shell{
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(182,84,71,0.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(245,236,228,0.9));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 20px 50px rgba(31,44,56,0.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
}

.cta-copy h2{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
  margin: 10px 0 14px;
  color: var(--navy);
}

.cta-copy p{
  margin:0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 700px;
}

.glow-btn{
  box-shadow:
    0 10px 28px rgba(182,84,71,0.25),
    0 0 26px rgba(182,84,71,0.12);
  animation: ctaGlow 3.2s ease-in-out infinite;
}

.btn-soft-glow{
  animation: softButtonGlow 4.8s ease-in-out infinite;
}

/* Services page */
.services-hero .hero-copy h1{
  max-width: 760px;
  font-size: clamp(46px, 5.2vw, 66px);
  line-height: 0.96;
}

.services-main{
  padding-top: 22px;
}

.services-grid-shell{
  margin-top: 0;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card{
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  isolation: isolate;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    rgba(255,255,255,0) 18%,
    rgba(255,255,255,0.42) 48%,
    rgba(255,255,255,0) 76%
  );
  transform: translateX(-130%);
  transition: transform .65s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(31,44,56,0.12);
  border-color: rgba(182,84,71,0.18);
}

.service-card:hover::after{
  transform: translateX(130%);
}

.service-card:hover .service-card-mark{
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 18px 30px rgba(182,84,71,0.16);
}

.service-card-mark{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(182,84,71,0.16), rgba(255,255,255,0.94));
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid rgba(182,84,71,0.12);
  transition: transform .28s ease, box-shadow .28s ease;
  z-index: 1;
}

.service-card-kicker{
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8e93;
  font-weight: 700;
  z-index: 1;
}

.service-card-link{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(31,44,56,0.08);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
  z-index: 1;
}

.service-card-link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 28px rgba(31,44,56,0.08);
}

.service-card:hover .service-card-link{
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,241,236,0.96));
  border-color: rgba(182,84,71,0.16);
}

.service-card-arrow{
  font-size: 18px;
  transition: transform .24s ease;
}

.service-card:hover .service-card-arrow{
  transform: translateX(6px);
}

.service-card h3,
.service-card > p{
  position: relative;
  z-index: 1;
}

.service-story-grid,
.service-support-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.service-story-copy h2{
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.98;
  color: var(--navy);
}

.service-story-copy p{
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-soft);
}

.service-story-copy p + p{
  margin-top: 14px;
}

.service-story-copy a{
  color: var(--navy);
  font-weight: 600;
}

.service-story-note{
  color: var(--accent);
  font-weight: 600;
}

.service-story-visual{
  min-width: 0;
}

.service-story-image-frame{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 20px 44px rgba(31,44,56,0.08);
}

.service-story-image-frame img{
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 28%;
}

.service-process-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-process-card{
  min-height: 100%;
}

.workpermit-story-grid .service-story-visual{
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.workpermit-story-grid .service-story-image-frame{
  min-height: 0;
}

.workpermit-story-grid .service-story-image-frame img{
  height: 328px;
  object-position: center 24%;
}

.workpermit-support-panel{
  padding: 22px 24px 24px;
  background:
    linear-gradient(180deg, rgba(230,241,255,0.96) 0%, rgba(215,232,251,0.92) 100%);
  border: 1px solid rgba(121,155,196,0.24);
  box-shadow: 0 18px 38px rgba(55,87,122,0.10);
}

.workpermit-support-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.workpermit-support-panel h3{
  margin: 0 0 8px;
  font-size: 21px;
  color: var(--navy);
}

.workpermit-support-panel p{
  margin: 0;
  color: rgba(31,44,56,0.78);
  line-height: 1.72;
}

.service-process-number{
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-plain-list li{
  opacity: 1;
  transform: none;
}

/* Focused internal pages */
.page-hero{
  padding: 40px 22px 12px;
}

.page-hero-shell{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 4px 10px;
}

.page-hero-simple h1{
  max-width: 760px;
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 0.94;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.greencard-main{
  padding-top: 8px;
}

.greencard-options-shell{
  background:
    radial-gradient(#cfd8e3 0.9px, transparent 0.9px),
    radial-gradient(#cfd8e3 0.9px, transparent 0.9px),
    rgba(255,255,255,0.36);
  background-size: 24px 24px, 24px 24px, auto;
  background-position: 0 0, 12px 12px, 0 0;
}

.greencard-options-inline{
  margin-top: 34px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(#cfd8e3 0.9px, transparent 0.9px),
    radial-gradient(#cfd8e3 0.9px, transparent 0.9px),
    rgba(255,255,255,0.36);
  background-size: 24px 24px, 24px 24px, auto;
  background-position: 0 0, 12px 12px, 0 0;
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 18px 44px rgba(31,44,56,0.05);
}

.gc-grid-modern{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.gc-card-modern{
  display:block;
  padding: 20px 20px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,251,255,0.94));
  border: 1px solid rgba(225,231,240,0.92);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(31,44,56,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gc-card-modern:hover{
  transform: translateY(-4px);
  border-color: rgba(182,84,71,0.16);
  box-shadow: 0 18px 34px rgba(31,44,56,0.10);
}

.gc-card-modern h3{
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
}

.gc-card-modern p{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.greencard-faq{
  margin-top: 22px;
}

.greencard-faq h3{
  margin-bottom: 16px;
}

.greencard-faq a{
  color: var(--navy);
  font-weight: 600;
}

.glow-pulse-soft{
  animation: ctaGlow 4.4s ease-in-out infinite;
}

.greencard-main .hero-actions .btn-primary{
  animation: softButtonGlow 5.8s ease-in-out infinite;
}

.greencard-main .hero-actions .btn-secondary{
  box-shadow:
    0 10px 24px rgba(31,44,56,0.06),
    0 0 16px rgba(182,84,71,0.05);
}

.greencard-process-title{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 0.98;
  color: var(--navy);
}

.greencard-process-grid{
  margin-top: 24px;
}

.greencard-step-cta{
  margin-top: 8px;
}

.naturalization-story-grid{
  align-items: stretch;
}

.naturalization-story-grid .service-story-visual{
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.naturalization-visual-frame{
  min-height: 0;
}

.naturalization-visual-frame img{
  height: 328px;
  object-position: center 24%;
}

.naturalization-support-panel{
  padding: 22px 24px 24px;
  background:
    linear-gradient(180deg, rgba(230,241,255,0.96) 0%, rgba(215,232,251,0.92) 100%);
  border: 1px solid rgba(121,155,196,0.24);
  box-shadow: 0 18px 38px rgba(55,87,122,0.10);
}

.naturalization-support-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.naturalization-support-panel h3{
  margin: 0 0 8px;
  font-size: 21px;
  color: var(--navy);
}

.naturalization-support-panel p{
  margin: 0;
  color: rgba(31,44,56,0.78);
  line-height: 1.72;
}

.flag-stack-badge{
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 16px 34px rgba(31,44,56,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.flag-stack-images{
  position: relative;
  height: 34px;
  width: 92px;
}

.flag-stack-images img{
  position: absolute;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 16px rgba(31,44,56,0.10);
}

.flag-stack-one{
  left: 0;
  z-index: 3;
}

.flag-stack-two{
  left: 22px;
  z-index: 2;
}

.flag-stack-three{
  left: 44px;
  z-index: 1;
}

.flag-stack-badge span{
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer */
.site-footer{
  padding: 22px 22px 42px;
}

.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 34px 24px;
  border-radius: 30px 30px 22px 22px;
  background:
    linear-gradient(180deg, rgba(242,235,225,0.92), rgba(237,229,219,0.96));
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: 0 18px 44px rgba(31,44,56,0.06);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 30px;
}

.footer-brand p{
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 420px;
  margin: 14px 0 0;
  font-size: 15px;
}

.footer-column{
  min-width: 170px;
}

.footer-column h3{
  margin: 4px 0 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-links{
  display:grid;
  gap: 12px;
}

.footer-links a{
  color: var(--text-soft);
  font-size: 15px;
  transition: color .24s ease, transform .24s ease;
}

.footer-links a:hover{
  color: var(--text);
  transform: translateX(3px);
}

.footer-logo .logo-text{
  font-size: 20px;
}

.footer-note-column p{
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
  max-width: 280px;
}

.footer-contact-strip{
  max-width: var(--max);
  margin: 0 auto;
  padding: 6px 22px 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #616d77;
}

.footer-contact-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-contact-link{
  transition: color .24s ease, transform .24s ease;
}

.footer-contact-link:hover{
  color: var(--accent);
  transform: translateY(-1px);
}

.footer-contact-icon{
  color: #ef5f4b;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.footer-contact-icon svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-divider{
  width: 1px;
  height: 22px;
  background: rgba(31,44,56,0.10);
}

.footer-bottom{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #7d847f;
  font-size: 13px;
}

.footer-bottom p{
  margin: 0;
}

/* Reveal */
.reveal-up{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1{
  transition-delay: .12s;
}

/* Animations */
@keyframes pulseGlow{
  0%,100%{ transform: scale(1); opacity: .9; }
  50%{ transform: scale(1.07); opacity: 1; }
}

@keyframes slowOrbit{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

@keyframes ctaGlow{
  0%,100%{
    box-shadow:
      0 10px 28px rgba(182,84,71,0.25),
      0 0 20px rgba(182,84,71,0.10);
  }
  50%{
    box-shadow:
      0 14px 32px rgba(182,84,71,0.32),
      0 0 34px rgba(182,84,71,0.18);
  }
}

@keyframes softButtonGlow{
  0%, 100%{
    box-shadow:
      0 12px 30px rgba(182,84,71,0.20),
      0 0 14px rgba(182,84,71,0.05);
  }
  50%{
    box-shadow:
      0 14px 32px rgba(182,84,71,0.24),
      0 0 20px rgba(182,84,71,0.09);
  }
}

/* Responsive */
@media (max-width: 1080px){
  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-image-card{
    min-height: 480px;
  }

  .cta-shell,
  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .service-process-grid,
  .service-story-grid,
  .service-support-grid{
    grid-template-columns: 1fr;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-strip{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 22px 0;
  }

  .footer-contact-divider{
    display: none;
  }
}

@media (max-width: 900px){
  .header-info-inner{
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .header-info-inner::-webkit-scrollbar{
    display: none;
  }

  .content-grid{
    grid-template-columns: 1fr;
  }

  .update-header{
    flex-direction: column;
  }

  .update-icon-badge{
    min-width: 58px;
    height: 58px;
  }

  .hero-copy h1{
    line-height: 0.96;
  }

  .service-story-image-frame img{
    height: 340px;
  }

  .page-hero-simple h1{
    font-size: clamp(42px, 8vw, 62px);
  }

  .greencard-options-inline{
    padding: 22px;
  }

  .main-nav,
  .nav-cta{
    display:none;
  }

  .nav-menu-button{
    display:flex;
  }
}

@media (max-width: 640px){
  .site-header{
    padding: 14px 14px 0;
  }

  .header-info-bar{
    margin-bottom: 8px;
    padding: 0;
  }

  .header-info-inner{
    min-height: 42px;
    gap: 14px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .header-info-item{
    font-size: 12px;
  }

  .header-info-icon{
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .hero-section,
  .intro-strip,
  .main-content,
  .site-footer{
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-shell,
  .intro-strip-inner,
  .update-card,
  .cta-shell,
  .footer-inner{
    padding: 18px;
  }

  .nav-shell{
    padding: 12px 14px 12px 16px;
    border-radius: 20px;
  }

  .logo-mark{
    width: 56px;
    height: 56px;
  }

  .logo-text{
    font-size: 24px;
  }

  .hero-copy{
    padding: 16px 0 20px;
  }

  .hero-image-card{
    min-height: 380px;
    border-radius: 26px;
  }

  .hero-ring{
    left: 24px;
    right: 24px;
    top: 49%;
    width: auto;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(73,195,138,0) 0%,
      rgba(73,195,138,0.10) 16%,
      rgba(73,195,138,0.40) 50%,
      rgba(73,195,138,0.10) 84%,
      rgba(73,195,138,0) 100%
    );
    box-shadow:
      0 0 0 1px rgba(73,195,138,0.05),
      0 0 10px rgba(73,195,138,0.06);
    mask: none;
    animation: mobileScanPulse 7.2s ease-in-out infinite;
  }

  .hero-ring::after{
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.06) 35%,
      rgba(255,255,255,0.48) 50%,
      rgba(255,255,255,0.06) 65%,
      rgba(255,255,255,0) 100%
    );
    animation: mobileScanShimmer 9s ease-in-out infinite;
  }

  .orbit-wrap{
    left: 24px;
    right: 24px;
    top: calc(49% - 51px);
    width: auto;
    height: 102px;
    animation: none;
  }

  .orbit-logo{
    width: 102px;
    height: 102px;
    left: 0;
    top: 0;
    transform: none;
    animation:
      mobileLogoScan 8.6s ease-in-out infinite alternate,
      mobileLogoHover 5.2s ease-in-out infinite;
    filter: drop-shadow(0 10px 16px rgba(0,0,0,0.12));
  }

  .hero-overlay-card{
    left: 14px;
    right: 14px;
    max-width: unset;
  }

  .mobile-nav-panel{
    margin-top: 8px;
    border-radius: 22px;
  }

  .btn{
    width: 100%;
  }

  .hero-actions{
    flex-direction: column;
  }

  .service-story-copy p{
    font-size: 16px;
  }

  .gc-card-modern h3{
    font-size: 20px;
  }

  .flag-stack-badge{
    left: 16px;
    bottom: 16px;
  }

  .flag-stack-images{
    display: flex;
    align-items: center;
    width: auto;
    height: 30px;
  }

  .flag-stack-images img{
    position: relative;
    top: auto;
    width: 30px;
    height: 30px;
    min-width: 30px;
    flex: 0 0 30px;
    object-fit: cover;
    object-position: center;
  }

  .flag-stack-images img + img{
    margin-left: -10px;
  }

  .flag-stack-one,
  .flag-stack-two,
  .flag-stack-three{
    left: auto;
  }

  .naturalization-support-grid{
    grid-template-columns: 1fr;
  }

  .workpermit-support-grid{
    grid-template-columns: 1fr;
  }

  .greencard-options-inline{
    padding: 18px;
    border-radius: 24px;
  }

  .footer-inner{
    border-radius: 26px 26px 20px 20px;
  }

  .footer-column{
    min-width: unset;
    width: 100%;
  }
} 

/* Homepage */
.home-hero{
  position: relative;
  padding: 126px 22px 28px;
  min-height: min(84vh, 860px);
  display: grid;
  align-items: end;
}

.home-hero-media{
  position: absolute;
  inset: 0 22px;
  border-radius: 38px;
  overflow: hidden;
  background: #162133;
  box-shadow: 0 30px 64px rgba(31,44,56,0.12);
}

.home-hero-media picture{
  position: absolute;
  inset: 0;
  display: block;
}

.home-hero-shell{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 34px 42px;
}

.home-hero .hero-copy{
  max-width: 760px;
}

.home-hero-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: homeHeroImageDrift 18s ease-in-out infinite alternate;
  transform-origin: center center;
  filter: saturate(0.98) contrast(1.01) brightness(0.94);
}

.home-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 22%, rgba(255,255,255,0.10), transparent 24%),
    linear-gradient(90deg, rgba(14,25,41,0.58) 0%, rgba(17,29,45,0.38) 34%, rgba(17,29,45,0.18) 68%, rgba(17,29,45,0.18) 100%),
    linear-gradient(180deg, rgba(10,18,30,0.14) 0%, rgba(10,18,30,0.24) 100%);
  animation: homeHeroOverlayShift 16s ease-in-out infinite alternate;
}

.home-hero-light{
  position: absolute;
  inset: -8%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(255,255,255,0) 14%,
    rgba(255,255,255,0.14) 38%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0.12) 57%,
    rgba(255,255,255,0) 80%
  );
  transform: translateX(-120%);
  opacity: 0.42;
  animation: homeHeroLightSweep 14s ease-in-out infinite;
}

.home-hero .eyebrow{
  background: rgba(255,245,238,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f0c2b5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-hero .hero-copy h1{
  max-width: 720px;
  font-size: clamp(58px, 6vw, 90px);
  line-height: 0.91;
  color: #fffaf6;
  text-shadow: 0 12px 30px rgba(8,16,28,0.22);
}

.home-hero .hero-subtitle{
  max-width: 700px;
  color: rgba(245,247,251,0.9);
  text-shadow: 0 8px 18px rgba(8,16,28,0.16);
}

.home-hero .btn-secondary{
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 16px 32px rgba(8,16,28,0.12);
}

.home-hero .btn-secondary:hover{
  background: rgba(255,255,255,0.18);
}

.home-services-strip{
  padding: 10px 22px 16px;
}

.home-strip-shell{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(247,243,237,0.88));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 40px rgba(31,44,56,0.05);
}

.home-strip-copy h2{
  margin: 6px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 0.98;
  color: var(--navy);
}

.home-strip-copy p{
  margin: 0 0 18px;
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.75;
}

.service-marquee{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.service-marquee-track{
  display: flex;
  gap: 14px;
  width: max-content;
  animation: serviceMarquee 34s linear infinite;
}

.service-marquee:hover .service-marquee-track{
  animation-play-state: paused;
}

.service-pill{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(31,44,56,0.09);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(31,44,56,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(31,44,56,0.08);
  border-color: rgba(182,84,71,0.18);
}

.home-main{
  padding-top: 4px;
}

.home-featured-services{
  margin-top: 8px;
}

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

.home-service-card-compact{
  min-height: 0;
}

.home-story-section{
  overflow: visible;
}

.home-story-grid{
  align-items: stretch;
}

.home-story-image-frame{
  min-height: 0;
}

.home-story-image-frame img{
  height: 360px;
  object-position: center 26%;
}

.home-story-support-panel{
  margin-top: 18px;
  padding: 22px 24px 24px;
  background:
    linear-gradient(180deg, rgba(230,241,255,0.96) 0%, rgba(215,232,251,0.92) 100%);
  border: 1px solid rgba(121,155,196,0.24);
  box-shadow: 0 18px 38px rgba(55,87,122,0.10);
}

.home-story-support-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.home-story-support-panel h3{
  margin: 0 0 8px;
  font-size: 21px;
  color: var(--navy);
}

.home-story-support-panel p{
  margin: 0;
  color: rgba(31,44,56,0.78);
  line-height: 1.72;
}

.home-process-section .service-process-card{
  transition: transform .24s ease, box-shadow .24s ease;
}

.home-process-section .service-process-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(31,44,56,0.10);
}

.home-faq-section{
  background:
    radial-gradient(circle at top right, rgba(182,84,71,0.05), transparent 28%),
    linear-gradient(180deg, rgba(245,250,255,0.92), rgba(248,244,239,0.9));
}

.home-faq-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.home-faq-list{
  display: grid;
  gap: 14px;
}

.home-faq-item{
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(226,232,239,0.95);
  box-shadow: 0 14px 30px rgba(31,44,56,0.06);
  overflow: hidden;
}

.home-faq-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
  cursor: pointer;
}

.home-faq-icon{
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.home-faq-icon::before,
.home-faq-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform .26s ease, opacity .26s ease;
}

.home-faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item.is-open .home-faq-icon::after{
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.home-faq-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.home-faq-panel-inner{
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.82;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .28s ease, transform .28s ease;
}

.home-faq-item.is-open .home-faq-panel-inner{
  opacity: 1;
  transform: translateY(0);
}

.home-trust-panel{
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(233,243,255,0.88));
  border: 1px solid rgba(219,229,240,0.92);
}

.home-trust-panel h3{
  margin: 6px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.04;
  color: var(--navy);
}

.home-trust-panel .service-plain-list{
  margin-bottom: 22px;
}

@keyframes homeHeroImageDrift{
  0%{
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  100%{
    transform: scale(1.12) translate3d(-2.2%, 1.5%, 0);
  }
}

@keyframes homeHeroOverlayShift{
  0%{
    opacity: 0.92;
    transform: translate3d(0,0,0);
  }
  100%{
    opacity: 1;
    transform: translate3d(1.2%, -1%, 0);
  }
}

@keyframes homeHeroLightSweep{
  0%, 14%{
    transform: translateX(-120%);
    opacity: 0;
  }
  28%{
    opacity: 0.38;
  }
  50%{
    transform: translateX(0%);
    opacity: 0.52;
  }
  72%{
    opacity: 0.28;
  }
  100%{
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes serviceMarquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 1080px){
  .home-faq-grid{
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px){
  .home-hero .hero-copy h1{
    font-size: clamp(46px, 10vw, 66px);
  }

  .home-hero{
    min-height: 700px;
    padding-top: 118px;
  }

  .home-hero-shell{
    padding: 40px 24px 30px;
  }

  .home-hero .hero-copy{
    max-width: 620px;
  }

  .home-story-support-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .home-hero{
    min-height: 620px;
    padding: 108px 16px 18px;
  }

  .home-hero-media{
    inset: 0 16px;
    border-radius: 30px;
  }

  .home-hero-shell{
    padding: 34px 18px 24px;
  }

  .home-hero .hero-copy{
    max-width: 100%;
    text-align: center;
  }

  .home-hero .hero-copy h1{
    font-size: clamp(42px, 13vw, 56px);
    max-width: 100%;
  }

  .home-hero-overlay{
    background:
      radial-gradient(circle at 72% 18%, rgba(255,255,255,0.08), transparent 22%),
      linear-gradient(180deg, rgba(12,21,35,0.26) 0%, rgba(12,21,35,0.12) 30%, rgba(12,21,35,0.18) 100%),
      linear-gradient(90deg, rgba(14,24,40,0.40) 0%, rgba(14,24,40,0.16) 42%, rgba(14,24,40,0.10) 100%);
  }

  .home-hero .hero-subtitle{
    max-width: 100%;
    font-size: 16px;
    line-height: 1.72;
  }

  .home-hero .hero-actions{
    width: 100%;
    justify-content: center;
  }

  .site-header.is-home-overlay{
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header.is-home-overlay:not(.is-scrolled){
    padding-top: 12px;
  }

  .home-strip-shell{
    padding: 20px 20px 18px;
  }

  .service-marquee{
    overflow-x: auto;
    mask-image: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
  }

  .service-marquee-track{
    animation: none;
    width: max-content;
    padding-right: 12px;
  }

  .service-pill{
    scroll-snap-align: start;
  }

  .home-service-grid{
    grid-template-columns: 1fr;
  }

  .home-faq-trigger{
    padding: 20px 18px;
    font-size: 17px;
  }

  .home-faq-panel-inner{
    padding: 0 18px 18px;
  }

  .home-trust-panel{
    padding: 22px 20px;
  }
}
