*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --orange:#d4764b;
  --orange-dark:#c9673d;
  --orange-soft:#e7a17f;
  --text:#3c3c3c;
  --text-soft:#6d6d6d;
  --title:#242424;
  --bg:#f3f3f3;
  --white:#ffffff;
  --line:#e8e8e8;
  --shadow:0 20px 50px rgba(0,0,0,.10);
  --shadow-soft:0 12px 32px rgba(0,0,0,.08);
  --radius:22px;
  --container:1180px;
}

html{
  scroll-behavior:smooth;
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.5;
  overflow-x:hidden;
  max-width:100%;
  position:relative;
}

img,
video,
iframe,
svg,
canvas{
  display:block;
  max-width:100%;
  height:auto;
}

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

button,
input,
textarea{
  font:inherit;
}

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

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
  overflow-x:clip;
}

.header-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  min-width:0;
}

.logo-mark{
  width:46px;
  height:32px;
  background:linear-gradient(135deg,var(--orange),#efaa86);
  clip-path:polygon(0 55%,55% 0,100% 16%,58% 100%);
}

.logo-text strong{
  display:block;
  font-size:26px;
  line-height:1;
  color:#2c2c2c;
  font-weight:900;
  letter-spacing:-.8px;
}

.logo-text span{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1;
  letter-spacing:1.8px;
  color:#737373;
  font-weight:700;
}

.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex-wrap:wrap;
  min-width:0;
}

.main-nav a{
  position:relative;
  font-size:15px;
  font-weight:700;
  color:#272727;
  transition:.25s ease;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:.25s ease;
}

.main-nav a:hover{
  color:var(--orange-dark);
}

.main-nav a:hover::after{
  width:100%;
}

.mobile-toggle{
  display:none;
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
  color:#1f1f1f;
  flex-shrink:0;
}

.mobile-nav{
  display:none;
  background:#fff;
  border-top:1px solid #eee;
  padding:8px 20px 18px;
}

.mobile-nav a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid #f0f0f0;
  font-weight:700;
  color:#2a2a2a;
}

/* HERO */
.hero{
  position:relative;
  min-height:760px;
  width:100%;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.76) 24%, rgba(255,255,255,.12) 55%, rgba(255,255,255,0) 72%),
    var(--hero-image) center center / cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 32%, rgba(255,255,255,.50), transparent 34%),
    linear-gradient(to bottom, rgba(0,0,0,.04), rgba(0,0,0,.16));
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height:760px;
  padding:90px 0 110px;
}

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

.hero-copy .eyebrow{
  margin:0 0 18px;
  font-size:30px;
  line-height:1.14;
  color:var(--orange-dark);
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.2px;
}

.hero-copy h1{
  margin:0 0 22px;
  font-size:74px;
  line-height:.95;
  letter-spacing:-2px;
  font-weight:900;
  color:#fff;
  text-shadow:0 8px 28px rgba(0,0,0,.18);
}

.campaign-box{
  display:inline-flex;
  align-items:stretch;
  overflow:hidden;
  max-width:100%;
  background:var(--orange);
  color:#fff;
  box-shadow:var(--shadow);
  margin-bottom:28px;
}

.campaign-left{
  font-size:94px;
  line-height:1;
  font-weight:900;
  padding:16px 24px 6px;
  background:rgba(255,255,255,.06);
}

.campaign-right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  padding:16px 22px;
  line-height:.95;
  min-width:0;
}

.campaign-right .small{
  font-size:40px;
  font-weight:900;
}

.campaign-right .big{
  font-size:29px;
  font-weight:900;
}

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

.pill-btn{
  min-width:190px;
  max-width:100%;
  height:56px;
  padding:0 24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.97);
  color:var(--orange-dark);
  font-weight:900;
  font-size:17px;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:var(--shadow-soft);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  text-align:center;
}

.pill-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

/* FLOATING FORM */
.floating-form{
  position:fixed;
  top:146px;
  right:24px;
  width:360px;
  max-width:calc(100vw - 24px);
  z-index:1200;
  padding:24px 20px 18px;
  border-radius:22px;
  background:rgba(30,30,30,.78);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 60px rgba(0,0,0,.28);
  color:#fff;
  transition:transform .28s ease, opacity .28s ease, box-shadow .28s ease;
}

.floating-form:hover{
  box-shadow:0 30px 70px rgba(0,0,0,.32);
}

.floating-form .close{
  position:absolute;
  right:14px;
  top:10px;
  background:none;
  border:none;
  color:#fff;
  font-size:24px;
  font-weight:900;
  cursor:pointer;
  opacity:.9;
}

.floating-form h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.1px;
  color:#fff;
}

.floating-form p{
  margin:0 0 14px;
  font-size:13px;
  line-height:1.5;
  color:rgba(255,255,255,.76);
}

.form-alert{
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
}

.form-alert.success{
  background:#dff5e7;
  color:#17653a;
}

.form-alert.error{
  background:#fde7e7;
  color:#932727;
}

.form-control{
  width:100%;
  height:50px;
  padding:0 15px;
  margin-bottom:10px;
  border:none;
  outline:none;
  border-radius:8px;
  background:rgba(255,255,255,.96);
  color:#333;
  font-size:16px;
}

.form-control::placeholder{
  color:#7b7b7b;
}

.phone-row{
  display:flex;
  align-items:center;
  margin-bottom:12px;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  width:100%;
}

.phone-row .code{
  width:78px;
  min-width:78px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid #ececec;
  color:#555;
  font-weight:700;
}

.phone-row input{
  flex:1;
  min-width:0;
  height:50px;
  border:none;
  outline:none;
  padding:0 14px;
  color:#333;
  background:#fff;
  font-size:16px;
}

.check{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:8px 0;
  font-size:12px;
  line-height:1.55;
  color:rgba(255,255,255,.83);
}

.check input{
  margin-top:3px;
  flex-shrink:0;
}

.check-inline{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:10px 0 8px;
}

.submit-btn{
  width:100%;
  height:56px;
  margin-top:12px;
  border:none;
  border-radius:10px;
  background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;
  font-size:17px;
  font-weight:900;
  letter-spacing:.2px;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(0,0,0,.16);
}

.floating-form-mini{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
  z-index:1190;
  display:none;
  max-width:calc(100vw - 24px);
  padding:22px 12px;
  background:#fff;
  color:#55606d;
  border:1px solid rgba(0,0,0,.08);
  border-right:none;
  border-radius:12px 0 0 12px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-size:14px;
  font-weight:800;
  letter-spacing:.4px;
  box-shadow:var(--shadow-soft);
  cursor:pointer;
}

/* SECTIONS */
.section{
  position:relative;
  padding:100px 0;
  width:100%;
  overflow-x:clip;
  transition:background-color .35s ease;
}

.section + .section{
  border-top:1px solid rgba(0,0,0,.03);
}

.section.light{
  background:var(--bg);
}

.section.orange{
  background:var(--orange);
  color:#fff;
}

.label{
  display:block;
  margin-bottom:8px;
  color:var(--orange);
  font-size:18px;
  font-weight:700;
  letter-spacing:.2px;
}

.title{
  margin:0 0 30px;
  color:var(--title);
  font-size:60px;
  line-height:1;
  letter-spacing:-1.5px;
  font-weight:900;
}

.section.orange .label,
.section.orange .title{
  color:#fff;
}

.two-col,
.project-info-wrap,
.nature-grid,
.orange-showcase,
.contact-grid,
.award-inner,
.split-visual,
.gallery-grid{
  display:grid;
  gap:38px;
  min-width:0;
}

.two-col{
  grid-template-columns:1fr 1fr;
}

.project-info-wrap,
.nature-grid,
.orange-showcase,
.contact-grid,
.split-visual{
  grid-template-columns:1fr 1fr;
  align-items:center;
}

.gallery-grid{
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

.two-col > *,
.project-info-wrap > *,
.nature-grid > *,
.orange-showcase > *,
.contact-grid > *,
.award-inner > *,
.split-visual > *,
.gallery-grid > *{
  min-width:0;
}

.lead{
  font-size:19px;
  line-height:1.8;
  color:#666;
}

.project-text h3,
.nature-copy h3,
.image-caption-box h3,
.contact-card h3,
.gallery-copy h3,
.award-copy h3{
  margin:0 0 14px;
  color:#2d2d2d;
  font-size:32px;
  line-height:1.15;
  font-weight:800;
}

.project-text p,
.nature-copy p,
.image-caption-box p,
.contact-card p,
.contact-card a,
.gallery-copy p{
  font-size:18px;
  line-height:1.85;
  color:#666;
  word-break:break-word;
}

.project-image img,
.nature-image img,
.single-large img,
.stacked-images img,
.full-bleed-image img,
.gallery-card img{
  width:100%;
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  transition:transform .35s ease, box-shadow .35s ease;
}

.project-image img:hover,
.nature-image img:hover,
.single-large img:hover,
.stacked-images img:hover,
.full-bleed-image img:hover,
.gallery-card img:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 44px rgba(0,0,0,.12);
}

.project-image img,
.nature-image img{
  height:560px;
  object-fit:cover;
}

.single-large img{
  height:460px;
  object-fit:cover;
}

.stats-list,
.features-list{
  list-style:none;
  margin:0;
  padding:0;
}

.stats-list li,
.features-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
  font-size:18px;
  color:#565656;
}

.icon{
  width:28px;
  min-width:28px;
  text-align:center;
  font-size:22px;
  color:var(--orange-dark);
  line-height:1.2;
  flex-shrink:0;
}

/* ORANGE SHOWCASE */
.orange-showcase p{
  color:rgba(255,255,255,.95);
  font-size:18px;
  line-height:1.85;
}

.orange-showcase .title{
  margin-bottom:20px;
}

/* VIDEO */
.video-frame{
  position:relative;
  max-width:1120px;
  margin:0 auto;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 50px rgba(0,0,0,.16);
}

.custom-video-box video{
  width:100%;
  background:#000;
}

.mute-btn{
  position:absolute;
  z-index:3;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  border:none;
  border-radius:12px;
  background:#111;
  color:#fff;
  padding:10px 16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}

/* GALLERY */
.gallery-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .28s ease, box-shadow .28s ease;
  min-width:0;
}

.gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 46px rgba(0,0,0,.11);
}

.gallery-card.tall img{height:640px; object-fit:cover;}
.gallery-card.medium img{height:420px; object-fit:cover;}
.gallery-card.short img{height:320px; object-fit:cover;}

.gallery-copy{
  padding:22px 24px 26px;
}

.gallery-copy h3{
  font-size:28px;
}

.gallery-copy p{
  font-size:17px;
}

.full-bleed-image{
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.full-bleed-image img{
  height:680px;
  object-fit:cover;
}

.stacked-images{
  display:grid;
  gap:18px;
  min-width:0;
}

.image-caption-box,
.contact-card{
  background:#fff;
  padding:32px;
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  min-width:0;
  overflow:hidden;
}

.contact-card a{
  display:block;
  margin-bottom:10px;
  transition:.2s ease;
}

.contact-card a:hover{
  color:var(--orange-dark);
}

/* AWARD / SIDE TAB */
.award-section{
  overflow:hidden;
}

.award-inner{
  grid-template-columns:130px 1fr;
  align-items:start;
}

.award-ribbon{
  min-height:320px;
  padding:24px 10px;
  background:#121212;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  box-shadow:var(--shadow-soft);
}

.award-ribbon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-52px;
  width:0;
  height:0;
  margin:auto;
  border-left:42px solid transparent;
  border-right:42px solid transparent;
  border-top:52px solid #121212;
}

.award-ribbon .year{
  font-size:22px;
  font-weight:900;
}

.award-copy p{
  color:rgba(255,255,255,.92);
}

.side-tab{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  max-width:calc(100vw - 24px);
  background:#fff;
  color:#56606c;
  padding:24px 13px;
  border-radius:12px 0 0 12px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  border:1px solid rgba(0,0,0,.08);
  border-right:none;
  box-shadow:var(--shadow-soft);
  font-weight:800;
  letter-spacing:.4px;
  cursor:pointer;
}

/* FAQ */
.accordion{
  overflow:hidden;
  border:1px solid #e3e3e3;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.accordion-item + .accordion-item{
  border-top:1px solid #ececec;
}

.accordion-button{
  width:100%;
  border:none;
  background:#fff;
  padding:28px 24px;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  cursor:pointer;
  font-size:22px;
  font-weight:800;
  color:#282828;
  transition:background .22s ease, color .22s ease;
}

.accordion-button:hover{
  background:#fcfcfc;
}

.accordion-item.active .accordion-button{
  color:var(--orange-dark);
}

.accordion-icon{
  width:20px;
  min-width:20px;
  font-size:28px;
  font-weight:900;
  line-height:1;
  flex-shrink:0;
}

.accordion-content{
  display:none;
  padding:0 24px 28px 60px;
  font-size:18px;
  line-height:1.8;
  color:#666;
  word-break:break-word;
}

.accordion-item.active .accordion-content{
  display:block;
}

/* MAP */
.map-frame{
  width:100%;
  height:680px;
  overflow:hidden;
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  background:#e9e2d7;
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:none;
  display:block;
}

/* FOOTER */
.footer{
  width:100%;
  background:#1f1f1f;
  color:#fff;
  padding:34px 0;
  text-align:center;
  font-size:14px;
  letter-spacing:.2px;
  overflow-x:clip;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .floating-form{
    width:340px;
    right:16px;
  }

  .main-nav{
    gap:24px;
  }
}

@media (max-width: 1100px){
  .main-nav{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    min-height:auto;
    padding:72px 0 54px;
  }

  .floating-form{
    position:static;
    width:100%;
    max-width:100%;
    margin:28px auto 0;
    top:auto;
    right:auto;
  }

  .floating-form-mini,
  .side-tab{
    right:14px;
    left:auto;
    top:auto;
    bottom:18px;
    transform:none;
    writing-mode:horizontal-tb;
    text-orientation:initial;
    border-right:1px solid rgba(0,0,0,.08);
    border-radius:999px;
    padding:12px 16px;
  }

  .two-col,
  .project-info-wrap,
  .nature-grid,
  .orange-showcase,
  .contact-grid,
  .award-inner,
  .gallery-grid,
  .split-visual{
    grid-template-columns:1fr;
  }

  .award-ribbon{
    min-height:220px;
  }

  .single-large img,
  .project-image img,
  .nature-image img,
  .full-bleed-image img{
    height:auto;
  }

  .gallery-card.tall img,
  .gallery-card.medium img,
  .gallery-card.short img{
    height:auto;
  }
}

@media (max-width: 768px){
  .container{
    width:calc(100% - 24px);
  }

  .header-inner{
    min-height:78px;
  }

  .logo{
    gap:10px;
  }

  .logo-mark{
    width:34px;
    height:24px;
  }

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

  .logo-text span{
    font-size:10px;
    letter-spacing:1.2px;
  }

  .hero{
    background:
      linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.56) 26%, rgba(255,255,255,.08) 56%),
      var(--hero-image) center center / cover no-repeat;
  }

  .hero-copy,
  .project-text,
  .nature-copy,
  .award-copy,
  .image-caption-box,
  .contact-card,
  .gallery-copy{
    width:100%;
    max-width:100%;
  }

  .hero-copy .eyebrow{
    font-size:22px;
  }

  .hero-copy h1{
    font-size:46px;
    letter-spacing:-1px;
  }

  .campaign-left{
    font-size:62px;
    padding:14px 16px 8px;
  }

  .campaign-right{
    padding:12px 16px;
  }

  .campaign-right .small{
    font-size:28px;
  }

  .campaign-right .big{
    font-size:20px;
  }

  .pill-btn{
    min-width:150px;
    height:50px;
    font-size:15px;
  }

  .section{
    padding:72px 0;
  }

  .title{
    font-size:42px;
    margin-bottom:22px;
  }

  .label{
    font-size:16px;
  }

  .lead,
  .project-text p,
  .nature-copy p,
  .image-caption-box p,
  .contact-card p,
  .contact-card a,
  .gallery-copy p,
  .accordion-content{
    font-size:16px;
  }

  .project-text h3,
  .nature-copy h3,
  .image-caption-box h3,
  .contact-card h3,
  .gallery-copy h3,
  .award-copy h3{
    font-size:26px;
  }

  .gallery-copy,
  .image-caption-box,
  .contact-card{
    padding:22px 20px;
  }

  .map-frame{
    height:420px;
  }

  .accordion-button{
    font-size:18px;
    padding:22px 16px;
  }

  .accordion-content{
    padding:0 16px 22px 48px;
  }
}

@media (max-width: 480px){
  .container{
    width:calc(100% - 16px);
  }

  .header-inner{
    min-height:68px;
    gap:14px;
  }

  .mobile-nav{
    padding:8px 14px 16px;
  }

  .hero-copy h1{
    font-size:38px;
  }

  .hero-copy .eyebrow{
    font-size:18px;
  }

  .campaign-box{
    width:100%;
  }

  .campaign-left{
    font-size:48px;
    padding:12px 14px 8px;
  }

  .campaign-right{
    flex:1;
    min-width:0;
  }

  .campaign-right .small{
    font-size:22px;
  }

  .campaign-right .big{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .pill-btn{
    width:100%;
    min-width:0;
  }

  .floating-form{
    padding:20px 14px 16px;
    border-radius:18px;
  }

  .floating-form h3{
    font-size:18px;
  }

  .title{
    font-size:34px;
  }

  .stats-list li,
  .features-list li{
    font-size:16px;
  }

  .project-image img,
  .nature-image img,
  .single-large img,
  .full-bleed-image img{
    border-radius:16px;
  }

  .phone-row .code{
    width:68px;
    min-width:68px;
    font-size:14px;
  }

  .phone-row input{
    font-size:15px;
    padding:0 10px;
  }

  .check-inline{
    gap:10px;
  }

  .floating-form-mini,
  .side-tab{
    max-width:calc(100vw - 16px);
    font-size:13px;
  }
}