:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f5f5f5;
  --text:#121212;
  --muted:#3a3a3a;
  --border:#d9d9d9;
  --gold:#c9a227;
  --red:#a61e2a;
  --shadow:0 18px 45px rgba(18,18,18,0.08);
  --shadow-soft:0 10px 30px rgba(18,18,18,0.05);
  --radius:18px;
  --container:1180px;

  --primary:var(--gold);
  --primary-dark:#a8861b;
  --secondary:var(--text);
  --dark:var(--text);
  --light:#f5f5f5;
  --white:#ffffff;
  --soft:#f9f9f9;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.container{
  width:min(100% - 32px, var(--container));
  margin:auto;
}

.narrow{
  max-width:800px;
}

.section{
  padding:88px 0;
  position:relative;
}

.section-light{
  background:var(--light);
}

.section-dark{
  background:var(--dark);
  color:var(--white);
}

.light-text p,
.light-text h2{
  color:var(--white);
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,217,217,0.8);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:20px;
  position:relative;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.site-nav a{
  font-weight:600;
  color:#334155;
}

.site-nav a:hover,
.site-nav a.active{
  color:var(--gold);
}

.nav-cta{
  background:var(--gold);
  color:#fff !important;
  padding:12px 18px;
  border-radius:999px;
}

.nav-cta:hover{
  background:var(--primary-dark);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.menu-toggle{
  display:none;
  border:none;
  background:none;
  font-size:1.8rem;
  cursor:pointer;
  color:var(--secondary);
}

.theme-toggle{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.25s ease;
  flex-shrink:0;
}

.theme-toggle:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.brand-logo,
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.header-logo-img{
  width:52px;
  height:52px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

.footer-logo-img{
  width:56px;
  height:56px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

.logo-light-mode{
  display:block;
}

.logo-dark-mode{
  display:none;
}

body.dark-mode .logo-light-mode{
  display:none;
}

body.dark-mode .logo-dark-mode{
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  font-family:'Outfit',sans-serif;
  font-weight:800;
  font-size:1.15rem;
  color:var(--secondary);
  letter-spacing:-0.4px;
}

.brand-text span{
  display:block;
  font-size:0.88rem;
  color:var(--gold);
  letter-spacing:0;
}

.footer-brand-text{
  color:#ffffff;
}

.footer-brand-text span{
  color:var(--gold);
}

.hero{
  position:relative;
  padding-top:110px;
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(135deg, rgba(18,18,18,0.62), rgba(18,18,18,0.42)),
    radial-gradient(circle at top left, rgba(201,162,39,0.16), transparent 34%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero::before,
.hero::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:-1;
}

.hero::before{
  width:420px;
  height:420px;
  top:-120px;
  right:-100px;
  background:radial-gradient(circle, rgba(201,162,39,0.18) 0%, rgba(201,162,39,0.05) 35%, transparent 70%);
  filter:blur(8px);
}

.hero::after{
  width:320px;
  height:320px;
  left:-80px;
  bottom:20px;
  background:radial-gradient(circle, rgba(166,30,42,0.10) 0%, rgba(166,30,42,0.04) 40%, transparent 70%);
  filter:blur(10px);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:42px;
  position:relative;
  z-index:1;
}

.hero-content{
  position:relative;
}

.hero-content::before{
  content:"";
  position:absolute;
  top:-20px;
  left:-20px;
  width:180px;
  height:180px;
  background-image:
    linear-gradient(rgba(201,162,39,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.12) 1px, transparent 1px);
  background-size:18px 18px;
  mask-image:linear-gradient(135deg, rgba(0,0,0,0.95), transparent 80%);
  -webkit-mask-image:linear-gradient(135deg, rgba(0,0,0,0.95), transparent 80%);
  z-index:-1;
  pointer-events:none;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:1.8px;
  color:var(--gold);
  font-weight:700;
}

.hero h1,
.inner-hero h1{
  font-family:'Outfit',sans-serif;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:1.05;
  letter-spacing:-1.4px;
  margin-bottom:20px;
}

.hero h1,
.hero .hero-text,
.hero .eyebrow{
  color:#ffffff;
}

.hero .eyebrow{
  color:#f0cf63;
}

.hero-text,
.inner-hero p{
  font-size:1.08rem;
  color:var(--muted);
  max-width:680px;
}

.hero .hero-text{
  color:rgba(255,255,255,0.88);
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:30px 0 34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  transition:0.25s ease;
  border:1px solid transparent;
  position:relative;
  overflow:hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform:translateX(-130%);
  transition:transform 0.6s ease;
}

.btn:hover::after{
  transform:translateX(130%);
}

.btn-primary{
  background:var(--gold);
  color:#fff;
}

.btn-primary:hover{
  background:var(--primary-dark);
  transform:translateY(-2px);
}

.btn-secondary{
  background:#f0f0f0;
  color:var(--secondary);
}

.btn-secondary:hover{
  background:#e5e5e5;
}

.hero .btn-secondary{
  background:rgba(255,255,255,0.12);
  color:#ffffff;
  border:1px solid rgba(255,255,255,0.18);
}

.hero .btn-secondary:hover{
  background:rgba(255,255,255,0.18);
}

.hero-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.trust-item{
  padding:18px;
  border:1px solid rgba(255,255,255,0.22);
  border-radius:16px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  box-shadow:var(--shadow-soft);
}

.trust-item strong{
  display:block;
  color:#ffffff;
  font-size:1rem;
  margin-bottom:4px;
}

.trust-item span{
  color:rgba(255,255,255,0.82);
  font-size:0.92rem;
}

.hero-card{
  display:grid;
  gap:18px;
}

.hero-panel{
  padding:24px;
  border-radius:22px;
  box-shadow:var(--shadow);
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(10px);
}

.panel-one{
  background:linear-gradient(135deg, rgba(255,249,230,0.92), rgba(255,253,245,0.88));
}

.panel-two{
  background:linear-gradient(135deg, rgba(245,245,245,0.92), rgba(255,255,255,0.88));
}

.panel-three{
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(249,249,249,0.88));
}

.hero-panel p{
  color:var(--gold);
  font-weight:700;
  margin-bottom:10px;
}

.hero-panel h3{
  font-family:'Outfit',sans-serif;
  color:var(--secondary);
  font-size:1.35rem;
  margin-bottom:10px;
}

.hero-panel span{
  color:var(--muted);
}

.section-head{
  margin-bottom:34px;
  position:relative;
}

.section-head.center{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
}

.section-head h2{
  font-family:'Outfit',sans-serif;
  font-size:clamp(2rem,4vw,3rem);
  color:var(--secondary);
  line-height:1.1;
  margin-bottom:14px;
}

.section-head p{
  color:var(--muted);
  max-width:700px;
}

.section-head::after{
  content:"";
  display:block;
  width:74px;
  height:4px;
  margin-top:16px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold), rgba(201,162,39,0.18));
}

.section-head.center::after{
  margin-left:auto;
  margin-right:auto;
}

.cards,
.portfolio-grid,
.work-grid,
.steps-grid{
  display:grid;
  gap:22px;
}

.three-col{
  grid-template-columns:repeat(3,1fr);
}

.card,
.project-card,
.work-card,
.step-card,
.about-card,
.service-block,
.contact-form,
.contact-point{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.card,
.project-card,
.work-card,
.step-card,
.about-card,
.service-block,
.contact-form,
.contact-point,
.hero-panel,
.trust-item{
  transition:transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.project-card:hover,
.work-card:hover,
.step-card:hover,
.about-card:hover,
.service-block:hover,
.contact-point:hover,
.hero-panel:hover,
.trust-item:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(18,18,18,0.11);
  border-color:rgba(201,162,39,0.35);
}

.card h3,
.project-card h3,
.work-card h2,
.step-card h3,
.service-block h2,
.about-card h3,
.contact-info h2,
.about-grid h2{
  font-family:'Outfit',sans-serif;
  color:var(--secondary);
  margin-bottom:12px;
  font-size:1.35rem;
}

.card p,
.project-card p,
.work-card p,
.step-card p,
.service-block p,
.about-card p,
.contact-info p,
.about-grid p{
  color:var(--muted);
}

.portfolio-grid{
  grid-template-columns:repeat(3,1fr);
}

.work-grid{
  grid-template-columns:repeat(2,1fr);
}

.portfolio-grid > *,
.cards > *,
.steps-grid > *,
.work-grid > *{
  position:relative;
}

.portfolio-grid > *::before,
.cards > *::before,
.steps-grid > *::before,
.work-grid > *::before{
  content:"";
  position:absolute;
  top:16px;
  right:16px;
  width:56px;
  height:56px;
  border-radius:16px;
  background:radial-gradient(circle at center, rgba(201,162,39,0.18), rgba(201,162,39,0.04) 58%, transparent 70%);
  pointer-events:none;
}

.project-tag{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(201,162,39,0.12);
  color:var(--gold);
  font-size:0.82rem;
  font-weight:700;
}

.steps-grid{
  grid-template-columns:repeat(4,1fr);
}

.step-card{
  background:rgba(18,18,18,0.04);
  border:1px solid rgba(18,18,18,0.08);
  box-shadow:none;
}

.step-card span{
  display:inline-flex;
  width:46px;
  height:46px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:rgba(201,162,39,0.12);
  color:var(--secondary);
  margin-bottom:14px;
  font-weight:700;
}

.step-card h3,
.step-card p{
  color:var(--secondary);
}

.cta-box{
  background:linear-gradient(135deg,#121212,#3a3a3a);
  color:#fff;
  padding:40px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  position:relative;
  overflow:hidden;
}

.cta-box::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  right:-60px;
  top:-60px;
  background:radial-gradient(circle, rgba(201,162,39,0.28), transparent 70%);
  pointer-events:none;
}

.cta-box::after{
  content:"";
  position:absolute;
  left:32px;
  bottom:24px;
  width:120px;
  height:120px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:24px;
  transform:rotate(18deg);
  pointer-events:none;
}

.cta-box h2{
  font-family:'Outfit',sans-serif;
  font-size:clamp(1.8rem,3vw,2.8rem);
  line-height:1.1;
  margin-bottom:10px;
}

.cta-box p{
  color:#d9d9d9;
  max-width:650px;
}

.inner-hero{
  padding-top:110px;
  padding-bottom:50px;
}

.service-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.about-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.about-card ul li{
  padding:12px 0;
  border-bottom:1px solid var(--border);
  color:var(--muted);
}

.about-card ul li:last-child{
  border-bottom:none;
}

.contact-points{
  display:grid;
  gap:18px;
  margin-top:24px;
}

.contact-point strong{
  display:block;
  margin-bottom:8px;
  color:var(--secondary);
}

.contact-point a{
  color:var(--gold);
  font-weight:600;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 16px;
  outline:none;
  color:var(--text);
  background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(201,162,39,0.12);
}

.full-btn{
  width:100%;
  border:none;
  cursor:pointer;
}

.site-footer{
  background:#121212;
  color:#d9d9d9;
  padding:68px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:30px;
  padding-bottom:28px;
}

.footer-text{
  max-width:360px;
  margin-top:16px;
  color:#b3b3b3;
}

.site-footer h4{
  color:#fff;
  margin-bottom:14px;
  font-size:1rem;
}

.site-footer li{
  margin-bottom:10px;
}

.site-footer a{
  color:#d9d9d9;
}

.site-footer a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:18px;
  color:#b3b3b3;
  font-size:0.95rem;
}

.shape{
  position:absolute;
  pointer-events:none;
  z-index:0;
}

.shape-orb{
  border-radius:50%;
  filter:blur(2px);
}

.shape-orb-one{
  width:90px;
  height:90px;
  top:120px;
  right:8%;
  background:radial-gradient(circle, rgba(201,162,39,0.30), rgba(201,162,39,0.08) 60%, transparent 72%);
}

.shape-orb-two{
  width:140px;
  height:140px;
  bottom:50px;
  left:4%;
  background:radial-gradient(circle, rgba(166,30,42,0.18), rgba(166,30,42,0.04) 60%, transparent 75%);
}

.shape-line-one{
  width:140px;
  height:140px;
  right:18%;
  bottom:30px;
  border:1px solid rgba(201,162,39,0.22);
  border-radius:30px;
  transform:rotate(24deg);
}

.thank-you-section{
  min-height:70vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(201,162,39,0.14), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(166,30,42,0.08), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 60%, #fafafa 100%);
}

.thank-you-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:28px;
  padding:42px;
  text-align:center;
  box-shadow:var(--shadow);
}

.thank-you-card h1{
  font-family:'Outfit',sans-serif;
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1.08;
  color:var(--secondary);
  margin-bottom:18px;
}

.thank-you-text{
  max-width:640px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.05rem;
}

.thank-you-card .hero-actions{
  justify-content:center;
  margin-top:28px;
  margin-bottom:0;
}

body.dark-mode{
  --bg:#121212;
  --surface:#1a1a1a;
  --surface-2:#202020;
  --text:#ffffff;
  --muted:#d9d9d9;
  --border:#3a3a3a;
  --gold:#c9a227;
  --red:#a61e2a;
  --shadow:0 18px 45px rgba(0,0,0,0.28);
  --shadow-soft:0 10px 30px rgba(0,0,0,0.16);
  --primary:#c9a227;
  --primary-dark:#e0ba3d;
  --secondary:#ffffff;
  --dark:#121212;
  --light:#1a1a1a;
  --white:#121212;
  --soft:#202020;
  background:var(--bg);
  color:var(--text);
}

body.dark-mode .site-header{
  background:rgba(18,18,18,0.92);
  border-bottom:1px solid rgba(217,217,217,0.12);
}

body.dark-mode .site-nav a{
  color:#d9d9d9;
}

body.dark-mode .site-nav a:hover,
body.dark-mode .site-nav a.active{
  color:var(--gold);
}

body.dark-mode .btn-secondary{
  background:#202020;
  color:#ffffff;
}

body.dark-mode .trust-item,
body.dark-mode .card,
body.dark-mode .project-card,
body.dark-mode .work-card,
body.dark-mode .step-card,
body.dark-mode .about-card,
body.dark-mode .service-block,
body.dark-mode .contact-form,
body.dark-mode .contact-point{
  background:#1a1a1a;
  border-color:#3a3a3a;
}

body.dark-mode .section-light{
  background:#1a1a1a;
}

body.dark-mode .section-dark{
  background:#121212;
}

body.dark-mode .panel-one,
body.dark-mode .panel-two,
body.dark-mode .panel-three{
  background:linear-gradient(135deg,#202020,#1a1a1a);
}

body.dark-mode .hero{
  background:
    linear-gradient(135deg, rgba(0,0,0,0.70), rgba(0,0,0,0.56)),
    radial-gradient(circle at top left, rgba(201,162,39,0.10), transparent 34%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}

body.dark-mode .hero-content::before{
  background-image:
    linear-gradient(rgba(201,162,39,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.10) 1px, transparent 1px);
}

body.dark-mode .hero h1,
body.dark-mode .inner-hero h1,
body.dark-mode .section-head h2,
body.dark-mode .card h3,
body.dark-mode .project-card h3,
body.dark-mode .work-card h2,
body.dark-mode .step-card h3,
body.dark-mode .service-block h2,
body.dark-mode .about-card h3,
body.dark-mode .about-grid h2,
body.dark-mode .contact-info h2{
  color:#ffffff;
}

body.dark-mode .hero-text,
body.dark-mode .inner-hero p,
body.dark-mode .card p,
body.dark-mode .project-card p,
body.dark-mode .work-card p,
body.dark-mode .step-card p,
body.dark-mode .service-block p,
body.dark-mode .about-card p,
body.dark-mode .section-head p,
body.dark-mode .contact-info p,
body.dark-mode .about-grid p{
  color:#d9d9d9;
}

body.dark-mode .card:hover,
body.dark-mode .project-card:hover,
body.dark-mode .work-card:hover,
body.dark-mode .step-card:hover,
body.dark-mode .about-card:hover,
body.dark-mode .service-block:hover,
body.dark-mode .contact-point:hover,
body.dark-mode .hero-panel:hover,
body.dark-mode .trust-item:hover{
  box-shadow:0 22px 55px rgba(0,0,0,0.28);
  border-color:rgba(201,162,39,0.28);
}

body.dark-mode .portfolio-grid > *::before,
body.dark-mode .cards > *::before,
body.dark-mode .steps-grid > *::before,
body.dark-mode .work-grid > *::before{
  background:radial-gradient(circle at center, rgba(201,162,39,0.14), rgba(201,162,39,0.03) 58%, transparent 70%);
}

body.dark-mode .project-tag{
  background:rgba(201,162,39,0.18);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea{
  background:#1a1a1a;
  color:#ffffff;
  border-color:#3a3a3a;
}

body.dark-mode .footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
}

body.dark-mode .work-hero{
  background:linear-gradient(180deg, rgba(201,162,39,0.06), transparent 70%);
}

body.dark-mode .work-hero h2,
body.dark-mode .work-hero p{
  color:#ffffff;
}

body.dark-mode .studio-panel,
body.dark-mode .work-toolbar,
body.dark-mode .project-card,
body.dark-mode .work-empty{
  background:#1a1a1a;
  border-color:#3a3a3a;
  box-shadow:0 18px 45px rgba(0,0,0,0.24);
}

body.dark-mode .studio-stat{
  background:rgba(201,162,39,0.10);
  border-color:rgba(201,162,39,0.16);
}

body.dark-mode .studio-stat strong,
body.dark-mode .studio-stat span{
  color:#ffffff;
}

body.dark-mode .studio-quote{
  border-top-color:#3a3a3a;
}

body.dark-mode .studio-quote p{
  color:#d9d9d9;
}

body.dark-mode .quote-author{
  color:#b3b3b3;
}

body.dark-mode .quote-btn{
  background:#202020;
  border-color:#3a3a3a;
  color:#ffffff;
}

body.dark-mode .quote-btn:hover{
  border-color:#c9a227;
  color:#c9a227;
}

body.dark-mode .work-search input{
  background:#1a1a1a;
  border-color:#3a3a3a;
  color:#ffffff;
}

body.dark-mode .work-search i{
  color:#b3b3b3;
}

body.dark-mode .work-result-meta{
  color:#d9d9d9;
}

body.dark-mode .work-result-meta span{
  color:#c9a227;
}

body.dark-mode .work-filter-btn{
  background:#1a1a1a;
  border-color:#3a3a3a;
  color:#d9d9d9;
}

body.dark-mode .work-filter-btn:hover:not(.active){
  background:rgba(201,162,39,0.10);
  border-color:rgba(201,162,39,0.24);
  color:#ffffff;
}

body.dark-mode .project-type{
  color:#c9a227;
}

body.dark-mode .project-card-body p{
  color:#d9d9d9;
}

body.dark-mode .project-tag-mini{
  background:#202020;
  border-color:#3a3a3a;
  color:#d9d9d9;
}

body.dark-mode .project-card-footer{
  border-top-color:#3a3a3a;
}

body.dark-mode .project-copy-btn{
  background:#1a1a1a;
  border-color:#3a3a3a;
  color:#ffffff;
}

body.dark-mode .project-copy-btn:hover{
  border-color:#c9a227;
  color:#c9a227;
}

body.dark-mode .work-empty i,
body.dark-mode .work-empty p{
  color:#d9d9d9;
}

body.dark-mode .thank-you-section{
  background:
    radial-gradient(circle at top left, rgba(201,162,39,0.10), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(166,30,42,0.10), transparent 24%),
    linear-gradient(180deg, #141414 0%, #121212 60%, #171717 100%);
}

body.dark-mode .thank-you-card{
  background:#1a1a1a;
  border-color:#3a3a3a;
  box-shadow:0 18px 45px rgba(0,0,0,0.28);
}

body.dark-mode .thank-you-card h1{
  color:#ffffff;
}

body.dark-mode .thank-you-text{
  color:#d9d9d9;
}

body:not(.dark-mode) .section-dark{
  background:var(--light);
  color:var(--secondary);
}

body:not(.dark-mode) .section-dark .light-text h2,
body:not(.dark-mode) .section-dark .light-text p{
  color:var(--secondary);
}

body:not(.dark-mode) .section-dark .eyebrow{
  color:var(--gold);
}

body:not(.dark-mode) .section-dark .step-card{
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}

body:not(.dark-mode) .section-dark .step-card span{
  background:rgba(201,162,39,0.12);
  color:var(--secondary);
}

body:not(.dark-mode) .section-dark .step-card h3,
body:not(.dark-mode) .section-dark .step-card p{
  color:var(--secondary);
}

@media (max-width: 991px){
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-list,
  .three-col,
  .portfolio-grid,
  .work-grid,
  .steps-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 768px){
  .menu-toggle{
    display:block;
  }

  .site-nav{
    position:absolute;
    top:78px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:18px 16px 22px;
    gap:16px;
  }

  body.dark-mode .site-nav{
    background:#121212;
  }

  .site-nav.show{
    display:flex;
  }

  .hero,
  .inner-hero{
    padding-top:80px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-list,
  .three-col,
  .portfolio-grid,
  .work-grid,
  .steps-grid,
  .hero-trust,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .cta-box{
    padding:28px;
  }

  .contact-form{
    padding:22px;
  }

  .footer-brand{
    gap:12px;
  }

  .footer-logo-img{
    width:48px;
    height:48px;
  }

  .footer-brand-text{
    font-size:1.15rem;
  }

  .shape-orb-one{
    width:64px;
    height:64px;
    right:6%;
  }

  .shape-orb-two{
    width:90px;
    height:90px;
  }

  .shape-line-one{
    width:100px;
    height:100px;
    right:10%;
  }

  .thank-you-card{
    padding:28px 22px;
  }
}

.about-founders{
  display:grid;
  gap:20px;
}

.founder-card{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:20px;
  align-items:center;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow-soft);
  transition:transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.founder-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(18,18,18,0.11);
  border-color:rgba(201,162,39,0.35);
}

.founder-photo{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:20px;
  background:#f0f0f0;
}

.founder-role{
  display:inline-block;
  margin-bottom:8px;
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:var(--gold);
  font-weight:700;
}

.founder-body h3{
  font-family:'Outfit',sans-serif;
  color:var(--secondary);
  font-size:1.35rem;
  margin-bottom:10px;
}

.founder-note{
  color:var(--muted);
  margin-bottom:14px;
}

.founder-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:var(--gold);
  color:#fff;
  font-weight:700;
  transition:0.25s ease;
}

.founder-links a:hover{
  background:var(--primary-dark);
}

@media (max-width: 768px){
  .founder-card{
    grid-template-columns:1fr;
  }

  .founder-photo{
    width:100%;
    height:240px;
  }
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--white);
  color:var(--secondary);
  font-weight:700;
  transition:0.25s ease;
}

.social-links a:hover{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
  transform:translateY(-2px);
}

body.dark-mode .social-links a{
  background:#1a1a1a;
  border-color:#3a3a3a;
  color:#ffffff;
}

body.dark-mode .social-links a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
}
