:root {
    --plum: #4A1D52;
    --plum-deep: #2E0F35;
    --magenta: #BE1A7E;
    --lime: #9FC91C;
    --ink: #1C1418;
    --paper: #FFFFFF;
    --mist: #F7F3F6;
    --rule: rgba(74, 29, 82, .14);
    --maxw: 1320px;
    --pad: 56px;
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Newsreader', Georgia, serif;
    font-size: 17.5px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

h1,
h2,
h3,
.disp,
.eyebrow,
.btn,
nav a,
.stat-num,
.step-num {
    font-family: 'Jost', sans-serif
}

h1 {
    font-weight: 300;
    font-size: clamp(46px, 4.6vw, 70px);
    line-height: 1.06;
    letter-spacing: -.02em
}

h2 {
    font-weight: 300;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.14;
    letter-spacing: 0;
    text-transform: lowercase
}

h3 {
    font-weight: 400;
    font-size: 23px;
    line-height: 1.3;
    letter-spacing: .01em
}

.eyebrow {
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--magenta);
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 10px;
    background: var(--lime);
    flex: none;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.lead {
    font-size: 21px;
    line-height: 1.62;
    font-weight: 300
}

p {
    color: var(--ink)
}

p+p {
    margin-top: 1.15em
}

.btn {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 17px 34px;
    border-radius: 2px;
    transition: background .25s ease;
}

.btn:hover {
    background: var(--plum)
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff
}

.btn-ghost:hover {
    background: #fff;
    color: var(--plum);
    border-color: #fff
}

.arrow {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--plum);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 5px;
    transition: gap .25s ease, color .25s ease;
}

.arrow:hover {
    gap: 18px;
    color: var(--magenta)
}

/* ---------- nav ---------- */
nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 30px var(--pad);
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none
}

.hex {
    width: 30px;
    height: 33px;
    background: #fff;
    flex: none;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex i {
    width: 14px;
    height: 15px;
    background: var(--magenta);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.logo-txt {
    font-family: 'Jost', sans-serif;
    color: #fff;
    line-height: 1.1
}

.logo-txt b {
    display: block;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .19em
}

.logo-txt span {
    display: block;
    font-size: 8.5px;
    letter-spacing: .34em;
    color: var(--lime);
    margin-top: 3px
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 34px
}

nav a.nl {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease;
}

nav a.nl:hover {
    border-color: var(--lime)
}

nav .btn {
    padding: 13px 26px;
    font-size: 11.5px
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    display: flex;
    align-items: flex-end
}
.hero-inner {
    position: relative;
    overflow: hidden;
    min-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
}

.herocontents {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay */
.hero-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 2;
}
.hero-bg img{
	    height: 100%;
	object-fit:cover;
    width: 100%;
}

.herocontents h1{
	font-size:48px;
	line-height:1.5;
	text-transform:uppercase;
	color:#fff;
	margin-bottom:30px;
}
.herocontents p{
	font-size:20px;
	color:#fff;
}
/* .hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 120% 80% at 15% 20%, rgba(127,208,222,.6) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 80% 30%, rgba(46,127,150,.5) 0%, transparent 45%),
    linear-gradient(175deg,#1E6E86 0%,#2A8FA0 30%,#5ABCB0 50%,#C9B79A 72%,#E7D9C0 88%,#F0E8D8 100%);
} */
/* .hero-bg::after{
  content:"↑ REPLACE: Tropical resort photo (similar to deck cover — beach, turquoise water, pink umbrellas)";
  position:absolute;bottom:50%;left:50%;transform:translate(-50%,50%);
  font-family:'Jost',sans-serif;font-size:13px;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.5);text-align:center;max-width:500px;
} */
.hero .scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 15, 53, .62) 0%, rgba(46, 15, 53, .12) 38%, rgba(46, 15, 53, .55) 72%, rgba(46, 15, 53, .86) 100%);
}


.hero h1 {
    color: #fff;
    max-width: 15.5ch
}

.hero h1 em {
    font-style: normal;
    color: var(--lime)
}

.hero .sub {
    color: rgba(255, 255, 255, .95);
    font-size: 21px;
    font-weight: 300;
    max-width: 56ch;
    margin-top: 26px;
    line-height: 1.6
}

.hero-cta {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 30px
}

.hero-cta .arrow {
  padding: 16px 20px;
	color:#fff;
    border: 1px solid #fff;
}

.hero-cta .arrow:hover {
    color: var(--lime);
    border-color: var(--lime)
}

/* ---------- stat band ---------- */
.stats {
    background: var(--plum);
    color: #fff
}

.stats .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 66px 0
}

.stat {
    padding: 0 46px;
    border-left: 1px solid rgba(159, 201, 28, .42)
}

.stat:first-child {
    padding-left: 0;
    border-left: 0
}

.stat:last-child {
    padding-right: 0
}

.stat-num {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.02em
}

.stat-num u {
    text-decoration: none;
    color: var(--lime)
}

.stat p {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 34ch
}

.stat .src {
    font-family: 'Jost', sans-serif;
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(159, 201, 28, .85);
    margin-top: 14px;
    display: block
}

/* ---------- section frame ---------- */
section {
    padding: 80px 0
}

.sec-mist {
    background: var(--mist)
}

.sec-plum {
    background: var(--plum);
    color: #fff
}

.sec-plum h2 {
    color: #fff
}

.sec-plum p {
    color: rgba(255, 255, 255, .92)
}

.sec-plum .eyebrow {
    color: var(--lime)
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: 90px;
    align-items: start
}

/* ---------- the shift ---------- */
.callout {
    margin-top: 46px;
    padding-left: 26px;
    border-left: 3px solid var(--lime);
    font-size: 29px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    line-height: 1.3;
    color: var(--plum);
}

/* ---------- gallery strip ---------- */
.strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
    height: 320px;
}

.strip-ph {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    isolation: isolate;
    background: #111;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

/* Dark gradient overlay */
.strip-ph::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0) 75%
    );
    transition: all 0.4s ease;
}

/* Image zoom effect */
.strip-ph::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

/* Text */
.strip-ph span {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    padding: 10px 18px;

    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;

    color: #fff;

    opacity: 0.9;
    transform: translateY(8px);
    transition: all 0.4s ease;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

/* Hover */
.strip-ph:hover {
    transform: translateY(-4px);
}

.strip-ph:hover::after {
    transform: scale(1.08);
}

.strip-ph:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.30) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.strip-ph:hover span {
    opacity: 1;
    transform: translateY(0);
}
/* ---------- big testimonial ---------- */
.quote-big {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.quote-big blockquote {
    font-size: 31px;
    line-height: 1.48;
    font-weight: 300;
    font-style: italic;
    color: var(--plum)
}

.quote-big .attr {
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-top: 28px
}

.quote-big .attr span {
    color: var(--ink);
    display: block;
    margin-top: 8px;
    letter-spacing: .16em
}

/* ---------- services list (on plum) ---------- */
.svc {
    border-top: 1px solid rgba(159, 201, 28, .3)
}

.svc a {
    display: grid;
    grid-template-columns: 64px 1fr 340px 40px;
    align-items: center;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(159, 201, 28, .3);
    text-decoration: none;
    color: inherit;
    transition: padding .3s ease, background .3s ease;
}

.svc a:hover {
    padding-left: 22px;
    background: rgba(159, 201, 28, .1)
}

.svc .idx {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--lime)
}

.svc .nm {
    font-family: 'Jost', sans-serif;
    font-size: 31px;
    font-weight: 300;
    text-transform: lowercase;
    color: #fff;
    letter-spacing: -.005em
}

.svc .ds {
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .8)
}

.svc .ar {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    color: var(--lime);
    justify-self: end;
    transition: transform .3s ease
}

.svc a:hover .ar {
    transform: translateX(9px)
}

/* ---------- why hire ---------- */
.why ul {
    list-style: none;
    margin-top: 34px;
    columns: 2;
    column-gap: 64px
}

.why li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 18px;
    break-inside: avoid;
    font-size: 16.5px;
    color: var(--ink)
}

.why li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 10px;
    background: var(--lime);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.filler {
    color: rgba(28, 20, 24, .55);
    font-style: italic
}

/* ---------- how we work ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    margin-top: 50px
}

.step-num {
    width: 46px;
    height: 50px;
    background: var(--lime);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--plum-deep);
    margin-bottom: 24px;
}

.step h3 {
    color: var(--plum);
    text-transform: lowercase;
    margin-bottom: 12px
}

.step p {
    font-size: 16px;
    color: var(--ink)
}

/* ---------- differentiator (compact) ---------- */
.diff {
    background: var(--plum);
    color: #fff;
    padding: 0
}

.diff .row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: stretch
}

.diff .ph {
    min-height: 420px;
    overflow: hidden
}

.diff .ph {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    isolation: isolate;
    cursor: pointer;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    transition: transform 0.4s ease;
}

/* Dark gradient */
.diff .ph::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.20) 50%,
        transparent
    );

    transition: all 0.4s ease;
}

/* Text */
.diff .ph span {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;
    padding: 10px 18px;

    font-family: 'Jost', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: #fff !important;

    opacity: .8;
    transform: translateY(8px);

    transition: all .4s ease;
    text-shadow: 0 3px 12px rgba(0,0,0,.6);
}

/* Hover */
.diff .ph:hover {
    transform: translateY(-5px);
}

.diff .ph:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.25) 60%,
        transparent
    );
}

.diff .ph:hover span {
    opacity: 1;
    transform: translateY(0);
}

.diff .txt {
    padding: 80px 80px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.diff .wrapl {
    max-width: calc(var(--maxw)/2);
    margin-left: auto;
    padding-left: var(--pad)
}

.diff h2 {
    color: #fff
}

.diff h2 u {
    text-decoration: none;
    color: var(--lime)
}

.diff p {
    color: rgba(255, 255, 255, .92)
}

.diff .arrow {
    color: #fff;
    border-color: var(--lime);
    margin-top: 30px
}

.diff .arrow:hover {
    color: var(--lime)
}

/* ---------- press wall ---------- */
.press {
    padding: 70px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule)
}

.press .lbl {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    margin-bottom: 48px
}

.press .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 44px 30px;
    align-items: center
}

.press span {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(74, 29, 82, .5);
}

/* ---------- testimonial cards ---------- */
.tcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 46px
}

.tcard {
    background: #fff;
    padding: 40px 36px;
    border-top: 3px solid var(--lime)
}

.tcard blockquote {
    font-size: 16.5px;
    line-height: 1.68;
    font-style: italic;
    color: var(--ink)
}

.tcard .attr {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-top: 26px;
    line-height: 1.9
}

.tcard .attr span {
    display: block;
    color: var(--ink)
}

.dots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 36px
}

.dots i {
    width: 8px;
    height: 9px;
    background: rgba(74, 29, 82, .22);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%)
}

.dots i.on {
    background: var(--magenta)
}

/* ---------- clients ---------- */
.cgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
    margin-top: 46px
}

.cgrid div {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 38px 24px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
}

/* ---------- faq ---------- */
.faq {
    max-width: 900px;
    margin: 46px auto 0;
    border-top: 1px solid var(--rule)
}

.faq details {
    border-bottom: 1px solid var(--rule)
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-family: 'Jost', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--plum);
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary::after {
    content: "+";
    color: var(--lime);
    font-size: 24px;
    line-height: 1
}

.faq details[open] summary::after {
    content: "–"
}

.faq p {
    padding: 0 0 24px;
    font-size: 16.5px;
    max-width: 74ch;
    color: var(--ink)
}

/* ---------- closing cta ---------- */
.cta {
    position: relative;
    padding: 130px 0;
    text-align: center;
    color: #fff
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #1E6E86 0%, #2A8FA0 40%, #4A1D52 100%)
}

.cta .scrim {
    position: absolute;
    inset: 0;
    background: rgba(46, 15, 53, .82)
}

.cta .inner {
    position: relative;
    z-index: 3
}

.cta h2 {
    color: #fff;
    text-transform: none;
    font-size: 52px
}

.cta p {
    color: rgba(255, 255, 255, .92);
    max-width: 52ch;
    margin: 22px auto 40px;
    font-size: 19px
}

/* ---------- footer ---------- */
footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, .8);
    padding: 88px 0 34px;
    font-size: 15px
}

.fgrid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
    gap: 56px
}

.fgrid h4 {
    font-family: 'Jost', sans-serif;
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
    font-weight: 500
}

.fgrid a {
    display: block;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 15px
}

.fgrid a:hover {
    color: #fff
}

.ftag {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    max-width: 26ch
}

.fbot {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5)
}

/* ---------- popup ---------- */
.pop {
    position: fixed;
    right: 34px;
    bottom: 34px;
    width: 352px;
    background: #fff;
    z-index: 40;
    box-shadow: 0 20px 60px rgba(46, 15, 53, .28);
    border-top: 4px solid var(--lime);
    padding: 30px 30px 28px;
}

.pop h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--plum);
    margin-bottom: 10px
}

.pop p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: var(--ink)
}

.pop .btn {
    display: block;
    text-align: center;
    padding: 14px
}

.pop .no {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(28, 20, 24, .5);
    text-decoration: none
}

.pop .x {
    position: absolute;
    top: 12px;
    right: 16px;
    color: rgba(28, 20, 24, .3);
    text-decoration: none;
    font-size: 19px
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}


:root {
    --plum: #4A1D52;
    --plum-deep: #2E0F35;
    --magenta: #BE1A7E;
    --lime: #9FC91C;
    --ink: #1C1418;
    --paper: #FFFFFF;
    --mist: #F7F3F6;
    --rule: rgba(74, 29, 82, .14);
    --maxw: 1320px;
    --pad: 56px;
}

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

html {
    scroll-behavior: smooth
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Newsreader', Georgia, serif;
    font-size: 17.5px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

h1,
h2,
h3,
h4,
.eyebrow,
.btn,
nav a,
.step-num {
    font-family: 'Jost', sans-serif
}

h1 {
    font-weight: 300;
    font-size: clamp(46px, 4.4vw, 66px);
    line-height: 1.06;
    letter-spacing: -.02em;
    text-transform: lowercase
}

h2 {
    font-weight: 300;
    font-size: clamp(32px, 2.8vw, 42px);
    line-height: 1.14;
    text-transform: lowercase
}

h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3
}

.eyebrow {
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--magenta);
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 10px;
    background: var(--lime);
    flex: none;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%)
}

.lead {
    font-size: 21px;
    line-height: 1.62;
    font-weight: 300
}

p {
    color: rgba(28, 20, 24, .84)
}

p+p {
    margin-top: 1.15em
}

.btn {
    display: inline-block;
    background: var(--magenta);
    color: #fff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 17px 34px;
    border-radius: 2px;
    transition: background .25s ease
}

.btn:hover {
    background: var(--plum)
}

.arrow {
    font-family: 'Jost', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--plum);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 5px;
    transition: gap .25s ease, color .25s ease
}

.arrow:hover {
    gap: 18px;
    color: var(--magenta)
}

.ph {
    position: relative;
    overflow: hidden;
    background: var(--plum-deep)
}

.ph::after {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62)
}

.ph-a {
    background: radial-gradient(115% 80% at 15% 10%, #7FD0DE 0%, rgba(127, 208, 222, 0) 60%), linear-gradient(175deg, #1E6E86 0%, #3E93A4 42%, #C9B79A 74%, #EBDFC8 100%)
}

.ph-b {
    background: linear-gradient(165deg, #5B2A63 0%, #8E3D74 55%, #C79AA8 100%)
}

.ph-c {
    background: linear-gradient(155deg, #2E7F96 0%, #7FBFC4 60%, #E8DCC6 100%)
}

.ph-d {
    background: linear-gradient(200deg, #3A1A42 0%, #7A2E68 60%, #BE1A7E 120%)
}

.ph-e {
    background: linear-gradient(150deg, #C9B79A 0%, #9FC91C 130%)
}

.ph-f {
    background: linear-gradient(170deg, #1E6E86 0%, #4A1D52 100%)
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 30px var(--pad)
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none
}

.hex {
    width: 30px;
    height: 33px;
    background: #fff;
    flex: none;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    align-items: center;
    justify-content: center
}

.hex i {
    width: 14px;
    height: 15px;
    background: var(--magenta);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%)
}

.logo-txt {
    font-family: 'Jost', sans-serif;
    color: #fff;
    line-height: 1.1
}

.logo-txt b {
    display: block;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: .19em
}

.logo-txt span {
    display: block;
    font-size: 8.5px;
    letter-spacing: .34em;
    color: var(--lime);
    margin-top: 3px
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 34px
}

nav a.nl {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease
}

nav a.nl:hover,
nav a.nl.on {
    border-color: var(--lime)
}

nav .btn {
    padding: 13px 26px;
    font-size: 11.5px
}

/* page hero */
.phero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    display: flex;
    align-items: flex-end
}

.phero .ph {
    position: absolute;
    inset: 0
}

.phero .scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 15, 53, .66) 0%, rgba(46, 15, 53, .18) 40%, rgba(46, 15, 53, .78) 100%)
}

.phero .inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad) 64px
}

.phero h1 {
    color: #fff
}

.phero .sub {
    color: rgba(255, 255, 255, .88);
    font-size: 20px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    margin-top: 16px;
    max-width: 46ch
}

section {
    padding: 110px 0
}

.sec-mist {
    background: var(--mist)
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: 90px;
    align-items: start
}

/* service blocks */
.svcblock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0
}

.svcblock .ph {
    min-height: 540px;
    height: 100%
}

.svcblock .body {
    padding: 0 0 0 80px
}

.svcblock.flip .body {
    padding: 0 80px 0 0;
    order: -1
}

.svcblock h2 {
    color: var(--plum)
}

.svcblock .num {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .24em;
    color: var(--magenta);
    margin-bottom: 14px;
    display: block
}

.svcblock p {
    margin-top: 20px
}

.svcblock ul {
    list-style: none;
    margin-top: 30px
}

.svcblock li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 14px;
    font-size: 16.5px;
    line-height: 1.6
}

.svcblock li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 10px;
    background: var(--lime);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%)
}

.svcwrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.svcsec {
    padding: 0;
    margin: 0
}

.svcsec+.svcsec {
    margin-top: 0
}

.svcrow {
    padding: 96px 0;
    border-bottom: 1px solid var(--rule)
}

.callout {
    margin-top: 42px;
    padding-left: 26px;
    border-left: 3px solid var(--lime);
    font-size: 28px;
    font-weight: 300;
    font-family: 'Jost', sans-serif;
    line-height: 1.3;
    color: var(--plum)
}

/* closing cta */
.cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: #fff
}

.cta .ph {
    position: absolute;
    inset: 0
}

.cta .scrim {
    position: absolute;
    inset: 0;
    background: rgba(46, 15, 53, .8)
}

.cta .inner {
    position: relative;
    z-index: 3
}

.cta h2 {
    color: #fff;
    text-transform: none;
    font-size: 46px
}

.cta p {
    color: rgba(255, 255, 255, .82);
    max-width: 54ch;
    margin: 22px auto 40px;
    font-size: 19px
}

footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, .62);
    padding: 88px 0 34px;
    font-size: 15px
}

.fgrid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
    gap: 56px
}

.fgrid h4 {
    font-size: 10.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
    font-weight: 500
}

.fgrid a {
    display: block;
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    margin-bottom: 11px;
    font-size: 15px
}

.fgrid a:hover {
    color: #fff
}

.ftag {
    margin-top: 20px;
    color: rgba(255, 255, 255, .5);
    max-width: 26ch
}

.fbot {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42)
}

@media (prefers-reduced-motion:reduce) {
    * {
        transition: none !important
    }
}


:root {
    --navy: #172449;
    --navy-soft: #3c4a72;
    --pink: #d81b8f;
    --pink-soft: rgba(216, 27, 143, 0.1);
    --green: #7fae3e;
    --paper: #ffffff;
    --canvas: #f4f3ef;
    --ink-soft: #5c6270;
    --ink-faint: #9297a3;
    --line: #e7e5df;
}

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

body {
    background: var(--paper);
    /*     font-family:'Inter', sans-serif; */
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise .7s cubic-bezier(.22, .68, .35, 1) forwards;
}

.reveal.d1 {
    animation-delay: .08s;
}

.reveal.d2 {
    animation-delay: .16s;
}

.reveal.d3 {
    animation-delay: .24s;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ============ TOP: three info cards ============ */
.cards-section {
    padding: 90px 8vw 70px;
    background: var(--paper);
}

.cards-row {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.info-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 40px 32px 34px;
    text-align: center;
    box-shadow: 0 18px 40px -28px rgba(23, 36, 73, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -24px rgba(23, 36, 73, 0.3);
    border-color: rgba(216, 27, 143, 0.25);
}

.info-card .icon-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.info-card .icon-ring svg {
    width: 26px;
    height: 26px;
    stroke: var(--pink);
}

.info-card h3 {
    /*     font-family:'Fraunces', serif; */
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.info-card a {
    color: inherit;
    text-decoration: none;
}

.info-card a:hover {
    color: var(--pink);
}

@media (max-width:820px) {
    .cards-row {
        grid-template-columns: 1fr;
    }

    .cards-section {
        padding: 64px 6vw 40px;
    }
}

/* ============ BOTTOM: form + map ============ */
.form-map-section {
    background: var(--canvas);
    padding: 80px 8vw 100px;
}

.fm-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.form-card {
    background: var(--paper);
    border-radius: 20px;
    padding: 44px 42px;
    box-shadow: 0 24px 50px -30px rgba(23, 36, 73, 0.25);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--green);
}

.form-card h2 {
    /*     font-family:'Fraunces', serif; */
    font-weight: 600;
    font-size: clamp(28px, 2.6vw, 36px);
    margin-bottom: 12px;
}

.form-card>p {
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 48ch;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.field input,
.field textarea {
    width: 100%;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--navy);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
    resize: none;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--ink-faint);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-soft);
}

.submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border: none;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 30px -12px rgba(216, 27, 143, 0.55);
    transition: transform .25s cubic-bezier(.22, .68, .35, 1), box-shadow .25s ease, background .2s ease;
}

.submit-btn:hover {
    background: #c0107d;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(216, 27, 143, 0.6);
}

.submit-btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width:640px) {
    .row3 {
        grid-template-columns: 1fr;
    }
}

/* map column */
.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 24px 50px -30px rgba(23, 36, 73, 0.25);
}

.map-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    position: absolute;
    top: 18px;
    left: 18px;
    max-width: 260px;
    background: var(--paper);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 14px 30px -12px rgba(23, 36, 73, 0.35);
}

.map-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.map-info h4 {
    /*     font-family:'Fraunces', serif; */
    font-weight: 600;
    font-size: 15.5px;
    margin-bottom: 4px;
}

.map-info .addr {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.map-info .actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.map-info .actions a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--pink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s ease;
}

.map-info .actions a:hover {
    background: var(--pink);
}

.map-info .actions a:hover svg {
    stroke: #fff;
}

.map-info .actions svg {
    width: 12px;
    height: 12px;
    stroke: var(--pink);
    transition: stroke .2s ease;
}

.map-info .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--ink-soft);
}

.map-info .rating .stars {
    color: #f2a93b;
    letter-spacing: 1px;
}

.map-info .rating strong {
    color: var(--navy);
}

@media (max-width:900px) {
    .fm-inner {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 34px 26px;
    }

    .map-card {
        min-height: 340px;
    }
}