:root {
    --bg: #090807;
    --bg-soft: #13110f;
    --panel: rgba(22, 20, 18, 0.72);
    --panel-strong: rgba(29, 26, 22, 0.92);
    --color-primary: #090807;
    --color-secondary: #d6b15a;
    --color-muted: #c7b89a;
    --font-body: "Roboto", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-title: "Oswald", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-subtitle: "Niconne", cursive;
    --line: rgba(214, 177, 90, 0.22);
    --line-strong: rgba(214, 177, 90, 0.45);
    --text: #f5efe5;
    --muted: #c7b89a;
    --gold: #d6b15a;
    --gold-soft: #f0d38a;
    --gold-deep: #9f7426;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(214, 177, 90, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(240, 211, 138, 0.08), transparent 24%),
        linear-gradient(180deg, #0d0b0a 0%, #090807 60%, #070605 100%);
    color: var(--text);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.02));
    opacity: 0.25;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

::selection {
    background: rgba(214, 177, 90, 0.35);
    color: #fff8e7;
}

.page-shell {
    position: relative;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(9, 8, 7, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(214, 177, 90, 0.15);
    background: rgba(9, 8, 7, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #0c0a08;
    background:
        radial-gradient(circle at 30% 30%, #fff4ce 0%, var(--gold-soft) 35%, var(--gold) 70%, var(--gold-deep) 100%);
    box-shadow: 0 0 0 1px rgba(255, 248, 231, 0.14), 0 10px 28px rgba(214, 177, 90, 0.24);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-copy small {
    color: var(--muted);
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    position: relative;
    color: #e8ddc8;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff3c8;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(214, 177, 90, 0.2);
    border-radius: 50%;
    background: rgba(19, 17, 15, 0.65);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold-soft);
    border-radius: 999px;
}

.header-cta {
    margin-left: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-gold {
    color: #1a1206;
    background: linear-gradient(135deg, #fff3cb 0%, #e7c46f 28%, #d6b15a 72%, #aa7d2d 100%);
    cursor:pointer;
    /* box-shadow: 0 18px 40px rgba(214, 177, 90, 0.24); */
}

.btn-gold:hover {
    /* box-shadow: 0 22px 50px rgba(214, 177, 90, 0.34); */
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(214, 177, 90, 0.26);
    background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
    border-color: rgba(240, 211, 138, 0.5);
    background: rgba(214, 177, 90, 0.07);
}

.btn-link {
    min-height: 0;
    padding: 0;
    color: var(--gold-soft);
    background: transparent;
    border: none;
    box-shadow: none;
}

.btn-link:hover {
    color: #fff1bf;
}

.hero-section {
    position: relative;
    padding: 44px 0 26px;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 42px;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    max-width: 11ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 18px; */
    color: var(--gold-soft);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-text,
.section-heading p,
.page-hero p,
.content-card p,
.service-content p,
.process-card p,
.feature-card p,
.blog-card p,
.testimonial-quote,
.footer-brand p,
.contact-card p,
.signature-copy p {
    color: var(--muted);
}

.hero-text {
    max-width: 46ch;
    margin: 24px 0 0;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.trust-card {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(214, 177, 90, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.trust-card strong {
    display: block;
    color: #fff7dd;
    font-size: 1.32rem;
    margin-bottom: 4px;
}

.trust-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-image-frame,
.content-card.alt-card,
.contact-card img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(214, 177, 90, 0.18);
    background: linear-gradient(180deg, rgba(35, 29, 23, 0.85), rgba(14, 12, 10, 0.96));
    box-shadow: var(--shadow);
}

.hero-image-frame {
    min-height: 620px;
}

.hero-image-frame img,
.signature-visual img,
.content-card.alt-card img,
.contact-card img,
.gallery-card img,
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-frame img {
    filter: saturate(0.96) contrast(1.02);
}

.hero-image-glow {
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: radial-gradient(circle at bottom, rgba(214, 177, 90, 0.34), transparent 64%);
    pointer-events: none;
}

.hero-image-frame::after,
.content-card.alt-card::after,
.contact-card img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 8, 7, 0.06), rgba(9, 8, 7, 0.5));
    pointer-events: none;
}

.glass-card {
    border: 1px solid rgba(214, 177, 90, 0.18);
    background: linear-gradient(180deg, rgba(28, 25, 22, 0.82), rgba(17, 15, 13, 0.94));
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
}

.booking-card {
    margin-top: -128px;
    padding: 24px;
    border-radius: var(--radius-xl);
    position: relative;
}

.booking-heading h2,
.section-heading h2,
.signature-copy h2,
.content-card h2,
.page-hero-card h2,
.contact-card h2,
.blog-card h3,
.feature-card h3,
.process-card h3,
.testimonial-card h3,
.service-content h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #fff6df;
    line-height: 1.1;
}

.booking-heading p,
.page-hero-card p,
.section-heading p {
    margin: 10px 0 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.booking-grid label,
.contact-form label {
    display: grid;
    gap: 8px;
}

.booking-grid span,
.contact-form span {
    color: var(--gold-soft);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-grid select,
.booking-grid input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 90, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 0 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-grid input,
.contact-form input,
.contact-form select,
.newsletter-form input {
    appearance: none;
}

.booking-grid textarea,
.contact-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 90, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 16px;
    outline: none;
    resize: vertical;
}

.booking-grid select:focus,
.booking-grid input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    border-color: rgba(240, 211, 138, 0.5);
    box-shadow: 0 0 0 4px rgba(214, 177, 90, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.booking-submit {
    margin-top: 18px;
    width: 100%;
}

.section {
    padding: 92px 0;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2,
.signature-copy h2,
.content-card h2,
.page-hero h1 {
    text-wrap: balance;
}

.section-heading h2 {
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.feature-card:hover,
.process-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 211, 138, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(214, 177, 90, 0.12);
}

.service-media {
    height: 250px;
    position: relative;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(9, 8, 7, 0.72));
}

.service-content {
    padding: 20px 20px 24px;
}

.service-content p {
    min-height: 66px;
}

.signature-grid,
.two-col,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}


.signature-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 20px;
    border-radius: 20px;
}

.signature-note strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    color: #fff5db;
    font-size: 1.06rem;
}

.signature-note span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.feature-stack {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.mini-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
}

.mini-card img,
.feature-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mini-card h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
}

.mini-card p {
    margin: 0;
}

.process-grid,
.feature-grid,
.testimonial-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card,
.feature-card,
.testimonial-card,
.blog-card {
    border-radius: var(--radius-lg);
    padding: 22px;
}

.process-number {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #181106;
    background: radial-gradient(circle at 30% 30%, #fff4ce, #e7c46f 40%, #c99934 100%);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(255, 248, 231, 0.12), 0 0 24px rgba(214, 177, 90, 0.25);
}

.process-card p {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 280px;
    border-radius: 24px;
}

.gallery-card:nth-child(6n + 1),
.gallery-card:nth-child(6n + 4) {
    grid-column: span 5;
    min-height: 420px;
}

.gallery-card:nth-child(6n + 2),
.gallery-card:nth-child(6n + 3) {
    grid-column: span 3;
    min-height: 280px;
}

.gallery-card:nth-child(6n + 5),
.gallery-card:nth-child(6n + 6) {
    grid-column: span 4;
    min-height: 310px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    color: #fff5db;
    background: linear-gradient(180deg, rgba(9, 8, 7, 0.18), rgba(9, 8, 7, 0.82));
    border: 1px solid rgba(214, 177, 90, 0.16);
}

.feature-card {
    display: grid;
    gap: 14px;
}

.feature-card p {
    margin-bottom: 0;
}

.testimonial-top {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-top img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.25);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.testimonial-top p {
    margin: 6px 0 0;
    color: var(--gold-soft);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stars {
    margin-bottom: 14px;
    color: var(--gold-soft);
    letter-spacing: 0.18em;
}

.blog-category {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gold-soft);
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    text-transform: uppercase;
}


.page-hero {
    position: relative;
    padding: 72px 0 36px;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
    gap: 24px;
    align-items: end;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    max-width: 12ch;
}

.page-hero p {
    max-width: 60ch;
    margin-bottom: 0;
}

.page-hero-card,
.content-card,
.contact-card,
.page-hero-card {
    padding: 26px;
    border-radius: var(--radius-xl);
}

.content-card {
    display: grid;
    gap: 14px;
}

.contact-grid {
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 20px;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.contact-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(214, 177, 90, 0.12);
}

.contact-list strong {
    color: #fff4d0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.contact-wireframe-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 24px;
    align-items: start;
}

.contact-wireframe-form-card,
.contact-wireframe-panel {
    padding: 30px;
}

.contact-wireframe-heading {
    margin-bottom: 24px;
}

.contact-wireframe-heading h2 {
    margin: 0;
    color: #fbf2df;
    font-family: var(--font-title);
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: none;
}

.contact-wireframe-form {
    display: grid;
    gap: 16px;
}

.contact-wireframe-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-wireframe-form label,
.contact-wireframe-message {
    display: grid;
    gap: 10px;
}

.contact-wireframe-form span,
.contact-wireframe-message span {
    /* color: var(--color-secondary-soft); */
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.contact-wireframe-form input,
.contact-wireframe-form textarea {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(214, 177, 90, 0.08);
    background: #0d0c0b;
    color: #f5efe5;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    box-shadow: none;
}

.contact-wireframe-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(214, 177, 90, 0.08);
}

.contact-wireframe-form input::placeholder,
.contact-wireframe-form textarea::placeholder {
    color: #9d9487;
}

.contact-wireframe-form input:focus,
.contact-wireframe-form textarea:focus {
    border-color: rgba(214, 177, 90, 0.46);
    background: #11100f;
    outline: none;
}

.contact-wireframe-message textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-field .invalid-feedback {
    display: none;
    margin-top: -2px;
    color: #f0d38a;
    font-size: 0.82rem;
}

.contact-wireframe-form.was-validated .form-control:invalid + .invalid-feedback,
.contact-wireframe-form .form-control.is-invalid + .invalid-feedback {
    display: block;
}

.contact-alert {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 90, 0.22);
    background: rgba(214, 177, 90, 0.08);
    color: #f7e8bd;
    font-size: 0.95rem;
}

.contact-captcha-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.contact-captcha-row strong {
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid rgba(214, 177, 90, 0.12);
    background: #0d0c0b;
    color: #f5efe5;
    font-family: var(--font-title);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.contact-captcha-input {
    flex: 1;
}

.contact-captcha-input .form-control {
    min-height: 44px;
}

.contact-wireframe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.contact-wireframe-actions .btn {
    min-width: 136px;
}

.contact-wireframe-panel {
    display: grid;
    gap: 26px;
    background:
        radial-gradient(circle at top right, rgba(214, 177, 90, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(16, 15, 13, 0.95), rgba(9, 8, 7, 0.98));
}

.contact-wireframe-copy h2 {
    margin: 0;
    color: #fbf2df;
    font-family: var(--font-title);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: none;
}

.contact-wireframe-copy p {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.9;
    max-width: 44ch;
}

.contact-wireframe-list {
    display: grid;
    gap: 18px;
}

.contact-wireframe-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.contact-wireframe-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d1af54 0%, #c9a64a 100%);
    color: #fff8e8;
}

.contact-wireframe-icon svg {
    width: 28px;
    height: 28px;
}

.contact-wireframe-text {
    display: grid;
    gap: 6px;
}

.contact-wireframe-text strong {
    color: #fff4d0;
    font-family: var(--font-title);
    font-size: 1.02rem;
    line-height: 1.1;
    text-transform: none;
}

.contact-wireframe-text span {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-grid {
    padding: 36px 0 30px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr)) 1.2fr;
    gap: 24px;
    border-top: 1px solid rgba(214, 177, 90, 0.12);
}

.site-footer h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    color: #fff5db;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer li,
.site-footer p {
    color: var(--muted);
}

.site-footer a:hover {
    color: #fff1bf;
}

.brand-footer {
    margin-bottom: 14px;
}

.footer-brand-actions {
    display: grid;
    gap: 22px;
    margin-top: 22px;
}

.footer-social-wireframe {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social-wireframe a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 177, 90, 0.8);
    color: #f4d77a;
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-wireframe a:hover {
    transform: translateY(-2px);
    background: rgba(214, 177, 90, 0.1);
    color: #fff6dc;
    border-color: #f0d38a;
}

.footer-social-wireframe i {
    font-size: 0.95rem;
}

.footer-store-badges {
    display: flex;
    gap: 15px;
}

.store-badge {
    min-width: 172px;
    min-height: 46px;
    padding: 8px 16px 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 90, 0.45);
    background: rgba(19, 17, 14, 0.88);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.store-badge-icon {
    width: 20px;
    display: grid;
    place-items: center;
    color: #f4f1ea;
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.store-badge-copy {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.store-badge-copy small {
    color: #e6dac1;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: none;
}

.store-badge-copy strong {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
}

.newsletter-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.social-row a {
    color: var(--gold-soft);
}

.footer-bottom {
    padding: 0 0 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: #a89778;
    font-size: 0.92rem;
}

[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.72s ease, transform 0.72s ease, filter 0.72s ease;
}

body.js-enabled [data-reveal] {
    /* opacity: 0; */
    /* transform: translateY(28px); */
    /* filter: blur(6px); */
}

body.js-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero-section,
.section,
.page-hero,
.site-footer {
    position: relative;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    animation: floatOrb 9s ease-in-out infinite alternate;
}

.hero-orb-a {
    top: 42px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(214, 177, 90, 0.24), transparent 68%);
}

.hero-orb-b {
    right: -90px;
    bottom: 30px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(240, 211, 138, 0.16), transparent 70%);
    animation-delay: -3s;
}

@keyframes floatOrb {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-16px) scale(1.05);
    }
}

:root {
    --font-body: "Roboto", Arial, sans-serif;
    --font-title: "Oswald", "Arial Narrow", sans-serif;
    --font-subtitle: "Niconne", cursive;
    --color-primary: #0a0908;
    --color-secondary: #d6b15a;
    --color-secondary-soft: #f0d38a;
    --color-cream: #f1e5d2;
    --color-muted: #b9aa90;
    --color-border: rgba(214, 177, 90, 0.2);
    --color-border-strong: rgba(240, 211, 138, 0.45);
    --shadow-lux: 0 26px 70px rgba(0, 0, 0, 0.44);
}

html {
    background: var(--color-primary);
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top left, rgba(214, 177, 90, 0.11), transparent 28%), radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%), linear-gradient(180deg, #11100e 0%, #0a0908 60%, #070605 100%);
    color: var(--color-cream);
}

.container {
    width: min(calc(100% - 28px), 1280px);
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
        filter: brightness(0) invert(1);
}

.brand-copy strong,
.section-heading h2,
.booking-heading h2,
.signature-copy h2,
.content-card h2,
.page-hero h1,
.page-hero-card h2,
.service-content h3,
.process-card h3,
.feature-card h3,
.testimonial-card h3,
.blog-card h3 {
    font-family: var(--font-title);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-script,
.eyebrow.hero-script {
    font-family: var(--font-subtitle);
    letter-spacing: 0.04em;
    text-transform: lowercase;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    color: rgba(214, 177, 90, 0.9);
    display: block;
    margin-bottom: 6px;
}

.eyebrow {
    font-family: var(--font-body);
    color: var(--color-secondary-soft);
}

.site-header {
    background: rgba(9, 8, 7, 0.72);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(214, 177, 90, 0.15);
    background: rgba(9, 8, 7, 0.94);
}

.site-nav a {
    font-family: var(--font-title);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.header-cta {
    box-shadow: 0 16px 36px rgba(214, 177, 90, 0.22);
}

.btn {
    font-family: var(--font-title);
    letter-spacing: 0.14em;
}

.btn-gold {
    background: linear-gradient(135deg, #fff4cf 0%, #e6c46e 35%, #d6b15a 72%, #a37a31 100%);
    color: #130f08;
}

.btn-ghost {
    border-color: var(--color-border);
    background: rgba(255, 255, 255, 0.025);
}

.hero-section {
    padding: 20px 0 48px;
}

.hero-grid {
    position: relative;
    display: block;
    min-height: calc(100vh - 110px);
}

.hero-copy-panel {
    position: absolute;
    left: 0;
    top: 84px;
    z-index: 4;
    width: min(580px, 44vw);
    padding: 28px 18px 0 0;
}

.hero-copy-panel h1,
.hero-slide-content h2 {
    margin: 0;
    font-family: var(--font-title);
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.02em;
}

.hero-copy-panel h1 {
    font-size: clamp(3.5rem, 6.8vw, 7rem);
    max-width: 7.8ch;
}

.hero-text {
    margin: 18px 0 0;
    max-width: 34ch;
    color: var(--color-cream);
    font-size: 1.06rem;
}

.hero-actions {
    margin-top: 24px;
}

.hero-badge {
    display: inline-grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin-top: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 177, 90, 0.24);
    box-shadow: 0 0 0 10px rgba(214, 177, 90, 0.06);
    overflow: hidden;
}

.hero-badge img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.hero-swiper-shell {
    width: 100%;
    margin-left: auto;
}

.hero-swiper {
    position: relative;
    height: clamp(560px, 78vh, 820px);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: #120f0d;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 5, 4, 0.78) 0%, rgba(6, 5, 4, 0.42) 42%, rgba(6, 5, 4, 0.08) 100%),
        linear-gradient(180deg, rgba(7, 6, 5, 0.05) 0%, rgba(7, 6, 5, 0.28) 100%);
}

.hero-slide-content {
    position: absolute;
    left: 34px;
    top: 95px;
    z-index: 3;
    max-width: 600px;
    padding: 16px 18px 16px 0;
}

.hero-slide-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-subtitle);
    font-size: clamp(1.9rem, 2.4vw, 3.1rem);
    color: rgba(214, 177, 90, 0.9);
}

.hero-slide-content h2 {
    font-size: clamp(3rem, 4.7vw, 5.7rem);
    color: var(--color-cream);
}

.hero-slide-content p {
    margin: 12px 0 0;
    /* max-width: 30ch; */
    font-size: 1rem;
    color: #efe5d3;
}

.hero-slide-number {
    position: absolute;
    right: 34px;
    top: 34px;
    z-index: 3;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: rgba(255, 244, 220, 0.9);
}

.hero-pagination {
    position: absolute;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto !important;
    left: auto !important;
    display: grid;
    gap: 12px;
    z-index: 4;
}

.hero-pagination .swiper-pagination-bullet {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    opacity: 1;
    display: grid;
    place-items: center;
    color: rgba(255, 240, 209, 0.86);
    font-family: var(--font-title);
    font-size: 0.92rem;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hero-pagination .swiper-pagination-bullet span {
    display: block;
    line-height: 1;
}

.hero-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.05);
}

.hero-pagination .swiper-pagination-bullet-active {
    border-color: var(--color-secondary);
    background: rgba(214, 177, 90, 0.1);
    color: var(--color-secondary-soft);
}

.hero-booking {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    align-items: end;
    margin-top: -28px;
    padding: 20px;
    border-radius: 26px;
    position: relative;
    z-index: 6;
}

.hero-booking label {
    display: grid;
    gap: 8px;
}

.hero-booking span,
.contact-form span {
    color: var(--color-secondary-soft);
    font-family: var(--font-title);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-booking select,
.hero-booking input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-cream);
    padding: 0 16px;
    outline: none;
}

.hero-booking select:focus,
.hero-booking input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    border-color: var(--color-border-strong);
    box-shadow: 0 0 0 4px rgba(214, 177, 90, 0.08);
}

.hero-booking .btn {
    min-width: 170px;
}

.section {
    padding: 60px 0;
}

.section-heading {
    max-width: 860px;
}

.section-heading h2 {
    font-size: 1.5rem;
    line-height: -2.9rem;
}

.service-card,
.process-card,
.feature-card,
.testimonial-card,
.blog-card,
.glass-card,
.page-hero-card,
.content-card,
.contact-card {
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lux);
}

.service-grid,
.process-grid,
.feature-grid,
.testimonial-grid,
.blog-grid {
    gap: 20px;
}

.service-media {
    height: 260px;
}

.service-content p,
.feature-card p,
.process-card p,
.testimonial-quote,
.blog-card p,
.contact-card p,
.content-card p,
.signature-copy p {
    color: var(--color-muted);
}

.section p,
.section li {
    color: var(--color-muted) !important;
    font-size: 14px !important;
}

.signature-grid,
.two-col,
.contact-grid,
.page-hero-inner {
    align-items: start;
}


.signature-note {
    left: 22px;
    right: 22px;
    bottom: 22px;
}

.gallery-card figcaption {
    font-family: var(--font-title);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid {
    padding-top: 42px;
    border-top-color: rgba(214, 177, 90, 0.16);
}

.site-footer h3 {
    font-family: var(--font-title);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-form {
    display: grid;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(214, 177, 90, 0.1);
    padding-top: 18px;
}

.hero-section,
.hero-slide,
.page-hero,
.site-footer {
    position: relative;
}

body.js-enabled [data-reveal] {
    /* opacity: 0; */
    /* transform: translateY(22px); */
    /* filter: blur(5px); */
}

body.js-enabled [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@media (max-width: 1100px) {
    .hero-copy-panel {
        width: min(500px, 50vw);
    }

    .hero-swiper {
        height: 720px;
    }
}

@media (max-width: 960px) {
    .hero-grid {
        min-height: auto;
    }

    .hero-copy-panel {
        position: relative;
        top: auto;
        width: auto;
        padding: 0 0 26px;
    }

    .hero-copy-panel h1 {
        max-width: none;
    }

    .hero-swiper-shell {
        margin-top: 10px;
    }

    .hero-swiper {
        height: 620px;
    }

    .hero-booking {
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .hero-pagination {
        right: 10px !important;
    }
}

@media (max-width: 720px) {
    .hero-section {
        padding-top: 12px;
    }

    .hero-swiper {
        height: 540px;
        border-radius: 24px;
    }

    .hero-slide-content {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .hero-slide-number {
        right: 18px;
        top: 18px;
    }

    .hero-pagination {
        right: 8px !important;
        gap: 8px;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }

    .section {
        padding: 72px 0;
    }
}

.hero-section {
    position: relative;
    padding: 0 0 54px;
    min-height: 0;
    display: block;
    overflow: hidden;
}

.hero-media-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: clamp(620px, 86vh, 920px);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.hero-slide {
    min-height: 100%;
}

.hero-slide-content {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-overlay-inner {
    min-height: 100%;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.hero-copy-panel {
    max-width: min(560px, 100%);
    padding: 34px 30px 34px 0;
    backdrop-filter: blur(2px);
}

.hero-copy-panel h1,
.page-hero h1,
.hero-slide-content h2,
.booking-heading h2,
.section-heading h2,
.signature-copy h2,
.content-card h2,
.page-hero-card h2,
.contact-card h2,
.blog-card h3,
.feature-card h3,
.process-card h3,
.testimonial-card h3,
.service-content h3,
.brand-copy strong {
    font-family: var(--font-title);
}

.hero-copy-panel h1 {
    max-width: 8ch;
    font-size: clamp(3.7rem, 6vw, 6.6rem);
}

.hero-text {
    max-width: 32ch;
    color: var(--color-cream);
}

.hero-badge {
    width: 88px;
    height: 88px;
}

.hero-booking {
    margin-top: -34px;
    position: relative;
    z-index: 6;
}

.hero-pagination {
    right: 18px !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(10, 9, 8, 0.18);
    border-color: rgba(214, 177, 90, 0.14);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: rgba(214, 177, 90, 0.08);
}

@media (max-width: 960px) {
    .hero-media-fullbleed {
        width: 100%;
        margin-left: 0;
    }

    .hero-swiper {
        height: 620px;
    }

    .hero-overlay {
        position: relative;
        inset: auto;
        display: block;
        margin-top: -112px;
    }

    .hero-overlay-inner {
        min-height: auto;
    }

    .hero-copy-panel {
        max-width: none;
        padding: 24px 0 0;
    }

    .hero-booking {
        margin-top: 18px;
    }
}

@media (max-width: 720px) {
    .hero-swiper {
        height: 520px;
    }

    .hero-copy-panel {
        padding-top: 18px;
    }

    .hero-copy-panel h1 {
        max-width: none;
    }

    .hero-pagination {
        right: 10px !important;
    }

    .hero-booking {
        margin-top: 12px;
    }
}

.hero-section {
    padding-bottom: 0;
}

.hero-media-fullbleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: clamp(580px, 86vh, 920px);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.hero-slide {
    position: relative;
}

.hero-slide-content {
    /* position: absolute; */
    /* inset: 0; */
    /* z-index: 3; */
    display: flex;
    /* align-items: center; */
}

.hero-slide-content-inner {
    max-width: min(640px, 100%);
    padding-left: 0;
    color: var(--color-cream);
}

.hero-slide-content h2 {
    margin: 0;
    font-family: var(--font-title);
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.02em;
    font-size: clamp(3.1rem, 5.8vw, 7rem);
    /* max-width: 7.5ch; */
}

.hero-slide-content p {
    margin: 16px 0 0;
    /* max-width: 36ch; */
    font-size: 1.02rem;
    color: #efe5d3;
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-pagination {
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%);
    bottom: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: rgba(10, 9, 8, 0.18);
}

.hero-pagination .swiper-pagination-bullet-active {
    border-color: var(--color-secondary);
    background: rgba(214, 177, 90, 0.12);
}

@media (max-width: 960px) {
    .hero-swiper {
        height: 620px;
    }

    .hero-slide-content-inner {
        padding-left: 0;
    }
}

@media (max-width: 720px) {
    .hero-swiper {
        height: 520px;
    }

    .hero-slide-content h2 {
        font-size: clamp(2.6rem, 11vw, 4.2rem);
    }

    .hero-pagination {
        right: 8px !important;
    }
}

.hero-slide-content {
    /* position: absolute; */
    /* inset: 0; */
    /* z-index: 3; */
    /* display: flex; */
    /* align-items: center; */
}

.hero-slide-content-inner {
    max-width: min(1280px, calc(100% - 28px));
    width: 100%;
    margin: 0 auto;
    color: var(--color-cream);
}

.hero-slide-content h2 {
    font-size: clamp(2.4rem, 4vw, 4.6rem);
}

.hero-slide-content p {
    font-size: 14px;
    line-height: 1.7;
}

.hero-pagination-shell {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: min(calc(100% - 28px), 1280px);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
}

.hero-pagination-shell .hero-pagination {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    bottom: auto !important;
    right: auto !important;
    display: grid;
    justify-content: end;
    gap: 12px;
    pointer-events: auto;
}

.hero-pagination-shell .swiper-pagination-bullet {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: rgba(10, 9, 8, 0.18);
    color: rgba(255, 240, 209, 0.86);
}

.hero-pagination-shell .swiper-pagination-bullet-active {
    border-color: var(--color-secondary);
    background: rgba(214, 177, 90, 0.12);
    color: var(--color-secondary-soft);
}

@media (max-width: 960px) {
    .hero-slide-content-inner {
        max-width: min(100%, calc(100% - 28px));
    }

    .hero-pagination-shell {
        width: min(calc(100% - 24px), 1280px);
    }

    .hero-pagination-shell .hero-pagination {
        right: 0;
    }
}

@media (max-width: 720px) {
    .hero-slide-content h2 {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .hero-slide-content p {
        font-size: 14px;
    }

    .hero-pagination-shell .hero-pagination {
        right: 0;
        gap: 8px;
    }

    .hero-pagination-shell .swiper-pagination-bullet {
        width: 34px;
        height: 34px;
    }
}

.service-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    padding: 26px 66px 26px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--line-strong);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.service-swiper {
    width: 100%;
}

.service-swiper .swiper-slide {
    height: auto;
}

.service-slide {
    min-height: 105px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 5px 15px;
    color: #111111;
    text-align: center;
    border-right: 1px dashed rgba(0, 0, 0, 0.14);
}

.service-swiper .swiper-slide:last-child .service-slide {
    border-right: none;
}

.service-slide img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.service-slide h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.service-nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #201f1d;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.service-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #d6d6d6;
    border-right: 2px solid #d6d6d6;
    transform: rotate(45deg);
}

.service-prev {
    left: 14px;
}

.service-prev::before {
    transform: rotate(-135deg);
}

.service-next {
    right: 14px;
}

.service-pagination {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 2;
    color: #111111;
    font-family: var(--font-title);
    letter-spacing: 0.14em;
}

.service-pagination .swiper-pagination-current,
.service-pagination .swiper-pagination-total {
    color: #111111;
}

@media (max-width: 960px) {
    .service-carousel {
        border-radius: 44px;
        padding: 22px 56px 52px;
    }

    .service-slide {
        min-height: 140px;
        padding: 18px 12px;
    }
}

@media (max-width: 720px) {
    .exp-figure{width:100% !important;}
    .exp-img.left{width:255px !important;}
    .animate-button .button-text > span {font-size:7px !important;}
    .animate-button {
        left: 40% !important;
            width: 90px !important;
    height: 90px !important;
    }
    .exp-dots,.exp-img.right{display:none !important;}
    .footer-store-badges{flex-wrap:wrap !important;}
    .service-carousel {
        border-radius: 32px;
        padding: 18px 48px 48px;
    }

    .service-nav {
        width: 38px;
        height: 38px;
    }

    .service-slide img {
        width: 46px;
        height: 46px;
    }

    .service-slide h3 {
        font-size: 0.88rem;
    }
}

.journey-radiance-section {
    padding: 24px 0 8px;
    color: #f6efe2;
    /* text-align: center; */
}

.journey-radiance-heading {
    max-width: 640px;
    margin: 0 auto 54px;
    text-align: center;
}

.journey-radiance-heading.section-heading {
    margin: 0 auto 54px;
    justify-items: center;
}

.journey-radiance-kicker {
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-subtitle);
    font-size: clamp(2.8rem, 3.8vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #f7f0e5;
}

.journey-radiance-heading h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    line-height: 1.2;
    color: #f8f4ed;
}

.journey-radiance-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    padding-top: 18px;
}

.journey-radiance-track::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 52px;
    height: 1px;
    background: linear-gradient(90deg, rgba(214, 177, 90, 0.06), rgba(214, 177, 90, 0.28), rgba(214, 177, 90, 0.06));
}

.journey-radiance-step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 0 12px;
}

.journey-radiance-circle {
    position: relative;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.55);
    background: rgba(10, 9, 8, 0.82);
    color: #ffd96a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(214, 177, 90, 0.03);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.journey-radiance-step h3 {
    margin: 18px 0 0;
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
    color: #f7f3ef;
}

.journey-radiance-step p {
    margin: 0;
    max-width: 240px;
    color: #d9cbb8;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: center;
}

.journey-radiance-step:hover .journey-radiance-circle {
    transform: translateY(-8px) scale(1.07);
    border-color: rgba(255, 218, 114, 0.95);
    background: rgba(19, 16, 12, 0.96);
    box-shadow: 0 0 0 10px rgba(214, 177, 90, 0.08), 0 20px 30px rgba(0, 0, 0, 0.24);
}

.journey-radiance-step:hover h3 {
    color: #ffffff;
}

@media (max-width: 960px) {
    .journey-radiance-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-radiance-track::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .journey-radiance-track {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-radiance-heading {
        margin-bottom: 36px;
    }

    .journey-radiance-kicker {
        font-size: clamp(2rem, 8vw, 2.9rem);
    }
}

@media (max-width: 1180px) {
    .service-grid,
    .process-grid,
    .feature-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .header-inner {
        min-height: 80px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        margin-left: 0;
        padding: 18px;
        border-radius: 22px;
        border: 1px solid rgba(214, 177, 90, 0.18);
        background: rgba(10, 9, 8, 0.98);
        display: grid;
        gap: 16px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .hero-grid,
    .signature-grid,
    .two-col,
    .contact-grid,
    .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: none;
    }

    .hero-image-frame,
    .signature-visual {
        min-height: 520px;
    }

    .booking-card {
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .service-grid,
    .process-grid,
    .feature-grid,
    .testimonial-grid,
    .blog-grid,
    .hero-trust,
    .booking-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .editorial-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        grid-column: auto !important;
        min-height: 250px !important;
    }

    .section {
        padding: 72px 0;
    }
}
.nopadding
{
    padding: 0;
    margin-top: -4%;
    z-index: 1;
    display: block;
    position: relative;
}
.about-img {
    position: relative;
    margin-right: 43px;
}
.exp-figure {
    width: 500px ;
    max-width: 100%;
}
.exp-dots {
    position: absolute;
    top: 8px;
    left: 90%;
    width: 85px;
    height: 85px;
    background-image: radial-gradient(#c29c4a 3px, transparent 3px);
    background-size: 14px 14px;
    transform: rotate(-18deg);
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 60%);
    z-index: 1;
}
.exp-img.left {
    width: 320px;
    height: 380px;
    top: 0;
    left: 0;
}
.exp-img {
    position: absolute;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.exp-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.exp-img.right {
    width: 250px;
    height: 380px;
    top: 50px;
    right: 0;
    left: 57%;
}
.animate-button {
    z-index: 99;
    top: 70% !important;
    position: relative;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    border: none;
    background: '#fff';
    color: '#333';
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 10%;
    top: -35%;
    display: grid;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 600;
    border: 3px solid #C25414;
}
.animate-button .button-text {
    > span {
        position: absolute;
        inset: 8px 0px 8px;
        transform: rotate(calc(15deg * var(--index)));
        transform-origin: center;
        color: var(--black);
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        width: 100%;
        text-align: center;
        line-height: 1.2;
    }
}
.animate-button .button-circle {
    position: relative;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s;
    font-size: 28px;
    font-weight: 600;
}
.animate-button .button-text {
    position: absolute;
    inset: 0;
    animation: text-rotation 10s linear infinite;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes text-rotation {
   0% {
    rotate: 0deg;
}
100% {
    rotate: 360deg;
} 
}

.gallery-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background: #070706;
}

.gallery-showcase-panel {
    position: relative;
    margin: 0 auto;
    /* text-align: center; */
    isolation: isolate;
}

.gallery-showcase-marquee {
    position: absolute;
    inset: -18px 0 auto;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.88) 14%, rgba(0, 0, 0, 0.88) 86%, transparent 100%);
}

.gallery-showcase-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 42px;
    width: max-content;
    white-space: nowrap;
    animation: gallery-marquee-scroll 26s linear infinite;
}

.gallery-showcase-marquee-track span {
    color: rgba(255, 255, 255, 0.06);
    font-family: var(--font-title);
    font-size: clamp(4.6rem, 10vw, 8.8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.gallery-showcase-copy {
    position: relative;
    z-index: 1;
    /* max-width: 740px; */
    /* margin: 0 auto 54px; */
    /* padding-top: 42px; */
}

.gallery-showcase-kicker {
    display: none;
}

.gallery-showcase-copy h2 {
    /* margin: 0; */
    /* color: #f7f0e7; */
    /* font-family: var(--font-title); */
    /* font-size: clamp(2.9rem, 4.4vw, 4.4rem); */
    /* line-height: 0.94; */
    /* letter-spacing: -0.035em; */
    /* text-transform: none; */
}

.gallery-showcase-copy p {
    /* max-width: 600px; */
    /* margin: 28px auto 0; */
    color: #8f8a83;
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.gallery-showcase-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 840px);
    aspect-ratio: 1.9 / 1;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #11100e;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
}

.gallery-showcase-image {
    position: absolute;
    inset: 0;
}

.gallery-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-showcase-image-after {
    z-index: 1;
}

.gallery-showcase-image-before {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.gallery-showcase-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 1px;
    transform: translateX(-0.5px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.16));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.gallery-showcase-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.gallery-showcase-handle-icon {
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: -0.12em;
}

.gallery-showcase-label {
    position: absolute;
    bottom: 18px;
    z-index: 4;
    color: #0c0b09;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: none;
}

.gallery-showcase-label-after {
    left: 22px;
}

.gallery-showcase-label-before {
    right: 22px;
}

@keyframes gallery-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0) translateZ(0) scale(1, 1);
    }

    100% {
        transform: translate3d(-75%, 0, 0) translateZ(0) scale(1, 1);
    }
}

@media (max-width: 960px) {
    .gallery-showcase-copy {
        margin-bottom: 34px;
        padding-top: 30px;
    }

    .gallery-showcase-frame {
        width: 100%;
        aspect-ratio: 1.22 / 1;
    }

    .gallery-showcase-label {
        color: #0b0a09;
    }
}

@media (max-width: 640px) {
    .gallery-showcase-section {
        padding: 92px 0 84px;
    }

    .gallery-showcase-marquee-track {
        gap: 28px;
    }

    .gallery-showcase-copy h2 {
        font-size: clamp(2.6rem, 11vw, 3.6rem);
    }

    .gallery-showcase-copy p {
        margin-top: 18px;
        font-size: 0.92rem;
    }

    .gallery-showcase-frame {
        aspect-ratio: 0.96 / 1;
    }

    .gallery-showcase-handle {
        width: 42px;
        height: 42px;
    }
}
.bgblack{
    background: var(--bg);
}

.testimonial-carousel {
    position: relative;
    margin-top: 10px;
    padding: 0 54px;
}

.testimonial-swiper {
    overflow: visible;
}

.testimonial-carousel .swiper-slide {
    height: auto;
}

.testimonial-card--swiper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    padding: 26px 26px 24px 28px;
    border-radius: 20px;
    border: 1px solid rgba(214, 177, 90, 0.15);
    border-left: 4px solid #d6b15a;
    background: linear-gradient(180deg, #181714 0%, #11100e 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.testimonial-card--swiper::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(214, 177, 90, 0.08), transparent 42%);
}

.testimonial-stars {
    position: relative;
    z-index: 1;
    color: #f6cf63;
    font-size: 1.18rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.testimonial-quote {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #d8d3ca;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-meta img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.65);
    background: #0f0e0c;
    object-fit: cover;
    flex: 0 0 auto;
}

.testimonial-meta h3 {
    margin: 0;
    color: #efe6d7;
    font-family: var(--font-title);
    font-size: 1.02rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
}

.testimonial-meta p {
    margin: 6px 0 0;
    color: #b59c66;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.32);
    background: rgba(13, 12, 10, 0.96);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.testimonial-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 9px;
    height: 9px;
    border-top: 2px solid #f2cf67;
    border-right: 2px solid #f2cf67;
    transform: rotate(45deg);
}

.testimonial-prev {
    left: 0;
}

.testimonial-prev::before {
    transform: rotate(-135deg);
}

.testimonial-next {
    right: 0;
}

.testimonial-grid {
    display: none;
}

@media (max-width: 1200px) {
    .testimonial-carousel {
        padding: 0 48px;
    }
}

@media (max-width: 900px) {
    .testimonial-carousel {
        padding: 0 44px;
    }
}

@media (max-width: 640px) {
    .testimonial-carousel {
        padding: 0 38px;
    }

    .testimonial-card--swiper {
        min-height: 230px;
        padding: 22px 20px 20px 22px;
    }

    .testimonial-quote {
        font-size: 0.96rem;
    }

    .testimonial-nav {
        width: 36px;
        height: 36px;
    }
}
.listing{
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-position: inside;
}
.listing li{
    margin-bottom: 10px;
    list-style: none;
}

.blog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-showcase-card {
    display: block;
    color: inherit;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: #0f0e0c;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 177, 90, 0.34);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.blog-showcase-media {
    position: relative;
    aspect-ratio: 1.28 / 0.88;
    overflow: hidden;
}

.blog-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-showcase-card:hover .blog-showcase-media img {
    transform: scale(1.05);
}

.blog-showcase-date {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 64px;
    min-height: 74px;
    padding: 10px 8px 8px;
    display: grid;
    place-items: center;
    gap: 2px;
    background: linear-gradient(180deg, #f0d38a 0%, #d6b15a 100%);
    color: #0c0b09;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.blog-showcase-day {
    font-family: var(--font-title);
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
}

.blog-showcase-month {
    font-family: var(--font-title);
    font-size: 0.82rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-showcase-body {
    padding: 20px 20px 24px;
}

.blog-showcase-byline {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-secondary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blog-showcase-body h3 {
    margin: 0 0 12px;
    color: #f7f1e7;
    font-size: 1.45rem;
    line-height: 1.15;
}

.blog-showcase-body p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.blog-showcase-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.blog-detail-card {
    padding: 28px;
}

.blog-detail-media {
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
}

.blog-detail-media img {
    width: 100%;
    aspect-ratio: 1.5 / 0.78;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-secondary);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-detail-card h2 {
    margin: 0;
    color: #fbf2df;
    font-family: var(--font-title);
    /* font-size: clamp(2rem, 4vw, 3.35rem); */
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.blog-detail-body {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}

.blog-detail-body p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.95;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.blog-tag-list span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(214, 177, 90, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: #f7ebc9;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-detail-sidebar {
    display: grid;
    gap: 20px;
}

.blog-detail-side-card {
    padding: 24px;
}

.blog-detail-side-card h3 {
    margin: 10px 0 0;
    color: #fbf2df;
    font-family: var(--font-title);
    font-size: 1.65rem;
    line-height: 1.05;
}

.blog-detail-side-card p {
    margin: 14px 0 0;
}

.blog-related-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.blog-related-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(214, 177, 90, 0.1);
}

.blog-related-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-related-item strong {
    display: block;
    color: #f8f1e1;
    font-family: var(--font-title);
    font-size: 0.98rem;
    line-height: 1.2;
}

.blog-related-item span {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .blog-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .blog-showcase-grid {
        grid-template-columns: 1fr;
    }

    .blog-showcase-date {
        width: 58px;
        min-height: 66px;
        top: 14px;
        left: 14px;
    }

    .blog-showcase-body {
        padding: 18px 18px 22px;
    }

    .blog-showcase-body h3 {
        font-size: 1.25rem;
    }

    .blog-detail-card,
    .blog-detail-side-card {
        padding: 22px;
    }

    .blog-related-item {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .blog-related-item img {
        width: 60px;
        height: 60px;
    }
}

.app-promo-section {
    padding-bottom: 120px;
}

.app-promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 40px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(214, 177, 90, 0.16);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(214, 177, 90, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(18, 17, 15, 0.98), rgba(9, 8, 7, 1));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.app-promo-copy h2 {
    margin: 0;
    color: #f8f3ea;
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    line-height: 1.05;
}

.app-promo-copy p {
    margin: 18px 0 0;
    max-width: 62ch;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.app-promo-features {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.app-promo-features li {
    position: relative;
    padding-left: 22px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.6;
}

.app-promo-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff4ce, #e7c46f 45%, #c99934 100%);
    box-shadow: 0 0 0 3px rgba(214, 177, 90, 0.1);
}

.app-promo-badges {
    margin-top: 28px;
}

.app-promo-device {
    display: grid;
    place-items: center;
}

.app-promo-phone {
    position: relative;
    width: min(100%, 350px);
    padding: 18px 18px 20px;
    border-radius: 38px;
    background: linear-gradient(180deg, #0f0e0c, #070706);
    border: 1px solid rgba(214, 177, 90, 0.2);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.app-promo-phone::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.app-promo-phone-top {
    width: 118px;
    height: 30px;
    margin: 0 auto 14px;
    border-radius: 18px;
    background: #3a352d;
}

.app-promo-screen {
    position: relative;
    min-height: 640px;
    padding: 26px 18px 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(214, 177, 90, 0.08), transparent 34%),
        linear-gradient(180deg, #0f1115 0%, #0b0d10 100%);
    border: 1px solid rgba(214, 177, 90, 0.18);
    overflow: hidden;
}

.app-promo-screen-header {
    display: grid;
    justify-items: center;
    gap: 2px;
    text-align: center;
}

.app-promo-brand,
.app-promo-subbrand {
    color: #d8b96d;
    letter-spacing: 0.12em;
    line-height: 1;
}

.app-promo-brand {
    font-family: var(--font-title);
    font-size: 1.9rem;
}

.app-promo-subbrand {
    font-family: var(--font-title);
    font-size: 1.25rem;
}

.app-promo-tag {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.app-promo-grid-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.app-promo-grid-icons img {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 8px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(180deg, #16181b, #0f1114);
    border: 1px solid rgba(214, 177, 90, 0.14);
}

.app-promo-screen-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(214, 177, 90, 0.18);
    color: var(--color-muted);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.app-promo-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62%;
    min-height: 48px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0d38a, #c99934);
    color: #120f09;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 14px 28px rgba(201, 153, 52, 0.22);
}

@media (max-width: 960px) {
    .app-promo-grid {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .app-promo-device {
        order: -1;
    }

    .app-promo-phone {
        width: min(100%, 320px);
    }
}

@media (max-width: 640px) {
    .app-promo-section {
        padding-bottom: 88px;
    }

    .app-promo-grid {
        padding: 22px;
        gap: 28px;
    }

    .app-promo-screen {
        min-height: 560px;
    }

    .app-promo-grid-icons {
        gap: 8px;
    }

    .app-promo-book-btn {
        width: 72%;
    }
}

.page-banner {
    position: relative;
    overflow: hidden;
    min-height: 265px;
    display: flex;
    align-items: end;
    padding: 70px 0 72px;
    background:
        linear-gradient(180deg, rgba(7, 7, 6, 0.32), rgba(7, 7, 6, 0.82)),
        var(--page-banner-image) center center / cover no-repeat;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
}

.page-banner-copy {
    max-width: 760px;
}

.page-banner-copy h1 {
    margin: 10px 0 0;
    color: #faf4ea;
    font-family: var(--font-title);
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: normal;
}

.page-banner-copy p {
    max-width: 60ch;
    margin: 18px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.page-banner-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    color: #fff8eb;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-banner-breadcrumbs a {
    color: #fff8eb;
}

.page-banner-breadcrumbs span {
    color: var(--color-secondary);
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
}

.policy-stack {
    display: grid;
    gap: 24px;
}

.policy-card {
    padding: 28px;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: linear-gradient(180deg, rgba(19, 17, 14, 0.96), rgba(10, 9, 8, 0.96));
}

.policy-card h2 {
    margin: 10px 0 14px;
    color: #f7f0e5;
    font-family: var(--font-title);
    font-size: 2rem;
    text-transform: uppercase;
}

.policy-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.policy-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff4ce, #e7c46f 45%, #c99934 100%);
}

.delete-account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.delete-account-single {
    display: grid;
    justify-items: center;
}

.delete-account-card {
    padding: 34px;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background:
        radial-gradient(circle at top right, rgba(214, 177, 90, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(17, 15, 13, 0.98), rgba(9, 8, 7, 0.98));
}

.delete-account-card-centered {
    width: min(100%, 360px);
}

.delete-account-info {
    display: grid;
    gap: 18px;
    align-content: start;
    background: transparent;
    border: none;
    box-shadow: none;
}

.delete-account-info h2,
.delete-account-card h2 {
    margin: 0;
    color: #f8f0df;
    font-family: var(--font-title);
    /* font-size: clamp(2rem, 3.5vw, 3.2rem); */
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: none;
}

.delete-account-info p,
.delete-account-otp-copy {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.85;
}

.delete-account-notes{
    display: grid;
    gap: 14px;
}
.delete-account-confirm-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}
.delete-account-timeline {
    position: relative;
    /* isolation: isolate; */
    display: grid;
    gap: 18px;
    margin-top: 12px;
    padding-left: 12px;
    z-index: 0;
}

.delete-account-timeline::after {
    content: "";
    position: absolute;
    left: 46px;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: linear-gradient(180deg, rgba(214, 177, 90, 0.55), rgba(214, 177, 90, 0.08));
    z-index: -1;
    pointer-events: none;
}

.delete-account-timeline-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.delete-account-timeline-badge {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 177, 90, 0.34);
    background: #151515;
    color: #fff2cf;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.delete-account-timeline-copy {
    padding: 5px 0 0;
}

.delete-account-timeline-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #fff0c9;
    font-family: var(--font-title);
    font-size: 1.02rem;
    letter-spacing: 0.04em;
}

.delete-account-timeline-copy span {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.delete-account-note,
.delete-account-confirm-box {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(214, 177, 90, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.delete-account-note strong,
.delete-account-confirm-box strong {
    display: block;
    margin-bottom: 8px;
    color: #fff0c9;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.delete-account-note span,
.delete-account-confirm-box li {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.7;
}

.delete-account-confirm-box ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.delete-account-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.delete-account-field {
    display: grid;
    gap: 10px;
}

.delete-account-field span {
    color: #eaddc2;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.delete-account-form .form-control {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(214, 177, 90, 0.1);
    background: #0d0c0b;
    color: #f5efe5;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    box-shadow: none;
}

.delete-account-form .form-control:focus {
    border-color: rgba(214, 177, 90, 0.46);
    background: #11100f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 177, 90, 0.08);
}

.delete-account-form .form-control::placeholder {
    color: #9d9487;
}

.delete-account-form .invalid-feedback {
    display: none;
    margin-top: -2px;
    color: #f0d38a;
    font-size: 0.82rem;
}

.delete-account-form.was-validated .form-control:invalid + .invalid-feedback,
.delete-account-form .form-control.is-invalid + .invalid-feedback {
    display: block;
}

.delete-account-alert {
    margin: 0;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(214, 177, 90, 0.22);
    background: rgba(214, 177, 90, 0.08);
    color: #f7e8bd;
    font-size: 0.95rem;
}

.delete-account-alert ul {
    margin: 0;
    padding-left: 18px;
}

.delete-account-alert-success {
    border-color: rgba(81, 186, 121, 0.3);
    background: rgba(81, 186, 121, 0.08);
    color: #d6f5e1;
}

.delete-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
      margin-top: 25px;
}

.delete-account-actions-centered {
    justify-content: center;
}

.delete-account-actions .btn {
    min-width: 160px;
}

.delete-account-hero-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 177, 90, 0.26);
    background: rgba(214, 177, 90, 0.08);
    color: #f8deb0;
}

.delete-account-hero-icon svg {
    width: 32px;
    height: 32px;
}

.delete-account-hero-icon-warning {
    color: #f7d47a;
}

.delete-account-hero-icon-success {
    color: #d7f4de;
    border-color: rgba(81, 186, 121, 0.28);
    background: rgba(81, 186, 121, 0.1);
}

.delete-account-success-card {
    text-align: center;
}

.delete-account-success-card .btn {
    min-width: 190px;
}

.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
}

.qr-modal[hidden] {
    display: none;
}

.qr-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 4, 0.82);
    backdrop-filter: blur(14px);
}

.qr-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(214, 177, 90, 0.24);
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.98), rgba(9, 8, 7, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.qr-modal-panel h2 {
    margin: 10px 0 0;
    color: #f8f3ea;
    font-family: var(--font-title);
    font-size: 2rem;
    text-transform: uppercase;
}

.qr-modal-panel p {
    margin: 14px 0 18px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.75;
}

.qr-modal-image {
    width: min(100%, 260px);
    margin: 0 auto;
    border-radius: 18px;
    padding: 10px;
    background: #f7f3eb;
}

.qr-modal-link {
    margin-top: 18px;
}

.qr-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 177, 90, 0.22);
    border-radius: 50%;
    background: rgba(14, 12, 10, 0.96);
}

.qr-modal-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #f4d77a;
}

.qr-modal-close span:first-child {
    transform: rotate(45deg);
}

.qr-modal-close span:last-child {
    transform: rotate(-45deg);
}

body.modal-open {
    overflow: hidden;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.about-story-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.about-story-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 177, 90, 0.22), transparent 68%);
    pointer-events: none;
    display: none;
}

.about-story-quote {
    margin: 12px 0 14px;
    color: #fbf2df;
    font-family: var(--font-title);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.about-story-lead {
    margin: 0 0 16px;
    color: var(--color-secondary) !important;
    font-family: var(--font-subtitle);
    font-size: 1.15rem !important;
    line-height: 1.6;
}

.about-points {
    display: grid;
    /* grid-template-columns: repeat(3, minmax(0, 1fr)); */
    gap: 14px;
    margin-top: 24px;
}

.about-point {
    /* padding: 18px 16px; */
    border-radius: 20px;
    /* border: 1px solid rgba(214, 177, 90, 0.14); */
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)); */
}

.about-point strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
}

.about-point span {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.75;
}

.about-media-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: none;
    background: transparent;
}

.about-media-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* display: block; */
}

.about-media-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border: 1px solid rgba(214, 177, 90, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.9));
    backdrop-filter: blur(14px);
}

.about-media-overlay h3 {
    margin: 12px 0 0;
    color: #fff6df;
    font-family: var(--font-title);
    font-size: 1.8rem;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-why-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    min-height: 210px;
    background:
        linear-gradient(180deg, rgba(29, 25, 20, 0.95), rgba(11, 10, 9, 0.98));
}

.about-why-card::before {
    content: "";
    position: absolute;
    inset: auto -18px -18px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 177, 90, 0.14), transparent 70%);
    pointer-events: none;
}

.about-why-number {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.42);
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 18px;
}

.about-why-card h3 {
    margin: 0 0 10px;
    color: #fff6df;
    font-family: var(--font-title);
    font-size: 1.25rem;
    line-height: 1.1;
}

.about-why-card p {
    margin-bottom: 0;
}

.partner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(220px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.partner-hero-copy {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

/* .partner-hero-copy::before {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 177, 90, 0.18), transparent 70%);
    pointer-events: none;
} */

.partner-hero-copy h2 {
    margin: 14px 0 14px;
    color: #fbf2df;
    font-family: var(--font-title);
    /* font-size: clamp(2.5rem, 5vw, 4.5rem); */
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.partner-hero-copy p {
    /* max-width: 62ch; */
}

.partner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.partner-highlight-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.partner-highlight-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(214, 177, 90, 0.14);
    background: rgba(255, 255, 255, 0.025);
    color: #f6ecd5;
    font-size: 0.95rem;
    line-height: 1.4;
}

.partner-highlight-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff4cf, #d6b15a);
    box-shadow: 0 0 0 5px rgba(214, 177, 90, 0.12);
    flex-shrink: 0;
}

.partner-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: none;
    box-shadow: none;
    background: transparent;
}

.partner-hero-visual {
    position: relative;
    min-height: 480px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(32, 28, 24, 0.9), rgba(10, 9, 8, 0.98));
}

.partner-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}

.partner-float-card {
    position: absolute;
    max-width: 210px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(214, 177, 90, 0.16);
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(10px);
}

.partner-float-card strong {
    display: block;
    margin-bottom: 4px;
    color: #fff4d5;
    font-family: var(--font-title);
    font-size: 1rem;
}

.partner-float-card span {
    color: var(--color-muted);
    font-size: 14px;
}

.partner-float-primary {
    top: 18px;
    left: 18px;
}

.partner-float-secondary {
    right: 18px;
    bottom: 18px;
}

.partner-hero-note {
    padding: 18px 6px 2px;
}

.partner-hero-note h3 {
    margin: 12px 0 0;
    color: #fff6df;
    font-family: var(--font-title);
    font-size: 1.85rem;
    line-height: 1.08;
}

.partner-benefit-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.partner-benefit-intro {
    padding: 30px;
    min-height: 100%;
}

.partner-benefit-intro h3 {
    margin: 12px 0 14px;
    color: #fff6df;
    font-family: var(--font-title);
    /* font-size: 2rem; */
    line-height: 1.05;
    font-weight: normal;
}

.partner-benefit-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.partner-benefit-list li {
    position: relative;
    padding-left: 22px;
}

.partner-benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff4cf, #d6b15a);
    box-shadow: 0 0 0 5px rgba(214, 177, 90, 0.12);
}

.partner-benefit-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.partner-benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 24px;
}

.partner-benefit-card::before {
    content: "";
    position: absolute;
    inset: auto -24px -24px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 177, 90, 0.14), transparent 70%);
    pointer-events: none;
}

.partner-benefit-card h3 {
    margin: 0 0 10px;
    color: #fff6df;
    font-family: var(--font-title);
    /* font-size: 1.2rem; */
    font-weight: normal;
    line-height: 1.12;
}

.partner-benefit-card p {
    margin-bottom: 0;
}

.partner-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.partner-journey-card,
.partner-download-card {
    padding: 30px;
}

.partner-journey-card h2,
.partner-download-card h2 {
    margin: 12px 0 0;
    color: #fbf2df;
    font-family: var(--font-title);
    /* font-size: 2.2rem; */
    line-height: 1.02;
}

.partner-journey-track {
    margin-top: 24px;
    display: grid;
    gap: 0;
}

.partner-journey-step {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 18px 0px 0;
    border-top: 1px solid rgba(214, 177, 90, 0.14);
}

.partner-journey-step:first-child {
    border-top: 0;
    padding-top: 0;
}

.partner-step-number {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 90, 0.4);
    color: var(--color-secondary);
    font-family: var(--font-title);
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
}

.partner-journey-step h3 {
    margin: 0 0 8px;
    color: var(--color-secondary);
    font-family: var(--font-title);
    /* font-size: 1.2rem; */
    font-weight: normal;
}

.partner-download-card {
    display: grid;
    align-content: start;
    gap: 16px;
    overflow: hidden;
}

.partner-download-card p {
    max-width: 56ch;
}

.partner-phone-visual {
    position: relative;
    margin-top: 6px;
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(214, 177, 90, 0.16);
}

.partner-phone-visual::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    border: 1px solid rgba(214, 177, 90, 0.1);
    pointer-events: none;
}

.partner-phone-visual img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.partner-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 960px) {
    .page-banner {
        min-height: 280px;
        padding: 96px 0 60px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .about-story-grid,
    .about-why-grid,
    .partner-hero-grid,
    .partner-benefit-mosaic,
    .partner-journey-grid {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .partner-benefit-stack {
        grid-template-columns: 1fr;
    }

    .contact-wireframe-grid {
        grid-template-columns: 1fr;
    }

    .contact-wireframe-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-banner {
        min-height: 240px;
        padding: 84px 0 50px;
    }

    .page-banner-copy h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
    }

    .policy-card,
    .qr-modal-panel {
        padding: 22px;
    }

    .qr-modal-panel h2 {
        font-size: 1.5rem;
    }

    .about-story-card,
    .about-why-card {
        padding: 22px;
    }

    .about-media-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
    }

    .about-media-overlay h3 {
        font-size: 1.45rem;
    }

    .partner-hero-copy,
    .partner-benefit-intro,
    .partner-journey-card,
    .partner-download-card,
    .partner-hero-panel {
        padding: 22px;
    }

    .partner-hero-visual {
        min-height: 360px;
    }

    .partner-hero-note h3,
    .partner-journey-card h2,
    .partner-download-card h2 {
        font-size: 1.7rem;
    }

    .partner-highlight-row {
        grid-template-columns: 1fr;
    }

    .partner-journey-step {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .partner-step-number {
        width: 52px;
        height: 52px;
        font-size: 1.05rem;
    }

    .contact-wireframe-form-card,
    .contact-wireframe-panel {
        padding: 22px;
    }

    .contact-wireframe-heading h2,
    .contact-wireframe-copy h2 {
        font-size: 2.2rem;
    }

    .contact-wireframe-item {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-wireframe-icon {
        width: 58px;
        height: 58px;
    }

    .contact-wireframe-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-wireframe-actions .btn {
        min-width: 0;
        width: 100%;
    }
}
.image-one {
    border: 1px solid #DFDFDF;
    border-radius: 240px;
    margin-bottom: 0;
    padding: 30px;
    display: inline-block;
    z-index: 1;
}
.overlay-anim {
    position: relative;
}
figure {
    margin: 0 0 1rem;
}
.image-one img {
    border-radius: 214px;
    height: 100%;
}
.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
.icon-box {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.icon-box .icon-bg {
    fill: var(--theme-color-gray);
}
 .inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}
.inner-box .icon-box .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.9s;
    transition: 0.9s;
}
.testimonial-carousel {
    position: relative;
}

.testimonial-swiper {
    width: 100%;
    overflow: hidden;
}

.testimonial-swiper .swiper-wrapper {
    display: flex;
}

.testimonial-swiper .swiper-slide {
    flex-shrink: 0;
    width: auto;
}
