:root {
    --ink: #f8e9b9;
    --muted: #d3c9b4;
    --paper: #191e4a;
    --cream: #202456;
    --mist: rgba(255, 250, 241, 0.74);
    --glass: rgba(255, 255, 255, 0.14);
    --glass-strong: rgba(255, 255, 255, 0.22);
    --line: rgba(255, 255, 255, 0.28);
    --line-dark: rgba(16, 36, 42, 0.13);
    --navy: #202456;
    --navy-deep: #121738;
    --teal: #153e49;
    --teal-soft: #2b6570;
    --petrol: #0a2c38;
    --jade: #5f9b8c;
    --gold: #d8aa42;
    --champagne: #f6df98;
    --bronze: #9e6334;
    --coral: #bd7656;
    --plum: #343052;
    --aqua: #6cbcaf;
    --shadow: 0 28px 90px rgba(4, 7, 28, 0.34);
    --soft-shadow: 0 18px 48px rgba(4, 7, 28, 0.24);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 170, 66, 0.18), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(108, 188, 175, 0.1), transparent 28%),
        linear-gradient(135deg, #121738 0%, #202456 48%, #11162f 100%);
    color: var(--ink);
    font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    margin: 16px clamp(14px, 3vw, 42px) 0;
    padding: 8px 12px 8px 10px;
    border: 1px solid rgba(241, 219, 165, 0.34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(32, 36, 86, 0.92), rgba(18, 23, 56, 0.78)),
        linear-gradient(90deg, rgba(214, 170, 79, 0.16), rgba(120, 199, 189, 0.08));
    color: #fff;
    box-shadow: 0 18px 70px rgba(2, 15, 19, 0.2);
    backdrop-filter: blur(20px) saturate(135%);
    animation: float-in 700ms var(--ease) both;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    border-color: rgba(214, 170, 79, 0.44);
    background:
        linear-gradient(135deg, rgba(32, 36, 86, 0.96), rgba(18, 23, 56, 0.9)),
        linear-gradient(90deg, rgba(214, 170, 79, 0.14), rgba(120, 199, 189, 0.1));
    color: #fff;
}

.site-header.is-scrolled {
    transform: translateY(-2px) scale(0.985);
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 24px)) scale(0.985);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    transition: transform 220ms var(--ease);
}

.brand:hover {
    transform: translateX(2px);
}

.brand-mark {
    display: block;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(241, 219, 165, 0.45);
    border-radius: 50%;
    flex: 0 0 auto;
    object-fit: contain;
    background: #202456;
    box-shadow: inset 0 0 0 3px rgba(7, 59, 68, 0.24), 0 10px 22px rgba(0, 0, 0, 0.2);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    white-space: nowrap;
    font-weight: 850;
}

.brand small {
    font-family: "Fraunces", Georgia, serif;
    font-size: 13px;
    opacity: 0.82;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(241, 219, 165, 0.2);
    border-radius: 999px;
    background: rgba(2, 18, 24, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav a,
.header-contact {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 10px 15px;
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    transition: color 180ms ease, background 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.site-nav a.is-active,
.site-nav a:hover,
.header-contact {
    background:
        linear-gradient(135deg, rgba(246, 217, 154, 0.96), rgba(201, 111, 84, 0.9)),
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.45), transparent 34%);
    color: #1d180d;
}

.site-nav a:hover,
.header-contact:hover {
    box-shadow: 0 12px 28px rgba(212, 168, 79, 0.26);
    transform: translateY(-1px);
}

.header-contact {
    min-width: 72px;
    text-align: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(241, 219, 165, 0.48);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    cursor: pointer;
    transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover {
    border-color: rgba(212, 168, 79, 0.85);
    background: rgba(212, 168, 79, 0.16);
    transform: rotate(3deg) scale(1.03);
}

.nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.hero-section {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding: clamp(112px, 15vh, 160px) clamp(20px, 6vw, 84px) clamp(150px, 18vh, 190px);
    overflow: hidden;
    color: #fff;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: clamp(120px, 18vh, 180px);
    background:
        linear-gradient(0deg, rgba(25, 30, 74, 0.94), rgba(25, 30, 74, 0.38) 52%, transparent 100%);
    pointer-events: none;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../../soby.jpg");
    background-image: image-set(
        url("../../soby.avif") type("image/avif"),
        url("../../soby.webp") type("image/webp"),
        url("../../soby.jpg") type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.02);
    animation: slow-drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
    background:
        radial-gradient(circle at 78% 34%, rgba(214, 170, 79, 0.36), transparent 28%),
        radial-gradient(circle at 10% 20%, rgba(30, 105, 116, 0.56), transparent 30%),
        radial-gradient(circle at 46% 62%, rgba(120, 199, 189, 0.18), transparent 22%),
        linear-gradient(90deg, rgba(3, 19, 24, 0.9), rgba(6, 31, 38, 0.56) 56%, rgba(67, 43, 38, 0.42)),
        linear-gradient(0deg, rgba(3, 19, 24, 0.9), rgba(3, 19, 24, 0.06) 52%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
    animation: rise-in 780ms var(--ease) 120ms both;
    transform: translateY(2vh);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 7vw, 84px);
    line-height: 0.96;
    font-weight: 650;
}

h2 {
    margin-bottom: 18px;
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.03;
    font-weight: 650;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.hero-copy {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 42%, transparent 62%);
    transform: translateX(-125%);
    transition: transform 520ms var(--ease);
    pointer-events: none;
}

.button:hover {
    transform: translateY(-3px);
}

.button:hover::after {
    transform: translateX(125%);
}

.button-primary {
    border-color: rgba(241, 219, 165, 0.58);
    background:
        linear-gradient(135deg, var(--champagne), var(--gold) 46%, var(--coral)),
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.42), transparent 36%);
    color: #1d180d;
    box-shadow: 0 16px 38px rgba(214, 170, 79, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-light {
    border-color: rgba(241, 219, 165, 0.32);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(120, 199, 189, 0.1)),
        rgba(4, 24, 31, 0.2);
    color: #fff;
    backdrop-filter: blur(12px);
}

.button-light:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.hero-panel {
    position: absolute;
    right: clamp(18px, 5vw, 68px);
    bottom: 58px;
    z-index: 1;
    width: min(330px, calc(100% - 36px));
    border: 1px solid rgba(241, 219, 165, 0.3);
    border-radius: 28px;
    padding: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(120, 199, 189, 0.08)),
        rgba(7, 59, 68, 0.18);
    color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    animation: rise-in 760ms var(--ease) 260ms both;
    transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.hero-panel:hover {
    border-color: rgba(212, 168, 79, 0.48);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    transform: translateY(-4px);
}

.hero-panel::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--jade));
}

.hero-panel strong,
.hero-panel a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.hero-panel strong {
    margin: 4px 0;
    font-size: 24px;
}

.section {
    padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 84px);
}

.intro-grid {
    position: relative;
    margin-top: -18px;
    border: 1px solid rgba(241, 219, 165, 0.18);
    border-radius: 34px 34px 0 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 170, 79, 0.16), transparent 28%),
        radial-gradient(circle at 94% 6%, rgba(108, 188, 175, 0.1), transparent 28%),
        linear-gradient(145deg, rgba(32, 36, 86, 0.92), rgba(18, 23, 56, 0.82));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.intro-grid::before {
    content: "";
    position: absolute;
    inset: 24px auto 24px 0;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--aqua), var(--coral));
}

.intro-grid::after,
.service-card::after,
.metrics div::after,
.contact-panel::after,
.form-shell::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.56;
    background:
        linear-gradient(90deg, transparent 0 18px, rgba(216, 170, 66, 0.42) 18px 54px, transparent 54px) top left / 120px 1px no-repeat,
        linear-gradient(180deg, transparent 0 18px, rgba(216, 170, 66, 0.42) 18px 54px, transparent 54px) top left / 1px 120px no-repeat,
        linear-gradient(270deg, transparent 0 18px, rgba(108, 188, 175, 0.34) 18px 54px, transparent 54px) bottom right / 120px 1px no-repeat,
        linear-gradient(0deg, transparent 0 18px, rgba(108, 188, 175, 0.34) 18px 54px, transparent 54px) bottom right / 1px 120px no-repeat;
}

.intro-grid,
.founder-section,
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: start;
}

.intro-copy {
    color: var(--muted);
    font-size: 18px;
}

.service-band {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    padding-top: clamp(58px, 7vw, 92px);
    background:
        radial-gradient(circle at 15% 0%, rgba(212, 168, 79, 0.22), transparent 32%),
        radial-gradient(circle at 92% 80%, rgba(108, 188, 175, 0.16), transparent 30%),
        linear-gradient(135deg, #202456, #121738 48%, #343052);
    color: #fff;
}

.section-heading {
    position: relative;
    max-width: 760px;
    margin-bottom: 32px;
}

.service-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border: 1px solid rgba(241, 219, 165, 0.2);
    border-radius: 26px;
    padding: 34px 28px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(16px);
    transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background:
        linear-gradient(90deg, var(--gold), var(--aqua), var(--coral)),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 18px 20px);
}

.service-card:hover {
    border-color: rgba(212, 168, 79, 0.42);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.service-number {
    display: inline-grid;
    min-width: 48px;
    height: 34px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(241, 219, 165, 0.34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(241, 219, 165, 0.2), rgba(120, 199, 189, 0.12));
    color: var(--gold);
    font-weight: 900;
}

.service-card h3 {
    position: relative;
    padding-bottom: 14px;
}

.service-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--aqua));
    transition: width 240ms var(--ease);
}

.service-card:hover h3::after {
    width: 82px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.74);
}

.service-card .service-number::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 92px;
    height: 48px;
    border-right: 1px solid rgba(216, 170, 66, 0.3);
    border-bottom: 1px solid rgba(108, 188, 175, 0.24);
    border-radius: 0 0 46px 0;
    opacity: 0.72;
    pointer-events: none;
    transition: transform 260ms var(--ease), opacity 260ms ease;
}

.service-card:hover .service-number::after {
    opacity: 1;
    transform: translate(-4px, -4px);
}

.founder-story {
    max-width: 760px;
    position: relative;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--gold), var(--aqua), var(--coral)) 1;
    padding-left: clamp(20px, 3vw, 34px);
}

.founder-story p {
    color: var(--muted);
    font-size: 18px;
}

.text-link {
    color: var(--teal);
    font-weight: 900;
    text-decoration-color: rgba(198, 115, 88, 0.45);
    text-underline-offset: 5px;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
    color: var(--coral);
    text-decoration-color: rgba(198, 115, 88, 0.9);
}

.metrics {
    display: grid;
    gap: 14px;
}

.metrics div,
.contact-panel,
.form-shell {
    border: 1px solid rgba(241, 219, 165, 0.18);
    border-top-color: rgba(214, 170, 79, 0.42);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(32, 36, 86, 0.86), rgba(18, 23, 56, 0.74)),
        radial-gradient(circle at 100% 0%, rgba(108, 188, 175, 0.12), transparent 32%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.metrics div {
    position: relative;
    overflow: hidden;
    padding: 26px;
    transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.metrics div:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.metrics div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold), var(--jade));
}

.metrics strong,
.metrics span {
    display: block;
}

.metrics strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.metrics span {
    color: var(--muted);
}

.page-hero {
    position: relative;
    min-height: 54vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 150px clamp(20px, 6vw, 84px) 58px;
    background-image:
        radial-gradient(circle at 78% 20%, rgba(214, 170, 79, 0.28), transparent 28%),
        radial-gradient(circle at 18% 74%, rgba(120, 199, 189, 0.2), transparent 24%),
        linear-gradient(90deg, rgba(3, 19, 24, 0.9), rgba(12, 51, 59, 0.58)),
        image-set(
            url("../../soby.avif") type("image/avif"),
            url("../../soby.webp") type("image/webp"),
            url("../../soby.jpg") type("image/jpeg")
        );
    background-position: center;
    background-size: auto, auto, auto, cover;
    background-repeat: no-repeat;
    color: #fff;
}

.page-hero div {
    max-width: 760px;
}

.page-hero p:last-child {
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.contact-panel {
    position: sticky;
    overflow: hidden;
    top: 112px;
    padding: 30px;
    transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.contact-panel:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-panel h2 {
    font-size: 36px;
}

.contact-panel .eyebrow,
.form-shell label {
    color: var(--champagne);
}

.contact-panel a {
    display: block;
    margin: 14px 0;
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms var(--ease);
}

.contact-panel a:hover,
.footer-links a:hover,
.hero-panel a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.contact-panel p:last-child {
    color: var(--muted);
}

.form-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 4vw, 38px);
    transition: box-shadow 220ms ease, transform 220ms var(--ease);
}

.founder-story::after {
    content: "";
    display: block;
    width: min(220px, 60%);
    height: 1px;
    margin-top: 28px;
    background:
        linear-gradient(90deg, var(--gold), var(--aqua), transparent),
        repeating-linear-gradient(90deg, transparent 0 16px, rgba(246, 223, 152, 0.5) 16px 18px);
}

.form-shell:hover {
    box-shadow: var(--shadow);
}

.inquiry-form {
    display: grid;
    gap: 20px;
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(241, 219, 165, 0.2);
    border-radius: 18px;
    background: rgba(18, 23, 56, 0.66);
    color: #fff8ea;
    font: inherit;
    font-weight: 550;
    padding: 14px 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 180ms ease, background 180ms ease, outline-color 180ms ease, box-shadow 180ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    outline: 4px solid rgba(212, 168, 79, 0.16);
    background: rgba(32, 36, 86, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.alert {
    margin-bottom: 18px;
    border-radius: 22px;
    padding: 14px 16px;
}

.alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.alert-success {
    border: 1px solid rgba(111, 165, 142, 0.44);
    background: rgba(111, 165, 142, 0.14);
}

.alert-error {
    border: 1px solid rgba(198, 115, 88, 0.38);
    background: rgba(198, 115, 88, 0.14);
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.82fr) 1fr;
    gap: clamp(22px, 4vw, 46px);
    align-items: center;
    overflow: hidden;
    padding: 50px clamp(20px, 6vw, 84px) 38px;
    background:
        radial-gradient(circle at 12% 10%, rgba(216, 170, 66, 0.22), transparent 28%),
        radial-gradient(circle at 70% 85%, rgba(108, 188, 175, 0.12), transparent 30%),
        linear-gradient(135deg, #202456, #121738 52%, #262142);
    color: rgba(246, 223, 152, 0.86);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--aqua), var(--coral), var(--plum));
}

.footer-brand {
    display: contents;
}

.footer-brand-copy {
    display: grid;
    align-content: center;
    gap: 8px;
    max-width: 560px;
}

.footer-brand-copy::before {
    content: "Dubai real estate advisory";
    width: max-content;
    border: 1px solid rgba(216, 170, 66, 0.32);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(216, 170, 66, 0.08);
    color: var(--champagne);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.footer-brand-legacy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo-frame {
    position: relative;
    display: grid;
    width: min(210px, 100%);
    min-height: 152px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 42%, rgba(216, 170, 66, 0.22), transparent 44%),
        linear-gradient(145deg, rgba(32, 36, 86, 0.18), rgba(18, 23, 56, 0.08));
    box-shadow: none;
    overflow: hidden;
}

.footer-logo-frame::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.22), transparent 62%);
    transform: translateX(-50%) rotate(12deg);
    animation: footer-shine 5s ease-in-out infinite;
}

.footer-logo-lockup {
    position: relative;
    z-index: 1;
    width: min(190px, 92%);
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34));
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--champagne);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 0.98;
}

.footer-brand-copy span {
    max-width: 470px;
    color: rgba(246, 223, 152, 0.72);
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.55;
    font-weight: 650;
}

.footer-accent {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    grid-column: 2;
}

.footer-accent span {
    border: 1px solid rgba(241, 219, 165, 0.24);
    border-radius: 999px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(120, 199, 189, 0.08));
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
    transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.footer-accent span:hover {
    border-color: rgba(214, 170, 79, 0.55);
    background: linear-gradient(135deg, rgba(214, 170, 79, 0.2), rgba(120, 199, 189, 0.12));
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-start;
    grid-column: 2;
}

.footer-links a {
    color: var(--champagne);
    font-weight: 850;
    font-size: clamp(14px, 1.7vw, 17px);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(216, 170, 66, 0.18);
    padding-top: 18px;
}

.site-footer p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .nav-toggle {
        display: block;
        order: 3;
    }

    .header-contact {
        order: 2;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        width: min(260px, calc(100vw - 36px));
        align-items: stretch;
        border: 1px solid rgba(255, 255, 255, 0.42);
        border-radius: 26px;
        padding: 10px;
        background: rgba(255, 250, 241, 0.88);
        color: var(--ink);
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        border-radius: 18px;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        align-items: center;
        padding-top: clamp(108px, 14vh, 132px);
        padding-bottom: clamp(138px, 18vh, 178px);
    }

    .intro-grid,
    .founder-section,
    .form-layout,
    .service-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        position: static;
    }

    .footer-accent {
        grid-column: auto;
        justify-content: flex-start;
    }

    .footer-links {
        grid-column: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .hero-panel {
        display: none;
    }

    .site-header {
        margin: 12px 14px 0;
        padding: 8px;
    }

    .header-contact {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand small {
        display: none;
    }

    .brand strong {
        font-size: 15px;
    }

    .hero-actions,
    .footer-links {
        display: grid;
    }

    h1 {
        font-size: clamp(36px, 11vw, 44px);
        line-height: 1;
    }

    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: 112px;
        padding-bottom: 132px;
    }

    .hero-copy,
    .intro-copy,
    .founder-story p {
        font-size: 16px;
    }

    .button {
        width: 100%;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes float-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slow-drift {
    from {
        transform: scale(1.05) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.09) translate3d(-10px, -8px, 0);
    }
}

@keyframes footer-shine {
    0%,
    55% {
        transform: translateX(-58%) rotate(12deg);
    }
    80%,
    100% {
        transform: translateX(58%) rotate(12deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
