/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: #0a1628;
    overflow-x: hidden;
    width: 100%;
}

main,
header,
footer,
section {
    width: 100%;
    max-width: 100%;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 2000;
    padding: 10px 18px;
    background: #c9a962;
    color: #0a1628;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

section[id] {
    scroll-margin-top: 80px;
}

.app {
    position: relative;
    width: 100%;
    background: white;
}

p {
    font-family: 'Montserrat', sans-serif;
}

/* Navigation */
.navigation {
    position: static;
    width: 100%;
    height: 59px;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(40px, calc((100% - 1320px) / 2 + 40px));
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-icon {
    width: 37.03px;
    height: 33.2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    line-height: 1.4;
    text-align: center;
    letter-spacing: 1px;
    color: #1e3a5f;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-logo-link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-logo-link .logo-img {
    height: clamp(32px, 5vw, 40px);
    max-width: min(280px, calc(100vw - 88px));
}

.footer-logo .logo-img {
    height: clamp(32px, 5vw, 42px);
    max-width: min(300px, 100%);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #1e3a5f;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #1e3a5f;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #c9a962;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #c9a962;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    min-height: clamp(520px, 85vh, 807px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(10, 22, 40, 0.45) 42%,
        rgba(30, 58, 95, 0.25) 58%,
        rgb(30, 58, 95) 100%
    );
}

.hero-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 80px) max(20px, 4vw) clamp(48px, 6vw, 60px);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 606px;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 32px);
    width: 100%;
    max-width: 100%;
}

.hero-title {
    position: relative;
    margin: 0;
    width: 100%;
}

.hero-title-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2rem, 5.8vw, 4.7rem);
    line-height: 1.2;
    color: #ffffff;
    text-transform: capitalize;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 2.5vw, 1.57rem);
    line-height: 1.35;
    color: white;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.65;
    color: white;
    width: 100%;
    max-width: 525px;
}

.hero-founder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #d1d5dc;
}

.hero-buttons,
.about-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 0 0 auto;
    box-sizing: border-box;
}

.hero-buttons .btn-primary {
    width: 172.011px;
    height: 54.347px;
    padding-left: 28px;
    padding-right: 28px;
}

.hero-buttons .btn-secondary {
    width: 156.051px;
    height: 54.347px;
    padding-left: 28px;
    padding-right: 28px;
}

.hero-buttons .btn-primary {
    background: #c9a962;
    color: #ffffff;
    border: 2px solid #c9a962;
}

.hero-buttons .btn-primary:hover {
    background: #b39552;
    border-color: #b39552;
    color: #ffffff;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #c9a962;
    border: 2px solid #c9a962;
}

.hero-buttons .btn-secondary:hover {
    background: #c9a962;
    color: #ffffff;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 8.361px;
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.9375rem, 2.2vw, 1.05rem);
    line-height: 1.5;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 22, 40, 0.12);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: #c9a962;
    color: white;
    width: 172.011px;
    height: 54.347px;
}

.btn-primary:hover {
    background: #b39552;
}

.btn-secondary {
    background: transparent;
    color: #c9a962;
    border: 2.09px solid #c9a962;
    width: 156.051px;
    height: 54.347px;
}

.btn-secondary:hover {
    background: #c9a962;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #0a1628;
    border: 2.09px solid #d1d5dc;
    width: 172.643px;
    height: 54.347px;
}

.btn-outline:hover {
    background: #d1d5dc;
}

.social-link:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.btn-icon {
    width: 20px;
    height: 20px;
}

/* About Section */
.about-section {
    background: #ffffff;
    padding: 80px 0 100px;
    width: 100%;
}

.section-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 21px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4.5vw, 3.15rem);
    line-height: 1.15;
    color: #0a1628;
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 64px);
}

.about-section .section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.gold {
    color: #c9a962;
}

.about-content {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 280px;
    max-width: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 579px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(16px 24px 32px rgba(10, 22, 40, 0.18));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02) translateY(-4px);
    filter: drop-shadow(20px 28px 36px rgba(10, 22, 40, 0.22));
}

.about-text {
    flex: 1 1 280px;
    min-width: min(100%, 260px);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.05rem);
    line-height: 1.2;
    color: #c9a962;
    margin-bottom: 28px;
}

.about-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.2vw, 1.05rem);
    line-height: 1.65;
    color: #0a1628;
    margin-bottom: 24px;
}

.about-description:last-of-type {
    margin-bottom: 0;
}

.about-buttons {
    margin-top: 40px;
}

.about-buttons .btn-primary {
    flex: 0 0 auto;
    width: auto;
    min-width: 185px;
    height: 54px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9375rem, 2.2vw, 1.05rem);
    letter-spacing: 0.02em;
    color: #0a1628;
    background: #c9a962;
    border: 2px solid #c9a962;
    box-sizing: border-box;
}

.about-buttons .btn-primary:hover {
    background: #b39552;
    border-color: #b39552;
    color: #0a1628;
}

.about-buttons .btn-outline {
    flex: 0 0 auto;
    min-width: 173px;
    height: 54px;
    padding: 0 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9375rem, 2.2vw, 1.05rem);
    color: #0a1628;
    border: 2px solid #d1d5dc;
    background: #ffffff;
    box-sizing: border-box;
}

.about-buttons .btn-outline:hover {
    background: #d1d5dc;
    color: #0a1628;
}

/* Author Section */
.author-section {
    background: #0a1628;
    padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 21px);
    min-height: auto;
}

.author-content {
    display: flex;
    gap: clamp(24px, 4vw, 50px);
    margin-top: 67px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.author-image {
    flex: 1 1 280px;
    width: 100%;
    max-width: 614px;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 10.451px;
    overflow: hidden;
}

.author-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.author-portrait {
    position: absolute;
    left: 146.97px;
    top: 11.04px;
    width: 295.384px;
    height: 438.292px;
    object-fit: cover;
}

.author-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: bottom;
}

.author-text {
    flex: 1 1 280px;
    min-width: min(100%, 260px);
    max-width: 614px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.author-bio {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.2vw, 1.05rem);
    line-height: 1.65;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    padding: 88.02px 27px;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: #0a1628;
    margin-bottom: 16px;
}

.faq-divider {
    width: 96px;
    height: 4px;
    background: #c9a962;
    margin-bottom: 36px;
}

.faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    color: #4a5565;
    max-width: 695px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 2px 26px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #c9a962;
}

.faq-item.is-open {
    border-color: #c9a962;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.5;
    color: #0a1628;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #c9a962;
}

.faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 320px;
    opacity: 1;
    padding-bottom: 20px;
}

.faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9375rem, 2.2vw, 1rem);
    line-height: 1.65;
    color: #4a5565;
}

/* Contact Section */
.contact-section {
    padding: 100px 27px;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 4.5vw, 3.1rem);
    line-height: 1.15;
    color: #0a1628;
    margin-bottom: 16px;
}

.contact-divider {
    width: 98.872px;
    height: 4.12px;
    background: #c9a962;
    margin-bottom: 36px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.16rem);
    line-height: 1.6;
    color: #4a5565;
    max-width: 752.866px;
}

.contact-content {
    display: flex;
    gap: clamp(24px, 4vw, 50px);
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
}

.contact-form {
    flex: 1 1 300px;
    min-width: min(100%, 280px);
    max-width: 709px;
}

.form-row {
    display: flex;
    gap: 24.72px;
    margin-bottom: 24.72px;
}

.form-group {
    flex: 1;
    margin-bottom: 24.72px;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    line-height: 1.45;
    letter-spacing: 0.7209px;
    text-transform: uppercase;
    color: #0a1628;
    margin-bottom: 8.239px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 2.06px solid #d1d5dc;
    padding: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 2.2vw, 1rem);
}

.form-input {
    height: 53.555px;
}

.form-select {
    height: 50.122px;
}

.form-textarea {
    height: 177.145px;
    resize: vertical;
}

.form-status {
    margin: 16px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.form-status.is-success {
    color: #1f7a45;
}

.form-status.is-error {
    color: #b42318;
}

.contact-form .btn-primary {
    width: 229.595px;
    height: 61.795px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9375rem, 2.5vw, 1.16rem);
    letter-spacing: 0.9269px;
    text-transform: uppercase;
    background: #c9a962;
    color: #0a1628;
}

/* Contact Info */
.contact-info {
    flex: 1 1 280px;
    width: 100%;
    max-width: 492px;
    background: #0a1628;
    border-radius: 5.15px;
    padding: clamp(24px, 4vw, 33px);
    color: white;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    line-height: 1.3;
    color: #c9a962;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24.718px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: clamp(12px, 3vw, 16px);
    align-items: flex-start;
    width: 100%;
}

.contact-item > div {
    flex: 1;
    min-width: 0;
}

.contact-icon {
    width: clamp(22px, 5vw, 25px);
    height: clamp(22px, 5vw, 25px);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    line-height: 1.45;
    letter-spacing: 0.7209px;
    text-transform: uppercase;
    color: #99a1af;
    margin-bottom: 4.12px;
}

.contact-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 3.2vw, 1.16rem);
    line-height: 1.5;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

a.contact-value:hover {
    color: #c9a962;
}

.contact-social {
    border-top: 0.687px solid rgba(201, 169, 98, 0.3);
    padding-top: 33.644px;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.16rem);
    line-height: 1.55;
    letter-spacing: 0.9269px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16.479px;
}

.social-links {
    display: flex;
    gap: 16.479px;
}

.social-link {
    width: 49.436px;
    height: 49.436px;
    background: #c9a962;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.25s ease;
}

.social-link:hover {
    background: #b39552;
}

.social-link svg {
    width: 20.598px;
    height: 20.598px;
}

/* Footer */
.footer {
    background: #0a1628;
    border-top: 4.182px solid #c9a962;
    padding: 28px 0 24px;
    color: #ffffff;
}

.footer p,
.footer a:not(:hover) {
    color: #ffffff;
}

.footer-content {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25.09px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: min(100%, 200px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    line-height: 1.4;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8125rem, 2vw, 0.92rem);
    line-height: 1.6;
    color: #ffffff;
    max-width: 394.118px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 2.8vw, 1.3rem);
    line-height: 1.35;
    color: #c9a962;
    margin: 0 0 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8.363px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8125rem, 2vw, 0.92rem);
    line-height: 1.45;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a962;
}

.footer-bottom {
    border-top: 0.697px solid #364153;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8125rem, 2vw, 0.92rem);
    line-height: 1.45;
    color: #ffffff;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.8125rem, 2vw, 0.92rem);
    line-height: 1.45;
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn:hover,
    .social-link:hover,
    .about-image:hover img {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1320px) {
    .navigation {
        padding: 0 24px;
    }
}

/* Tablet & mobile nav */
@media (max-width: 991px) {
    .navigation {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        height: auto;
        min-height: 59px;
        padding: 12px 20px;
    }

    .navigation {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-logo-link {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        width: max-content;
        justify-self: start;
    }

    .logo-text {
        max-width: calc(100vw - 110px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 4px;
        margin-top: 8px;
        border-top: 1px solid rgba(30, 58, 95, 0.12);
    }

    .navigation.is-open .nav-links {
        display: flex;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 0.9375rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.is-active {
        color: #c9a962;
        font-weight: 500;
    }

    .navigation.is-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navigation.is-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .navigation.is-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-content,
    .author-content,
    .contact-content {
        flex-direction: column;
    }

    .about-image,
    .author-image {
        flex: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-text,
    .author-text,
    .contact-form,
    .contact-info {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .author-content {
        margin-top: 40px;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 22, 40, 0.93) 0%,
            rgba(10, 22, 40, 0.8) 50%,
            rgba(30, 58, 95, 0.9) 100%
        );
    }

    .hero-image {
        object-position: 70% top;
    }

    .hero-section {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-container {
        padding: 32px 20px 40px;
        box-sizing: border-box;
    }

    .hero-content,
    .hero-text-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-text-content {
        gap: 16px;
    }

    .hero-title-text {
        font-size: clamp(1.65rem, 7.5vw, 2.35rem);
        line-height: 1.25;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .section-container {
        padding: 0 20px;
    }

    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    section[id] {
        scroll-margin-top: 80px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding: 28px 20px 36px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-text-content {
        gap: 12px;
        padding: 0;
    }

    .hero-title-text {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .hero-description,
    .hero-founder {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.55;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons,
    .about-buttons {
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 10px;
    }

    .hero-buttons {
        margin-top: 4px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .about-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: none;
        height: 48px;
        padding: 0 10px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-size: 0.8125rem;
        letter-spacing: 0.02em;
    }

    .about-section,
    .author-section {
        padding: 48px 0 56px;
    }

    .faq-section,
    .contact-section {
        padding: 48px 0;
    }

    .section-container {
        padding: 0 16px;
    }

    .footer {
        padding: 24px 0 20px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 20px;
    }

    .footer-column {
        flex: 0 0 auto;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-heading {
        margin-bottom: 16px;
        font-size: 1.35rem;
    }

    .footer-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 1rem;
        line-height: 1.5;
    }

    .footer-bottom {
        padding-top: 20px;
        gap: 12px;
    }

    .footer-copyright {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .contact-form .btn-primary {
        width: 100%;
    }

    .contact-info {
        padding: 28px 20px;
        max-width: 100%;
    }

    .contact-info-title {
        margin-bottom: 24px;
    }

    .contact-details {
        gap: 20px;
        margin-bottom: 32px;
    }

    .contact-social {
        padding-top: 24px;
    }

    .faq-item {
        padding: 2px 14px;
    }

    .faq-question {
        padding: 12px 0;
    }

    .footer-description {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 399px) {
    .nav-logo-link .logo-img {
        height: 30px;
        max-width: calc(100vw - 72px);
    }

}
