:root {
    --navy: #07131f;
    --navy-2: #102233;
    --ink: #101923;
    --ink-soft: #35424f;
    --paper: #f5f2ec;
    --paper-2: #ebe4d7;
    --white: #ffffff;
    --gold: #c9a96a;
    --gold-2: #9d7a3e;
    --sea: #5c8798;
    --muted: #65717c;
    --soft: rgba(245, 242, 236, 0.78);
    --line: rgba(16, 25, 35, 0.13);
    --line-dark: rgba(245, 242, 236, 0.16);
    --content: 1320px;
    --wide: 1540px;
    --ease: 180ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

img,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

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

p {
    color: var(--muted);
    max-width: 74ch;
}

.dark p,
.hero p,
.gm-problem p,
.gm-clarity p,
.gm-review p {
    color: var(--soft);
}

.wrap,
.container {
    width: min(var(--content), calc(100% - 56px));
    margin-inline: auto;
}

.wide-wrap {
    width: min(var(--wide), calc(100% - 56px));
    margin-inline: auto;
}

.narrow {
    max-width: 780px;
}

h1,
h2,
h3,
h4 {
    color: inherit;
    font-family: "Inter", sans-serif;
    font-weight: 560;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
}

h1 {
    max-width: 1020px;
    color: var(--paper);
    font-size: clamp(3.4rem, 5.9vw, 6.4rem);
    line-height: 1;
}

h2 {
    font-size: clamp(2.1rem, 4.2vw, 5rem);
}

h3 {
    font-size: clamp(1.25rem, 1.65vw, 1.85rem);
}

.eyebrow,
.btn,
.small-link,
.nav-link,
.nav-drop-btn,
.drop-title,
.price-label {
    font-family: "Cinzel", serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--gold-2);
    font-size: 0.72rem;
    margin-bottom: 18px;
}

.dark .eyebrow,
.hero .eyebrow,
.gm-hero .eyebrow,
.gm-problem .eyebrow,
.gm-clarity .eyebrow,
.gm-review .eyebrow {
    color: var(--gold);
}

.lead {
    max-width: 780px;
    color: var(--soft);
    font-size: clamp(1.06rem, 1.2vw, 1.24rem);
    line-height: 1.75;
}

.home-hero h1 {
    max-width: 1060px;
    font-size: clamp(4.2rem, 7.6vw, 8.6rem);
    line-height: 0.98;
}

.btn,
.small-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.66rem;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.btn:hover,
.small-link:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    color: var(--white);
}

.btn-secondary,
.small-link {
    color: var(--ink);
    border-color: rgba(16, 25, 35, 0.24);
}

.btn-secondary:hover,
.small-link:hover {
    color: var(--gold-2);
    border-color: rgba(157, 122, 62, 0.6);
}

.dark .btn-secondary,
.hero .btn-secondary,
.info-hero .btn-secondary,
.gm-hero .btn-secondary,
.cta .btn-secondary {
    color: var(--paper);
    border-color: rgba(245, 242, 236, 0.34);
}

.dark .btn-secondary:hover,
.hero .btn-secondary:hover,
.info-hero .btn-secondary:hover,
.gm-hero .btn-secondary:hover,
.cta .btn-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Navigation */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 19, 31, 0.94);
    border-bottom: 1px solid var(--line-dark);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo img {
    width: 142px;
    height: auto;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-drop-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(245, 242, 236, 0.75);
    font-size: 0.62rem;
    cursor: pointer;
    transition: color var(--ease), background var(--ease);
}

.nav-link:hover,
.nav-link.is-active,
.nav-drop-btn:hover,
.nav-item.is-active .nav-drop-btn,
.nav-item.is-open .nav-drop-btn {
    color: var(--gold);
    background: rgba(245, 242, 236, 0.06);
}

.nav-contact {
    margin-left: 6px;
    padding-inline: 18px;
    border: 1px solid rgba(201, 169, 106, 0.44);
    color: var(--gold);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(420px, calc(100vw - 40px));
    padding: 14px;
    background: rgba(7, 19, 31, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
}

.nav-item.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.drop-head {
    padding: 8px 10px 14px;
    border-bottom: 1px solid var(--line-dark);
    margin-bottom: 8px;
}

.drop-label {
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.drop-head p,
.drop-desc {
    color: rgba(245, 242, 236, 0.64);
    font-size: 0.86rem;
}

.drop-link {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 12px;
}

.drop-link:hover,
.drop-link.is-active {
    background: rgba(245, 242, 236, 0.07);
}

.drop-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 106, 0.28);
    border-radius: 999px;
}

.drop-title {
    display: block;
    color: var(--paper);
    font-size: 0.66rem;
    margin-bottom: 3px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    background: transparent;
}

.menu-lines {
    width: 19px;
    display: grid;
    gap: 5px;
    margin: auto;
}

.menu-lines span {
    height: 2px;
    background: var(--paper);
}

.mobile-panel {
    display: none;
}

.back-to-top {
    position: fixed;
    right: clamp(18px, 2.4vw, 34px);
    bottom: clamp(18px, 2.4vw, 34px);
    z-index: 48;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 169, 106, 0.48);
    border-radius: 999px;
    background: rgba(7, 19, 31, 0.9);
    color: var(--gold);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--ease), transform var(--ease), background var(--ease), color var(--ease);
    backdrop-filter: blur(14px);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hero */
.hero,
.gm-hero {
    min-height: calc(100vh - 150px);
    display: grid;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(64px, 6vw, 100px) 0 clamp(36px, 4vw, 64px);
    background:
        radial-gradient(circle at 78% 42%, rgba(92, 135, 152, 0.24), transparent 30%),
        linear-gradient(135deg, #06111d, #112335 70%);
}

.hero::before,
.gm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    max-height: none;
    transform: none;
    object-fit: cover;
    object-position: center;
}

.hero::after,
.gm-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(7, 19, 31, 0.98) 0%, rgba(7, 19, 31, 0.84) 42%, rgba(7, 19, 31, 0.38) 76%, rgba(7, 19, 31, 0.22) 100%),
        linear-gradient(0deg, rgba(7, 19, 31, 0.96), rgba(7, 19, 31, 0.12) 54%, rgba(7, 19, 31, 0.72));
}

.hero-copy {
    display: grid;
    gap: 22px;
    max-width: none;
    justify-items: start;
}

.hero-copy > p,
.hero-copy .lead {
    max-width: 760px;
}

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

/* Common sections */
.section {
    padding: clamp(56px, 5vw, 88px) 0;
}

.paper {
    background: var(--paper);
}

.dark {
    background:
        radial-gradient(circle at top right, rgba(92, 135, 152, 0.18), transparent 34%),
        var(--navy);
    color: var(--paper);
}

.section-title,
.text-columns,
.faq-layout,
.gm-two-col,
.gm-section-head {
    display: grid;
    grid-template-columns: minmax(300px, 0.45fr) minmax(360px, 0.55fr);
    gap: clamp(30px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(32px, 4.5vw, 56px);
}

.section-title p,
.gm-section-head p {
    font-size: 1.04rem;
}

.intro-grid {
    width: min(var(--wide), calc(100% - 56px));
    margin: clamp(44px, 5vw, 76px) auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.47fr) minmax(420px, 0.53fr);
    gap: clamp(28px, 5vw, 74px);
    align-items: center;
}

.intro-copy {
    padding: clamp(28px, 4vw, 52px) 0;
}

.intro-copy h2 {
    margin-bottom: 24px;
}

.intro-copy p {
    max-width: 620px;
    font-size: 1.04rem;
    line-height: 1.85;
}

.intro-copy p + p,
.copy-stack p + p,
.feature-copy p + p {
    margin-top: 14px;
}

.intro-media,
.feature-image,
.gm-portrait-frame {
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(245, 242, 236, 0.08), rgba(245, 242, 236, 0.02)),
        var(--navy);
    border: 1px solid var(--line-dark);
    border-radius: 28px;
}

.intro-media {
    min-height: 0;
    padding: clamp(10px, 1.4vw, 18px);
}

.intro-media img,
.feature-image img,
.gm-portrait-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.feature-band {
    display: grid;
    grid-template-columns: minmax(360px, 0.48fr) minmax(420px, 0.52fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(36px, 4vw, 56px);
}

.feature-band.reverse {
    grid-template-columns: minmax(420px, 0.52fr) minmax(360px, 0.48fr);
}

.feature-band.reverse .feature-copy {
    order: 2;
}

.feature-copy {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: clamp(28px, 4vw, 64px);
}

.feature-copy p {
    line-height: 1.82;
}

.feature-image {
    min-height: 0;
    padding: clamp(10px, 1.4vw, 18px);
}

.visual-rhythm {
    padding: 0 0 clamp(44px, 5vw, 76px);
}

.visual-rhythm-grid {
    width: min(var(--wide), calc(100% - 56px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 18px;
    align-items: end;
}

.visual-rhythm figure {
    display: grid;
    gap: 12px;
}

.visual-rhythm figure:nth-child(2) {
    transform: translateY(34px);
}

.visual-rhythm img {
    width: 100%;
    aspect-ratio: 12 / 7;
    object-fit: contain;
    border-radius: 22px;
    background: var(--navy);
    border: 1px solid var(--line);
}

.visual-rhythm figcaption {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Cards and grids */
.offer-strip,
.steps,
.support-grid,
.detail-grid,
.showcase-panels,
.service-list,
.gm-included-board,
.gm-clarity-grid,
.gm-business-list,
.addon-grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.offer-strip,
.steps,
.addon-grid {
    grid-template-columns: repeat(4, 1fr);
}

.support-grid {
    grid-template-columns: repeat(5, 1fr);
}

.detail-grid,
.gm-included-board,
.gm-clarity-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-list,
.showcase-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card,
.step,
.support-card,
.detail-card,
.answer-card,
.showcase-panel,
.service-row,
.service-block,
.addon-item,
.gm-included-board article,
.gm-clarity-grid article,
.pin-grid-card {
    background: rgba(255, 255, 255, 0.44);
    padding: clamp(26px, 3vw, 42px);
}

.offer-card,
.step,
.support-card,
.detail-card,
.showcase-panel,
.pin-grid-card,
.gm-included-board article,
.gm-clarity-grid article {
    min-height: 230px;
    display: grid;
    align-content: start;
    gap: 18px;
}

.offer-card i,
.service-block i,
.detail-card i,
.service-icon,
.gm-included-board i {
    color: var(--gold-2);
    font-size: 1.3rem;
}

.dark .offer-strip,
.dark .steps {
    border-color: var(--line-dark);
    background: var(--line-dark);
}

.dark .offer-card,
.dark .step {
    background: rgba(245, 242, 236, 0.05);
}

.step span,
.pin-grid-top span,
.gm-clarity-grid span {
    color: var(--gold-2);
    font-family: "Cinzel", serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.step h3 {
    margin-top: 8px;
}

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

.pin-grid-card {
    border: 1px solid var(--line);
    border-radius: 24px;
}

.pin-grid-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pin-grid-top i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--gold-2);
    border: 1px solid rgba(157, 122, 62, 0.28);
    border-radius: 999px;
}

.service-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--line);
    overflow: hidden;
}

.service-block {
    grid-column: span 4;
    min-height: 280px;
}

.service-block.wide {
    grid-column: span 8;
}

.service-block.image {
    padding: clamp(12px, 2vw, 22px);
    background: var(--navy);
}

.service-block.image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: contain;
}

.service-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-content: start;
}

.service-row p,
.service-link {
    grid-column: 2;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(157, 122, 62, 0.3);
    border-radius: 999px;
}

.copy-stack {
    max-width: 980px;
}

.copy-stack h2 {
    margin-bottom: 24px;
}

/* Pricing */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.price-card {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.44);
}

.price-card.featured {
    background:
        linear-gradient(145deg, rgba(92, 135, 152, 0.18), transparent),
        var(--navy-2);
    color: var(--paper);
    border-color: rgba(201, 169, 106, 0.48);
}

.price-card.featured p,
.price-card.featured li {
    color: var(--soft);
}

.price-label {
    color: var(--gold-2);
    font-size: 0.68rem;
    margin-bottom: 18px;
}

.featured .price-label,
.dark .price-label {
    color: var(--gold);
}

.price {
    margin: 20px 0 24px;
    color: inherit;
    font-size: clamp(2.35rem, 3.6vw, 4.1rem);
    line-height: 1;
}

.price small {
    color: currentColor;
    font-size: 0.95rem;
    opacity: 0.72;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 0 0 28px;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    color: var(--ink);
}

.check-list li::before {
    content: "\2713";
    color: var(--gold-2);
}

.price-card .btn {
    margin-top: auto;
}

.support-wrap,
.support-services {
    margin-top: 48px;
}

.support-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.36fr) minmax(360px, 0.64fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: end;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.support-intro h3,
.support-main h3 {
    font-size: clamp(2rem, 3.2vw, 3.8rem);
}

.support-main,
.support-addons,
.note-panel {
    margin-top: 26px;
    padding: clamp(26px, 3vw, 40px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.34);
}

.addon-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 650;
}

.addon-grid span {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.44);
    color: var(--ink);
    font-size: 0.95rem;
}

/* Tours, FAQ, showcase */
.demo-list {
    display: grid;
    gap: 34px;
}

.demo-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
    min-height: 620px;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.36);
}

.demo-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(30px, 4vw, 56px);
}

.tour-frame {
    background: #05090e;
    min-height: 620px;
}

.tour-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}

.answer-group,
.faq-stack {
    display: grid;
    gap: 12px;
}

.answer-card {
    border: 1px solid var(--line);
    border-radius: 20px;
}

.answer-card h3 {
    margin-bottom: 10px;
}

.showcase-panel ul {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-left: 18px;
    color: var(--muted);
}

.faq-question {
    width: 100%;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.44);
    color: var(--ink);
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.faq-question span {
    font-weight: 650;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    border-inline: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.36);
}

.faq-answer p {
    padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
    max-height: 420px;
}

/* Google package */
.google-service-page {
    background: var(--navy);
    color: var(--paper);
}

.google-service-page .paper,
.google-service-page .gm-care {
    color: var(--ink);
}

.gm-hero-inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.62fr) minmax(280px, 0.38fr);
    gap: clamp(30px, 6vw, 96px);
    align-items: end;
}

.gm-hero-copy {
    display: grid;
    gap: 20px;
    max-width: 820px;
}

.gm-hero h1 {
    font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.gm-price-card {
    max-width: 430px;
    justify-self: end;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(201, 169, 106, 0.34);
    border-radius: 28px;
    background: rgba(7, 19, 31, 0.72);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
}

.gm-problem,
.gm-review {
    background:
        radial-gradient(circle at 82% 20%, rgba(201, 169, 106, 0.14), transparent 32%),
        var(--navy);
}

.gm-clarity {
    background: var(--navy-2);
}

.gm-copy-stack,
.gm-review-copy {
    display: grid;
    gap: 16px;
}

.gm-clarity-grid {
    border-color: var(--line-dark);
    background: var(--line-dark);
}

.gm-clarity-grid article {
    background: rgba(245, 242, 236, 0.055);
}

.gm-clarity-grid h3 {
    color: var(--paper);
}

.gm-review-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.52fr) minmax(300px, 0.48fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.gm-portrait-frame {
    width: min(480px, 100%);
    justify-self: end;
    padding: 14px;
}

.gm-portrait-frame img {
    aspect-ratio: 3 / 4;
}

.gm-price-rows {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--line);
    overflow: hidden;
}

.gm-price-rows div {
    display: grid;
    grid-template-columns: 150px minmax(240px, 0.8fr) minmax(320px, 1fr);
    gap: clamp(16px, 3vw, 42px);
    align-items: center;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.44);
}

.gm-price-rows span,
.gm-business-list span {
    color: var(--gold-2);
    font-family: "Cinzel", serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gm-price-rows strong {
    font-size: clamp(1.15rem, 1.5vw, 1.6rem);
    font-weight: 560;
    line-height: 1.25;
}

.gm-business-list {
    grid-template-columns: repeat(5, 1fr);
}

.gm-business-list span {
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.44);
    text-align: center;
}

.gm-care {
    background: var(--paper);
}

.gm-care-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.42fr) minmax(360px, 0.58fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
    padding: clamp(30px, 4vw, 56px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.34);
}

.gm-care-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 18px;
    list-style: none;
}

.gm-care-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
}

.gm-care-panel li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold-2);
}

.gm-care-panel .actions {
    grid-column: 1 / -1;
}

/* Information and pricing pages */
.info-page {
    background: var(--paper);
}

.info-hero {
    padding: clamp(76px, 8vw, 132px) 0 clamp(54px, 6vw, 92px);
    background:
        linear-gradient(135deg, rgba(7, 19, 31, 0.98), rgba(16, 34, 51, 0.96)),
        var(--navy);
    color: var(--paper);
}

.info-hero.compact {
    padding-bottom: clamp(44px, 5vw, 74px);
}

.info-hero h1 {
    max-width: 980px;
    font-size: clamp(3rem, 5.4vw, 6rem);
}

.info-hero-grid,
.service-process,
.info-final,
.pricing-note {
    display: grid;
    grid-template-columns: minmax(320px, 0.48fr) minmax(360px, 0.52fr);
    gap: clamp(30px, 6vw, 92px);
    align-items: end;
}

.info-hero-copy {
    display: grid;
    gap: 18px;
}

.info-hero p,
.info-hero .lead,
.service-fit p {
    color: var(--soft);
}

.service-directory,
.pricing-stack {
    display: grid;
    gap: 18px;
}

.directory-block {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: clamp(18px, 3vw, 32px);
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.38);
}

.directory-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--gold-2);
    border: 1px solid rgba(157, 122, 62, 0.3);
    border-radius: 999px;
}

.directory-block h3 {
    margin-bottom: 12px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag-row span,
.fit-grid span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(16, 25, 35, 0.14);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.4);
    font-size: 0.86rem;
}

.tag-row span {
    padding: 6px 12px;
}

.service-process {
    align-items: start;
}

.process-steps {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--line);
    overflow: hidden;
}

.process-steps article {
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.44);
}

.process-steps span {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-2);
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.process-steps h3 {
    margin-bottom: 10px;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.fit-grid span {
    justify-content: center;
    padding: 10px 12px;
    border-color: var(--line-dark);
    color: var(--paper);
    background: rgba(245, 242, 236, 0.06);
    text-align: center;
}

.info-final {
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.34);
}

.info-final .btn {
    justify-self: start;
}

.price-section,
.pricing-note {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.38);
}

.price-section-head {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(340px, 0.58fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: end;
    margin-bottom: 28px;
}

.price-section-head h2,
.pricing-note h2 {
    font-size: clamp(2rem, 3.4vw, 4rem);
}

.package-table {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--line);
    overflow: hidden;
}

.package-table div {
    display: grid;
    grid-template-columns: minmax(180px, 0.28fr) minmax(120px, 0.18fr) minmax(280px, 0.54fr);
    gap: clamp(14px, 3vw, 38px);
    align-items: center;
    padding: clamp(18px, 2.4vw, 28px);
    background: rgba(255, 255, 255, 0.5);
}

.package-table span {
    color: var(--gold-2);
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.package-table strong {
    color: var(--ink);
    font-size: clamp(1.3rem, 1.8vw, 2rem);
    font-weight: 620;
    line-height: 1.05;
}

.package-table a {
    color: var(--gold-2);
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.price-section .small-link {
    margin-top: 22px;
}

.pricing-note {
    align-items: start;
    background:
        linear-gradient(145deg, rgba(92, 135, 152, 0.15), transparent),
        var(--navy-2);
    color: var(--paper);
    border-color: rgba(201, 169, 106, 0.34);
}

.pricing-note p {
    color: var(--soft);
}

/* CTA and footer */
.cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 7vw, 122px) 0;
    background: var(--navy);
    color: var(--paper);
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--cta-image);
    background-repeat: no-repeat;
    background-size: min(70vw, 1180px) auto;
    background-position: right center;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 19, 31, 0.96), rgba(7, 19, 31, 0.72) 50%, rgba(7, 19, 31, 0.2));
}

.cta-box {
    max-width: 840px;
}

.site-footer {
    background: var(--navy);
    color: var(--paper);
    border-top: 1px solid var(--line-dark);
    padding: 48px 0 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.36fr) 1fr;
    gap: 42px;
    align-items: start;
}

.footer-logo img {
    width: 142px;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 18px;
}

.footer-links a,
.footer-bottom a {
    color: rgba(245, 242, 236, 0.7);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
}

@media (max-width: 1180px) {
    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .mobile-panel {
        position: fixed;
        inset: 78px 0 0;
        z-index: 49;
        display: block;
        padding: 26px;
        background: rgba(7, 19, 31, 0.98);
        transform: translateX(100%);
        transition: transform var(--ease);
        overflow: auto;
    }

    .mobile-panel.is-open {
        transform: translateX(0);
    }

    .mobile-section {
        display: grid;
        gap: 10px;
        margin-bottom: 26px;
    }

    .mobile-heading {
        color: var(--gold);
        font-family: "Cinzel", serif;
        text-transform: uppercase;
        letter-spacing: 0.13em;
    }

    .mobile-link,
    .mobile-contact {
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 14px;
        border: 1px solid var(--line-dark);
        border-radius: 14px;
        color: var(--paper);
    }

    .hero::before,
    .gm-hero::before {
        background-size: min(82vw, 900px) auto;
        background-position: right 12% center;
        opacity: 0.72;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        opacity: 0.72;
    }

    .intro-grid,
    .feature-band,
    .feature-band.reverse,
    .section-title,
    .text-columns,
    .faq-layout,
    .footer-inner,
    .demo-card,
    .gm-hero-inner,
    .gm-two-col,
    .gm-section-head,
    .gm-review-grid,
    .gm-care-panel,
    .support-intro,
    .info-hero-grid,
    .service-process,
    .info-final,
    .pricing-note,
    .price-section-head {
        grid-template-columns: 1fr;
    }

    .feature-band.reverse .feature-copy {
        order: 0;
    }

    .feature-band {
        padding: 30px;
    }

    .offer-strip,
    .steps,
    .support-grid,
    .detail-grid,
    .pin-grid,
    .gm-included-board,
    .addon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-block,
    .service-block.wide {
        grid-column: auto;
    }

    .price-grid,
    .service-list,
    .showcase-panels,
    .gm-clarity-grid {
        grid-template-columns: 1fr;
    }

    .gm-price-card,
    .gm-portrait-frame {
        justify-self: start;
    }

    .gm-business-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .fit-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gm-price-rows div {
        grid-template-columns: 140px 1fr;
    }

    .gm-price-rows p {
        grid-column: 2;
    }

    .package-table div {
        grid-template-columns: minmax(160px, 0.38fr) minmax(120px, 0.22fr) minmax(260px, 0.4fr);
    }
}

@media (max-width: 720px) {
    .wrap,
    .container,
    .wide-wrap,
    .intro-grid,
    .visual-rhythm-grid {
        width: min(100% - 36px, var(--content));
    }

    .hero,
    .gm-hero {
        min-height: auto;
        padding: 70px 0 46px;
        align-items: end;
    }

    .hero::before,
    .gm-hero::before {
        background-size: cover;
        background-position: center;
        opacity: 1;
    }

    .hero-bg-img {
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        object-fit: cover;
        opacity: 1;
    }

    .hero::after,
    .gm-hero::after,
    .cta::after {
        background:
            linear-gradient(0deg, rgba(7, 19, 31, 0.98), rgba(7, 19, 31, 0.86) 55%, rgba(7, 19, 31, 0.36));
    }

    h1 {
        font-size: clamp(2.55rem, 12vw, 4rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
    }

    h3 {
        font-size: clamp(1.18rem, 6vw, 1.55rem);
        line-height: 1.18;
    }

    p,
    .lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.13em;
    }

    .section {
        padding: 54px 0;
    }

    .intro-grid {
        margin: 50px auto;
        gap: 26px;
    }

    .intro-media,
    .feature-image {
        min-height: 0;
        border-radius: 20px;
    }

    .feature-band {
        padding: 18px;
        gap: 18px;
    }

    .feature-copy,
    .demo-copy {
        padding: 22px 4px;
    }

    .visual-rhythm-grid,
    .offer-strip,
    .steps,
    .support-grid,
    .detail-grid,
    .pin-grid,
    .gm-included-board,
    .gm-business-list,
    .addon-grid,
    .gm-care-panel ul {
        grid-template-columns: 1fr;
    }

    .visual-rhythm figure:nth-child(2) {
        transform: none;
    }

    .hero-actions,
    .actions,
    .tour-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .btn,
    .small-link {
        width: 100%;
        min-height: 52px;
        padding: 0 16px;
    }

    .offer-card,
    .step,
    .support-card,
    .detail-card,
    .answer-card,
    .showcase-panel,
    .pin-grid-card,
    .service-row,
    .service-block,
    .addon-item,
    .gm-included-board article,
    .gm-clarity-grid article {
        min-height: 0;
        padding: 24px 18px;
    }

    .service-row {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .service-row p,
    .service-link {
        grid-column: 1 / -1;
    }

    .price-card {
        min-height: 0;
        padding: 26px 20px;
    }

    .price {
        font-size: 2.4rem;
    }

    .demo-card,
    .tour-frame,
    .tour-frame iframe {
        min-height: 420px;
    }

    .gm-price-rows div {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 18px;
    }

    .gm-price-rows p {
        grid-column: auto;
    }

    .info-hero {
        padding: 62px 0 46px;
    }

    .info-hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.8rem);
    }

    .directory-block {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .fit-grid,
    .package-table div {
        grid-template-columns: 1fr;
    }

    .price-section,
    .pricing-note,
    .info-final {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .cta::before {
        background-size: 116vw auto;
        background-position: center top;
        opacity: 0.5;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 16px;
    }
}
