:root {
    --navy-950: #041522;
    --navy-900: #071f33;
    --navy-800: #0b2c46;
    --navy-700: #103b5c;
    --purple: #393477;
    --gold: #f2b753;
    --gold-deep: #e79a20;
    --aqua: #23b9bd;
    --aqua-deep: #0f9299;
    --cream: #f7f3eb;
    --sand: #ede5d7;
    --ink: #122033;
    --muted: #66717e;
    --white: #ffffff;
    --line: rgba(10, 38, 60, .13);
    --shadow: 0 24px 70px rgba(3, 22, 36, .18);
    --radius: 18px;
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    fill: currentColor;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 9999;
    padding: 12px 16px;
    background: #fff;
    color: #000;
    border-radius: 8px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(4, 21, 34, .97), rgba(7, 31, 51, .96));
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
    height: 78px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
    background: rgba(4, 21, 34, .98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand img {
    width: 63px;
    height: 63px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1;
    letter-spacing: .09em;
}

.brand-copy strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.brand-copy small {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .33em;
    margin-top: 7px;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.4vw, 38px);
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, .83);
    font-size: 14px;
    font-weight: 600;
    padding: 33px 0;
    transition: color .2s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 24px;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease;
}

.primary-nav a:hover {
    color: #fff;
}

.primary-nav a:hover::after {
    right: 0;
}

.header-cta {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--navy-950);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    margin: 6px 0;
    transition: .25s ease;
}

.hero {
    position: relative;
    min-height: 850px;
    padding-top: 88px;
    color: #fff;
    overflow: hidden;
    background: var(--navy-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 19, 32, .93) 0%, rgba(3, 28, 46, .73) 40%, rgba(3, 28, 46, .24) 72%, rgba(3, 28, 46, .35) 100%), linear-gradient(0deg, rgba(1, 16, 27, .55), transparent 60%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 685px;
    padding-top: 76px;
    padding-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .72fr);
    gap: 82px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold-deep);
}

.hero h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
}

.hero h1 {
    margin: 0;
    font-size: clamp(54px, 5.3vw, 83px);
    line-height: .98;
    letter-spacing: -.035em;
    text-shadow: 0 3px 22px rgba(0, 0, 0, .25);
}

.hero h1 em {
    color: var(--gold);
    font-weight: 600;
}

.hero-text {
    max-width: 600px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 31px;
}

.btn {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    transition: .25s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

.btn-gold {
    color: var(--navy-950);
    background: linear-gradient(135deg, #f5c66d, var(--gold-deep));
    box-shadow: 0 13px 30px rgba(231, 154, 32, .25);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .65);
    background: rgba(5, 30, 47, .2);
    backdrop-filter: blur(10px);
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

.btn-outline:hover {
    border-color: var(--aqua);
    background: rgba(10, 52, 74, .72);
}

.btn-navy {
    background: var(--navy-900);
    color: #fff;
}

.trip-card {
    background: rgba(4, 29, 48, .94);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
    backdrop-filter: blur(13px);
}

.trip-card-heading {
    text-align: center;
    margin-bottom: 20px;
}

.mini-kicker {
    color: var(--aqua);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
}

.trip-card h2 {
    margin: 2px 0 2px;
    font-size: 30px;
    color: var(--gold);
}

.trip-card-heading p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .67);
}

.trip-card form {
    display: grid;
    gap: 12px;
}

.form-grid {
    display: grid;
    gap: 10px;
}

.form-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.trip-card label {
    display: grid;
    gap: 5px;
}

.trip-card label>span:first-child {
    font-size: 11px;
    color: rgba(255, 255, 255, .73);
    font-weight: 600;
}

.field-wrap {
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(1, 18, 31, .5);
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    transition: .2s ease;
}

.field-wrap:focus-within {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(35, 185, 189, .12);
}

.field-wrap svg {
    width: 17px;
    height: 17px;
    color: var(--gold);
    flex: 0 0 auto;
}

.field-wrap input,
.field-wrap select {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 13px;
    color-scheme: dark;
}

.field-wrap input::placeholder {
    color: rgba(255, 255, 255, .47);
}

.field-wrap select option {
    color: #111;
    background: #fff;
}

.whatsapp-submit {
    min-height: 54px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(135deg, #2ac1c1, #11999f);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s ease;
}

.whatsapp-submit svg {
    width: 21px;
    height: 21px;
}

.whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(35, 185, 189, .25);
}

.form-note {
    margin: -2px 0 0;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
}

.form-error {
    margin: 0;
    color: #ffc0b8;
    font-size: 12px;
    min-height: 0;
    text-align: center;
}

.trust-strip {
    position: relative;
    z-index: 3;
    background: rgba(3, 28, 47, .97);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.trust-grid {
    min-height: 106px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 19px 28px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(242, 183, 83, .56);
    border-radius: 50%;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-item>span:last-child {
    display: grid;
}

.trust-item strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.trust-item small {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

.section {
    padding: 104px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.section-heading>p:last-child {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 16px;
}

.experiences {
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-card {
    min-width: 0;
    background: var(--navy-900);
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(6, 34, 53, .12);
    transition: transform .28s ease, box-shadow .28s ease;
}

.experience-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(6, 34, 53, .19);
}

.experience-image {
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    background: #d7e5e9;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.experience-card:hover img {
    transform: scale(1.06);
}

.experience-content {
    position: relative;
    min-height: 224px;
    padding: 29px 25px 25px;
}

.service-icon {
    position: absolute;
    right: 20px;
    top: -28px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.experience-content h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
}

.experience-content p {
    margin: 10px 0 17px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.6;
}

.experience-content a {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
}

.service-more {
    margin-top: 30px;
    padding: 20px 26px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
    color: var(--muted);
    text-align: center;
}

.service-more span {
    color: var(--navy-900);
    font-weight: 800;
}

.how-section {
    background: linear-gradient(180deg, #f8f5ef, #eef5f5);
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    margin-top: 10px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 47px;
    left: 14%;
    right: 14%;
    border-top: 1px dashed rgba(15, 146, 153, .45);
}

.step {
    position: relative;
    text-align: center;
    padding: 0 26px;
}

.step-top {
    position: relative;
    display: inline-flex;
    z-index: 1;
}

.step-icon {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--navy-700), var(--aqua-deep));
    border: 8px solid #f0f7f7;
    font-size: 31px;
    box-shadow: 0 10px 27px rgba(9, 80, 94, .2);
}

.step-number {
    position: absolute;
    right: -5px;
    top: 2px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--gold-deep);
    border: 3px solid #fff;
    font-size: 12px;
    font-weight: 800;
}

.step h3 {
    margin: 20px 0 5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    color: var(--navy-900);
}

.step p {
    max-width: 320px;
    margin: auto;
    color: var(--muted);
    font-size: 14px;
}

.itinerary-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    color: #fff;
    background: radial-gradient(circle at 86% 18%, rgba(35, 185, 189, .2), transparent 30%), linear-gradient(135deg, #041827, #092e49 64%, #0b415a);
}

.itinerary-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(242, 183, 83, .13);
    border-radius: 50%;
    right: -190px;
    top: -170px;
}

.itinerary-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.itinerary-copy h2 {
    margin: 0;
    font-size: clamp(44px, 4.4vw, 65px);
    line-height: 1.04;
}

.itinerary-copy>p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .72);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 29px;
    color: rgba(255, 255, 255, .86);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

.itinerary-phone-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.phone-shell {
    width: min(100%, 355px);
    padding: 12px;
    border-radius: 44px;
    background: #f5f7f7;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .42);
    border: 5px solid #122130;
    transform: rotate(-2deg);
}

.phone-notch {
    width: 102px;
    height: 21px;
    margin: 0 auto -11px;
    position: relative;
    z-index: 2;
    background: #071018;
    border-radius: 0 0 14px 14px;
}

.phone-screen {
    min-height: 600px;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border-radius: 31px;
    padding: 28px 18px 20px;
}

.phone-head {
    display: flex;
    justify-content: space-between;
    padding: 8px 0 15px;
    border-bottom: 1px solid #e5eaec;
    font-weight: 800;
    font-size: 14px;
}

.date-row {
    margin: 19px 0 8px;
    display: flex;
    justify-content: space-between;
    color: var(--navy-900);
    font-size: 10px;
}

.date-row span {
    color: var(--muted);
}

.schedule-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f1;
}

.schedule-item .time {
    font-size: 10px;
    color: var(--muted);
}

.schedule-item>span:nth-child(2) {
    display: grid;
}

.schedule-item strong {
    font-size: 12px;
}

.schedule-item small {
    font-size: 9px;
    color: var(--muted);
}

.schedule-item b {
    align-self: start;
    padding: 3px 6px;
    border-radius: 6px;
    color: #168873;
    background: #ddf7ee;
    font-size: 8px;
}

.itinerary-note {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--gold);
    font-size: 24px;
    line-height: 1.25;
    transform: rotate(-6deg);
}

.itinerary-note em {
    color: #fff;
}

.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 85px;
    align-items: center;
}

.about-media {
    position: relative;
    min-height: 570px;
}

.about-media>img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-media::before {
    content: "";
    position: absolute;
    width: 62%;
    height: 58%;
    left: -22px;
    bottom: -22px;
    border-radius: 18px;
    background: var(--gold);
    z-index: -1;
}

.about-badge {
    position: absolute;
    right: -28px;
    bottom: 35px;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: var(--navy-900);
    border: 5px solid var(--gold);
    color: #fff;
    box-shadow: 0 15px 36px rgba(3, 22, 36, .32);
}

.about-badge span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
}

.about-badge small {
    margin-top: 5px;
    color: var(--gold);
    font-size: 10px;
}

.about-copy h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.08;
}

.about-copy>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.about-points div {
    padding: 18px 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--cream);
}

.about-points strong {
    display: block;
    color: var(--aqua-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
}

.about-points span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.signature-line {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 17px;
    color: var(--navy-900);
}

.signature-line span {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: 21px;
    color: var(--gold-deep);
}

.signature-line strong {
    border-left: 1px solid var(--line);
    padding-left: 18px;
}

.text-link {
    color: var(--navy-900);
    font-weight: 800;
    border-bottom: 1px solid var(--gold);
}

.why-section {
    padding-top: 0;
    background: #fff;
}

.why-panel {
    padding: 64px;
    display: grid;
    grid-template-columns: .85fr 1.4fr;
    gap: 65px;
    color: #fff;
    background: linear-gradient(125deg, var(--navy-950), var(--navy-800));
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.why-heading h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.08;
}

.why-heading p:last-child {
    color: rgba(255, 255, 255, .67);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
}

.why-card>span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.why-card h3 {
    margin: 8px 0 5px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.faq-section {
    background: linear-gradient(180deg, var(--cream), #fff);
}

.faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 85px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    margin: 0 0 15px;
    color: var(--navy-900);
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1.1;
}

.faq-intro>p:not(.eyebrow) {
    color: var(--muted);
    margin-bottom: 24px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    width: 100%;
    padding: 23px 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    color: var(--navy-900);
    font-weight: 800;
}

.faq-item button b {
    color: var(--gold-deep);
    font-size: 23px;
    line-height: 1;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}

.final-cta {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
}

.final-cta-bg,
.final-cta-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-cta-bg {
    object-fit: cover;
}

.final-cta-overlay {
    background: linear-gradient(90deg, rgba(3, 22, 36, .9), rgba(4, 34, 52, .68));
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
}

.final-cta h2 {
    margin: 0;
    font-size: clamp(45px, 5vw, 68px);
    line-height: 1.03;
}

.final-cta-content>p:not(.eyebrow) {
    max-width: 620px;
    margin: 19px auto 0;
    color: rgba(255, 255, 255, .8);
}

.centered-actions {
    justify-content: center;
}

.site-footer {
    color: #fff;
    background: var(--navy-950);
}

.footer-main {
    padding: 75px 0 58px;
    display: grid;
    grid-template-columns: 1.45fr .7fr .95fr 1.15fr;
    gap: 55px;
}

.footer-logo img {
    width: 68px;
    height: 68px;
}

.footer-brand>p {
    max-width: 350px;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    transition: .2s ease;
}

.social-links a:hover {
    color: var(--navy-950);
    background: var(--gold);
    border-color: var(--gold);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-col h3 {
    margin: 0 0 13px;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--gold);
    font-size: 20px;
}

.footer-col a,
.footer-col p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    transition: color .2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact a,
.footer-contact p {
    display: grid;
    gap: 1px;
}

.footer-contact span {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.footer-whatsapp {
    margin-top: 8px !important;
    padding: 10px 14px;
    border: 1px solid var(--aqua);
    border-radius: 6px;
    color: var(--aqua) !important;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 999;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1fb95d;
    color: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
    transition: .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
    width: 29px;
    height: 29px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .primary-nav {
        gap: 20px;
    }

    .brand-copy {
        display: none;
    }

    .hero-grid {
        gap: 45px;
        grid-template-columns: 1fr 390px;
    }

    .hero h1 {
        font-size: 61px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .itinerary-grid {
        gap: 50px;
    }

    .about-grid {
        gap: 55px;
    }

    .why-panel {
        padding: 48px;
        gap: 42px;
    }

    .footer-main {
        grid-template-columns: 1.4fr .7fr 1fr;
    }

    .footer-contact {
        grid-column: 3;
    }
}

@media (max-width: 920px) {

    .site-header,
    .site-header.scrolled {
        height: 76px;
    }

    .brand img {
        width: 56px;
        height: 56px;
    }

    .brand-copy {
        display: grid;
    }

    .primary-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        height: calc(100vh - 76px);
        padding: 45px 24px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        background: rgba(4, 21, 34, .99);
        transform: translateX(100%);
        transition: transform .28s ease;
    }

    body.nav-open .primary-nav {
        transform: translateX(0);
    }

    .primary-nav a {
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .primary-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    body.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 76px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 75px;
        padding-bottom: 58px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero h1 {
        font-size: clamp(52px, 9vw, 76px);
    }

    .trip-card {
        max-width: 600px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .steps {
        gap: 10px;
    }

    .step {
        padding: 0 10px;
    }

    .itinerary-grid,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-copy {
        max-width: 650px;
    }

    .about-media {
        order: 2;
        max-width: 680px;
    }

    .about-copy {
        order: 1;
    }

    .faq-intro {
        position: static;
    }

    .why-panel {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .hero-grid {
        padding-top: 54px;
        gap: 43px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .trip-card {
        padding: 22px 17px;
    }

    .trip-card h2 {
        font-size: 27px;
    }

    .form-grid.two-col {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding-inline: 9px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 41px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-content {
        min-height: auto;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .steps::before {
        display: none;
    }

    .step {
        max-width: 400px;
        margin-inline: auto;
    }

    .itinerary-section {
        padding: 78px 0;
    }

    .itinerary-grid {
        gap: 55px;
    }

    .itinerary-phone-wrap {
        flex-direction: column;
    }

    .phone-shell {
        max-width: 330px;
    }

    .phone-screen {
        min-height: 570px;
    }

    .itinerary-note {
        text-align: center;
    }

    .about-media {
        min-height: 430px;
    }

    .about-media>img {
        height: 430px;
    }

    .about-badge {
        width: 116px;
        height: 116px;
        right: -4px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .signature-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .signature-line strong {
        border-left: 0;
        padding-left: 0;
    }

    .why-panel {
        padding: 35px 22px;
        border-radius: 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        min-height: 570px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom-inner {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   Inside pages, dropdown navigation and shared forms
   ========================================================= */
.primary-nav a.active {
    color: #fff;
}

.primary-nav a.active::after {
    right: 0;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown>a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown>a i {
    font-size: 9px;
    transition: transform .25s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    width: 270px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    background: #fff;
    border: 1px solid rgba(7, 31, 51, .1);
    border-radius: 12px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .24);
    transition: .25s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 20px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--navy-900);
    border-radius: 7px;
    font-size: 13px;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    color: var(--navy-900);
    background: var(--cream);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover>a i {
    transform: rotate(180deg);
}

.inside-page {
    background: #fff;
}

.page-hero {
    position: relative;
    min-height: 580px;
    padding: 165px 0 90px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--navy-900);
}

.page-hero>img,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero>img {
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    background: linear-gradient(90deg, rgba(2, 18, 30, .95) 0%, rgba(4, 32, 51, .8) 48%, rgba(4, 32, 51, .28) 100%), linear-gradient(0deg, rgba(1, 15, 26, .55), transparent 62%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 930px;
    margin-left: max(20px, calc((100vw - var(--container))/2));
    margin-right: auto;
}

.page-hero-content h1 {
    max-width: 890px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.page-hero-content>p:not(.eyebrow) {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb strong {
    color: #fff;
}

.inside-section {
    padding: 105px 0;
}

.soft-bg {
    background: linear-gradient(180deg, var(--cream), #fff);
}

.navy-section {
    color: #fff;
    background: radial-gradient(circle at 85% 15%, rgba(35, 185, 189, .18), transparent 30%), linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.content-heading h2,
.story-copy h2,
.contact-info h2,
.contact-form-card h2,
.section-heading.compact h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(39px, 4.3vw, 60px);
    line-height: 1.08;
}

.lead-copy {
    color: #304b60 !important;
    font-size: 19px !important;
    line-height: 1.75;
}

/* Services listing */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.service-list-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 370px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(4, 27, 44, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-list-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 68px rgba(4, 27, 44, .16);
}

.service-card-image {
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.service-list-card:hover .service-card-image img {
    transform: scale(1.06);
}

.service-list-content {
    position: relative;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-round-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--navy-900);
    background: linear-gradient(135deg, #f8d58e, var(--gold));
    box-shadow: 0 10px 24px rgba(231, 154, 32, .22);
}

.service-kicker {
    margin: 0 0 7px;
    color: var(--aqua-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.service-list-content h2 {
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: 30px;
    line-height: 1.15;
}

.service-list-content>p:not(.service-kicker) {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.card-arrow-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy-900);
    font-weight: 800;
    font-size: 13px;
    border-bottom: 1px solid var(--gold);
}

.card-arrow-link i {
    font-size: 11px;
    transition: transform .25s ease;
}

.card-arrow-link:hover i {
    transform: translateX(4px);
}

.extra-service-panel {
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.extra-service-panel h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(38px, 4vw, 54px);
}

.extra-service-panel p:not(.eyebrow) {
    max-width: 800px;
    color: var(--muted);
}

.services-main-action {
    width: 100%;
    margin-top: 42px;
    text-align: center;
}

.services-view-all-btn {
    min-height: 56px;
    padding: 15px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid var(--gold);
    border-radius: 7px;
    background: var(--gold);
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(7, 31, 51, .15);
    transition: .3s ease;
}

.services-view-all-btn:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff;
    transform: translateY(-3px);
}

/* Service detail */
.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .7fr);
    gap: 75px;
    align-items: start;
}

.service-main {
    min-width: 0;
}

.detail-list {
    margin: 42px 0 80px;
    border-top: 1px solid var(--line);
}

.detail-list article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.detail-list article>span {
    color: var(--gold-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.detail-list article p {
    margin: 0;
    color: var(--muted);
}

.section-heading.compact {
    margin-bottom: 30px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 70px;
}

.highlight-card {
    min-height: 86px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
    color: var(--navy-900);
    font-weight: 700;
}

.highlight-card i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--aqua-deep);
    font-size: 12px;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 245px 245px;
    gap: 16px;
    margin-bottom: 70px;
}

.service-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
}

.service-gallery .gallery-large {
    grid-row: 1 / 3;
}

.service-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-gallery figure:hover img {
    transform: scale(1.04);
}

.perfect-panel {
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: #fff;
    background: linear-gradient(125deg, var(--navy-950), var(--navy-700));
    border-radius: 18px;
}

.perfect-panel h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.12;
}

.perfect-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.perfect-panel li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.perfect-panel li i {
    color: var(--gold);
    font-size: 11px;
}

.service-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 25px;
}

.booking-card,
.contact-form-card {
    padding: 34px;
    background: var(--navy-900);
    color: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.booking-card h2,
.contact-form-card h2 {
    margin: 5px 0 5px;
    color: #fff;
    font-size: 34px;
}

.booking-card>p:not(.mini-kicker),
.contact-form-card>p:not(.mini-kicker) {
    margin-top: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.whatsapp-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.whatsapp-form label {
    display: grid;
    gap: 7px;
}

.whatsapp-form label>span,
.interest-fieldset legend {
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    font-weight: 700;
}

.whatsapp-form input,
.whatsapp-form textarea,
.whatsapp-form select {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 7px;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.whatsapp-form textarea {
    resize: vertical;
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
    color: rgba(255, 255, 255, .38);
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus,
.whatsapp-form select:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(35, 185, 189, .12);
}

.btn-aqua {
    width: 100%;
    color: #fff;
    background: linear-gradient(135deg, var(--aqua), var(--aqua-deep));
}

.form-error {
    min-height: 20px;
    margin: 0;
    color: #ffd39a !important;
    font-size: 12px !important;
}

.local-help-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(4, 27, 44, .08);
}

.local-help-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center 18%;
}

.local-help-card div {
    padding: 24px;
}

.local-help-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.local-help-card p:not(.eyebrow) {
    color: var(--muted);
    font-size: 13px;
}

.local-help-card a {
    color: var(--aqua-deep);
    font-weight: 800;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mini-service-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(4, 27, 44, .08);
}

.mini-service-card>img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.mini-service-card>div {
    padding: 25px;
}

.mini-service-card i {
    color: var(--gold-deep);
}

.mini-service-card h3 {
    margin: 8px 0 14px;
    color: var(--navy-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
}

.mini-service-card a {
    color: var(--aqua-deep);
    font-size: 13px;
    font-weight: 800;
}

.compact-cta {
    min-height: 470px;
}

/* About */
.mario-story-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
    align-items: center;
}

.mario-portrait {
    position: relative;
    max-width: 545px;
}

.mario-portrait>img {
    width: 100%;
    height: 670px;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.mario-portrait::before {
    content: "";
    position: absolute;
    left: -22px;
    bottom: -22px;
    width: 68%;
    height: 60%;
    border-radius: 20px;
    background: var(--gold);
    z-index: -1;
}

.portrait-label {
    position: absolute;
    right: -40px;
    bottom: 38px;
    min-width: 265px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    background: var(--navy-900);
    border: 1px solid rgba(242, 183, 83, .55);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.portrait-label i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--gold);
}

.portrait-label strong,
.portrait-label span {
    display: block;
}

.portrait-label span {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
}

.story-copy>p:not(.eyebrow) {
    color: var(--muted);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.stat-row div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
}

.stat-row strong {
    display: block;
    color: var(--aqua-deep);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
}

.stat-row span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.btn-whatsapp-light {
    border-color: var(--aqua-deep);
    color: var(--aqua-deep);
    background: #fff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vision-card {
    position: relative;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
}

.vision-card>span {
    position: absolute;
    right: 30px;
    top: 25px;
    color: rgba(255, 255, 255, .16);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 60px;
}

.vision-card>i {
    color: var(--gold);
    font-size: 30px;
}

.vision-card h2 {
    margin: 18px 0 10px;
    font-size: 39px;
}

.vision-card p {
    color: rgba(255, 255, 255, .68);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    padding: 32px 26px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(4, 27, 44, .07);
}

.value-card i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-900);
    background: var(--gold);
}

.value-card h3 {
    margin: 20px 0 9px;
    color: var(--navy-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.review-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 17px 48px rgba(4, 27, 44, .07);
}

.review-card::after {
    content: "“";
    position: absolute;
    right: 25px;
    top: 5px;
    color: rgba(242, 183, 83, .18);
    font-family: Georgia, serif;
    font-size: 95px;
    line-height: 1;
}

.review-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 3px;
    color: var(--gold-deep);
    font-size: 12px;
}

.review-card>p {
    position: relative;
    z-index: 1;
    min-height: 120px;
    color: var(--muted);
}

.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-person>span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--navy-900);
    font-weight: 800;
}

.review-person strong,
.review-person small {
    display: block;
}

.review-person small {
    color: var(--muted);
    font-size: 11px;
}

.review-feature-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 75px;
    align-items: center;
}

.review-feature-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-feature-copy h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(42px, 4vw, 58px);
}

.review-feature-copy>p:not(.eyebrow) {
    color: var(--muted);
}

.dark-list li {
    color: var(--ink);
}

/* Media */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.media-card {
    position: relative;
    height: 360px;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--navy-900);
}

.media-card:nth-child(1),
.media-card:nth-child(8) {
    grid-column: span 2;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 21, 34, .88), transparent 60%);
}

.media-card:hover img {
    transform: scale(1.05);
}

.media-card figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #fff;
}

.media-card figcaption span,
.media-card figcaption strong {
    display: block;
}

.media-card figcaption span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.media-card figcaption strong {
    margin-top: 4px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.media-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.media-note h2 {
    margin: 0;
    font-size: clamp(40px, 4vw, 58px);
}

.media-note p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(255, 255, 255, .65);
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: start;
}

.contact-info>p:not(.eyebrow) {
    color: var(--muted);
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.contact-cards>* {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
}

.contact-cards>*>i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--aqua-deep);
}

.contact-cards span,
.contact-cards strong {
    display: block;
}

.contact-cards span {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-cards strong {
    color: var(--navy-900);
}

.contact-mario {
    overflow: hidden;
    display: grid;
    grid-template-columns: 145px 1fr;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(4, 27, 44, .07);
}

.contact-mario img {
    width: 100%;
    height: 100%;
    min-height: 175px;
    object-fit: cover;
    object-position: center top;
}

.contact-mario>div {
    padding: 22px;
}

.contact-mario h3 {
    margin: 0;
    color: var(--navy-900);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
}

.contact-mario p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.comprehensive-form {
    gap: 17px;
}

.interest-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.interest-fieldset legend {
    margin-bottom: 10px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkbox-grid label,
.consultation-check {
    min-height: 45px;
    padding: 10px;
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 9px !important;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;
    background: rgba(255, 255, 255, .05);
}

.checkbox-grid input,
.consultation-check input {
    width: 16px;
    min-height: 16px;
    accent-color: var(--aqua);
}

.checkbox-grid span,
.consultation-check span {
    color: rgba(255, 255, 255, .72) !important;
    font-size: 11px !important;
}

.map-section {
    height: 470px;
    background: var(--navy-900);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.75) contrast(1.03);
}

.empty-state {
    padding: 170px 0 90px;
    text-align: center;
}

@media (max-width: 1120px) {
    .primary-nav {
        gap: 15px;
    }

    .primary-nav>a,
    .nav-dropdown>a {
        font-size: 13px;
    }

    .service-list-card {
        grid-template-columns: 40% 60%;
    }

    .service-detail-layout {
        gap: 45px;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .nav-dropdown {
        display: block;
    }

    .nav-dropdown>a {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: auto;
        padding: 2px 0 8px 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: transparent;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 7px 0;
        color: rgba(255, 255, 255, .62);
        font-size: 12px;
    }

    .nav-dropdown-menu a:hover {
        color: #fff;
        background: transparent;
    }

    .page-hero {
        min-height: 520px;
        padding-top: 145px;
    }

    .page-hero-content {
        margin-left: auto;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-layout,
    .mario-story-grid,
    .contact-layout,
    .review-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .mario-portrait {
        margin: auto;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-card:nth-child(1),
    .media-card:nth-child(8) {
        grid-column: span 1;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .extra-service-panel,
    .media-note {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .inside-section {
        padding: 75px 0;
    }

    .page-hero {
        min-height: 500px;
        padding: 135px 0 70px;
    }

    .page-hero-content h1 {
        font-size: 48px;
    }

    .page-hero-content>p:not(.eyebrow) {
        font-size: 16px;
    }

    .service-list-card {
        display: block;
    }

    .service-card-image {
        height: 255px;
        display: block;
    }

    .service-list-content {
        padding: 28px 24px;
    }

    .highlight-grid,
    .perfect-panel,
    .perfect-panel ul,
    .reviews-grid,
    .media-grid,
    .related-grid,
    .value-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 250px);
    }

    .service-gallery .gallery-large {
        grid-row: auto;
    }

    .perfect-panel {
        padding: 30px;
    }

    .mario-portrait>img {
        height: 520px;
    }

    .portrait-label {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -38px 15px 0;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .vision-card {
        padding: 35px 26px;
    }

    .media-card {
        height: 310px;
    }

    .contact-mario {
        grid-template-columns: 110px 1fr;
    }

    .contact-form-card,
    .booking-card {
        padding: 27px 22px;
    }

    .extra-service-panel {
        padding: 38px 28px;
    }
}

.site-header {
    padding-top: 66px;
    padding-bottom: 66px;
}
.brand img {
    width: 161px !important;
    height: 119px !important;
    object-fit: contain;
}

/* Footer Copyright & Designer Credit */

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(216, 170, 85, 0.18);
    background: #041725;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright,
.footer-designer {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

.footer-designer a {
    position: relative;
    color: #d8aa55;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-designer a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: #d8aa55;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-designer a:hover {
    color: #ffffff;
}

.footer-designer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 767px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 7px;
        text-align: center;
    }
}

/* Contact Form Additional Fields */

.contact-three-col {
    display: grid;
    grid-template-columns: 1fr 0.85fr 1fr;
    align-items: start;
    gap: 22px;
}

.interest-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.interest-fieldset legend {
    width: 100%;
    margin-bottom: 12px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
}

.checkbox-grid label,
.consultation-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 9px !important;
    cursor: pointer;
}

.checkbox-grid input,
.consultation-check input {
    width: 17px !important;
    min-width: 17px !important;
    height: 17px !important;
    min-height: 17px !important;
    margin: 1px 0 0;
    padding: 0 !important;
    accent-color: var(--gold);
}

.checkbox-grid label > span,
.consultation-check > span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.consultation-check {
    padding: 14px 15px;
    border: 1px solid rgba(242, 183, 83, 0.25);
    border-radius: 7px;
    background: rgba(242, 183, 83, 0.06);
}

.whatsapp-availability {
    padding-top: 1px;
}

.whatsapp-choice {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-choice .consultation-check {
    flex: 1;
    padding: 11px 12px;
}

.recaptcha-wrapper {
    min-height: 78px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .contact-three-col {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-availability {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .checkbox-grid,
    .contact-three-col {
        grid-template-columns: 1fr;
    }

    .whatsapp-availability {
        grid-column: auto;
    }

    .g-recaptcha {
        transform: scale(0.88);
        transform-origin: left center;
    }
}

@media (max-width: 390px) {
    .g-recaptcha {
        transform: scale(0.78);
    }
}

/* ==================================
   Contact Page Mario Card
================================== */

.contact-mario {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(7, 31, 51, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 31, 51, 0.1);
}

/* Image */

.contact-mario__image {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: #071f33;
}

.contact-mario__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 31, 51, 0.65) 0%,
        rgba(7, 31, 51, 0.08) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.contact-mario__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.5s ease;
}

.contact-mario:hover .contact-mario__image img {
    transform: scale(1.035);
}

/* Image Badge */

.contact-mario__badge {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(216, 170, 85, 0.55);
    border-radius: 50px;
    background: rgba(7, 31, 51, 0.88);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.contact-mario__badge i {
    color: #d8aa55;
}

/* Content */

.contact-mario__content {
    padding: 30px 30px 32px;
}

.contact-mario__content .eyebrow {
    margin: 0 0 10px;
    color: #c78928;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.contact-mario__content h3 {
    margin: 0 0 15px;
    color: #071f33;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
}

.contact-mario__text {
    margin: 0;
    color: #61707c;
    font-size: 15px;
    line-height: 1.75;
}

/* Features */

.contact-mario__features {
    display: grid;
    gap: 11px;
    margin-top: 22px;
}

.contact-mario__features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #243d50;
    font-size: 13px;
    font-weight: 600;
}

.contact-mario__features i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(13, 137, 149, 0.12);
    color: #0d8995;
    font-size: 10px;
}

/* Button */

.contact-mario__button {
    width: 100%;
    min-height: 52px;
    margin-top: 25px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #0d8995;
    border-radius: 8px;
    background: #0d8995;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-mario__button i {
    font-size: 18px;
}

.contact-mario__button:hover {
    border-color: #071f33;
    background: #071f33;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(7, 31, 51, 0.18);
}

/* Responsive */

@media (max-width: 767px) {
    .contact-mario__image {
        height: 380px;
    }

    .contact-mario__content {
        padding: 25px 22px 27px;
    }

    .contact-mario__content h3 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .contact-mario__image {
        height: 330px;
    }

    .contact-mario__badge {
        right: 16px;
        left: 16px;
        bottom: 16px;
        justify-content: center;
        text-align: center;
    }
}
/* FORCE MARIO CARD VERTICAL LAYOUT */

.contact-mario {
    display: block !important;
    grid-template-columns: none !important;
    align-items: initial !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(7, 31, 51, 0.14) !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 50px rgba(7, 31, 51, 0.12) !important;
}

/* Top Full-Width Image */

.contact-mario .contact-mario__image {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 430px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: #071f33 !important;
}

.contact-mario .contact-mario__image img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center 22% !important;
}

/* Image Overlay */

.contact-mario .contact-mario__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 31, 51, 0.68),
        rgba(7, 31, 51, 0.04) 55%,
        transparent
    );
    pointer-events: none;
}

/* Badge */

.contact-mario .contact-mario__badge {
    position: absolute !important;
    left: 22px !important;
    right: auto !important;
    bottom: 20px !important;
    z-index: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    padding: 10px 15px !important;
    border: 1px solid rgba(216, 170, 85, 0.65) !important;
    border-radius: 50px !important;
    background: rgba(7, 31, 51, 0.9) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    backdrop-filter: blur(8px);
}

.contact-mario .contact-mario__badge i {
    color: #d8aa55 !important;
}

/* Content Below Image */

.contact-mario .contact-mario__content {
    display: block !important;
    width: 100% !important;
    padding: 30px 30px 32px !important;
    text-align: left !important;
    background: #ffffff !important;
}

.contact-mario .contact-mario__content .eyebrow {
    margin: 0 0 10px !important;
    color: #c78928 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.contact-mario .contact-mario__content h3 {
    margin: 0 0 15px !important;
    color: #071f33 !important;
    font-family: "Playfair Display", serif !important;
    font-size: 35px !important;
    line-height: 1.15 !important;
}

.contact-mario .contact-mario__text {
    margin: 0 !important;
    color: #61707c !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

/* Features */

.contact-mario .contact-mario__features {
    display: grid !important;
    gap: 11px !important;
    margin: 22px 0 0 !important;
}

.contact-mario .contact-mario__features span {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #243d50 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.contact-mario .contact-mario__features i {
    width: 25px !important;
    height: 25px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background: rgba(13, 137, 149, 0.12) !important;
    color: #0d8995 !important;
    font-size: 10px !important;
}

/* WhatsApp Button */

.contact-mario .contact-mario__button {
    width: 100% !important;
    min-height: 52px !important;
    margin-top: 25px !important;
    padding: 13px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border: 1px solid #0d8995 !important;
    border-radius: 8px !important;
    background: #0d8995 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}

.contact-mario .contact-mario__button:hover {
    border-color: #071f33 !important;
    background: #071f33 !important;
    transform: translateY(-2px) !important;
}

/* Responsive */

@media (max-width: 767px) {
    .contact-mario .contact-mario__image {
        height: 370px !important;
    }

    .contact-mario .contact-mario__content {
        padding: 25px 22px 28px !important;
    }

    .contact-mario .contact-mario__content h3 {
        font-size: 30px !important;
    }
}

@media (max-width: 480px) {
    .contact-mario .contact-mario__image {
        height: 330px !important;
    }

    .contact-mario .contact-mario__badge {
        left: 15px !important;
        right: 15px !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

.media-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.media-social-links a {
    min-height: 44px;
    padding: 10px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(216, 170, 85, 0.55);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.media-social-links a i {
    color: #000000;
    font-size: 17px;
}

.media-social-links a:hover {
    border-color: #d8aa55;
    background: #d8aa55;
    color: #071f33;
    transform: translateY(-2px);
}

.media-social-links a:hover i {
    color: #071f33;
}

@media (max-width: 575px) {
    .media-social-links a {
        width: 100%;
    }
}/* Professional Social Media Buttons */

.media-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.media-social-links .social-button {
    min-width: 175px;
    min-height: 58px;
    padding: 9px 18px 9px 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(216, 170, 85, 0.42);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(7px);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.social-button__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d8aa55;
    color: #071f33;
    font-size: 17px;
}

.social-button__content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.social-button__content small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-button__content strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.media-social-links .social-button:hover {
    border-color: #d8aa55;
    background: #d8aa55;
    color: #071f33;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.media-social-links .social-button:hover .social-button__icon {
    background: #071f33;
    color: #ffffff;
}

.media-social-links .social-button:hover small,
.media-social-links .social-button:hover strong {
    color: #071f33;
}

@media (max-width: 575px) {
    .media-social-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .media-social-links .social-button {
        width: 100%;
    }
}