@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-linen-white: #FEFCF4;
    --color-mist: #FAF6EC;
    --color-cotton-ivory: #F5F0E2;
    --color-deep-terracotta: #5D4037;
    --color-clay: #8D6E63;
    --color-saffron-gold: #D97706;
    --color-warm-clay: #92400E;
    --color-text-light: #685548;
    --font-primary: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-smooth: 0.32s ease;
    --transition-spring: 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-brutal: 0 48px 144px rgba(180, 83, 9, 0.1), 0 12px 36px rgba(180, 83, 9, 0.05);
    --shadow-gold: 0 14px 52px rgba(180, 83, 9, 0.42);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.78;
    color: var(--color-clay);
    background: var(--color-linen-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.header-fixed {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(254, 252, 244, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 2px solid rgba(180, 83, 9, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-brutal);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo svg {
    width: 32px;
    height: 32px;
}

.header-logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    color: var(--color-deep-terracotta);
    letter-spacing: -0.02em;
}

.menu-button {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 252, 244, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 2px solid rgba(180, 83, 9, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-brutal);
    transition: var(--transition-smooth);
}

.menu-button:hover {
    transform: scale(1.04);
    border-color: var(--color-saffron-gold);
}

.menu-button svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-saffron-gold);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(254, 252, 244, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(180, 83, 9, 0.3);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.menu-close:hover {
    background: var(--color-saffron-gold);
    border-color: var(--color-saffron-gold);
}

.menu-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-deep-terracotta);
}

.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    padding: 80px 24px 24px;
}

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

.menu-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-deep-terracotta);
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.menu-link:hover {
    color: var(--color-saffron-gold);
    border-bottom-color: var(--color-saffron-gold);
}

.menu-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 48px;
    border-top: 2px solid rgba(180, 83, 9, 0.2);
    margin-top: 24px;
}

.menu-contact {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-clay);
}

.menu-contact a {
    color: var(--color-saffron-gold);
    font-weight: 600;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0 64px;
    position: relative;
    background: radial-gradient(ellipse at 18% 28%, rgba(217, 119, 6, 0.05) 0%, transparent 45%),
                radial-gradient(ellipse at 72% 52%, rgba(180, 83, 9, 0.04) 0%, transparent 42%),
                radial-gradient(ellipse at 38% 76%, rgba(217, 119, 6, 0.03) 0%, transparent 38%),
                radial-gradient(ellipse at 85% 35%, rgba(180, 83, 9, 0.025) 0%, transparent 36%),
                var(--color-linen-white);
}

.hero-content {
    padding-top: 80px;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    color: var(--color-deep-terracotta);
    line-height: 0.84;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title span {
    display: inline-block;
    animation: slideUp 0.6s var(--transition-spring) forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.72);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 19px;
    color: var(--color-clay);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 52px;
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    color: white;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 14px;
    border-radius: 24px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-spring);
    white-space: nowrap;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 80px rgba(180, 83, 9, 0.52);
}

.hero-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-deep-terracotta);
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    background: var(--color-mist);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brutal-marker {
    position: absolute;
    border: 2px solid var(--color-saffron-gold);
    opacity: 0.3;
    animation: pulse 2.8s ease-in-out infinite;
}

.brutal-marker-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.brutal-marker-2 {
    width: 40px;
    height: 40px;
    bottom: 40px;
    left: -15px;
    animation-delay: 0.5s;
}

.brutal-marker-3 {
    width: 50px;
    height: 30px;
    top: 50%;
    right: -25px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 11px;
    color: var(--color-clay);
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-saffron-gold);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.section {
    padding: 96px 64px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-deep-terracotta);
    line-height: 0.92;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-clay);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    transition: var(--transition-spring);
    z-index: 86;
}

.service-card:hover {
    transform: scale(1.04);
    border-width: 3px;
    z-index: 96;
    box-shadow: 0 64px 192px rgba(180, 83, 9, 0.16);
}

.service-card-large {
    grid-column: span 2;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-mist);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 24px;
}

.service-card-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    color: var(--color-deep-terracotta);
    margin-bottom: 8px;
}

.service-card-price {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-saffron-gold);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-mist);
    border-radius: 50%;
    margin: 24px auto;
}

.service-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-saffron-gold);
}

.process-section {
    background: var(--color-mist);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.process-nodes {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    transition: var(--transition-smooth);
    z-index: 86;
}

.process-node:hover {
    transform: scale(1.02);
    border-color: var(--color-saffron-gold);
    z-index: 94;
}

.process-node-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    border-radius: 50%;
}

.process-node-circle svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.process-node-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-deep-terracotta);
}

.process-node-desc {
    font-size: 14px;
    color: var(--color-clay);
    margin-top: 4px;
}

.process-connector {
    position: absolute;
    left: 68px;
    top: 100%;
    width: 2px;
    height: 32px;
    background: repeating-linear-gradient(
        to bottom,
        var(--color-saffron-gold) 0,
        var(--color-saffron-gold) 6px,
        transparent 6px,
        transparent 9px
    );
}

.process-details {
    position: sticky;
    top: 120px;
    padding: 40px;
    background: rgba(254, 252, 244, 0.98);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
}

.process-details-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-deep-terracotta);
    margin-bottom: 24px;
}

.process-details-text {
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
}

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

.advantage-card {
    padding: 40px 32px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-spring);
    z-index: 86;
}

.advantage-card:hover {
    transform: scale(1.04);
    border-color: var(--color-saffron-gold);
    z-index: 96;
}

.advantage-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    color: var(--color-saffron-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.advantage-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-deep-terracotta);
    margin-bottom: 12px;
}

.advantage-desc {
    font-size: 14px;
    color: var(--color-clay);
}

.marquee-section {
    background: var(--color-cotton-ivory);
    padding: 48px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 72px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid var(--color-saffron-gold);
    border-radius: 8px;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-deep-terracotta);
}

.marquee-stars {
    color: var(--color-saffron-gold);
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.team-item:hover,
.team-item.active {
    border-color: var(--color-saffron-gold);
    background: var(--color-mist);
}

.team-item-role {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-saffron-gold);
    margin-bottom: 4px;
}

.team-item-name {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-deep-terracotta);
}

.team-photo {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-mist);
    transition: opacity 0.2s ease;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background: var(--color-mist);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 86;
}

.faq-item:hover {
    z-index: 96;
    border-color: var(--color-saffron-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-deep-terracotta);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-saffron-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
    border-left: 3px solid var(--color-saffron-gold);
    margin-left: 24px;
    padding-left: 20px;
}

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

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 0;
    overflow-x: auto;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition-spring);
    z-index: 86;
}

.review-card:nth-child(2) {
    transform: scale(1.1);
    z-index: 96;
    border-color: var(--color-saffron-gold);
}

.review-card:hover {
    z-index: 100;
    border-color: var(--color-saffron-gold);
}

.review-card:nth-child(2):hover {
    transform: scale(1.15);
}

.review-card:nth-child(1),
.review-card:nth-child(3) {
    opacity: 0.7;
}

.review-stars {
    color: var(--color-saffron-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-mist);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-deep-terracotta);
}

.review-date {
    font-size: 12px;
    color: var(--color-clay);
}

.contact-section {
    background: var(--color-mist);
}

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

.contact-info {
    padding: 40px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
}

.contact-info-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-deep-terracotta);
    margin-bottom: 32px;
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-saffron-gold);
    min-width: 24px;
}

.contact-item-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 12px;
    color: var(--color-saffron-gold);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-value {
    font-size: 15px;
    color: var(--color-deep-terracotta);
}

.contact-item-value a {
    color: var(--color-deep-terracotta);
    transition: color 0.3s ease;
}

.contact-item-value a:hover {
    color: var(--color-saffron-gold);
}

.contact-form {
    padding: 40px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
}

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

.form-label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-deep-terracotta);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--color-saffron-gold);
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--color-deep-terracotta);
    background: var(--color-linen-white);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 0 8px 16px 24px;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-saffron-gold);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    color: white;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition-spring);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.footer {
    background: var(--color-cotton-ivory);
    border-top: 3px solid var(--color-saffron-gold);
    padding: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-deep-terracotta);
}

.footer-desc {
    font-size: 14px;
    color: var(--color-clay);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-deep-terracotta);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: var(--color-clay);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-saffron-gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-clay);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-saffron-gold);
    min-width: 18px;
}

.footer-contact-item a {
    color: var(--color-clay);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--color-saffron-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(180, 83, 9, 0.2);
}

.footer-copyright {
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--color-clay);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    padding: 24px;
    background: rgba(254, 252, 244, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 2px solid rgba(180, 83, 9, 0.3);
    border-radius: 12px;
    box-shadow: var(--shadow-brutal);
    z-index: 9999;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-deep-terracotta);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 14px;
    color: var(--color-clay);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    color: white;
    border: none;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cookie-decline {
    background: transparent;
    color: var(--color-deep-terracotta);
    border: 2px solid rgba(180, 83, 9, 0.3);
}

.cookie-decline:hover {
    border-color: var(--color-saffron-gold);
    color: var(--color-saffron-gold);
}

.cookie-link {
    display: block;
    font-size: 12px;
    color: var(--color-clay);
    margin-top: 16px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--color-saffron-gold);
}

.hero-inner {
    min-height: 55vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 64px;
    position: relative;
    background: radial-gradient(ellipse at 18% 28%, rgba(217, 119, 6, 0.05) 0%, transparent 45%),
                radial-gradient(ellipse at 72% 52%, rgba(180, 83, 9, 0.04) 0%, transparent 42%),
                var(--color-linen-white);
}

.hero-inner-content {
    padding-top: 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--color-clay);
}

.breadcrumb a {
    color: var(--color-clay);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-saffron-gold);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-clay);
}

.page-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-deep-terracotta);
    line-height: 0.92;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-clay);
    max-width: 500px;
}

.hero-inner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    background: var(--color-mist);
}

.hero-inner-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.about-sticky {
    position: sticky;
    top: 120px;
    padding: 40px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
}

.about-sticky-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-deep-terracotta);
    margin-bottom: 16px;
}

.about-sticky-text {
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
}

.about-scroll {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-card {
    padding: 32px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    position: relative;
    z-index: 90;
}

.about-card:nth-child(odd) {
    margin-left: 40px;
}

.about-card-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-deep-terracotta);
    margin-bottom: 12px;
}

.about-card-text {
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card {
    padding: 48px;
    background: rgba(254, 252, 244, 0.96);
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-detail-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-deep-terracotta);
    margin-bottom: 24px;
}

.service-detail-text {
    font-size: 16px;
    color: var(--color-clay);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-price-table {
    width: 100%;
    border-collapse: collapse;
}

.service-price-table th,
.service-price-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(180, 83, 9, 0.2);
}

.service-price-table th {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-deep-terracotta);
    background: var(--color-mist);
}

.service-price-table td {
    font-size: 15px;
    color: var(--color-clay);
}

.service-price-table td:last-child {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-saffron-gold);
    text-align: right;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-mist);
    transition: var(--transition-spring);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--color-saffron-gold);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px;
    background: radial-gradient(ellipse at 50% 50%, rgba(217, 119, 6, 0.08) 0%, transparent 50%),
                var(--color-linen-white);
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    border-radius: 50%;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.thank-you-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-deep-terracotta);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--color-clay);
    line-height: 1.7;
    margin-bottom: 40px;
}

.thank-you-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-saffron-gold), var(--color-warm-clay));
    color: white;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 24px;
    transition: var(--transition-spring);
}

.thank-you-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-deep-terracotta);
    margin-bottom: 16px;
}

.legal-text {
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding-left: 20px;
}

.legal-list li {
    position: relative;
    font-size: 15px;
    color: var(--color-clay);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-saffron-gold);
    border-radius: 50%;
}

.map-container {
    width: 100%;
    aspect-ratio: 16/9;
    border: 2px solid rgba(180, 83, 9, 0.24);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-mist);
    margin-top: 24px;
}

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

@media (max-width: 1024px) {
    .hero-section,
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 80px 24px 40px;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-cta {
        margin: 0 auto;
    }
    
    .section {
        padding: 64px 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-large {
        grid-column: span 2;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-details {
        position: static;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-sticky {
        position: static;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-carousel {
        flex-direction: column;
    }
    
    .review-card {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .review-card:nth-child(2) {
        transform: none;
    }
    
    .review-card:nth-child(1),
    .review-card:nth-child(3) {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .header-logo-text {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        grid-column: span 1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .menu-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        min-width: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 40px 24px;
    }
    
    .service-detail-card {
        padding: 32px 24px;
    }
    
    .hero-inner {
        padding: 80px 24px 40px;
    }
    
    .about-card:nth-child(odd) {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 16px;
    }
    
    .hero-section,
    .hero-inner {
        padding: 80px 16px 32px;
    }
    
    .hero-cta {
        padding: 18px 32px;
        font-size: 13px;
    }
    
    .footer {
        padding: 48px 24px;
    }
}