@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --color-midnight: #0A1628;
    --color-navy: #162338;
    --color-navy-dark: #0D1B2A;
    --color-copper: #B87333;
    --color-copper-light: #D4956A;
    --color-copper-dark: #8B5A2B;
    --color-brass: #8B7355;
    /* --color-steel: #4A5568; */
    --color-steel: #959ba7;
    --color-cream: #F5F0E6;
    --color-cream-dark: #E8E0D0;
    
    --font-heading: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-jp: 'Noto Sans JP', sans-serif;
    
    --shadow-copper: 0 4px 12px rgba(184, 115, 51, 0.3);
    --shadow-copper-hover: 0 8px 24px rgba(184, 115, 51, 0.5);
    --shadow-navy: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-cream: 0 4px 20px rgba(10, 22, 40, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-jp);
    background-color: var(--color-midnight);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-midnight);
    padding: 16px 0;
    border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-jp);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-copper);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-copper);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--color-copper);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-copper);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.85)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        );
    padding: 120px 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: var(--color-copper);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-copper-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--color-cream);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-illustration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.15;
    z-index: 1;
}

.hero-illustration svg {
    width: 100%;
    height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-copper);
    color: var(--color-midnight);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-copper-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-copper);
    border: 1.5px solid var(--color-copper);
}

.btn-secondary:hover {
    background: var(--color-copper);
    color: var(--color-midnight);
}

.section {
    padding: 100px 0;
}

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

.section-cream {
    background: var(--color-cream);
    color: var(--color-midnight);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--color-copper);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-steel);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-cream .section-subtitle {
    color: var(--color-brass);
}

.section-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-copper);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 16px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-copper);
    border-radius: 8px;
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-navy);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-navy);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-copper);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-copper-dark), var(--color-copper));
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-copper);
    stroke-width: 1.5;
    fill: none;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.service-desc {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-steel);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--color-copper);
    font-weight: 500;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-copper);
    font-family: var(--font-mono);
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: var(--color-copper);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 24px;
}

.bento-item {
    background: var(--color-navy);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: var(--color-navy-dark);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.bento-text {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-steel);
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-marker {
    width: 12px;
    height: 12px;
    background: var(--color-copper);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 6px;
}

.advantage-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-midnight);
    margin-bottom: 8px;
}

.advantage-content p {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-steel);
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--color-navy);
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--color-copper);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-cream);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-copper);
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-cream);
}

.testimonial-info span {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-steel);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 3px solid var(--color-copper);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-copper);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-cream-dark);
    margin-bottom: 8px;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-brass);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--color-steel);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-copper);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-copper);
    fill: none;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-cream);
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-steel);
}

.contact-details a:hover {
    color: var(--color-copper);
}

.contact-form {
    background: var(--color-navy);
    border-radius: 8px;
    padding: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-cream);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-midnight);
    border: 1px solid var(--color-steel);
    border-radius: 4px;
    font-family: var(--font-jp);
    font-size: 16px;
    color: var(--color-cream);
    transition: all 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-copper);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 8px rgba(184, 115, 51, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-steel);
    opacity: 0.7;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.contact-map {
    margin-top: 60px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: var(--color-midnight);
    border-top: 2px solid var(--color-copper);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    marginpx;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-copper);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-jp);
    font-size: 14px;
    color: var(--color-steel);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-copper);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 85, 104, 0.3);
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-steel);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--color-navy);
    border: 1px solid var(--color-copper);
    border-radius: 8px;
    padding: 24px;
    max-width: 420px;
    z-index: 9999;
    box-shadow: var(--shadow-navy);
    display: block;
}

.cookie-banner h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--color-copper);
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--color-cream);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    font-family: var(--font-jp);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.cookie-btn-accept {
    background: var(--color-copper);
    color: var(--color-midnight);
    border: none;
}

.cookie-btn-accept:hover {
    box-shadow: var(--shadow-copper);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-steel);
    border: 1px solid var(--color-steel);
}

.cookie-btn-decline:hover {
    border-color: var(--color-copper);
    color: var(--color-copper);
}

.page-hero {
    padding: 160px 0 80px;
    background: 
        linear-gradient(rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.9)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        );
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 56px);
    color: var(--color-copper);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--color-steel);
    max-width: 600px;
}

.detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.detail-main h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-copper);
    margin: 32px 0 20px;
}

.detail-main h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-cream);
    margin: 28px 0 16px;
}

.detail-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-main ul {
    margin: 16px 0;
    padding-left: 24px;
}

.detail-main li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

.detail-main li::before {
    content: '◆';
    color: var(--color-copper);
    position: absolute;
    left: -24px;
}

.detail-sidebar {
    position: sticky;
    top: 120px;
}

.detail-card {
    background: var(--color-navy);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid rgba(184, 115, 51, 0.2);
}

.detail-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-copper);
    margin-bottom: 20px;
}

.detail-price {
    font-family: var(--font-mono);
    font-size: 32px;
    color: var(--color-cream);
    margin-bottom: 24px;
}

.detail-price span {
    font-size: 16px;
    color: var(--color-steel);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-cream);
}

.gallery-overlay p {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-steel);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(74, 85, 104, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-cream);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-copper);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-steel);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 40px;
    right: -24px;
    font-size: 24px;
    color: var(--color-copper);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--color-navy);
    border: 2px solid var(--color-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-mono);
    font-size: 28px;
    color: var(--color-copper);
    font-weight: 700;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-cream);
    margin-bottom: 12px;
}

.process-step p {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-steel);
    line-height: 1.7;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-copper);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-cream);
    margin: 30px 0 16px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-steel);
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--color-steel);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    background: 
        linear-gradient(rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.9)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(184, 115, 51, 0.03) 40px,
            rgba(184, 115, 51, 0.03) 41px
        );
}

.thank-you-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 8vw, 64px);
    color: var(--color-copper);
    margin-bottom: 24px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--color-cream);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-midnight);
    z-index: 999;
    padding: 100px 24px 40px;
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-close span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-copper);
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg) translateY(1px);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg) translateY(-1px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-cream);
    padding: 12px 0;
    border-bottom: 1px solid rgba(184, 115, 51, 0.2);
}

.mobile-nav a:hover {
    color: var(--color-copper);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .services-grid,
    .team-grid,
    .advantages-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}