:root {
    --navy: #07152b;
    --navy-2: #0c2344;
    --navy-3: #12345f;
    --gold: #c8a24a;
    --gold-2: #a98128;
    --white: #ffffff;
    --ink: #132033;
    --muted: #667085;
    --soft: #f6f8fb;
    --line: #e5e9f0;
    --shadow: 0 18px 45px rgba(7, 21, 43, 0.12);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans Georgian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(100% - 40px, 860px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 21, 43, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 28px rgba(7, 21, 43, 0.2);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #f0d58a);
    color: var(--navy);
    border-radius: 8px;
    font-weight: 800;
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 16px;
}

.brand-text small {
    color: rgba(255, 255, 255, 0.72);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 28px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 12px 26px rgba(200, 162, 74, 0.25);
}

.btn-gold:hover {
    background: #d9b75f;
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-outline.light {
    border-color: rgba(255, 255, 255, 0.64);
    color: var(--white);
}

.btn.full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-2);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.message-area {
    position: fixed;
    top: 92px;
    right: 24px;
    z-index: 80;
}

.site-message {
    background: var(--navy);
    color: var(--white);
    border-left: 4px solid var(--gold);
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero {
    min-height: 720px;
    position: relative;
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg,
.detail-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-overlay,
.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 21, 43, 0.92) 0%, rgba(7, 21, 43, 0.74) 45%, rgba(7, 21, 43, 0.35) 100%);
}

.hero-content {
    position: relative;
    max-width: 760px;
    padding: 96px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #f3d888;
}

.hero h1,
.page-hero h1,
.detail-content h1,
.article-hero h1,
.thank-card h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.08;
    font-weight: 800;
}

.hero p,
.detail-content p,
.page-hero p,
.article-hero p,
.thank-card p {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero p,
.article-hero p,
.thank-card p {
    color: var(--muted);
}

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

.hero-actions.center {
    justify-content: center;
}

.stats-section {
    background: var(--navy);
    color: var(--white);
}

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

.stats-grid div {
    padding: 34px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    color: var(--gold);
    font-size: 42px;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.section {
    padding: 96px 0;
}

.soft-bg {
    background: var(--soft);
}

.navy-section {
    background: var(--navy);
    color: var(--white);
}

.two-col,
.split-content,
.content-layout,
.form-layout,
.contact-layout,
.blog-layout,
.cta-grid {
    display: grid;
    gap: 48px;
}

.two-col {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.two-col.align-start {
    align-items: start;
}

.split-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.content-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
}

.form-layout,
.contact-layout {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
}

.blog-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
}

.cta-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--navy);
}

h3 {
    color: var(--navy);
}

.navy-section h2,
.navy-section h3,
.cta-band h2,
.cta-band h3 {
    color: var(--white);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.center,
.center-actions {
    text-align: center;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}

.why-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.why-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 32px;
    align-items: stretch;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
}

.why-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 10px 22px 12px;
}

.why-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.why-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.why-visual {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
    gap: 18px;
    min-height: 390px;
}

.why-image {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: var(--radius);
}

.why-features {
    display: grid;
    gap: 14px;
}

.why-feature {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.why-feature span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.why-feature h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
}

.why-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.feature-list div {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    font-weight: 800;
}

.feature-list h3,
.feature-list p {
    margin: 0;
}

.feature-list p {
    color: var(--muted);
}

.image-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-card img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.course-card,
.blog-card,
.testimonial-card,
.value-card,
.mini-card,
.form-card,
.service-panel,
.side-box,
.info-card,
.contact-card,
.mission-box,
.thank-card {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-card,
.course-card,
.blog-card {
    overflow: hidden;
}

.service-card img,
.course-card img,
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-card > div,
.course-body,
.blog-card > div,
.mini-card,
.value-card,
.testimonial-card {
    padding: 24px;
}

.service-card h2,
.service-card h3,
.course-card h2,
.course-card h3,
.blog-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.service-card p,
.course-card p,
.blog-card p,
.mini-card p,
.value-card p,
.testimonial-card p {
    color: var(--muted);
}

.service-card.tall img {
    height: 250px;
}

.service-card.tall .btn {
    margin-top: 12px;
}

.course-body {
    display: grid;
    gap: 12px;
}

.pill {
    width: fit-content;
    padding: 6px 10px;
    background: rgba(200, 162, 74, 0.14);
    color: var(--gold-2);
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
}

.course-meta,
.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.course-meta strong,
.price-box {
    color: var(--navy);
    font-size: 24px;
}

.card-actions {
    margin-top: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.82);
}

.stars {
    color: var(--gold);
    margin-bottom: 12px;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.person img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.person strong {
    display: block;
    color: var(--white);
}

.person span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 20px;
}

.accordion.large details {
    padding: 22px 24px;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: "+";
    color: var(--gold-2);
    font-size: 24px;
    line-height: 1;
}

.accordion details[open] summary::after {
    content: "−";
}

.accordion summary span {
    color: var(--gold-2);
    font-size: 13px;
}

.accordion p {
    margin: 14px 0 0;
    color: var(--muted);
}

.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    color: var(--white);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.page-hero {
    padding: 110px 0 88px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.78);
}

.prose {
    font-size: 17px;
}

.prose h2 {
    margin-top: 34px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    color: var(--muted);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card span {
    color: var(--gold-2);
    font-weight: 800;
}

.timeline {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.timeline article {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.timeline article > span {
    color: var(--gold-2);
    font-weight: 800;
    font-size: 22px;
}

.timeline h3,
.timeline p {
    margin: 0;
}

.timeline p {
    color: var(--muted);
}

.check-list,
.number-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    background: rgba(200, 162, 74, 0.16);
    color: var(--gold-2);
    border-radius: 6px;
    font-weight: 900;
}

.number-list {
    counter-reset: steps;
}

.number-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 46px;
}

.number-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    border-radius: 8px;
    font-weight: 800;
}

.number-list.compact {
    margin-bottom: 0;
}

.mission-box {
    padding: 26px;
    margin-top: 28px;
    border: 1px solid var(--line);
}

.detail-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
}

.detail-content {
    position: relative;
    max-width: 780px;
    padding: 120px 0 80px;
}

.service-panel,
.form-card,
.booking-info,
.contact-info {
    position: sticky;
    top: 104px;
}

.service-panel,
.form-card,
.booking-info,
.info-card,
.contact-card {
    padding: 28px;
    border: 1px solid var(--line);
}

.service-panel h3,
.service-panel p {
    margin-top: 0;
}

.service-panel p,
.booking-info p {
    color: var(--muted);
}

.service-panel .btn + .btn {
    margin-top: 12px;
}

.price-box {
    padding: 18px;
    margin: 18px 0;
    background: var(--soft);
    border-radius: 8px;
    font-weight: 900;
    text-align: center;
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 32px 0;
}

.info-strip div {
    padding: 18px;
    background: var(--soft);
    border-radius: 8px;
}

.info-strip span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.info-strip strong {
    display: block;
    margin-top: 6px;
    color: var(--navy);
}

.blog-grid {
    display: grid;
    gap: 26px;
}

.blog-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.blog-card img {
    height: 100%;
    min-height: 250px;
}

.post-meta {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 800;
}

.sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 104px;
}

.side-box {
    padding: 24px;
    border: 1px solid var(--line);
}

.side-box h3 {
    margin-top: 0;
}

.search-form {
    display: grid;
    gap: 10px;
}

.search-form input,
.search-form button,
.form-control {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.search-form input,
.form-control {
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
}

.search-form button {
    padding: 12px;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.category-list,
.recent-list {
    display: grid;
    gap: 10px;
}

.category-list a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--muted);
}

.category-list a.active,
.category-list a:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: rgba(200, 162, 74, 0.12);
}

.recent-list a {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.recent-list span {
    display: block;
    color: var(--gold-2);
    font-size: 13px;
    margin-bottom: 3px;
}

.result-note {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.result-note span {
    padding: 8px 12px;
    background: var(--soft);
    border-radius: 6px;
    color: var(--navy);
    font-weight: 700;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.pagination a,
.pagination span {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pagination a {
    color: var(--navy);
    font-weight: 800;
}

.article-hero {
    padding: 90px 0 0;
    background: var(--soft);
    text-align: center;
}

.article-hero h1 {
    color: var(--navy);
}

.article-hero img {
    width: min(100% - 40px, 1180px);
    height: 470px;
    margin: 50px auto 0;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.article-content {
    background: var(--white);
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.form-card form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 800;
}

.form-control:focus,
.search-form input:focus {
    outline: 3px solid rgba(200, 162, 74, 0.22);
    border-color: var(--gold);
}

textarea.form-control {
    resize: vertical;
}

.form-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-weight: 700;
}

.booking-info {
    padding: 8px 0 0;
}

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

.contact-card {
    margin-top: 26px;
}

.contact-card strong,
.contact-card span {
    display: block;
}

.map-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    border-radius: 8px;
    background: var(--navy);
    background-size: cover;
    color: var(--white);
}

.map-placeholder span {
    display: block;
    color: var(--gold);
    font-weight: 900;
    font-size: 24px;
}

.map-placeholder p {
    margin: 6px 0 0;
}

.social-row,
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-row a,
.social-links a {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
}

.thank-section {
    min-height: 70vh;
    display: grid;
    align-items: center;
    padding: 96px 0;
    background: var(--soft);
    background-size: cover;
    background-position: center;
}

.thank-card {
    padding: 48px;
    text-align: center;
}

.empty-note,
.empty-state {
    color: var(--muted);
}

.empty-state {
    padding: 34px;
    background: var(--soft);
    border-radius: 8px;
}

.empty-note.light {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
    padding: 66px 0;
}

.footer-grid h3 {
    margin: 0 0 16px;
    color: var(--white);
}

.footer-grid a:not(.brand) {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
    color: var(--gold);
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1100px) {
    .why-card {
        grid-template-columns: 1fr;
    }

    .why-copy {
        max-width: 760px;
    }

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

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 260px;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 78px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 20px 24px;
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-120%);
        transition: transform 0.25s ease;
    }

    body.nav-open .main-nav {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 640px;
    }

    .why-card {
        padding: 26px;
    }

    .why-visual {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .why-image {
        height: 320px;
        min-height: 0;
    }

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

    .why-feature {
        grid-template-columns: 1fr;
    }

    .two-col,
    .split-content,
    .content-layout,
    .form-layout,
    .contact-layout,
    .blog-layout,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.three,
    .testimonial-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-panel,
    .form-card,
    .booking-info,
    .contact-info,
    .sidebar {
        position: static;
    }

    .cta-actions {
        justify-content: flex-start;
    }

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

@media (max-width: 680px) {
    .container,
    .container.narrow {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding: 72px 0;
    }

    .hero h1,
    .page-hero h1,
    .detail-content h1,
    .article-hero h1,
    .thank-card h1 {
        font-size: 38px;
    }

    .hero p,
    .detail-content p,
    .page-hero p,
    .article-hero p,
    .thank-card p {
        font-size: 16px;
    }

    .stats-grid,
    .card-grid.three,
    .card-grid.four,
    .testimonial-grid,
    .values-grid,
    .why-features,
    .info-strip {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 22px;
    }

    .why-copy {
        padding: 10px 4px 4px 8px;
    }

    .why-image {
        height: 260px;
    }

    .why-actions .btn {
        width: 100%;
    }

    .stats-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-grid div:last-child {
        border-bottom: 0;
    }

    .feature-list div,
    .timeline article {
        grid-template-columns: 1fr;
    }

    .image-card img {
        min-height: 320px;
    }

    .service-card img,
    .course-card img,
    .blog-card img,
    .article-hero img {
        height: 240px;
        min-height: 0;
    }

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

    .thank-card {
        padding: 30px 20px;
    }

    .message-area {
        left: 14px;
        right: 14px;
    }
}
