:root {
    --bg-main: #ffffff;
    --bg-alt: #f5f5f7;
    --text-main: #000000;
    --text-muted: #555555;
    --border-color: #000000;
    --border-subtle: #e0e0e0;
    --font-stack: 'Verdana', 'Segoe UI', Tahoma, Geneva, sans-serif;
}

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

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    letter-spacing: -0.01em;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--bg-main);
    border-bottom: 2px solid var(--border-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 14px;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
}

nav a:hover {
    border-bottom-color: var(--border-color);
}

.lang-select {
    padding: 0.35rem 0.6rem;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-main);
    font-family: var(--font-stack);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0;
    outline: none;
    transition: background-color 0.2s, color 0.2s;
}

.lang-select:hover, .lang-select:focus {
    background-color: var(--text-main);
    color: var(--bg-main);
}

/* Hero Section */
.hero {
    background-color: var(--bg-main);
    border-bottom: 2px solid var(--border-color);
    padding: 5rem 0 4.5rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    padding: 0.3rem 0.75rem;
    border: 1.5px solid var(--border-color);
}

.hero h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-services-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.pill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--text-main);
    color: var(--bg-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pill-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--bg-main);
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.content-block h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background-color: var(--text-main);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    max-width: 800px;
}

.about-meta {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.meta-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.meta-item p {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Services Grid */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    list-style: none;
    margin-top: 2rem;
}

.services-list li {
    background: var(--bg-main);
    padding: 2.25rem 2rem;
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.services-list li:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--border-color);
}

.service-icon {
    width: 54px;
    height: 54px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--bg-main);
    padding: 8px;
}

.service-icon img,
.service-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.services-list h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.services-list p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.service-arrow {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-arrow span.arrow-symbol {
    font-size: 1.1rem;
    line-height: 1;
}

/* Location & Business info banner */
.info-strip {
    background-color: var(--bg-main);
    border-top: 2px solid var(--border-color);
    padding: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.info-card {
    border-left: 3px solid var(--border-color);
    padding-left: 1.25rem;
}

.info-card h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.info-card a {
    color: var(--text-main);
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-main);
    color: var(--bg-main);
    padding: 3.5rem 0 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--bg-main);
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #999;
}

.footer-col p {
    font-size: 0.88rem;
    color: #ddd;
    line-height: 1.7;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #888;
}

.footer-col a:hover {
    border-bottom-style: solid;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    nav ul {
        gap: 1rem;
    }
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        width: 100%;
        margin-top: 1rem;
    }
    nav ul {
        flex-wrap: wrap;
    }
}
