:root {
    --cream: #F5F0E8;
    --cream-dark: #EDE7D9;
    --warm-brown: #5C4A32;
    --charcoal: #1A1410;
    --purple: #4B0082;
    --gold: #B8903A;
    --gold-light: #D4AA5A;
    --text-main: #1A1410;
    --text-muted: #6B5A44;
    --white: #FEFCF8;
    --border: rgba(92, 74, 50, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.7;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 24px;
    height: 100px;
    background: transparent;
    transition: background .35s, box-shadow .35s;
}

nav.scrolled {
    background: rgba(254, 252, 248, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: filter .35s;
}

/* nav.scrolled .nav-logo img {
    filter: brightness(0);
} */

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-weight: 400;
    padding: 16px 28px;
    border-radius: 6px;
    transition: all .2s;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

nav.scrolled .nav-links a {
    color: var(--text-muted);
    text-shadow: none;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, .18);
}

nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active {
    background: var(--cream-dark);
    color: var(--warm-brown);
}

.nav-cta {
    background: var(--purple) !important;
    color: #fff !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    padding: 16px 28px !important;
    text-shadow: none !important;
}

.nav-cta:hover {
    background: #33005a !important;
}

/* HERO */
.hero {
    height: 100vh;
    width: 100%;
    background: url('banner.jpg') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s;
    border: none;
    background: none;
    font-family: 'Outfit', sans-serif;
}

.hero-scroll:hover {
    color: rgba(255, 255, 255, .9);
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
    transform: translateY(0)
    }

    50% {
    transform: translateY(6px)
    }
}

/* SUB HERO */
.sub-hero {
    height: 62vh;
    min-height: 400px;
    width: 100%;
    background: url('./logoless_banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 8, 2, .55);
}

.sub-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 32px;
}

.sub-hero-content .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.sub-hero-content h1 {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.5px;
}

.sub-hero-content p {
    margin-top: 18px;
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* CONTACT HERO */
.contact-hero {
    min-height: 100vh;
    width: 100%;
    background: url('./logoless_banner.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 60px 80px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 8, 2, .6);
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-hero-left h1 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 16px;
}

.contact-hero-left .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.contact-hero-left p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
}

.c-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.glass-form {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(14px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    padding: 11px 13px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    outline: none;
    transition: border-color .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, .38);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .15);
}

.form-group select option {
    background: #1a0d06;
    color: #fff;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-submit {
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
    margin-top: 4px;
}

.form-submit:hover {
    background: #33005a;
}

/* SECTIONS */
.section {
    padding: 88px 80px;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--charcoal);
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 44px;
}

/* SERVICE CARDS (home) */
.services-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.svc-card {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}

.svc-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--purple);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .22s;
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(92, 74, 50, .12);
    border-color: rgba(75, 0, 130, .25);
}

.svc-card:hover::after {
    transform: scaleY(1);
}

.svc-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.svc-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.svc-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.svc-arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--purple);
    flex-shrink: 0;
}

/* CAROUSEL */
.carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--cream-dark);
}

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 440px;
    flex-shrink: 0;
    background: var(--cream-dark);
    border: 1.5px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: 12px;
}

.carousel-slide svg {
    opacity: .35;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .2s;
    color: var(--charcoal);
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
}

.carousel-prev {
    left: 14px;
}

.carousel-next {
    right: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all .2s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--purple);
    transform: scale(1.2);
}

/* SERVICE DETAIL */
.svc-detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.svc-detail-left h2 {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.12;
    letter-spacing: -.4px;
    margin-bottom: 10px;
}

.svc-detail-left .lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 28px;
}

.highlight-box {
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 0 0 24px;
}

.highlight-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.highlight-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.75;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 28px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--text-muted);
}

.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
}

.svc-detail-right {
    position: sticky;
    top: 100px;
}

.img-placeholder {
    background: var(--cream-dark);
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.img-placeholder svg {
    opacity: .35;
}

/* PROCESS */
.process-steps {
    display: flex;
    flex-direction: column;
    max-width: 660px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
}

.step-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.testi-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 28px;
}

.testi-card p {
    font-size: 14px;
    color: rgba(245, 240, 232, .8);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testi-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
}

.stars {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* TWO COL */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-purple {
    background: var(--purple);
    color: #fff;
}

.btn-purple:hover {
    background: #33005a;
}

.btn-outline-white {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .24);
}

.btn-brown {
    background: var(--warm-brown);
    color: #fff;
}

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

/* FOOTER */
footer {
    background: var(--charcoal);
    color: rgba(245, 240, 232, .6);
    padding: 44px 80px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -.3px;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(245, 240, 232, .45);
    font-style: italic;
    margin-top: 3px;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

footer a {
    color: rgba(245, 240, 232, .6);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}

footer a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, .7);
    text-decoration: none;
    transition: all .2s;
}

.social-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff !important;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

@media(max-width:1000px) {
    .svc-detail-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    }

    .svc-detail-right {
    position: static;
    }
}

@media(max-width:900px) {
    nav {
    padding: 0 20px;
    }

    .nav-links {
    display: none;
    }

    .hero {
    height: 70vh;
    }

    .section {
    padding: 56px 24px;
    }

    .two-col,
    .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    }

    .services-compact {
    grid-template-columns: 1fr 1fr;
    }

    .form-row {
    grid-template-columns: 1fr;
    }

    footer {
    padding: 36px 24px;
    }

    .service-list {
    grid-template-columns: 1fr;
    }

    .contact-hero {
    padding: 90px 24px 60px;
    }
}

@media(max-width:560px) {
    .services-compact {
    grid-template-columns: 1fr;
    }
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1c1c1c;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}