*{margin:0;padding:0;box-sizing:border-box}
:root{
  --accent:#ff6901;
  --bg:#0d1117;
  --surface:#161c26;
  --surface2:#1e2635;
  --text:#f0f2f5;
  --muted:#8892a4;
  --border:rgba(136,146,164,0.2);
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:'Inter',sans-serif;font-size:1rem;line-height:1.6;overflow-x:hidden}
h1,.hero-title{font-family:'Inter Display',sans-serif;font-size:4rem;font-weight:700;letter-spacing:-2.5px;line-height:1.05}
h2,.section-title{font-family:'Inter Display',sans-serif;font-size:2.5rem;font-weight:700;letter-spacing:-1px;line-height:1.15}
h3{font-family:'Inter Display',sans-serif;font-size:1.75rem;font-weight:600;letter-spacing:-0.5px;line-height:1.2}
h4,.stat-num{font-family:'Inter Display',sans-serif;font-size:1.125rem;font-weight:600;letter-spacing:-0.3px;line-height:1.2}
p,li,a{font-family:'Inter',sans-serif;font-size:1rem}

/* CONTAINER */
.container{width:calc(min(100%,1400px) - 3rem * 2);margin-left:auto;margin-right:auto}
@media(max-width:1024px){.container{width:calc(min(100%,1400px) - 2rem * 2)}}
@media(max-width:768px){.container{width:calc(100% - 1rem * 2)}}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(13,17,23,0.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid transparent;border-radius:0;padding:0 max(3rem, calc((100% - 1400px) / 2));height:3.625rem;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;transition:top .35s ease,left .35s ease,right .35s ease,padding .35s ease,height .35s ease,border-radius .35s ease,box-shadow .35s ease,background .35s ease,border-color .35s ease}
nav.floating{top:0.875rem;left:max(3rem, calc((100% - 1400px) / 2));right:max(3rem, calc((100% - 1400px) / 2));height:auto;padding:0.625rem 0.875rem;border-radius:999px;border-color:var(--border);box-shadow:0 0.5rem 2rem rgba(0,0,0,0.45);background:rgba(13,17,23,0.92)}
.nav-logo{justify-self:start;text-decoration:none;display:flex;align-items:center}
.nav-logo-img{height:1.5rem;width:auto;display:block}
.nav-links{display:flex;gap:1.75rem;list-style:none;justify-self:center}
.nav-links a{color:var(--muted);text-decoration:none;font-size:1rem;transition:color 0.35s ease-out}
.nav-links a:hover{color:var(--text)}
.nav-cta{background:var(--accent);color:var(--bg);border:1px solid transparent;padding:0.375rem 1rem;border-radius:999px;font-size:1rem;font-weight:600;cursor:pointer;text-decoration:none;transition:opacity 0.35s ease-out;justify-self:end}
.nav-cta:hover{opacity:.85}
@media(max-width:1024px){nav{padding:0 2rem;grid-template-columns:1fr auto}nav.floating{left:2rem;right:2rem;padding:0.625rem 0.875rem}}
@media(max-width:768px){nav{padding:0 1rem}nav.floating{left:1rem;right:1rem}}

/* HERO */
.hero{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:7.5rem max(3rem, calc((100% - 1400px) / 2)) 5rem;position:relative}
@media(max-width:1024px){.hero{padding:7.5rem 2rem 5rem}}
@media(max-width:768px){.hero{padding:6.25rem 1rem 3.75rem}}
#heroCanvas{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:0}
.hero>*:not(#heroCanvas){position:relative;z-index:1}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;background:rgba(255,105,1,0.12);border:1px solid rgba(255,105,1,0.25);border-radius:999px;padding:0.375rem 1rem;font-size:1rem;color:var(--accent);margin-bottom:2rem}
.hero-dot{width:0.375rem;height:0.375rem;background:var(--accent);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.hero-title{margin-bottom:1.5rem}
.hero-title .accent{color:var(--accent)}
.hero-sub{font-size:1rem;color:var(--muted);max-width:36.25rem;margin:0 auto 2.75rem;line-height:1.7}
.hero-btns{display:flex;gap:0.875rem;flex-wrap:wrap;justify-content:center}
.btn-primary{background:var(--accent);color:var(--bg);border:1px solid transparent;padding:0.375rem 1rem;border-radius:999px;font-size:1rem;font-weight:600;cursor:pointer;text-decoration:none;transition:transform 0.35s ease-out,opacity 0.35s ease-out;display:inline-block}
.btn-primary:hover{transform:translateY(-1px);opacity:.9}
.btn-ghost{background:transparent;color:var(--text);border:1px solid var(--border);padding:0.375rem 1rem;border-radius:999px;font-size:1rem;font-weight:500;cursor:pointer;text-decoration:none;transition:background 0.35s ease-out,border-color 0.35s ease-out,color 0.35s ease-out;display:inline-block}
.btn-ghost:hover{background:var(--surface);border-color:rgba(136,146,164,0.4)}
.hero-scroll{position:absolute;bottom:2.25rem;left:50%;transform:translateX(-50%);width:1px;height:3rem;background:linear-gradient(to bottom,var(--accent),transparent);animation:scrollAnim 2s ease-in-out infinite}
@keyframes scrollAnim{0%{opacity:1}100%{opacity:0;transform:translateX(-50%) translateY(1rem)}}

/* SECTIONS */
section{padding:5rem max(3rem, calc((100% - 1400px) / 2))}
@media(max-width:1024px){section{padding:2.5rem 2rem}}
@media(max-width:768px){section{padding:2.5rem 1rem}}
.section-label{font-family:'Inter Display',sans-serif;font-size:1.125rem;font-weight:600;letter-spacing:-0.3px;color:var(--accent);margin-bottom:0.5rem}
.section-title{margin-bottom:0.875rem}
.section-sub{color:var(--muted);font-size:1rem;max-width:31.25rem;line-height:1.7}
.section-head{margin-bottom:3.25rem}
.fade-in{opacity:0;transform:translateY(1.25rem);transition:opacity .65s ease,transform .65s ease}
.fade-in.visible{opacity:1;transform:none}

/* SERVICES */
#services{background:var(--surface)}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(18.75rem,1fr));gap:0.5rem}
.svc-card{background:var(--bg);border:1px solid var(--border);border-radius:1rem;padding:2rem;transition:border-color 0.35s ease-out,transform 0.35s ease-out;display:block}
.svc-card:hover{border-color:rgba(255,105,1,0.35);transform:translateY(-3px)}
.svc-card:hover .svc-tag{color:var(--accent);background:rgba(255,105,1,0.08);border-color:rgba(255,105,1,0.3)}
.svc-card:hover .svc-tag:nth-child(1){transition-delay:0ms}
.svc-card:hover .svc-tag:nth-child(2){transition-delay:150ms}
.svc-card:hover .svc-tag:nth-child(3){transition-delay:300ms}
.svc-card:hover .svc-tag:nth-child(4){transition-delay:450ms}
.svc-icon{width:2.75rem;height:2.75rem;background:rgba(255,105,1,0.12);border-radius:1rem;display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:1.25rem}
.svc-card h3{margin-bottom:0.625rem;color:var(--text)}
.svc-card p{font-size:1rem;color:var(--muted);line-height:1.7;margin-bottom:1.25rem}
.svc-tags{display:flex;flex-wrap:wrap;gap:0.5rem}
.svc-tag{font-size:0.875rem;color:var(--muted);background:rgba(136,146,164,0.08);border:1px solid rgba(136,146,164,0.2);border-radius:999px;padding:0.25rem 0.875rem;transition:color 0.35s ease-out,background 0.35s ease-out,border-color 0.35s ease-out}

/* STATS */
.stats-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.5rem}
.stat-card{background:var(--surface);border:1px solid var(--border);border-radius:1rem;padding:1.75rem 1.25rem;text-align:center}
.stat-num{font-size:2.5rem;font-weight:700;letter-spacing:-1px;line-height:1;color:var(--accent);display:flex;align-items:baseline;justify-content:center;gap:0.25rem}
.stat-suffix{font-size:1.75rem;font-weight:600;color:var(--accent)}
.stat-label{font-size:1rem;color:var(--muted);margin-top:0.5rem;line-height:1.4}
@media(max-width:600px){.stats-grid{grid-template-columns:1fr}}

/* PORTFOLIO */
#portfolio{background:var(--surface)}
.portfolio-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(18.75rem,1fr));gap:0.5rem;margin-bottom:2.25rem}
.proj-card{background:var(--bg);border:1px solid var(--border);border-radius:1rem;overflow:hidden;transition:transform 0.35s ease-out,border-color 0.35s ease-out;text-decoration:none;display:block}
.proj-card:hover{transform:translateY(-4px);border-color:rgba(255,105,1,0.3)}
.proj-card:hover .svc-tag{color:var(--accent);background:rgba(255,105,1,0.08);border-color:rgba(255,105,1,0.3)}
.proj-thumb{height:24rem;position:relative;overflow:hidden}
.proj-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.proj-thumb::after{content:'';position:absolute;inset:0;background:linear-gradient(to top right,rgba(13,17,23,0.85) 0%,rgba(13,17,23,0) 60%);z-index:1;transition:opacity 0.35s ease-out}
.proj-card:hover .proj-thumb::after{opacity:0.35}
.proj-overlay{position:absolute;bottom:0;left:0;right:0;padding:3.25rem 1.375rem 1.375rem;z-index:2;display:flex;flex-direction:column;align-items:flex-start;gap:0;background:linear-gradient(to top,var(--bg) 0%,transparent 100%)}
.proj-overlay h3{color:var(--text);margin-bottom:0}
.portfolio-cta{text-align:center}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:0.625rem}
.faq-item{border:1px solid var(--border);border-radius:1rem;padding:0 1.375rem;transition:border-color 0.35s ease-out}
.faq-item.open{border-color:rgba(255,105,1,0.3)}
.faq-q{width:100%;background:none;border:none;color:var(--text);font-family:'Inter',sans-serif;font-size:1rem;font-weight:500;text-align:left;padding:1.25rem 0;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq-icon{width:1.625rem;height:1.625rem;border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--muted);font-size:1.25rem;line-height:1;transition:transform .4s cubic-bezier(.4,0,.2,1),color 0.35s ease-out,border-color 0.35s ease-out}
.faq-item.open .faq-icon{transform:rotate(45deg);color:var(--accent);border-color:rgba(255,105,1,0.3)}
.faq-a{overflow:hidden;max-height:0;transition:max-height 0.4s ease-in-out}
.faq-a-inner{padding:0.5rem 0 1.25rem;line-height:1.8}

/* TESTIMONIALS */
#testimonials{background:var(--surface)}
.testi-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2rem}
.testi-nav{display:flex;gap:0.5rem}
.testi-btn{width:3rem;height:3rem;border-radius:1rem;background:var(--bg);border:1px solid var(--border);color:var(--text);font-size:1.125rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:border-color 0.35s ease-out,background 0.35s ease-out;line-height:1;flex-shrink:0}
.testi-btn:hover{border-color:rgba(255,105,1,0.4);background:var(--bg)}
.testi-btn:disabled{opacity:.3;cursor:default}
.testi-track-wrap{overflow:hidden;border-radius:1rem;cursor:grab;user-select:none}
.testi-track-wrap.dragging{cursor:grabbing}
.testi-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1)}
.testi-card{background:var(--bg);border:1px solid var(--border);border-radius:1rem;padding:1.75rem;display:flex;flex-direction:column;gap:1rem;min-width:100%;box-sizing:border-box}
.testi-stars{color:var(--accent);font-size:1rem;letter-spacing:0.125rem}
.testi-text{flex:1;line-height:1.8;color:var(--muted)}
.testi-author{display:flex;align-items:center;gap:0.75rem}
.testi-avatar{width:2.75rem;height:2.75rem;border-radius:50%;background:rgba(255,105,1,0.15);display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:600;color:var(--accent);flex-shrink:0;overflow:hidden}
.testi-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.testi-author h4{color:var(--text)}
.text{font-size:1rem;color:var(--muted);margin:0;line-height:1.4}
.testi-dots{display:flex;gap:0.375rem;margin-top:1.25rem;justify-content:center}
.testi-dot{width:0.375rem;height:0.375rem;border-radius:50%;background:var(--border);transition:background .3s,width .3s}
.testi-dot.active{background:var(--accent);width:1.25rem;border-radius:0.25rem}

/* CONTACT */
.contact-inner{max-width:37.5rem;margin:0 auto;text-align:center}
.contact-inner .section-sub{margin:0 auto 2.5rem}
.contact-links{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:0.5rem;margin-top:2rem}
.contact-socials{display:flex;gap:0.5rem;flex-wrap:wrap}
.contact-btn{display:flex;align-items:center;gap:0.5rem;background:var(--surface);border:1px solid var(--border);border-radius:999px;padding:0.5rem 1.125rem;font-size:1rem;color:var(--muted);text-decoration:none;transition:border-color 0.35s ease-out,color 0.35s ease-out}
.contact-btn:hover{border-color:rgba(255,105,1,0.4);color:var(--accent)}
.contact-btn svg{width:1rem;height:1rem;fill:var(--accent);flex-shrink:0}

/* BOOKING WIDGET */
/* BOOKING WIDGET */
.booking-widget{width:100%;background:var(--surface);border:1px solid var(--border);border-radius:1rem;padding:0;box-sizing:border-box;margin-top:2rem;overflow:hidden}
.booking-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.booking-label{font-family:'Inter Display',sans-serif;font-size:1rem;font-weight:600;color:var(--text);margin:0 0 1rem;letter-spacing:-0.3px}

/* Left info column */
.booking-info{padding:1.75rem 1.5rem;position:relative;display:flex;flex-direction:column;gap:0.75rem}
.booking-info::after{content:'';position:absolute;right:0;top:0;bottom:0;width:1px;background:var(--border)}
.booking-info-org{font-size:0.875rem;color:var(--muted);margin:0}
.booking-info-title{font-family:'Inter Display',sans-serif;font-size:1.25rem;font-weight:600;color:var(--text);letter-spacing:-0.3px;margin:0}
.booking-info-meta{display:flex;flex-direction:column;align-items:flex-start;gap:0.5rem;margin-top:0.5rem}
.booking-tag{display:inline-flex;align-items:center;gap:0.4rem;background:rgba(136,146,164,0.08);border:1px solid rgba(136,146,164,0.2)}
.booking-tag svg{width:0.8125rem;height:0.8125rem;stroke:currentColor;flex-shrink:0}

/* Middle calendar column */
.booking-cal{padding:1.75rem 1.5rem;position:relative}
.booking-cal::after{content:'';position:absolute;right:0;top:0;bottom:0;width:1px;background:var(--border)}
.cal-nav{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem}
.cal-nav-btn{background:rgba(136,146,164,0.08);border:1px solid rgba(136,146,164,0.2);border-radius:999px;width:2rem;height:2rem;display:flex;align-items:center;justify-content:center;color:var(--muted);cursor:pointer;transition:color 0.35s ease-out,background 0.35s ease-out,border-color 0.35s ease-out;font-size:1rem;line-height:1}
.cal-nav-btn:hover{border-color:var(--accent);color:var(--accent)}
.cal-nav-btn:disabled{opacity:0.3;cursor:default;pointer-events:none}
.cal-month{font-family:'Inter Display',sans-serif;font-size:1rem;font-weight:600;color:var(--text)}
.cal-weekdays{display:grid;grid-template-columns:repeat(7,1fr);gap:2px;margin-bottom:0.25rem}
.cal-weekdays span{text-align:center;font-size:0.75rem;color:var(--muted);font-weight:500;height:2rem;display:flex;align-items:center;justify-content:center}
.cal-days{display:grid;grid-template-columns:repeat(7,1fr);grid-auto-rows:2.25rem;gap:2px}
.cal-day{width:100%;height:100%;display:flex;align-items:center;justify-content:center;border-radius:0.5rem;font-size:0.875rem;cursor:pointer;color:var(--text);transition:background 0.2s ease-out,color 0.2s ease-out;border:none;background:transparent;font-family:'Inter',sans-serif}
.cal-day:focus{outline:none}
.cal-day:hover:not(.cal-disabled):not(.cal-empty):not(.cal-selected){background:var(--bg)}
.cal-day.cal-selected{background:var(--accent);color:var(--text)}
.cal-day.cal-today:not(.cal-selected){position:relative}
.cal-day.cal-today:not(.cal-selected)::after{content:'';position:absolute;bottom:3px;left:50%;transform:translateX(-50%);width:4px;height:4px;border-radius:50%;background:var(--accent)}
.cal-day.cal-disabled{color:var(--border);cursor:default;pointer-events:none}
.cal-day.cal-empty{pointer-events:none}

/* Right slots/form column */
.booking-right{padding:1.75rem 1.5rem;display:flex;flex-direction:column}
.booking-placeholder{display:flex;align-items:center;justify-content:center;flex:1;min-height:10rem}
.booking-slots{display:grid;grid-template-columns:1fr 1fr;gap:0.5rem}
.slot-btn{width:100%;padding:0.25rem 0.875rem;background:rgba(136,146,164,0.08);border:1px solid rgba(136,146,164,0.2);border-radius:999px;color:var(--muted);font-size:0.875rem;cursor:pointer;transition:color 0.35s ease-out,background 0.35s ease-out,border-color 0.35s ease-out;font-family:'Inter',sans-serif}
.slot-btn:hover:not(:disabled){border-color:var(--accent);color:var(--accent)}
.slot-btn.slot-booked{opacity:0.35;cursor:not-allowed;text-decoration:line-through}
.form-field{display:flex;flex-direction:column;gap:0.375rem;margin-bottom:0.875rem}
.form-label{font-size:0.875rem;color:var(--muted);font-weight:500}
.form-input{background:var(--bg);border:1px solid var(--border);border-radius:0.5rem;padding:0.625rem 0.875rem;color:var(--text);font-size:1rem;font-family:'Inter',sans-serif;transition:border-color 0.35s ease-out;outline:none;width:100%;box-sizing:border-box}
.form-input:focus{border-color:var(--accent)}
.form-textarea{min-height:5.5rem;resize:vertical}
.booking-form-btns{display:flex;gap:0.75rem;margin-top:0.25rem;flex-wrap:wrap}
.booking-confirm{text-align:center;padding:2rem 1rem;display:flex;flex-direction:column;align-items:center;gap:0.75rem}
.booking-confirm-icon{width:3rem;height:3rem;background:var(--bg);border:1px solid var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.125rem;color:var(--accent)}
.booking-confirm h4{margin:0}
.hidden{display:none!important}
@media(max-width:1024px){
  .booking-grid{grid-template-columns:1fr 1fr}
  .booking-info{grid-column:1/-1;border-bottom:1px solid var(--border);flex-direction:row;flex-wrap:wrap;gap:1.25rem;align-items:flex-start}
  .booking-info::after{display:none}
  .booking-info-meta{flex-direction:row;flex-wrap:wrap;gap:0.75rem;margin-top:0}
  .booking-cal::after{content:'';position:absolute;right:0;top:0;bottom:0;width:1px;background:var(--border)}
}
@media(max-width:768px){
  .booking-grid{grid-template-columns:1fr}
  .booking-info{flex-direction:column;gap:0.75rem}
  .booking-info-meta{flex-direction:column}
  .booking-cal{border-bottom:1px solid var(--border)}
  .booking-cal::after{display:none}
  .booking-right{border-top:none}
}

/* FOOTER */
footer{border-top:1px solid var(--border);padding:1.75rem max(3rem, calc((100% - 1400px) / 2));display:grid;grid-template-columns:1fr auto 1fr;align-items:center;font-size:1rem;color:var(--muted)}
.footer-icons{display:flex;gap:0.5rem;justify-content:center}
.footer-icon-btn{display:flex;align-items:center;justify-content:center;width:2.125rem;height:2.125rem;border-radius:999px;border:1px solid var(--border);background:transparent;color:var(--muted);transition:border-color 0.35s ease-out,color 0.35s ease-out}
.footer-icon-btn:hover{border-color:rgba(255,105,1,0.4);color:var(--accent)}
.footer-icon-btn svg{width:0.9375rem;height:0.9375rem;fill:currentColor;flex-shrink:0}
.footer-copy{color:var(--muted);font-size:1rem;justify-self:end}

/* HAMBURGER */
.nav-hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:0.25rem;justify-self:end}
.nav-hamburger span{display:block;width:1.375rem;height:2px;background:var(--text);border-radius:999px;transition:transform 0.35s ease-out,opacity 0.35s ease-out}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* MOBILE MENU */
.nav-mobile-menu{position:fixed;inset:0;z-index:99;background:var(--bg);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2.5rem;opacity:0;pointer-events:none;transition:opacity 0.35s ease-out}
.nav-mobile-menu.open{opacity:1;pointer-events:all}
.mobile-links{list-style:none;display:flex;flex-direction:column;align-items:center;gap:2rem}
.mobile-links a{font-family:'Inter Display',sans-serif;font-size:2rem;font-weight:600;color:var(--muted);text-decoration:none;transition:color 0.35s ease-out;letter-spacing:-0.5px}
.mobile-links a:hover{color:var(--text)}
.nav-mobile-menu .btn-primary{font-size:1.25rem;padding:0.625rem 1.75rem}

/* PORTFOLIO PAGE */
.port-hero{min-height:50vh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:6rem max(3rem, calc((100% - 1400px) / 2)) 4rem;text-align:center;background:var(--bg)}
.port-hero .hero-sub{margin:1rem auto 0}
.port-grid{grid-template-columns:repeat(3,1fr)}
.proj-ph{background:var(--bg)}
.proj-ph::before{content:attr(data-letter);position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:'Inter Display',sans-serif;font-size:6rem;font-weight:700;color:rgba(255,105,1,0.12);z-index:0;letter-spacing:-4px}
.proj-status{position:absolute;top:1rem;right:1rem;z-index:3;display:inline-flex;align-items:center;gap:0.375rem;border-radius:999px;padding:0.25rem 0.875rem;font-size:0.875rem;font-weight:500}
.proj-status--live{background:rgba(255,105,1,0.12);border:1px solid rgba(255,105,1,0.25);color:var(--accent)}
.proj-status--dev{background:rgba(136,146,164,0.12);border:1px solid rgba(136,146,164,0.25);color:var(--muted)}
.proj-status--dev .hero-dot{background:var(--muted);animation:none}
.proj-overlay h4{color:var(--text)}
@media(max-width:1024px){.port-grid{grid-template-columns:repeat(2,1fr)}.port-hero{padding:5rem 2rem 3rem}}
@media(max-width:600px){.port-grid{grid-template-columns:1fr}.port-hero{padding:4rem 1rem 2.5rem}}

/* RESPONSIVE */
@media(max-width:1024px){
  footer{padding:1.75rem 2rem}
  .nav-links{display:none}
  .nav-cta{display:none}
  .nav-hamburger{display:flex}
}
@media(max-width:768px){
  .testi-header{flex-direction:column;align-items:flex-start;gap:1.25rem}
  footer{display:flex;flex-direction:column;gap:1rem;align-items:center;padding:1.75rem 1rem;text-align:center}
  .footer-copy{justify-self:unset}
}
