:root{
  --bg:#f6f3f7;
  --bg2:#ffffff;
  --card:#ffffff;
  --card2:#faf7fb;

  --text:#2a0f1c;
  --muted:#5c5560;

  --line:rgba(139, 0, 53, 0.12);

  /* KGFH logo palette */
  --brand:#8b0035;
  --brand2:#f47a20;
  --brand-soft:#fff4ec;
  --brand-dark:#5c0024;
  --glow:rgba(244, 122, 32, 0.35);

  --danger:#b42318;

  --shadow:0 18px 45px rgba(139, 0, 53, .1);
  --shadow-lg:0 28px 70px rgba(139, 0, 53, .14);

  --radius:18px;
  --radius2:16px;
  --container:1120px;

  --font-sans:"Plus Jakarta Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-mono:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  background-color:var(--bg);
  background-image:
    radial-gradient(rgba(139, 0, 53, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-size:28px 28px, auto;
  line-height:1.65;
  transition:var(--transition);
}

a{color:inherit}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
}

.skip-link:focus{
  left:12px;
  z-index:9999
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:rgba(255,241,230,.98);
  border-bottom:2px solid var(--line);
  box-shadow:0 2px 12px rgba(139, 0, 53, .08);
  transition:var(--transition);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:20px;
  transition:var(--transition);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  padding:0;
}

.brand-mark{
  width:auto;
  height:90px;
  object-fit:contain;
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
  gap:1px;
}

.brand-name{
  font-weight:800;
  font-size:18px;
  color:var(--brand-dark);
  letter-spacing:0.02em;
  line-height:1;
}

.brand-tag{
  font-size:13px;
  color:var(--brand2);
  font-weight:600;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px
}

.nav a{
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  color:var(--brand);
  font-weight:600;
  transition:var(--transition);
  position:relative;
}

.nav a::after{
  content:'';
  position:absolute;
  bottom:0;
  left:14px;
  width:0;
  height:2px;
  background:var(--brand2);
  transition:width 0.3s ease;
}

.nav a:hover{
  color:var(--brand2);
  background:rgba(244,122,32,.08);
}

.nav a:hover::after{
  width:calc(100% - 28px);
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(139,0,53,.05);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.hero{
  padding:clamp(88px, 12vh, 120px) 0 clamp(56px, 8vh, 80px);
  min-height:calc(100vh - 72px);
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  isolation:isolate;
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:-3;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  animation:heroKenBurns 24s ease-in-out infinite alternate;
  transition:opacity .8s ease;
}

.hero-image.is-fading{
  opacity:0;
}

.hero-scrim{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(115deg, rgba(42, 15, 28, 0.94) 0%, rgba(139, 0, 53, 0.82) 42%, rgba(20, 8, 14, 0.9) 100%);
}

.hero-grid-pattern{
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:
    linear-gradient(rgba(244, 122, 32, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 122, 32, 0.07) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(180deg, #000 0%, transparent 82%);
  pointer-events:none;
}

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none;
  z-index:0;
  opacity:.55;
}

.hero-glow--1{
  width:min(420px, 50vw);
  height:min(420px, 50vw);
  top:-8%;
  right:-4%;
  background:var(--brand2);
}

.hero-glow--2{
  width:min(360px, 44vw);
  height:min(360px, 44vw);
  bottom:8%;
  left:-6%;
  background:var(--brand);
}

@keyframes heroKenBurns{
  from{transform:scale(1.04) translateX(0)}
  to{transform:scale(1.1) translateX(-1.5%)}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16, 16, 16, 0.38), rgba(16, 16, 16, 0.82));
  z-index:0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:center;
  position:relative;
  z-index:1;
}

.hero-copy{
  color:#fff;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  margin-bottom:24px;
  max-width:max-content;
}

.hero-intro{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:24px;
}

.hero-number{
  font-size:48px;
  font-weight:800;
  color:var(--brand2);
  line-height:1;
}

.hero-label,
.hero-sub{
  margin:0;
  color:rgba(255,255,255,.85);
}

.hero-sub{
  margin-top:6px;
  font-size:15px;
}

.hero-copy h1{
  margin:0 0 22px;
  font-size:clamp(2.4rem, 5.5vw, 3.75rem);
  line-height:1.05;
  max-width:14ch;
  color:#fff;
}

.hero-lead{
  color:rgba(255,255,255,.82);
  max-width:54ch;
  margin:0 0 28px;
  font-size:1.1rem;
}

.btn-large{
  padding:16px 32px;
  font-size:1rem;
}

.hero-contact-card{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 24px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  gap:16px;
  color:#fff;
  margin-top:24px;
}

.hero-panel{
  display:grid;
  gap:24px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.stat-card{
  padding:22px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  color:#fff;
}

.stat-value{
  display:block;
  font-size:2rem;
  font-weight:800;
  margin-bottom:8px;
}

.hero-image-frame{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 36px 80px rgba(16,16,16,.25);
}

.hero-image-frame img{
  width:100%;
  height:auto;
  display:block;
}

@keyframes bg-slide {
  from {
    background-position:right center;
  }
  to {
    background-position:left center;
  }
}

.results-section,
.process-section{
  padding:80px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:18px;
  margin-top:32px;
}

.result-card{
  padding:30px 24px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(139,0,53,.12);
  box-shadow:0 20px 50px rgba(139,0,53,.08);
  text-align:center;
}

.result-card strong{
  display:block;
  font-size:2.5rem;
  color:var(--brand);
  margin-bottom:12px;
}

.result-card p{
  margin:0;
  color:var(--muted);
}

.process-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:start;
}

.process-list{
  display:grid;
  gap:18px;
}

.process-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:flex-start;
  padding:24px;
  background:#fff;
  border-radius:22px;
  border:1px solid rgba(139,0,53,.12);
  box-shadow:0 20px 50px rgba(139,0,53,.06);
}

.process-step span{
  display:inline-flex;
  width:52px;
  height:52px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  font-size:1.1rem;
}

.process-step h3{
  margin:0 0 8px;
}

.process-step p{
  margin:0;
  color:var(--muted);
}

.hero > .container{
  position:relative;
  z-index:1
}

.hero-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:22px;
  align-items:start
}

.hero-copy{
  color:rgba(255,255,255,.92)
}


.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 20px;
  padding:8px 16px 8px 12px;
  border-radius:999px;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(12px);
}

.kicker-pulse{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--brand2);
  box-shadow:0 0 0 0 var(--glow);
  animation:kickerPulse 2s ease infinite;
}

@keyframes kickerPulse{
  0%{box-shadow:0 0 0 0 var(--glow)}
  70%{box-shadow:0 0 0 10px rgba(244,122,32,0)}
  100%{box-shadow:0 0 0 0 rgba(244,122,32,0)}
}

.text-gradient{
  background:linear-gradient(90deg, #ffb347, var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

h1{
  font-size:clamp(2.25rem, 5vw, 3.5rem);
  line-height:1.08;
  margin:0 0 20px;
  letter-spacing:-0.03em;
  font-weight:800;
  color:var(--text);
  animation:fadeInUp 0.8s ease;
}

@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.lead{
  font-size:18px;
  color:rgba(255,255,255,.86);
  margin:0 0 12px;
  max-width:52ch
}

.body{
  color:rgba(255,255,255,.78);
  margin:0 0 18px;
  max-width:68ch
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:2px solid transparent;
  cursor:pointer;
  transition:var(--transition);
  font-size:16px;
}

.btn-primary{
  color:#ffffff;

  background:linear-gradient(
    135deg,
    var(--brand),
    var(--brand2)
  );
  box-shadow:0 8px 20px rgba(139, 0, 53, .25);
}

.btn-primary:hover{
  filter:brightness(1.1);
  box-shadow:0 12px 32px rgba(139, 0, 53, .35);
  transform:translateY(-2px);
}

.btn-secondary{
  background:rgba(244,122,32,.1);
  border-color:rgba(244,122,32,.25);
  color:var(--brand);
  font-weight:700;
}

.btn-secondary:hover{
  background:rgba(244,122,32,.18);
  border-color:rgba(244,122,32,.45);
  transform:translateY(-2px);
}

.btn-ghost{
  color:var(--brand);
  border-color:var(--brand2);
  background:rgba(244,122,32,.08);
  font-weight:700;
}

.btn-ghost:hover{
  background:rgba(244,122,32,.16);
  border-color:var(--brand);
  transform:translateY(-2px);
}

.hero .btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.hero .btn-ghost:hover{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.55);
  color:#fff;
}

.btn-outline{
  background:transparent;
  border:2px solid var(--brand);
  color:var(--brand);
}

.btn-outline:hover{
  background:rgba(139,0,53,.06);
  border-color:var(--brand2);
  color:var(--brand2);
  transform:translateY(-2px);
}

.btn-small{
  padding:10px 18px;
  font-size:14px;
  border-radius:12px;
}

.cta-links{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-top:20px;
  font-size:14px;
}

.cta-links a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-weight:600;
  padding:6px 10px;
  border-radius:8px;
  transition:var(--transition);
}

.cta-links a:hover{
  color:#fff;
  background:rgba(255,255,255,.1);
}

.cta-links .dot{
  color:rgba(255,255,255,.35);
  user-select:none;
}

.section-alt{
  background:linear-gradient(
    135deg,
    rgba(244,122,32,.08),
    rgba(139,0,53,.04)
  );

  border-top:2px solid rgba(139,0,53,.12);
  border-bottom:2px solid rgba(139,0,53,.12);
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:32px;
  margin-bottom:60px;
}

.card{
  background:var(--card);
  border:2px solid rgba(139,0,53,.08);
  border-radius:var(--radius);
  overflow:hidden;
  transition:var(--transition);
  box-shadow:0 4px 16px rgba(139, 0, 53, .06);
  display:flex;
  flex-direction:column;
}

.card:hover{
  border-color:var(--brand2);
  box-shadow:var(--shadow-lg);
  transform:translateY(-12px);
}

.card-media{
  position:relative;
  height:240px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(139,0,53,.1), rgba(244,122,32,.08));
}

#team .card-media{
  position:relative;
  height:auto;
  overflow:visible;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 0 0;
}

#team .card-media img{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  border: 6px solid rgba(255,255,255,.95);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  transition:var(--transition);
}

#team .card:hover .card-media img{
  transform:scale(1.03);
}

#team .card {
  text-align: center;
  padding-top: 14px;
}

#team .card h3 {
  margin: 16px 0 8px;
  font-size: 1.3rem;
}

#team .card ul {
  margin-top: 0;
  text-align: left;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:var(--transition);
}

.card:hover .card-media img{
  transform:scale(1.08);
}

.card-icon{
  position:absolute;
  bottom:12px;
  right:12px;
  font-size:48px;
  background:rgba(255,255,255,.95);
  width:64px;
  height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 20px rgba(139, 0, 53, .15);
  transition:var(--transition);
}

.card:hover .card-icon{
  transform:scale(1.1) translateY(-4px);
}

.card h3{
  font-size:22px;
  font-weight:800;
  color:var(--brand);
  margin:24px 24px 0;
  line-height:1.3;
  text-align:center;
}

#team .card p {
  margin:10px 24px 0;
  color:var(--muted);
  text-align:center;
}

.card ul{
  list-style:none;
  padding:0;
  margin:16px 24px 24px;
  flex:1;
}

.card li{
  position:relative;
  padding-left:24px;
  margin-bottom:12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  transition:var(--transition);
}

.card li::before{
  content:'›';
  position:absolute;
  left:4px;
  color:var(--brand2);
  font-weight:800;
  font-size:20px;
}

.card li:hover{
  color:var(--brand);
  padding-left:28px;
}

.card .btn{
  margin-top:16px;
  width:100%;
  text-align:center;
}

.card .btn:hover{
  transform:translateY(-2px);
}

.banner{
  margin-top:0;
  padding:32px;
  border-radius:var(--radius);
  border:2px solid rgba(244,122,32,.3);
  background:linear-gradient(
    135deg,
    rgba(244,122,32,.12),
    rgba(139,0,53,.08)
  );
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  transition:var(--transition);
}

.banner:hover{
  border-color:rgba(244,122,32,.5);
  box-shadow:0 12px 32px rgba(244, 122, 32, .15);
  transform:translateY(-2px);
}

.banner h3{
  color:var(--brand);
  font-size:24px;
  font-weight:800;
  margin:0;
  line-height:1.3;
}

.banner p{
  color:var(--muted);
  margin:8px 0 0;
  font-size:15px;
}

@media(max-width:768px){
  .cards{
    grid-template-columns:1fr;
    gap:24px;
  }
  
  .card-media{
    height:200px;
  }
  
  .card h3{
    font-size:20px;
  }
  
  .banner{
    flex-direction:column;
    text-align:center;
    gap:24px;
  }
  
  .banner h3{
    font-size:20px;
  }
}

.highlight{
  position:relative;
  border-radius:16px;

  background:linear-gradient(
    135deg,
    rgba(139,0,53,.08),
    rgba(244,122,32,.06)
  );

  border:1.5px solid rgba(244,122,32,.25);
  padding:24px;
  transition:var(--transition);
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.highlight:hover{
  box-shadow:0 12px 28px rgba(139, 0, 53, .12);
  transform:translateY(-4px);
  border-color:rgba(244,122,32,.4);
}

.highlight-icon{
  font-size:32px;
  min-width:40px;
}

.highlight h4{
  color:var(--brand);
  font-size:18px;
  margin:0 0 8px;
  font-weight:700;
}

.highlight p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.banner{
  margin-top:20px;
  padding:18px;
  border-radius:var(--radius);

  border:1px solid rgba(244,122,32,.22);

  background:linear-gradient(
    135deg,
    rgba(139,0,53,.10),
    rgba(244,122,32,.08)
  );

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:24px 0 8px;
}

.payment-panel{
  margin-top:24px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(139,0,53,.16);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}

.payment-panel h4{
  margin:0 0 10px;
  font-size:22px;
  font-weight:800;
  color:var(--brand);
}

.payment-panel p{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.75;
}

.payment-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
  gap:16px;
}

.payment-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:86px;
  padding:18px;
  border-radius:16px;
  background:rgba(244,122,32,.08);
  color:var(--brand);
  font-weight:700;
  text-align:center;
  text-decoration:none;
  border:2px solid transparent;
  transition:var(--transition);
  box-shadow:0 8px 18px rgba(139, 0, 53, .08);
}

.payment-card:hover{
  background:linear-gradient(135deg, rgba(244,122,32,.16), rgba(139,0,53,.12));
  border-color:var(--brand2);
  color:#ffffff;
  transform:translateY(-3px);
}

.payment-card::before{
  content:'💳';
  margin-right:10px;
}

@media(max-width:768px){
  .payment-grid{
    grid-template-columns:1fr;
  }
}

/* New style block: uses existing brand palette without changing current colors */
.new-style-panel{
  background:linear-gradient(180deg, var(--bg2), var(--card2));
  border:1px solid rgba(139,0,53,.12);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  color:var(--text);
  padding:24px;
}

.new-style-panel h2,
.new-style-panel h3{
  color:var(--brand);
}

.new-style-panel a,
.new-style-panel button{
  color:var(--brand);
}

.new-style-panel a:hover,
.new-style-panel button:hover{
  color:var(--brand2);
}

.new-style-section{
  background:rgba(139,0,53,.04);
  border-top:1px solid rgba(139,0,53,.08);
  border-bottom:1px solid rgba(139,0,53,.08);
  padding:40px 0;
}

.new-style-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#ffffff;
  text-decoration:none;
}

.site-footer{
  padding:40px 0 48px;
  border-top:2px solid var(--line);
  background:linear-gradient(135deg, var(--brand-soft), rgba(255,255,255,.5));
  text-align:center;
}

.section{
  padding:80px 0;
  animation:fadeIn 0.6s ease;
}

.section-head{
  margin-bottom:60px;
  text-align:center;
}

.section-label{
  margin:0 0 10px;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brand2);
}

.section-head h2{
  font-size:clamp(1.85rem, 4vw, 2.625rem);
  font-weight:800;
  margin:0 0 16px;
  color:var(--brand);
  letter-spacing:-0.03em;
}

.section-head h2::after{
  content:"";
  display:block;
  width:72px;
  height:4px;
  margin:18px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
}

.section-head p{
  font-size:18px;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
  line-height:1.7;
}

@keyframes fadeIn{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

.about-feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
}

.about-title{
  font-size:32px;
  font-weight:800;
  color:var(--brand);
  margin:0 0 16px;
  line-height:1.2;
}

.about-lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.8;
  margin:0 0 32px;
}

.about-highlights{
  display:grid;
  gap:24px;
}

.about-feature-media img{
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  width:100%;
  height:auto;
  transition:var(--transition);
}

.about-feature-media img:hover{
  transform:scale(1.02);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:32px;
  margin-bottom:60px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.panel{
  background:var(--card);
  border:2px solid rgba(139,0,53,.08);
  border-radius:var(--radius);
  padding:32px;
  transition:var(--transition);
  box-shadow:0 4px 16px rgba(139, 0, 53, .06);
}

.panel:hover{
  border-color:var(--brand2);
  box-shadow:var(--shadow-lg);
  transform:translateY(-8px);
}

.panel h3{
  font-size:22px;
  font-weight:800;
  color:var(--brand);
  margin:0 0 16px;
}

.panel p{
  color:var(--muted);
  line-height:1.8;
  margin:0;
}

.check-list{
  list-style:none;
  padding:0;
  margin:0;
}

.check-list li{
  padding:12px 0;
  color:var(--text);
  font-weight:600;
  border-bottom:1px solid rgba(139,0,53,.06);
  position:relative;
  padding-left:28px;
}

.check-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:var(--brand2);
  font-weight:800;
  font-size:18px;
}

.badge{
  display:inline-block;
  background:rgba(244,122,32,.12);
  color:var(--brand2);
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  margin-right:8px;
  margin-top:8px;
  border:1px solid rgba(244,122,32,.25);
  transition:var(--transition);
}

.badge:hover{
  background:rgba(244,122,32,.2);
  border-color:rgba(244,122,32,.4);
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

@media(max-width:768px){
  h1{
    font-size:36px;
  }
  
  .header-inner{
    padding:12px 0;
    gap:10px;
  }
  
  .nav{
    display:none;
  }
  
  .nav-toggle{
    display:block;
    background:rgba(139,0,53,.08);
    border-color:rgba(139,0,53,.15);
    font-weight:700;
    color:var(--brand);
  }
  
  .hero{
    padding:80px 0 40px;
  }
  
  .hero-grid{
    grid-template-columns:1fr;
  }
  
  .about-feature{
    grid-template-columns:1fr;
    gap:40px;
  }
  
  .split{
    grid-template-columns:1fr;
  }
  
  .section{
    padding:60px 0;
  }
  
  .section-head h2{
    font-size:32px;
  }
  
  .about-title{
    font-size:24px;
  }
  
  .btn{
    padding:12px 24px;
    font-size:15px;
  }
}

/* Contact Form Styling */
.form{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field label{
  font-weight:700;
  color:var(--brand);
  font-size:15px;
  letter-spacing:0.3px;
  transition:var(--transition);
}

.field label::after{
  content:'';
  display:inline-block;
}

.field input,
.field textarea{
  padding:14px 16px;
  border:2px solid rgba(139,0,53,.12);
  border-radius:12px;
  font-family:inherit;
  font-size:15px;
  color:var(--text);
  background:var(--card);
  transition:var(--transition);
  outline:none;
}

.field input::placeholder,
.field textarea::placeholder{
  color:var(--muted);
  opacity:0.6;
}

.field input:focus,
.field textarea:focus{
  border-color:var(--brand2);
  box-shadow:0 0 0 4px rgba(244,122,32,.1);
  background:rgba(255,255,255,1);
}

.field input:hover,
.field textarea:hover{
  border-color:rgba(244,122,32,.2);
}

.field textarea{
  resize:vertical;
  min-height:140px;
  line-height:1.6;
}

.form-actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:8px;
}

.form-actions .btn{
  margin:0;
}

[data-form-status]{
  font-size:14px;
  font-weight:600;
  transition:var(--transition);
}

[data-form-status]:empty{
  display:none;
}

[data-form-status].success{
  color:var(--brand2);
}

[data-form-status].error{
  color:var(--danger);
}

.plain-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.plain-list li{
  padding:12px 0;
  color:var(--text);
  font-size:15px;
  display:flex;
  gap:12px;
  align-items:center;
  transition:var(--transition);
}

.plain-list li strong{
  font-size:18px;
  min-width:24px;
}

.plain-list a{
  color:var(--brand);
  text-decoration:none;
  font-weight:600;
  transition:var(--transition);
  border-bottom:1px solid rgba(139,0,53,.3);
}

.plain-list a:hover{
  color:var(--brand2);
  border-bottom-color:rgba(244,122,32,.5);
}

.muted{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

code{
  background:rgba(139,0,53,.06);
  color:var(--brand);
  padding:2px 6px;
  border-radius:4px;
  font-family:'Courier New', monospace;
  font-size:13px;
  font-weight:600;
}

@media(max-width:768px){
  .split{
    grid-template-columns:1fr;
  }
  
  .form{
    gap:20px;
  }
  
  .field input,
  .field textarea{
    padding:12px 14px;
    font-size:16px;
  }
  
  .form-actions{
    flex-direction:column;
    align-items:stretch;
  }
  
  .form-actions .btn{
    width:100%;
  }
}

/* Album Modal Styling */
.modal{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  transition:var(--transition);
}

.modal[hidden]{
  display:none;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(4px);
  transition:var(--transition);
}

.modal-content{
  position:relative;
  z-index:10;
  background:var(--bg2);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  max-width:900px;
  width:100%;
  max-height:90vh;
  display:flex;
  flex-direction:column;
  animation:modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn{
  from{
    opacity:0;
    transform:scale(0.95) translateY(-20px);
  }
  to{
    opacity:1;
    transform:scale(1) translateY(0);
  }
}

.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px;
  border-bottom:2px solid var(--line);
}

.modal-header h2{
  margin:0;
  font-size:28px;
  color:var(--brand);
}

.modal-close{
  background:none;
  border:none;
  font-size:32px;
  color:var(--text);
  cursor:pointer;
  padding:0;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  transition:var(--transition);
}

.modal-close:hover{
  background:rgba(139,0,53,.1);
  color:var(--brand);
}

.modal-body{
  padding:24px;
  overflow-y:auto;
  flex:1;
}

.album-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:16px;
}

.album-photo{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  background:var(--card2);
  border:2px solid var(--line);
  cursor:pointer;
  transition:var(--transition);
  aspect-ratio:1;
}

.album-photo:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(139,0,53,.15);
  border-color:var(--brand2);
}

.album-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.album-photo-overlay{
  position:absolute;
  inset:0;
  background:rgba(139,0,53,.7);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:var(--transition);
  padding:16px;
  text-align:center;
}

.album-photo:hover .album-photo-overlay{
  opacity:1;
}

.album-photo-overlay h3{
  color:#fff;
  margin:0;
  font-size:14px;
  font-weight:700;
}

.album-photo-overlay p{
  color:rgba(255,255,255,.9);
  margin:8px 0 0;
  font-size:12px;
  line-height:1.4;
}

.album-loading{
  grid-column:1/-1;
  text-align:center;
  padding:40px 20px;
  color:var(--muted);
}

.album-empty{
  grid-column:1/-1;
  text-align:center;
  padding:60px 20px;
  background:linear-gradient(135deg, rgba(244,122,32,.08), rgba(139,0,53,.06));
  border-radius:12px;
  border:2px dashed var(--line);
}

.album-empty p{
  color:var(--muted);
  font-size:16px;
  margin:0;
}

.album-error{
  grid-column:1/-1;
  background:rgba(180,35,24,.1);
  border:2px solid rgba(180,35,24,.3);
  border-radius:12px;
  padding:20px;
  color:var(--danger);
  text-align:center;
}

.album-error p{
  margin:0;
}

@media(max-width:768px){
  .modal-content{
    max-height:95vh;
  }

  .modal-header{
    padding:16px;
  }

  .modal-header h2{
    font-size:20px;
  }

  .modal-body{
    padding:16px;
  }

  .album-gallery{
    grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
    gap:12px;
  }
}

/* —— Homepage: neutral base + logo color accents only (not full-page tint) —— */
.home-tech{
  --bg:#fafafa;
  --bg2:#ffffff;
  --card:#ffffff;
  --card2:#ffffff;
  --text:#1c1c22;
  --muted:#64748b;
  --line:rgba(0,0,0,.08);
  background-color:var(--bg);
  background-image:none;
}

.home-tech .site-header{
  background:rgba(255,255,255,.92);
  border-bottom:2px solid rgba(139,0,53,.12);
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}

.home-tech .brand-mark{
  height:76px;
  filter:none;
}

.home-tech .nav a{
  font-size:14px;
  color:#3f3f46;
  font-weight:600;
}

.home-tech .nav a:hover{
  color:var(--brand);
  background:rgba(0,0,0,.04);
}

.home-tech .nav a::after{
  height:2px;
  border-radius:0;
  background:var(--brand);
}

.home-tech .hero-scrim{
  background:linear-gradient(
    105deg,
    rgba(10,10,14,.52) 0%,
    rgba(10,10,14,.38) 45%,
    rgba(10,10,14,.58) 100%
  );
}

.home-tech .hero-grid-pattern{
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
}

.home-tech .hero-glow{
  display:none;
}

.home-tech .kicker-pulse{
  background:var(--brand2);
  box-shadow:none;
  animation:none;
}

.home-tech .text-gradient{
  background:linear-gradient(90deg, #ffc98a, var(--brand2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.home-tech .btn-primary{
  background:linear-gradient(135deg, var(--brand), #a01845);
  box-shadow:0 4px 16px rgba(139,0,53,.22);
}

.home-tech .btn-primary::before{
  display:none;
}

.home-tech .btn-primary:hover{
  filter:brightness(1.05);
  box-shadow:0 6px 18px rgba(0,0,0,.22);
}

.home-tech .btn-secondary{
  background:rgba(244,122,32,.08);
  border-color:rgba(244,122,32,.22);
  color:var(--brand);
}

.home-tech .btn-secondary:hover{
  background:rgba(244,122,32,.14);
  border-color:rgba(244,122,32,.35);
  color:var(--brand);
}

.home-tech .hero > .container,
.home-tech .hero-grid{
  position:relative;
  z-index:2;
}

.home-tech .hero-grid{
  grid-template-columns:1fr;
  max-width:760px;
}

.home-tech .payment-panel{
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(0,0,0,.12);
}

.home-tech .payment-card{
  background:#f8f8f9;
  color:var(--text);
  box-shadow:none;
}

.home-tech .payment-card:hover{
  background:#f0f0f2;
  border-color:#d4d4d8;
  color:var(--brand);
}

.home-tech .section-label{
  color:var(--brand2);
}

.home-tech .section-head h2,
.home-tech .about-title{
  color:var(--brand);
}

.home-tech .card h3,
.home-tech .panel h3,
.home-tech .highlight h4{
  color:var(--text);
}

.home-tech .section-head h2::after{
  width:56px;
  height:3px;
  background:linear-gradient(90deg, var(--brand), var(--brand2));
}

.home-tech .panel,
.home-tech .card{
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:0 4px 20px rgba(0,0,0,.04);
}

.home-tech .card{
  position:relative;
}

.home-tech .card::before{
  display:none;
}

.home-tech .card:hover,
.home-tech .panel:hover{
  border-color:rgba(139,0,53,.18);
  box-shadow:0 8px 28px rgba(139,0,53,.08);
  transform:translateY(-4px);
}

.home-tech .card li::before{
  color:var(--brand2);
}

.home-tech .highlight{
  background:#fff;
  border:1px solid var(--line);
  border-left:3px solid var(--brand2);
}

.home-tech .highlight-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(244,122,32,.1);
  font-size:22px;
}

.home-tech .section-alt{
  background:#f5f5f6;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.home-tech .banner{
  border:1px solid rgba(139,0,53,.15);
  background:linear-gradient(135deg, var(--brand) 0%, #6a0028 100%);
  box-shadow:0 10px 32px rgba(139,0,53,.18);
}

.home-tech .banner h3,
.home-tech .banner p{
  color:#fff;
}

.home-tech .banner p{
  opacity:.82;
}

.home-tech .banner .btn-outline{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.home-tech .banner .btn-outline:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
}

.home-tech .badge{
  background:rgba(244,122,32,.1);
  border-color:rgba(244,122,32,.22);
  color:var(--brand);
}

.home-tech .check-list li::before{
  color:var(--brand);
}

.home-tech .site-footer{
  background:var(--brand-dark);
  color:rgba(255,255,255,.78);
  border-top:3px solid var(--brand2);
}

.home-tech .site-footer p{
  margin:0;
}

.home-tech .site-footer a{
  color:rgba(255,255,255,.55) !important;
}

.home-tech .site-footer a:hover{
  color:var(--brand2) !important;
}

.footer-admin{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-decoration:none;
}

.footer-actions{
  display:flex;
  gap:20px;
  align-items:center;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.home-tech .field label{
  color:var(--brand);
}

.home-tech .plain-list a{
  color:var(--brand);
}

.home-tech .plain-list a:hover{
  color:var(--brand2);
}

.home-tech .cta-links a:hover{
  color:var(--brand2);
}

.home-tech .field input:focus,
.home-tech .field textarea:focus{
  border-color:rgba(139,0,53,.35);
  box-shadow:0 0 0 3px rgba(139,0,53,.08);
}

@media (max-width:768px){
  .home-tech .nav[data-open="true"]{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:calc(100% + 8px);
    right:20px;
    left:20px;
    padding:16px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(139,0,53,.12);
    border-radius:var(--radius);
    box-shadow:var(--shadow-lg);
    backdrop-filter:blur(16px);
  }

  .home-tech .hero-copy h1{
    max-width:none;
  }

  .home-tech .brand-mark{
    height:64px;
  }
}

@media (prefers-reduced-motion:reduce){
  .hero-image,
  .kicker-pulse{
    animation:none;
  }
}

/* —— Album page: clear photos + lightbox —— */
.album-page{
  background:#f5f5f6;
}

.album-page .site-header{
  background:rgba(255,255,255,.95);
  border-bottom:2px solid rgba(139,0,53,.1);
}

.album-page .section-label{
  color:var(--brand2);
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:0 0 8px;
}

.album-page .section-head h2{
  color:var(--brand);
}

.album-section{
  padding-top:48px;
}

.album-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
  gap:14px;
}

.album-item{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.album-thumb{
  display:block;
  width:100%;
  aspect-ratio:1;
  padding:0;
  border:none;
  border-radius:12px;
  background:#e8e8ea;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  transition:var(--transition);
}

.album-thumb:hover{
  box-shadow:0 6px 18px rgba(139,0,53,.15);
  transform:translateY(-2px);
}

.album-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.album-thumb-zoom{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.45);
  color:#fff;
  font-size:12px;
  font-weight:600;
  opacity:0;
  transition:opacity .25s ease;
}

.album-thumb:hover .album-thumb-zoom,
.album-thumb:focus-visible .album-thumb-zoom{
  opacity:1;
}

.album-item-title{
  margin:0;
  font-size:13px;
  font-weight:600;
  color:var(--brand);
  text-align:center;
  line-height:1.35;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  padding:0 4px;
}

.album-empty-state{
  text-align:center;
  padding:56px 24px;
  background:#fff;
  border:2px dashed rgba(139,0,53,.15);
  border-radius:var(--radius);
}

.album-empty-state h3{
  margin:0 0 10px;
  color:var(--brand);
}

.album-empty-state p{
  margin:0 0 20px;
  color:var(--muted);
}

.album-footer{
  background:var(--brand-dark);
  color:rgba(255,255,255,.78);
  border-top:3px solid var(--brand2);
}

.album-footer .footer-admin{
  color:rgba(255,255,255,.6);
  text-decoration:none;
  font-size:13px;
}

.album-footer .footer-admin:hover{
  color:var(--brand2);
}

.album-lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.album-lightbox[hidden]{
  display:none;
}

.album-lightbox-backdrop{
  position:absolute;
  inset:0;
  border:none;
  background:rgba(8,8,12,.88);
  cursor:pointer;
}

.album-lightbox-panel{
  position:relative;
  z-index:1;
  width:min(1200px, 96vw);
  max-height:92vh;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.album-lightbox-figure{
  margin:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.album-lightbox-img{
  display:block;
  max-width:100%;
  max-height:calc(92vh - 100px);
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  background:#111;
}

.album-lightbox-caption{
  color:#fff;
  text-align:center;
  font-size:15px;
  line-height:1.6;
  max-width:720px;
  padding:0 48px;
}

.album-lightbox-caption strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.album-lightbox-caption em{
  display:block;
  margin-top:8px;
  font-style:normal;
  opacity:.75;
  font-size:13px;
}

.album-lightbox-close{
  position:absolute;
  top:-8px;
  right:0;
  z-index:2;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  transition:var(--transition);
}

.album-lightbox-close:hover{
  background:rgba(255,255,255,.28);
}

.album-lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
  transition:var(--transition);
}

.album-lightbox-nav:hover{
  background:rgba(255,255,255,.28);
}

.album-lightbox-prev{
  left:-56px;
}

.album-lightbox-next{
  right:-56px;
}

@media (max-width:900px){
  .album-grid{
    grid-template-columns:repeat(auto-fill, minmax(120px, 1fr));
    gap:10px;
  }

  .album-lightbox-prev{
    left:8px;
  }

  .album-lightbox-next{
    right:8px;
  }

  .album-lightbox-close{
    top:8px;
    right:8px;
    background:rgba(0,0,0,.5);
  }

  .album-lightbox-caption{
    padding:0 12px;
  }
}