*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #0F1B3C;
    --navy-2:    #1A2F6F;
    --red:       #C8281A;
    --gold:      #C9A84C;
    --white:     #F5F3EE;
    --off-white: #EAE7E0;
    --text:      #3a3a3a;
    --text-dim:  #6a7280;
    --ease:      cubic-bezier(.16,1,.3,1);
    --text-navy: #3a3a3a;
    --text-mid:  #6a7280;
    --navy-dark: #0F1B3C;
    --navy-mid:  #1A2F6F;
    --orange:    #C9A84C;
}

body {
    font-family: 'Barlow', sans-serif;
    color: #3a3a3a !important;
    background: #ffffff !important;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

.section-label {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: .26em; text-transform: uppercase;
    color: var(--red); margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600; color: var(--navy);
    line-height: 1.15; letter-spacing: -.01em;
    margin-bottom: 14px;
}

.section-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 15px; font-weight: 300;
    color: var(--text-dim); line-height: 1.8;
    max-width: 560px;
}

[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.js-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
}
.js-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.btn-primary, .btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer; position: relative; overflow: hidden;
    isolation: isolate; transition: color .35s ease, border-color .35s ease;
}
.btn-primary::before, .btn-outline::before {
    content: ''; position: absolute; inset: 0;
    transform: translateX(-101%);
    transition: transform .35s var(--ease); z-index: -1;
}
.btn-primary:hover::before, .btn-outline:hover::before {
    transform: translateX(0);
}
.btn-primary {
    background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary::before  { background: var(--red); }
.btn-primary:hover    { border-color: var(--red); color: var(--white); }

.btn-outline {
    background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline::before  { background: var(--navy); }
.btn-outline:hover    { color: var(--white); }

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--navy);
    margin-top: calc(-1 * (38px + 100px));
    padding-top: calc(38px + 100px);
}

.hero__slider { position: absolute; inset: 0; }

.hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity .9s ease;
}
.hero__slide--active { opacity: 1; }

.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,18,45,.88) 0%,
        rgba(10,18,45,.6)  55%,
        rgba(10,18,45,.25) 100%
    );
}

.hero__content {
    position: absolute; z-index: 2;
    top: 50%; left: 7%;
    transform: translateY(-50%);
    max-width: 620px;
}

.hero__label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}

.hero__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 76px);
    font-weight: 600; color: var(--white);
    line-height: 1.08; letter-spacing: -.02em;
    margin-bottom: 20px;
}

.hero__sub {
    font-family: 'Barlow', sans-serif;
    font-size: 16px; font-weight: 300;
    color: rgba(245,243,238,.7);
    line-height: 1.75; margin-bottom: 32px; max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    border: 1.5px solid transparent;
    position: relative; overflow: hidden; isolation: isolate;
    transition: color .35s, border-color .35s;
}
.hero__btn::before {
    content: ''; position: absolute; inset: 0;
    transform: translateX(-101%);
    transition: transform .35s var(--ease); z-index: -1;
}
.hero__btn:hover::before { transform: translateX(0); }

.hero__btn--primary {
    background: var(--red); color: var(--white); border-color: var(--red);
}
.hero__btn--primary::before { background: #a01010; }
.hero__btn--primary:hover   { border-color: #a01010; color: var(--white); }

.hero__btn--outline {
    background: transparent; color: var(--white); border-color: rgba(245,243,238,.5);
}
.hero__btn--outline::before { background: rgba(245,243,238,.12); }
.hero__btn--outline:hover   { border-color: var(--white); color: var(--white); }

.hero__arrow {
    position: absolute; top: 50%; z-index: 5;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s;
}
.hero__arrow:hover { background: var(--red); border-color: var(--red); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.hero__dots {
    position: absolute; bottom: 90px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 5;
}
.hero__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.35); border: none; cursor: pointer;
    transition: background .3s, transform .3s;
}
.hero__dot--active {
    background: var(--gold); transform: scale(1.3);
}

.hero__clock {
    position: absolute; bottom: 20px; right: 28px; z-index: 5;
    display: flex; align-items: center; gap: 8px;
}
.hero__clock__label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: .2em;
    color: var(--gold); text-transform: uppercase;
}
.hero__clock__time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    color: rgba(245,243,238,.7); letter-spacing: .06em;
}


.services-strip { padding: 90px 0; background: var(--off-white); }
.services-strip__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.services-strip__head { margin-bottom: 52px; }
.services-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.services-strip__cta { margin-top: 40px; text-align: center; }

.svc-card {
    background: #fff; padding: 36px 30px;
    display: flex; flex-direction: column; gap: 14px;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.svc-card:hover {
    border-bottom-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15,27,60,.08);
}
.svc-card--highlight { background: var(--navy); }
.svc-card--highlight .svc-card__icon,
.svc-card--highlight .svc-card__title,
.svc-card--highlight .svc-card__desc { color: var(--white); }
.svc-card--highlight:hover { border-bottom-color: var(--gold); }

.svc-card__icon { color: var(--red); }
.svc-card--highlight .svc-card__icon { color: var(--gold); }
.svc-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--navy);
}
.svc-card__desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px; font-weight: 300;
    color: var(--text-dim); line-height: 1.7;
}

.featured-products { padding: 90px 0; background: #fff; }
.featured-products__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.featured-products__head { margin-bottom: 52px; }
.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}
.featured-products__cta { margin-top: 40px; text-align: center; }

.prod-card {
    background: var(--off-white);
    display: flex; flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s;
}
.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(15,27,60,.1);
}
.prod-card__img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3; background: #e8e5de;
}
.prod-card__img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
}
.prod-card:hover .prod-card__img-wrap img { transform: scale(1.05); }

.prod-card__badge {
    position: absolute; top: 10px; left: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    padding: 3px 9px;
}
.prod-card__badge--iod { background: var(--navy); color: var(--gold); }

.prod-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.prod-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; color: var(--navy);
    margin-bottom: 6px; line-height: 1.2;
}
.prod-card__desc {
    font-size: 13px; font-weight: 300;
    color: var(--text-dim); line-height: 1.65; margin-bottom: 14px;
}
.prod-card__footer {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding-top: 12px; border-top: 1px solid rgba(0,0,0,.07);
}
.prod-card__price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--navy);
}
.prod-card__was {
    font-size: 13px; color: #aaa; text-decoration: line-through;
}
.prod-card__cta {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--red); border-bottom: 1px solid var(--red);
    transition: opacity .2s;
}
.prod-card:hover .prod-card__cta { opacity: .7; }

.process { padding: 90px 0; background: var(--navy); }
.process__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.process__head { margin-bottom: 52px; }
.process__head .section-title { color: var(--white); }
.process__head .section-label { color: var(--gold); }

.process__steps {
    display: flex; align-items: flex-start; gap: 0;
}
.process__step {
    flex: 1; padding: 0 24px;
}
.process__step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; font-weight: 700;
    color: var(--gold); opacity: .35;
    line-height: 1; margin-bottom: 14px;
}
.process__step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    color: var(--white); margin-bottom: 10px;
}
.process__step-desc {
    font-size: 14px; font-weight: 300;
    color: rgba(245,243,238,.55); line-height: 1.75;
}
.process__connector {
    width: 60px; flex-shrink: 0;
    height: 1px; background: rgba(201,168,76,.25);
    margin-top: 28px;
}

.testimonials { padding: 90px 0; background: var(--off-white); }
.testimonials__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.testimonials__head { margin-bottom: 52px; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.testi-card {
    background: #fff; padding: 32px;
    display: flex; flex-direction: column; gap: 12px;
    border-top: 3px solid transparent;
    transition: border-color .3s, transform .3s var(--ease);
}
.testi-card:hover { border-top-color: var(--gold); transform: translateY(-3px); }

.testi-card__stars { display: flex; gap: 3px; }
.testi-card__star  { color: #ddd; }
.testi-card__star--on { color: var(--gold); }

.testi-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600; color: var(--navy);
}
.testi-card__body {
    font-size: 14px; font-weight: 300;
    color: var(--text-dim); line-height: 1.75; flex: 1;
    font-style: italic;
}
.testi-card__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px; border-top: 1px solid var(--off-white);
}
.testi-card__avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testi-card__name {
    display: block; font-size: 14px; font-weight: 500; color: var(--navy);
}
.testi-card__company {
    display: block; font-size: 12px; color: var(--text-dim);
}

.home-cta {
    padding: 90px 40px; text-align: center;
    background: var(--red);
}
.home-cta__inner { max-width: 600px; margin: 0 auto; }
.home-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px); font-weight: 600;
    color: var(--white); margin-bottom: 14px;
}
.home-cta p {
    font-size: 15px; font-weight: 300;
    color: rgba(245,243,238,.75); line-height: 1.75; margin-bottom: 32px;
}
.home-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .featured-products__grid { grid-template-columns: repeat(2, 1fr); }
    .services-strip__grid    { grid-template-columns: repeat(2, 1fr); }
    .process__steps          { flex-wrap: wrap; gap: 32px; }
    .process__connector      { display: none; }
    .process__step           { flex: 0 0 calc(50% - 16px); }
}

@media (max-width: 768px) {
    .hero__content { left: 5%; right: 5%; max-width: 100%; }
    .hero__arrow   { display: none; }

    .services-strip__inner,
    .featured-products__inner,
    .process__inner,
    .testimonials__inner { padding: 0 20px; }

    .services-strip__grid    { grid-template-columns: 1fr; }
    .featured-products__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid      { grid-template-columns: 1fr; }
    .process__step           { flex: 0 0 100%; }
}

@media (max-width: 480px) {
    .featured-products__grid { grid-template-columns: 1fr; }
    .hero__dots { bottom: 120px; }
    .home-cta   { padding: 60px 20px; }
}