:root {
    --color-ink: #17385d;
    --color-ink-soft: #607a99;
    --color-brand-blue: #153759;
    --color-brand-blue-deep: #0d2540;
    --color-brand-blue-soft: #6f95af;
    --color-brand-gold: #cba44f;
    --color-brand-gold-deep: #876122;
    --color-surface: #ffffff;
    --color-surface-soft: #f4f8fc;
    --color-surface-cream: #fbf8f1;
    --color-line: rgba(21, 55, 89, 0.1);
    --color-white-soft: rgba(255, 255, 255, 0.78);
    --shadow-soft: 0 30px 80px rgba(13, 37, 64, 0.14);
    --shadow-card: 0 18px 45px rgba(13, 37, 64, 0.08);
    --radius-xl: 12px;
    --radius-lg: 8px;
    --radius-md: 4px;
    --transition-base: 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top left, rgba(111, 149, 175, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(203, 164, 79, 0.18), transparent 22%),
        linear-gradient(180deg, #f6f9fc 0%, #fbfaf6 42%, #ffffff 100%);
    line-height: 1.75;
    font-weight: 500;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base), opacity var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

a:hover {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--color-ink);
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    line-height: 1.12;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.agency-page {
    overflow-x: hidden;
}

.section-space {
    padding: 112px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(238, 244, 250, 0.76) 0%, rgba(251, 248, 241, 0.92) 100%);
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.section-head>div {
    max-width: 700px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-brand-gold-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-brand-blue-soft) 0%, var(--color-brand-gold) 100%);
}

.section-label.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    margin-bottom: 20px;
}

.section-title.light,
.section-copy.light {
    color: #ffffff;
}

.section-copy {
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    color: var(--color-ink-soft);
    line-height: 1.82;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-cta,
.hero-btn-primary {
    color: var(--color-brand-blue-deep);
    background: linear-gradient(135deg, #b9862a 0%, #eed783 100%);
    border-color: rgba(203, 164, 79, 0.72);
    box-shadow: 0 15px 30px rgba(185, 134, 42, 0.22);
}

.site-cta:hover,
.hero-btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #7a531c 0%, #b98732 100%);
    border-color: var(--color-brand-gold-deep);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.hero-btn-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-brand-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.text-link::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.photo-source {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

.header-fluid {
    width: 100%;
    padding-left: 42px;
    padding-right: 42px;
}

.header-topbar {
    padding: 13px 0;
    background: rgba(13, 37, 64, 0.92);
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity var(--transition-base), max-height var(--transition-base), padding var(--transition-base);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-note {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topbar-links a:hover {
    color: #ffffff;
}

.site-navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 36px rgba(13, 37, 64, 0.08);
    transition: padding var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled .header-topbar {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.site-header.is-scrolled .site-navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: var(--color-ink);
}

.brand-mark,
.footer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-brand-blue-deep) 0%, var(--color-brand-blue-soft) 48%, var(--color-brand-gold) 100%);
    box-shadow: 0 14px 28px rgba(13, 37, 64, 0.16);
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    font-weight: 800;
    font-size: 32px;
}

.brand-logo-wrap,
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.brand-logo-image {
    display: block;
    max-height: 74px;
    width: auto;
}

.footer-logo-image {
    display: block;
    max-height: 72px;
    width: auto;
}

.site-nav {
    align-items: center;
    gap: 4px;
}

.site-nav .nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-brand-blue) 0%, var(--color-brand-gold) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-base);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
    color: var(--color-brand-blue);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
    transform: scaleX(1);
}

.site-cta {
    margin-left: 20px;
}

.site-toggler {
    padding: 0;
    border: 0;
    box-shadow: none !important;
}

.site-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px 0;
    background: var(--color-brand-blue);
}

.hero-shell {
    position: relative;
    background: var(--color-brand-blue-deep);
}

.hero-carousel {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 37, 64, 0.92) 0%, rgba(13, 37, 64, 0.58) 44%, rgba(13, 37, 64, 0.36) 100%),
        linear-gradient(180deg, rgba(13, 37, 64, 0.26) 0%, rgba(13, 37, 64, 0.7) 100%);
}

.hero-slide .container,
.hero-slide .row {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 680px;
    padding: 210px 0 128px;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    color: #ffffff;
    font-size: clamp(3.4rem, 6.8vw, 6.4rem);
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 600px;
    margin-bottom: 34px;
    color: var(--color-white-soft);
    font-size: 18px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-panel {
    margin-bottom: 128px;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.hero-panel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-panel-tabs span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(21, 55, 89, 0.08);
    color: var(--color-ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel-tabs .active {
    color: var(--color-brand-blue-deep);
    background: linear-gradient(135deg, rgba(203, 164, 79, 0.24) 0%, rgba(239, 221, 153, 0.7) 100%);
}

.hero-panel h2 {
    font-size: 42px;
    margin-bottom: 14px;
}

.hero-panel p {
    margin-bottom: 18px;
    color: var(--color-ink-soft);
}

.hero-panel-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-panel-list li {
    position: relative;
    padding-left: 18px;
    color: var(--color-ink);
}

.hero-panel-list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-brand-gold);
}

.hero-panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-panel-metrics div {
    padding-top: 14px;
    border-top: 1px solid rgba(21, 55, 89, 0.12);
}

.hero-panel-metrics strong,
.hero-panel-metrics span {
    display: block;
}

.hero-panel-metrics strong {
    font-size: 22px;
    color: var(--color-brand-blue);
}

.hero-panel-metrics span {
    color: var(--color-ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-panel .photo-source {
    color: var(--color-ink-soft);
}

.hero-indicators {
    bottom: 42px;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 1320px;
    padding: 0 15px;
}

.hero-indicators li {
    width: 60px;
    height: 3px;
    margin-right: 8px;
    border: 0;
    background: rgba(255, 255, 255, 0.34);
}

.hero-indicators .active {
    background: var(--color-brand-gold);
}

.hero-control {
    top: auto;
    bottom: 40px;
    width: auto;
    opacity: 1;
}

.hero-control span[aria-hidden="true"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-control.carousel-control-prev {
    left: auto;
    right: 130px;
}

.hero-control.carousel-control-next {
    right: 28px;
}

.hero-floating-strip {
    position: relative;
    z-index: 6;
    margin-top: -10px;
    padding-bottom: 24px;
}

.hero-floating-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hero-feature-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

.hero-feature-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-brand-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-feature-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-brand-blue);
    font-size: 20px;
    line-height: 1.2;
}

.hero-feature-card p {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 14px;
}

.overview-band {
    padding: 28px 0 36px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.metric-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.metric-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--color-brand-blue);
    font-size: 38px;
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    font-weight: 800;
}

.metric-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.destination-card {
    grid-column: span 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.destination-card-large {
    grid-column: span 6;
    grid-row: span 2;
}

.destination-media {
    display: block;
    overflow: hidden;
}

.destination-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card-large .destination-media img {
    height: 640px;
}

.destination-card:hover .destination-media img,
.about-media-card:hover img,
.hotel-card:hover img,
.golf-visual:hover img {
    transform: scale(1.04);
}

.destination-body {
    padding: 28px;
}

.destination-tag {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-brand-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.destination-body h3 {
    margin-bottom: 14px;
    font-size: 34px;
}

.destination-body p {
    margin-bottom: 18px;
    color: var(--color-ink-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
    align-items: start;
}

.about-copy {
    padding-right: 18px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 0;
}

.check-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-gold) 100%);
}

.about-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-media-card,
.about-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.about-media-tall {
    grid-row: span 2;
}

.about-media-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-media-tall img {
    min-height: 560px;
}

.about-card {
    padding: 30px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--color-brand-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--color-brand-blue);
    font-size: 28px;
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.about-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--color-brand-blue-deep);
    background: linear-gradient(135deg, rgba(203, 164, 79, 0.22) 0%, rgba(241, 224, 171, 0.7) 100%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 30px;
}

.service-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.hotel-card {
    grid-column: span 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.hotel-card-wide {
    grid-column: span 6;
}

.hotel-media {
    display: block;
    overflow: hidden;
}

.hotel-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hotel-card-wide .hotel-media img {
    height: 420px;
}

.hotel-body {
    padding: 28px;
}

.hotel-region {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-brand-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hotel-body h3 {
    margin-bottom: 14px;
    font-size: 34px;
}

.hotel-body p {
    margin-bottom: 18px;
    color: var(--color-ink-soft);
}

.hotel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hotel-meta span {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--color-brand-blue);
    background: linear-gradient(135deg, rgba(111, 149, 175, 0.08) 0%, rgba(203, 164, 79, 0.16) 100%);
    border: 1px solid rgba(21, 55, 89, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.golf-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
    align-items: center;
}

.golf-visual {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.golf-visual img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.golf-copy {
    padding-left: 10px;
}

.golf-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.golf-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.golf-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--color-brand-blue);
    font-size: 22px;
    font-family: "Open Sans", "Trebuchet MS", sans-serif;
    font-weight: 700;
}

.golf-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 55, 89, 0.08);
    box-shadow: var(--shadow-card);
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-brand-blue) 0%, var(--color-brand-blue-soft) 48%, var(--color-brand-gold) 100%);
}

.blog-meta {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-brand-gold-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin-bottom: 16px;
    font-size: 32px;
}

.blog-card p {
    margin-bottom: 22px;
    color: var(--color-ink-soft);
}

.cta-shell {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 24px;
    padding: 54px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(203, 164, 79, 0.28), transparent 26%),
        linear-gradient(135deg, rgba(13, 37, 64, 0.98) 0%, rgba(26, 57, 93, 0.98) 58%, rgba(138, 98, 34, 0.88) 100%);
    box-shadow: var(--shadow-soft);
}

.cta-copy {
    max-width: 640px;
}

.cta-box {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.cta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-line:last-of-type {
    margin-bottom: 22px;
    border-bottom: 0;
}

.cta-line span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-line a,
.cta-line p {
    margin: 0;
    color: #ffffff;
    text-align: right;
}

.cta-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cta-mini-grid div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-mini-grid strong,
.cta-mini-grid span {
    display: block;
}

.cta-mini-grid strong {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 15px;
}

.cta-mini-grid span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer {
    margin-top: 110px;
    padding: 78px 0 26px;
    color: rgba(255, 255, 255, 0.68);
    background:
        radial-gradient(circle at top right, rgba(203, 164, 79, 0.16), transparent 24%),
        linear-gradient(180deg, #111111 0%, #080808 100%);
    border-top: 1px solid rgba(203, 164, 79, 0.18);
}

.footer-top {
    padding-bottom: 30px;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 18px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
}

.footer-title {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
}

.footer-links {
    display: grid;
    gap: 12px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--color-brand-gold);
}

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

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
