/*
Theme Name: EpoxyGold
Theme URI: https://example.com/epoxygold
Author: EpoxyGold
Author URI: https://example.com
Description: Egyedi, teljesen testreszabható WordPress téma kézműves műgyanta asztalokhoz. Minden szekció (hero, rólunk, folyamat, galéria, árak, vélemények, kapcsolat) szerkeszthető a WordPress adminból. Logó csere, színbeállítás, szövegek és galéria kezelése a Testreszabóból, plugin nélkül.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: epoxygold
Tags: one-page, portfolio, custom-colors, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ===================================================================
   CSS változók — ezek egy részét a Testreszabó (Customizer) felülírja
   inline stílussal (lásd inc/customizer.php). Itt csak az alapok.
   =================================================================== */
:root {
    --deep: #0a0a0a;
    --forest: #111111;
    --resin-blue: #b8924a;
    --resin-teal: #d4a853;
    --resin-glow: #f0cf7a;
    --warm-wood: #c9a84c;
    --light-wood: #e2c36e;
    --cream: #f7f4ef;
    --sand: #eee9df;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--body-font);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

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

/* ─── NAVIGATION ─── */
nav.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

nav.site-nav.scrolled {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
}

.logo span {
    color: var(--resin-teal);
    font-style: italic;
}

.logoimg img,
.logo img {
    height: 50px;
    width: auto;
    transition: height 0.5s ease;
}

nav.site-nav.scrolled .logoimg img,
nav.site-nav.scrolled .logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--resin-teal);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--resin-glow); }
.nav-links a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ─── HERO ─── */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184, 146, 74, 0.15), transparent),
        radial-gradient(ellipse 60% 80% at 30% 70%, rgba(212, 168, 83, 0.1), transparent),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(240, 207, 122, 0.08), transparent);
    animation: heroShift 12s ease-in-out infinite alternate;
}

/* Ha van hero háttérkép, ez ül rá az alsó rétegre */
.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

@keyframes heroShift {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.resin-flow {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    opacity: 0.12;
}
.resin-flow svg { width: 100%; height: 100%; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem;
    max-width: 700px;
    animation: fadeUp 1.2s ease-out;
}

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

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--resin-teal);
    margin-bottom: 2rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--resin-teal);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--resin-teal);
    color: var(--deep);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--resin-glow);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover { color: var(--resin-glow); }
.btn-secondary svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212,168,83,0.6), transparent);
}

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

/* ─── SECTION COMMON ─── */
section {
    padding: 8rem 4rem;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--resin-blue);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--heading-font);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* ─── ABOUT / STORY ─── */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.wood-grain {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1508 0%, rgba(17,13,6,0.9) 100%);
    border-radius: 2px;
    overflow: hidden;
}

.wood-grain::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    right: 10%;
    height: 60%;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 146, 74, 0.3) 20%, rgba(212, 168, 83, 0.4) 50%, rgba(184, 146, 74, 0.3) 80%, transparent 100%);
    filter: blur(20px);
    animation: resinPulse 6s ease-in-out infinite alternate;
}

@keyframes resinPulse {
    0% { opacity: 0.5; transform: scaleX(0.9); }
    100% { opacity: 1; transform: scaleX(1.1); }
}

.wood-grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(139, 105, 20, 0.05) 8px, rgba(139, 105, 20, 0.05) 9px);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--resin-blue);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* ─── PROCESS ─── */
.process-section {
    background: var(--deep);
    color: white;
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.process-header .section-tag { color: var(--resin-teal); }
.process-header .section-title { color: white; }

.process-header p {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    transition: all 0.5s ease;
    background: rgba(255,255,255,0.02);
}

.process-card:hover {
    border-color: rgba(212, 168, 83, 0.3);
    background: rgba(212, 168, 83, 0.05);
    transform: translateY(-4px);
}

.process-number {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(212, 168, 83, 0.2);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--cream);
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--sand); }

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto 4rem;
    max-width: 1400px;
}

.gallery-header p {
    max-width: 400px;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.gallery-item.featured { grid-row: span 2; }

.gallery-item-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1508;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
}

.gallery-overlay span {
    display: block;
    font-size: 0.75rem;
    color: var(--resin-teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5,5,5,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-family: var(--heading-font);
    font-size: 1.2rem;
}
.lightbox-caption span {
    display: block;
    font-family: var(--body-font);
    font-size: 0.8rem;
    color: var(--resin-teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--resin-glow); }
.lightbox-close { top: 2rem; right: 2rem; font-size: 2.5rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ─── PRICING ─── */
.pricing-section { max-width: 1200px; margin: 0 auto; }

.pricing-header { text-align: center; margin-bottom: 4rem; }

.pricing-header p {
    color: var(--text-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    background: white;
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background: var(--deep);
    color: white;
    border-color: transparent;
}

.pricing-card.featured .pricing-label { color: var(--resin-teal); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.06); }

.pricing-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--resin-blue);
    margin-bottom: 1rem;
}

.pricing-name {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-family: var(--body-font);
    color: var(--text-light);
}
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.5); }

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.pricing-feature {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-feature .check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-feature .check::after {
    content: '✓';
    font-size: 0.65rem;
    color: var(--resin-teal);
}

.pricing-cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 1rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.15);
    color: var(--text);
    transition: all 0.3s;
}
.pricing-cta:hover {
    background: var(--resin-teal);
    color: var(--deep);
    border-color: var(--resin-teal);
}
.pricing-card.featured .pricing-cta { border-color: var(--resin-teal); color: var(--resin-teal); }
.pricing-card.featured .pricing-cta:hover { background: var(--resin-teal); color: var(--deep); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    background: var(--forest);
    color: white;
    text-align: center;
}
.testimonials-section .section-tag { color: var(--resin-teal); }
.testimonials-section .section-title { color: white; margin-bottom: 4rem; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    text-align: left;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.stars {
    color: var(--light-wood);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial blockquote {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

/* ─── CONTACT ─── */
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section p {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--resin-teal); }

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

.form-submit { grid-column: span 2; text-align: center; margin-top: 1rem; }

.form-submit button {
    padding: 1.1rem 3.5rem;
    background: var(--deep);
    color: white;
    border: none;
    font-family: var(--body-font);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
}

.form-submit button:hover { background: var(--resin-teal); color: var(--deep); }

.form-notice { grid-column: span 2; text-align: center; padding: 1rem; font-size: 0.9rem; }
.form-notice.success { color: #2e7d32; }
.form-notice.error { color: #c62828; }

/* ─── FOOTER ─── */
footer.site-footer {
    background: var(--deep);
    color: rgba(255,255,255,0.4);
    padding: 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img { height: 100px; width: auto; }

.footer-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--resin-teal); }

.footer-copy { font-size: 0.75rem; }

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    section { padding: 5rem 2rem; }
    nav.site-nav { padding: 1.2rem 2rem; }
    nav.site-nav.scrolled { padding: 0.8rem 2rem; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 350px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-item.featured { grid-row: span 1; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
    .hero-content { padding: 0 2rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 15, 13, 0.98);
        padding: 1rem 2rem 2rem;
    }
    .nav-links.open { display: flex; }
    .nav-links li { padding: 0.6rem 0; }
    .nav-toggle { display: block; }
    .cta-group { flex-direction: column; align-items: flex-start; }
    .stats { flex-direction: column; gap: 1.5rem; }
    .process-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .contact-form { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .form-submit { grid-column: span 1; }
    .form-notice { grid-column: span 1; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* ─── COMPANY INFO ─── */
.company-section {
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.company-inner { max-width: 1200px; margin: 0 auto; }
.company-head { text-align: center; margin-bottom: 4rem; }
.company-head .section-tag { color: var(--resin-blue); }
.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.company-col h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.company-list { list-style: none; margin: 0; padding: 0; }
.company-list li {
    padding: 0.7rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.5;
}
.company-list li span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.company-list li a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.company-list li a:hover { color: var(--resin-blue); }
.company-social { display: flex; flex-direction: column; gap: 0.9rem; }
.company-social a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: color 0.3s, border-color 0.3s;
    width: fit-content;
}
.company-social a:hover { color: var(--resin-blue); border-color: var(--resin-blue); }

@media (max-width: 1024px) {
    .company-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
/* ─── Belső oldalak (nem a one-pager főoldal): tömör navbar ─── */
body:not(.home) nav.site-nav {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    position: fixed;
}

@media (max-width: 1024px) {
    body:not(.home) nav.site-nav { padding: 0.8rem 2rem; }
}