/* ─── FONT FACE ─────────────────────────────────────────── */
@font-face {
    font-family: 'ZTBroSoskon';
    src: url('/fonts/ztbrososkon90s-medcond-webfont.woff2') format('woff2'),
         url('/fonts/ztbrososkon90s-medcond-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement-bar {
    background: #0f0f0f;
    color: #fff;
    height: 54px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}
.announcement-bar__track {
    display: inline-flex;
    align-items: center;
    animation: ticker 35s linear infinite;
    will-change: transform;
}
.announcement-bar__set {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.ab-word {
    /* use decorative webfont first as requested */
    font-family: 'ZTBroSoskon', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 60px;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
}
.custom-i {
    position: relative;
    display: inline-block;
}
.custom-i::after {
    content: '.';
    position: absolute;
    top: -0.55em;
    left: 50%;
    transform: translateX(-50%);
}
.ab-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 0 24px;
}

/* Improve glyph rendering on WebKit/Blink for decorative webfont */
.announcement-bar,
.ab-word,
.nav-logo {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.site-header {
    background: #FFFEF9;
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: 'ZTBroSoskon', serif;
    font-size: 42px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1.1;
    color: #1e1e1e;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 8px;
    margin-right: -8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    list-style: none;
}
.nav-links a {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1E1E1E;
    font-weight: 500;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.5; }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
    background: #FFFEF9;
    /* min-height: calc(100vh - 72px - 40px); */
    display: flex;
    align-items: center;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 64px;
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
}
.hero-content {
    max-width: 560px;
    padding-right: 56px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C39633;
    height: auto;
    margin-bottom: 12px;
    font-weight: 500;
}
.hero-badge::before {
    content: '•';
    color: #C39633;
    font-size: 18px;
}
.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 36px;
    color: #1a1a1a;
    font-style: italic;
}
.hero-heading .gold {
    color: #C39633;
    font-style: italic;
}
.hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0;
    height: auto;
    color: #444040;
    margin-bottom: 56px;
    max-width: 440px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7.25px;
    width: auto;
    min-width: 220px;
    height: 47px;
    background: #1E1E1E;
    color: #fff;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 32px;
    border-radius: 32px;
    transition: background 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover { background: #333; }

/* Hero image side */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hero-image-wrap {
    width: min(80vh, 680px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #C8B49A;
    flex-shrink: 0;
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── GALLERY SECTION ────────────────────────────────────── */
.gallery-section {
    background: #F7F1E8;
    padding: 96px 48px;
}
.gallery-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.gallery-header {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 56px;
    align-items: start;
}

.gallery-header > div {
    flex: 1 1 auto;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C39633;
    margin-bottom: 18px;
}
.section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #C39633;
    flex-shrink: 0;
}
.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    font-style: italic;
    color: #1E1E1E;
}
.gallery-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0;
    color: #444040;
    max-width: 360px;
    align-self: start;
    margin-top: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ccc;
}
.gallery-item:first-child {
    grid-row: span 2;
    aspect-ratio: unset;
    min-height: 500px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* Gallery placeholder colors (will be replaced with real images) */
.gallery-item--1 { background: #6B1E2E; }
.gallery-item--2 { background: #C9A5AD; }
.gallery-item--3 { background: #1E3557; }
.gallery-item--4 { background: #506B4A; }
.gallery-item--5 { background: #CFC4A2; }

/* ─── FEATURES SECTION ───────────────────────────────────── */
.features-section {
    background: #1E1E1E;
    padding: 96px 48px;
}
.features-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.features-header {
    text-align: center;
    margin-bottom: 64px;
}
.features-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C39633;
    margin-bottom: 24px;
}
.features-label::before,
.features-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #C39633;
    flex-shrink: 0;
}
.features-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #FFFEF9;
    margin-bottom: 16px;
}
.features-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: none;
    border-radius: 0;
    overflow: hidden;
    gap: 0;
}
.feature-card {
    padding: 40px 36px;
    background: #272728;
    border: none;
    border-right: 1px solid #515151;
    border-bottom: 1px solid #515151;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-card:nth-child(3n) {
    border-right: none;
}
.feature-card:nth-child(n+4) {
    /* alt sıra, bottom border kaldır */
}
.feature-card:nth-last-child(-n+3) {
    border-bottom: none;
}
.feature-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: #F7F1E8;
    line-height: 1.2;
}
.feature-card__desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(247, 241, 232, 0.5);
    flex-grow: 1;
}
.feature-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C39633;
    background: none;
    border: 1px solid #C39633;
    border-radius: 32px;
    padding: 10px 20px;
    width: fit-content;
    margin-top: 8px;
    font-weight: 400;
}
/* Sadece process-section içindeki etiketler için özel stil */
.process-section .feature-card__tag {
    color: #9B7A2A;
    background: rgba(209, 159, 93, 0.20);
    border: none;
    border-radius: 16px;
    padding: 6px 18px;
    margin-top: 12px;
    font-weight: 500;
}

/* ─── PROCESS SECTION ────────────────────────────────────── */
.process-section {
    background: #FFFEF9;
    padding: 96px 48px;
}
.process-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.process-left {
    position: sticky;
    top: 120px;
}
.process-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #1E1E1E;
    margin-bottom: 28px;
}
.process-title .gold {
    color: #C39633;
}
.process-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #444040;
    margin-bottom: 48px;
    max-width: 440px;
}
.process-highlight {
    color: #C39633;
    font-style: italic;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.process-right {
    display: flex;
    flex-direction: column;
}
.process-step {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}
.process-step:first-child {
    padding-top: 0;
}
.process-step:last-child {
    border-bottom: none;
}
.process-step__num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 48px;
    font-weight: 300;
    color: #C39633;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}
.process-step__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.process-step__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    color: #1E1E1E;
    line-height: 1.2;
}
.process-step__desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: #444040;
}

/* ─── TESTIMONIALS SECTION ────────────────────────────────── */
.testimonials-section {
    background: #1E1E1E;
    padding: 96px 48px;
}
.testimonials-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-label--dark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C39633;
    margin-bottom: 24px;
}
.section-label--dark::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #C39633;
    flex-shrink: 0;
}
.testimonials-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: #F7F1E8;
    margin-bottom: 48px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #515151;
    border-radius: 0;
    overflow: hidden;
}
.testimonial-card {
    padding: 40px 36px;
    background: #272728;
    border-right: 1px solid #515151;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.testimonial-card:last-child {
    border-right: none;
}
.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: #BA7C85;
    line-height: 1;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(247, 241, 232, 0.7);
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #515151;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: #BA7C85;
    flex-shrink: 0;
}
.testimonial-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    color: #F7F1E8;
    line-height: 1.3;
}
.testimonial-meta {
    display: block;
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247, 241, 232, 0.4);
    margin-top: 2px;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────────── */
.instagram-section {
    background: #F7F1E8;
    padding: 64px 0 0 0;
    overflow: visible;
}
.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 48px;
    margin-bottom: 40px;
}
.instagram-title-left,
.instagram-title-right {
    font-family: 'ZTBroSoskon', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    color: #1E1E1E;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: normal;
}
.instagram-grid {
    overflow: hidden;
    padding: 0 0 64px 0;
}
.instagram-track {
    display: inline-flex;
    animation: instagram-scroll 40s linear infinite;
    will-change: transform;
}
.instagram-track:hover {
    animation-play-state: paused;
}
.instagram-set {
    display: flex;
    gap: 16px;
    padding: 0 8px;
    flex-shrink: 0;
}
.instagram-card {
    flex: 0 0 305px;
    width: 305px;
    height: 410px;
    border-radius: 16px;
    overflow: hidden;
}
.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}
@keyframes instagram-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── GALLERY PAGE ───────────────────────────────────────── */
.gallery-page-hero {
    background: #F7F1E8;
    padding: 120px 48px 64px;
}
.gallery-page-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
}
.gallery-page-hero__title {
    font-family: 'ZTBroSoskon', 'Helvetica Neue', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1E1E1E;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.gallery-page-hero__desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #444040;
    max-width: 480px;
}
.gallery-page-grid-section {
    background: #F7F1E8;
    padding: 0 0 0 0;
}
.gallery-page-masonry {
    columns: 4;
    column-gap: 0;
}
.gallery-page-item {
    break-inside: avoid;
    overflow: hidden;
}
.gallery-page-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-page-item:hover img {
    transform: scale(1.03);
}
.gallery-page-item--tall img {
    aspect-ratio: 3/4;
}
.gallery-page-item--wide img {
    aspect-ratio: 4/3;
}
.gallery-page-item--normal img {
    aspect-ratio: 1/1;
}

/* ─── FAQ SECTION ────────────────────────────────────────── */
.faq-section {
    background: #1E1E1E;
    padding: 96px 48px;
}
.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.faq-left {
    position: sticky;
    top: 120px;
}
.faq-title {
    font-family: 'ZTBroSoskon', 'Helvetica Neue', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #F7F1E8;
    text-transform: uppercase;
}
.faq-right {
    display: flex;
    flex-direction: column;
}
.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #515151;
    cursor: pointer;
}
.faq-item:first-child {
    border-top: 1px solid #515151;
}
.faq-question {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #F7F1E8;
    line-height: 1.5;
}
.faq-icon {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #F7F1E8;
    flex-shrink: 0;
    margin-left: 24px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: #1E1E1E;
    padding: 80px 48px 0 48px;
    border-top: 1px solid #515151;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}
.footer-logo {
    font-family: 'ZTBroSoskon', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    color: #F7F1E8;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}
.footer-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(247, 241, 232, 0.5);
    margin-bottom: 24px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #515151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(247, 241, 232, 0.6);
    transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover {
    border-color: #F7F1E8;
    color: #F7F1E8;
}
.footer-col__title {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(247, 241, 232, 0.4);
    margin-bottom: 24px;
}
.footer-col__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-col__links a {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(247, 241, 232, 0.7);
    transition: color 0.2s;
}
.footer-col__links a:hover {
    color: #F7F1E8;
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid #515151;
}
.footer-bottom span {
    font-family: 'DM Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247, 241, 232, 0.3);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .hero-image-wrap { width: min(55vw, 480px); }
}
@media (max-width: 900px) {
    .nav-inner { padding: 0 24px; height: 64px; }
    .mobile-menu-btn { display: flex; align-items: center; margin-left: auto; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFEF9;
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid #ECE8E0;
        display: none; /* hidden by default on mobile */
    }
    .nav-links.is-open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .nav-links a {
        display: block;
        padding: 24px;
        font-size: 13px; /* Slightly larger for mobile tap targets */
    }

    .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
    .hero-content { max-width: 100%; padding-right: 0; }
    .hero-visual { display: none; }
    .gallery-header { display: block; }
    .gallery-desc { text-align: left; align-self: start; margin-top: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { min-height: 300px; }
    .gallery-section { padding: 64px 24px; }
    .features-section { padding: 64px 24px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .process-section { padding: 64px 24px; }
    .process-inner { grid-template-columns: 1fr; gap: 48px; }
    .process-left { position: static; }
    .testimonials-section { padding: 64px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { border-right: none; border-bottom: 1px solid #515151; }
    .testimonial-card:last-child { border-bottom: none; }
    .instagram-header { padding: 0 24px; }
    .instagram-card { flex: 0 0 220px; width: 220px; height: 295px; }
    .faq-section { padding: 64px 24px; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: static; }
    .site-footer { padding: 64px 24px 0 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .gallery-page-hero { padding: 96px 24px 48px; }
    .gallery-page-masonry { columns: 3; }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-row: span 1; min-height: 260px; }
    .features-grid { grid-template-columns: 1fr; }
    .features-section { padding: 48px 20px; }
    .features-header { margin-bottom: 40px; }
    .feature-card { padding: 32px 24px; }
    .process-section { padding: 48px 20px; }
    .process-step { gap: 20px; padding: 28px 0; }
    .process-step__num { font-size: 36px; min-width: 44px; }
    .testimonials-section { padding: 48px 20px; }
    .instagram-header { padding: 0 20px; margin-bottom: 24px; }
    .instagram-card { flex: 0 0 180px; width: 180px; height: 242px; }
    .faq-section { padding: 48px 20px; }
    .faq-question { font-size: 13px; }
    .site-footer { padding: 48px 20px 0 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .gallery-page-hero { padding: 80px 20px 32px; }
    .gallery-page-masonry { columns: 2; }
}
