:root{
  --bg: #ffffff;
  --panel: rgba(0,0,0,0.04);
  --panel2: rgba(0,0,0,0.08);
  --text: #333333;
  --muted: #666666;
  --line: #e0e0e0;
  --accent2: #ae8332;
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
[hidden] { display: none !important; }

body{
  margin:0;
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body.modal-open{
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
}

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

/* Demo bar */
.demo-bar{
  position: relative;
  z-index: 60;
  background: #f6f6f6;
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
  display:flex;
  justify-content: center;
  gap: 12px;
  align-items:center;
  font-size: 13px;
}

.linklike{
  background: transparent;
  border: none;
  color: var(--accent2);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  text-transform: uppercase;
  font-weight: 700;
}

/* Header overlays hero */
.site-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

.header-inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 36px;   /* restore vertical breathing room */
  gap: 16px;
  border-radius: 0;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  backdrop-filter: blur(3px);
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

/* PNG logo */
.brand-logo{
  width: 128px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  white-space: nowrap;
}

.nav a{
  color: var(--text);
  text-decoration:none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav a:hover{ color: var(--accent2); }

/* Buttons */
.btn{
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 1.1em;
}

.btn:hover{ background: var(--panel); }

.btn-primary{
  background: var(--accent2);
  border-color: rgba(0,0,0,0.2);
  color: #ffffff;
}

.btn-primary:hover{ background: #c49641; }

.btn-ghost{
  background: #ffffff;
  border-color: rgba(0,0,0,0.18);
  color: var(--text);
}

.btn-ghost:hover{ background: #f2f2f2; }

/* Mobile */
.hamburger{
  display:none;
  background: transparent;
  border: 1px solid #111111;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.hamburger span{
  display:block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  opacity: 0.9;
}

.mobile-nav{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 25vw;
  display:flex;
  align-items: center;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
  padding-top: 120px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 80% at 20% 50%, rgba(255,255,255,0.63) 0%, rgba(255,255,255,0.29) 45%, rgba(255,255,255,0) 75%),
    url("assets/hero.jpg") center/cover no-repeat;
  background-position: center bottom;
  filter: saturate(1.02) contrast(1.02);
}

.hero-inner{
  position: relative;
  z-index: 1;
  padding: 54px 0 64px;
}

.hero-copy{
  max-width: 640px;
}

.kicker{
  color: var(--accent2);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 15px;
  margin: 0 0 14px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.18);
  background: #ffffff;
  display: inline-block;
  padding: 6px 10px;
}

.hero h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #111111;
  text-shadow: 0 6px 16px rgba(255,255,255,0.6);
}

.subhead{
  max-width: 52ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.hero-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sections */
.section{ padding: 64px 0; }

.section-alt{
  background:
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url("assets/blueprint-staircase.png") center/cover no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-light{
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-light .section-head h2{
  color: var(--text);
}

.rr-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.rr-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.rr-highlight{
  background: #ffffff;
  color: var(--text);
  border-color: var(--accent2);
}

.rr-eyebrow{
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  font-weight: 700;
}

.rr-phone{
  margin: 0 0 8px;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--accent2);
  text-transform: uppercase;
}

.rr-subhead{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.rr-title{
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.4;
}

.rr-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.rr-form input{
  flex: 1 1 200px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.2);
  font: inherit;
}

.rr-form-status{
  display: block;
  width: 100%;
  font-size: 12px;
  color: var(--muted);
}

.rr-bubble{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.rr-bubble-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.rr-bubble-icon{
  width: 48px;
  height: 48px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(174,131,50,0.35));
}

.rr-bubble-arrow{
  width: 26px;
  height: 26px;
  display: block;
  opacity: 0.75;
  margin-left: 10px;
  filter:
    drop-shadow(1px 0 0 rgba(255,255,255,0.85))
    drop-shadow(-1px 0 0 rgba(255,255,255,0.85))
    drop-shadow(0 1px 0 rgba(255,255,255,0.85))
    drop-shadow(0 -1px 0 rgba(255,255,255,0.85))
    drop-shadow(0 0 3px rgba(255,255,255,0.35));
}

.rr-note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
}

.rr-cta{
  margin-top: 12px;
  text-align: center;
  color: var(--text);
}

.rr-cta strong{
  letter-spacing: 1px;
}

.rr-cta p{
  margin: 0;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
}

.rr-cta strong{
  color: var(--accent2);
}

.section-photo{
  position: relative;
  overflow: hidden;
}

.section-photo{
  background:
    linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
    url("assets/blueprint-staircase.png") center/cover no-repeat;
}

.section-head{
  text-align: center;
  margin-bottom: 22px;
}

.section-head h2{
  font-size: 34px;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.section-head p{ margin:0; color: var(--muted); }

/* Prices */
.price-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.price-card{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.price-row{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.price-row h3{
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.price{
  font-size: 15px;
  font-weight: 700;
  color: var(--accent2);
}

.desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.g{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #ffffff;
}

.g img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
}

/* Testimonials */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.quote{
  margin:0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.quote p{ margin:0; color: var(--text); line-height: 1.6; }
.quote footer{ margin-top: 12px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px; }

/* Staff */
.staff-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.staff-card{
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.staff-photo{
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
}

.staff-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.staff-role{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.staff-quote{
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.center{ display:flex; justify-content:center; margin-top: 20px; }

.muted{ color: var(--muted); }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #ffffff;
}

.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-right{ display:flex; gap: 14px; }
.footer a{ color: var(--text); text-decoration: underline; font-size: inherit; }
.footer a:hover{ color: var(--accent2); }

.section a{
  color: var(--text);
  text-decoration: underline;
}

/* Modal */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.modal{
  position: fixed;
  inset: 0;
  display:grid;
  place-items:center;
  z-index: 1001;
}

.modal-inner{
  width: min(560px, calc(100% - 34px));
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.modal-inner h3{ margin: 0 0 10px; }
.modal-inner p{ margin: 0 0 14px; color: var(--muted); line-height: 1.6; }
.modal-actions{ display:flex; justify-content:flex-end; }

/* Responsive */
@media (max-width: 1000px){
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
  .nav a{ font-size: 13px; }
  .staff-grid{ grid-template-columns: repeat(2, 1fr); }
  .rr-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 900px){
  .nav{ display:none; }
  .hamburger{ display:block; }

  .hero{ padding-top: 110px; }

  .gallery{ grid-template-columns: 1fr 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .staff-grid{ grid-template-columns: 1fr; }

  .mobile-nav a{
    color: var(--muted);
    text-decoration:none;
    padding: 10px 10px;
    border-radius: 12px;
  }
}

@media (max-width: 520px){
  .price-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .header-inner{ backdrop-filter: none; }
  .hero-bg{
    background:
      linear-gradient(
        to top,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.6) 45%,
        rgba(255,255,255,0) 100%
      ),
      url("assets/hero.jpg") center/cover no-repeat;
  }

  .brand-name{ font-size: 18px; }
  .brand-tag{ display:none; }
}

@media (max-width: 520px){
  .site-header{ top: 4px; }
}
