:root{
    --b:#ffffff;
    --bg-soft:#fffaf3;
    --bg-soft-2:#fff4e3;

    --text:#171717;
    --text-2:#2b2b2b;
    --text-soft:#666666;
    --text-muted:#8a8a8a;

    --black:#111111;
    --black-2:#1a1a1a;

    --o:#ffa116;
    --o92:rgba(255,161,22,.92);
    --o72:rgba(255,161,22,.72);
    --o50:rgba(255,161,22,.50);
    --o28:rgba(255,161,22,.28);
    --o16:rgba(255,161,22,.16);
    --o10:rgba(255,161,22,.10);
    --o08:rgba(255,161,22,.08);

    --line:#eadfce;
    --line-dark:#ded4c4;

    --shadow-sm:0 10px 30px rgba(0,0,0,.05);
    --shadow-md:0 20px 60px rgba(0,0,0,.08);
    --shadow-lg:0 32px 90px rgba(0,0,0,.11);

    --radius-sm:10px;
    --radius:16px;
    --radius-lg:24px;

    --w:1320px;
}

/* =========================================================
   RESET / GLOBAL
========================================================= */

*{
    box-sizing:border-box;
}

html{
    background:var(--b);
    color-scheme:light;
    scroll-behavior:smooth;
}

body{
    margin:0;
    min-width:320px;
    background:var(--b);
    color:var(--text);
    font-family:Inter,Segoe UI,Arial,sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

img{
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button,
a,
input,
textarea,
select{
    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

::selection{
    background:var(--o);
    color:var(--black);
}

.wrap{
    width:min(calc(100% - 48px),var(--w));
    margin:auto;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p{
    margin-top:0;
}

h1,
h2,
h3{
    color:var(--text);
}

p{
    color:var(--text-soft);
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line);
    box-shadow:0 4px 22px rgba(0,0,0,.025);
}

.header-inner{
    height:94px;
    display:flex;
    align-items:center;
    gap:30px;
}

.brand{
    width:188px;
    display:block;
    flex:0 0 auto;
}

.brand img{
    display:block;
    width:100%;
    height:auto;
}

.main-nav{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    position:relative;
    font-size:.76rem;
    font-weight:800;
    letter-spacing:.11em;
    text-transform:uppercase;
    color:#444;
    padding:38px 0 34px;
    border-bottom:2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active{
    color:var(--o);
    border-color:var(--o);
}

.header-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    border:1px solid var(--o);
    background:var(--o);
    color:var(--black);
    padding:10px 18px;
    font-size:.74rem;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.1em;
    border-radius:8px;
    box-shadow:0 10px 24px var(--o16);
}

.header-cta:hover{
    transform:translateY(-1px);
    background:#ffad32;
}

.nav-toggle{
    display:none;
    background:none;
    border:0;
    padding:10px;
    cursor:pointer;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:var(--text);
    margin:5px 0;
}

/* =========================================================
   COMMON COMPONENTS
========================================================= */

.eyebrow{
    display:inline-block;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--o);
}

.lead{
    max-width:670px;
    font-size:1.16rem;
    color:var(--text-soft);
    line-height:1.85;
}

.text-link{
    display:inline-block;
    margin-top:16px;
    padding-bottom:5px;
    border-bottom:1px solid var(--o);
    color:var(--text);
    font-weight:800;
}

.text-link:hover{
    color:var(--o);
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border:1px solid var(--o);
    border-radius:8px;
    font-size:.78rem;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
    cursor:pointer;
}

.btn.primary{
    background:var(--o);
    color:var(--black);
    box-shadow:0 12px 28px var(--o16);
}

.btn.primary:hover{
    background:#ffad32;
    transform:translateY(-2px);
}

.btn.ghost{
    background:#fff;
    color:var(--text);
    border-color:var(--o);
}

.btn.ghost:hover{
    background:var(--bg-soft);
    transform:translateY(-2px);
}

/* =========================================================
   HOME HERO
========================================================= */

.hero-home{
    min-height:calc(100vh - 94px);
    display:grid;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 76% 38%,var(--o16),transparent 28%),
        linear-gradient(var(--o08) 1px,transparent 1px),
        linear-gradient(90deg,var(--o08) 1px,transparent 1px),
        linear-gradient(180deg,#fff 0%,#fffdf9 100%);
    background-size:auto,72px 72px,72px 72px,auto;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:7vw;
    padding:80px 0;
}

.hero-copy{
    position:relative;
    z-index:2;
}

.hero-copy h1,
.page-hero h1{
    font-family:Georgia,serif;
    font-weight:400;
    line-height:.98;
    letter-spacing:-.05em;
    color:var(--text);
}

.hero-copy h1{
    font-size:clamp(3.9rem,7.2vw,7.9rem);
    max-width:900px;
    margin:18px 0 28px;
}

.hero-copy h1 em{
    font-style:italic;
    color:var(--o);
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:34px;
}

.license-note{
    margin-top:32px;
    display:flex;
    gap:12px;
    align-items:flex-start;
    max-width:620px;
    font-size:.78rem;
    letter-spacing:.04em;
    color:var(--text-muted);
}

.license-note span{
    width:8px;
    height:8px;
    flex:0 0 auto;
    margin-top:7px;
    border-radius:50%;
    background:var(--o);
    box-shadow:0 0 16px var(--o50);
}

.hero-mark{
    position:relative;
    min-height:560px;
    display:grid;
    place-items:center;
}

.hero-mark img{
    width:min(640px,100%);
    position:relative;
    z-index:2;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.12));
}

.orbit{
    position:absolute;
    width:520px;
    aspect-ratio:1;
    border:1px solid var(--o28);
    border-radius:50%;
    box-shadow:
        0 0 0 70px var(--o08),
        0 0 0 140px rgba(255,161,22,.035);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{
    background:#fff;
    border-block:1px solid var(--line);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.trust-grid div{
    padding:30px;
    border-right:1px solid var(--line);
}

.trust-grid div:first-child{
    border-left:1px solid var(--line);
}

.trust-grid strong{
    display:block;
    font-family:Georgia,serif;
    font-size:2.1rem;
    font-weight:400;
    color:var(--text);
}

.trust-grid span{
    font-size:.71rem;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:var(--text-muted);
}

/* =========================================================
   GENERIC SECTIONS
========================================================= */

.section{
    padding:115px 0;
    border-bottom:1px solid var(--line);
    background:#fff;
}

.section:nth-of-type(even){
    background:var(--bg-soft);
}

.section.compact{
    padding-top:30px;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9vw;
    align-items:start;
}

.section h2{
    font-family:Georgia,serif;
    font-size:clamp(2.6rem,4.3vw,5.1rem);
    line-height:1.02;
    font-weight:400;
    letter-spacing:-.04em;
    color:var(--text);
}

.body-copy{
    font-size:1.1rem;
    color:var(--text-soft);
    line-height:1.95;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:40px;
}

.section-head h2{
    margin-bottom:0;
}

/* =========================================================
   RATE TABLE
========================================================= */

.rate-table-wrap{
    overflow:auto;
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.rate-table{
    width:100%;
    border-collapse:collapse;
    min-width:760px;
}

.rate-table th,
.rate-table td{
    padding:22px 24px;
    border-bottom:1px solid var(--line);
    text-align:left;
}

.rate-table th{
    background:var(--bg-soft);
    font-size:.68rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:#666;
}

.rate-table tbody tr{
    background:#fff;
}

.rate-table tbody tr:hover{
    background:#fffaf3;
}

.rate-table tbody tr:last-child td{
    border-bottom:0;
}

.rate-table td{
    font-size:1rem;
    color:var(--text);
}

.rate-table td:first-child strong{
    display:inline-block;
    width:70px;
    font-size:1.15rem;
    color:var(--text);
}

.rate-table td:first-child span{
    color:var(--text-muted);
}

.rate-disclaimer,
.legal-note{
    margin:18px 0 0;
    color:var(--text-muted);
    font-size:.82rem;
}

/* =========================================================
   CURRENCIES
========================================================= */

.currency-cloud{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:8vw;
    align-items:center;
}

.chips{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}

.chips span{
    display:grid;
    place-items:center;
    aspect-ratio:1;
    border:1px solid var(--o28);
    border-radius:12px;
    background:#fff;
    color:var(--text);
    font-family:Georgia,serif;
    font-size:1.35rem;
    box-shadow:0 8px 20px rgba(0,0,0,.035);
}

.chips span:hover{
    border-color:var(--o);
    transform:translateY(-3px);
    box-shadow:var(--shadow-sm);
}

/* =========================================================
   CTA BAND
========================================================= */

.cta-band{
    padding:100px 0;
    background:var(--o);
    color:var(--black);
}

.cta-band .eyebrow{
    color:var(--black);
    opacity:.7;
}

.cta-band h2{
    font-family:Georgia,serif;
    font-size:clamp(3rem,5vw,6rem);
    line-height:1;
    max-width:900px;
    font-weight:400;
    color:var(--black);
}

.cta-band p{
    color:rgba(0,0,0,.65);
}

.btn.invert.primary{
    background:var(--black);
    color:var(--o);
    border-color:var(--black);
}

.btn.invert.primary:hover{
    background:#222;
}

.btn.invert.ghost{
    background:transparent;
    color:var(--black);
    border-color:var(--black);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    padding:76px 0 24px;
    background:var(--black);
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr;
    gap:70px;
}

.footer-logo{
    width:280px;
    max-width:100%;
}

.footer-grid h3{
    font-size:.73rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--o);
}

.footer-grid p{
    color:#bbb;
}

.footer-grid a,
.footer-grid span{
    display:block;
    color:#d3d3d3;
    margin:10px 0;
}

.footer-grid a:hover{
    color:var(--o);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:22px;
    margin-top:56px;
    color:#999;
    font-size:.78rem;
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero{
    padding:125px 0 90px;
    border-bottom:1px solid var(--line);
    background:
        radial-gradient(circle at 80% 30%,var(--o16),transparent 25%),
        linear-gradient(180deg,#fff 0%,var(--bg-soft) 100%);
}

.page-hero h1{
    font-size:clamp(3.8rem,7vw,7rem);
    max-width:980px;
    margin:16px 0 26px;
}

.page-hero>div>p:last-child{
    max-width:780px;
    color:var(--text-soft);
    font-size:1.1rem;
}

/* =========================================================
   CARDS
========================================================= */

.cards3,
.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feature-card,
.service-card{
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:40px;
    min-height:300px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.feature-card:hover,
.service-card:hover{
    transform:translateY(-5px);
    border-color:var(--o28);
    box-shadow:var(--shadow-md);
}

.feature-card span,
.service-no{
    font-family:Georgia,serif;
    font-size:3rem;
    color:var(--o50);
}

.feature-card h3,
.service-card h2{
    font-size:2.2rem;
    margin:34px 0 12px;
    color:var(--text);
}

.feature-card p,
.service-card p{
    color:var(--text-soft);
}

/* =========================================================
   NOTICE
========================================================= */

.notice{
    border:1px solid var(--o28);
    border-radius:var(--radius);
    padding:55px;
    background:var(--bg-soft);
    box-shadow:var(--shadow-sm);
}

.notice h2{
    font-size:3.6rem;
    color:var(--text);
}

.notice p{
    color:var(--text-soft);
}

/* =========================================================
   CURRENCY GRID
========================================================= */

.currency-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.currency-grid article{
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px;
    aspect-ratio:1;
    display:flex;
    flex-direction:column;
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.035);
}

.currency-grid article:hover{
    transform:translateY(-4px);
    border-color:var(--o);
    box-shadow:var(--shadow-sm);
}

.currency-grid article span{
    font-size:.7rem;
    color:var(--text-muted);
}

.currency-grid article strong{
    margin-top:auto;
    font-family:Georgia,serif;
    font-size:2.2rem;
    color:var(--o);
}

.currency-grid article p{
    margin:4px 0 0;
    color:var(--text-soft);
    font-size:.82rem;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:70px;
}

.contact-details>*{
    display:block;
    padding:22px 0;
    border-bottom:1px solid var(--line);
}

.contact-details span{
    display:block;
    font-size:.68rem;
    text-transform:uppercase;
    letter-spacing:.15em;
    color:var(--text-muted);
}

.contact-details strong{
    display:block;
    font-family:Georgia,serif;
    font-size:1.5rem;
    font-weight:400;
    margin-top:5px;
    color:var(--text);
}

.contact-form{
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:42px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.contact-form h2{
    font-size:2.7rem;
    color:var(--text);
}

.contact-form label,
.admin-form label{
    display:block;
    font-size:.72rem;
    text-transform:uppercase;
    letter-spacing:.1em;
    font-weight:800;
    margin-bottom:18px;
    color:var(--text-2);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

/* =========================================================
   FORM CONTROLS
========================================================= */

input,
textarea,
select{
    width:100%;
    margin-top:8px;
    padding:14px 15px;
    background:#fff;
    border:1px solid var(--line-dark);
    border-radius:8px;
    color:var(--text);
    outline:none;
    font:inherit;
}

input::placeholder,
textarea::placeholder{
    color:#aaa;
}

input:hover,
textarea:hover,
select:hover{
    border-color:var(--o50);
}

input:focus,
textarea:focus,
select:focus{
    border-color:var(--o);
    box-shadow:0 0 0 3px var(--o10);
}

textarea{
    resize:vertical;
}

/* =========================================================
   ALERTS
========================================================= */

.alert{
    padding:14px 16px;
    border:1px solid var(--o);
    border-radius:8px;
    margin-bottom:20px;
    background:var(--bg-soft);
    color:var(--text);
}

.alert.error{
    background:#fff7eb;
}

/* =========================================================
   PROSE / LEGAL PAGES
========================================================= */

.prose{
    max-width:900px;
}

.prose h2{
    font-size:2.6rem;
    margin:55px 0 15px;
    color:var(--text);
}

.prose h2:first-child{
    margin-top:0;
}

.prose h3{
    color:var(--text);
}

.prose p{
    color:var(--text-soft);
    line-height:1.95;
}

.prose ul,
.prose ol{
    color:var(--text-soft);
    line-height:1.85;
}

.prose strong{
    color:var(--text);
}

/* =========================================================
   ANIMATION
========================================================= */

/* .reveal,
.feature-card,
.service-card,
.currency-grid article{
    opacity:0;
    transform:translateY(22px);
    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .25s ease,
        border-color .25s ease;
} */


.reveal{
    opacity:0;
    transform:translateY(22px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.feature-card,
.service-card,
.currency-grid article{
    opacity:1;
    transform:none;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.visible{
    opacity:1;
    transform:none;
}

/* .visible{
    opacity:1;
    transform:none;
} */

/* =========================================================
   TABLE RESPONSIVENESS HELPERS
========================================================= */

.table-scroll{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1050px){

    .header-cta{
        display:none;
    }

    .main-nav{
        gap:18px;
    }

    .hero-grid,
    .split,
    .currency-cloud,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-grid{
        gap:35px;
    }

    .hero-mark{
        min-height:380px;
    }

    .orbit{
        width:330px;
    }

    .cards3,
    .service-grid{
        grid-template-columns:1fr;
    }

    .currency-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .footer-grid{
        grid-template-columns:1.5fr 1fr 1fr;
        gap:40px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:760px){

    .wrap{
        width:min(calc(100% - 30px),var(--w));
    }

    .header-inner{
        height:78px;
    }

    .brand{
        width:150px;
    }

    .nav-toggle{
        display:block;
        margin-left:auto;
    }

    .main-nav{
        position:absolute;
        left:0;
        right:0;
        top:78px;
        background:#fff;
        border-bottom:1px solid var(--line);
        padding:14px 20px 24px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        box-shadow:0 20px 45px rgba(0,0,0,.08);
    }

    .main-nav.open{
        display:flex;
    }

    .main-nav a{
        padding:15px 0;
        border-bottom:1px solid #f2eadf;
    }

    .main-nav a:last-child{
        border-bottom:0;
    }

    .hero-home{
        min-height:auto;
    }

    .hero-grid{
        padding:60px 0;
    }

    .hero-copy h1{
        font-size:clamp(3.2rem,16vw,5rem);
    }

    .lead{
        font-size:1rem;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-actions .btn{
        width:100%;
    }

    .hero-mark{
        min-height:300px;
    }

    .hero-mark img{
        width:min(420px,100%);
    }

    .orbit{
        width:260px;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
    }

    .trust-grid div{
        border:1px solid var(--line)!important;
        padding:22px 18px;
    }

    .trust-grid strong{
        font-size:1.7rem;
    }

    .section{
        padding:78px 0;
    }

    .section-head{
        align-items:start;
        flex-direction:column;
    }

    .section h2{
        font-size:clamp(2.4rem,12vw,4rem);
    }

    .chips{
        grid-template-columns:repeat(3,1fr);
    }

    .currency-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-form{
        padding:24px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .page-hero{
        padding:85px 0 65px;
    }

    .page-hero h1{
        font-size:clamp(3.2rem,15vw,5rem);
    }

    .notice{
        padding:30px 24px;
    }

    .notice h2{
        font-size:2.4rem;
    }

    .feature-card,
    .service-card{
        padding:28px;
        min-height:auto;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

    .cta-band{
        padding:72px 0;
    }

    .cta-band h2{
        font-size:clamp(2.8rem,13vw,4.5rem);
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .wrap{
        width:min(calc(100% - 24px),var(--w));
    }

    .hero-grid{
        padding:45px 0;
    }

    .hero-copy h1{
        font-size:clamp(2.8rem,15vw,4rem);
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .chips{
        grid-template-columns:repeat(2,1fr);
    }

    .currency-grid{
        grid-template-columns:1fr;
    }

    .currency-grid article{
        aspect-ratio:auto;
        min-height:170px;
    }

    .page-hero{
        padding:65px 0 50px;
    }

    .page-hero h1{
        font-size:clamp(2.8rem,14vw,4rem);
    }

    .rate-table th,
    .rate-table td{
        padding:16px 18px;
    }

    .contact-form{
        padding:20px;
    }

    .footer-logo{
        width:220px;
    }
}

/* =========================================================
   ACCESSIBILITY / MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }

    .reveal,
    .feature-card,
    .service-card,
    .currency-grid article{
        opacity:1;
        transform:none;
    }
}


/* =========================================================
   HOME HERO ROTATING STATEMENTS
   ========================================================= */

.hero-word-slider{
    position:relative;
    display:inline-block;
    vertical-align:bottom;
    min-width:5.8em;
    height:1.15em;
    overflow:hidden;
}

.hero-word{
    position:absolute;
    left:0;
    top:0;
    display:block;
    white-space:nowrap;
    opacity:0;
    transform:translateY(100%);
    transition:
        opacity .55s ease,
        transform .55s ease;
}

.hero-word.active{
    position:relative;
    opacity:1;
    transform:translateY(0);
}

.hero-word.leaving{
    opacity:0;
    transform:translateY(-100%);
}

@media (max-width:600px){
    .hero-word-slider{
        min-width:5.6em;
    }
}

@media (prefers-reduced-motion:reduce){
    .hero-word{
        transition:none;
    }
}


/* =========================================================
   HERO LOGO OPPOSITE ROTATING ORBITS
   ========================================================= */

.orbit{
    position:absolute;
    width:520px;
    aspect-ratio:1;
    border-radius:50%;
    border:2px solid transparent;
    border-top-color:var(--orange);
    border-right-color:var(--o28);
    box-shadow:
        0 0 0 70px var(--o08),
        0 0 0 140px rgba(255,161,22,.035);

    animation:orbitClockwise 14s linear infinite;
}

.orbit::before{
    content:"";
    position:absolute;
    inset:38px;
    border-radius:50%;
    border:2px solid transparent;
    border-bottom-color:var(--orange);
    border-left-color:var(--o28);

    animation:orbitCounterClockwise 9s linear infinite;
}

@keyframes orbitClockwise{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

@keyframes orbitCounterClockwise{
    from{transform:rotate(0deg)}
    to{transform:rotate(-360deg)}
}

@media (max-width:900px){
    .orbit{
        width:330px;
    }

    .orbit::before{
        inset:26px;
    }
}

@media (max-width:600px){
    .orbit{
        width:260px;
    }

    .orbit::before{
        inset:20px;
    }
}

@media (prefers-reduced-motion:reduce){
    .orbit,
    .orbit::before{
        animation:none;
    }
}

/* Footer social media */
.footer-social .social-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.footer-social .social-links a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,161,22,.35);
    border-radius:50%;
    text-decoration:none;
    transition:
        transform .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

.footer-social .social-links a:hover{
    transform:translateY(-3px);
    background:var(--orange);
    border-color:var(--orange);
}

.footer-social .social-links svg{
    width:20px;
    height:20px;
    fill:currentColor;
}

/* Center footer social media */
.footer-social{
    grid-column:1 / -1;
    width:100%;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-top:10px;
}

.footer-social h3{
    text-align:center;
    margin-bottom:12px;
}

.footer-social .social-links{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:0;
}

/* =========================================================
   RTBUREAU Contact - Business Hours & Location Map
   ========================================================= */

.business-hours strong {
    display: block;
}

.business-hours .holiday-hours {
    margin-top: 14px;
}

.contact-map-section {
    padding: 0 0 72px;
}

.contact-map-heading {
    margin-bottom: 22px;
}

.contact-map-heading h2 {
    margin: 0 0 8px;
}

.contact-map-heading p:last-child {
    margin-bottom: 0;
}

.contact-map {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding-bottom: 48px;
    }

    .contact-map {
        height: 320px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .contact-map {
        height: 280px;
    }
}
