/* =========================================================
   POZNAT SÁM SEBE – Hlavní stylesheet
   ========================================================= */

/* --- Google Fonts import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
    --color-dark:       #2C2416;
    --color-sand:       #F5EDD8;
    --color-sand-light: #FAF5EC;
    --color-terra:      #d65c09;
    --color-terra-dark: #a84507;
    --color-sage:       #7D9B76;
    --color-white:      #FFFFFF;
    --color-lavender:   #E8E4F0;
    --color-text:       #3A2E1E;
    --color-text-muted: #7A6A55;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', 'Helvetica Neue', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-soft: 0 4px 24px rgba(44,36,22,0.08);
    --shadow-card: 0 8px 32px rgba(44,36,22,0.10);

    --transition: 0.3s ease;
    --navbar-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-sand-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--color-dark);
}

a {
    color: var(--color-terra);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-terra-dark);
}

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

/* --- Utilities --- */
.text-terra   { color: var(--color-terra); }
.text-sage    { color: var(--color-sage); }
.text-muted   { color: var(--color-text-muted); }
.bg-sand      { background-color: var(--color-sand); }
.bg-dark      { background-color: var(--color-dark); }
.bg-sand-light{ background-color: var(--color-sand-light); }
.bg-lavender  { background-color: var(--color-lavender); }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section ornament divider */
.section-divider {
    text-align: center;
    margin: 0 auto 2rem;
    color: var(--color-terra);
    font-size: 1.4rem;
    letter-spacing: 0.5rem;
    opacity: 0.6;
}

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
    background-color: var(--color-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    transition: box-shadow var(--transition);
}

#mainNav .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-sand) !important;
    letter-spacing: 0.04em;
    transition: opacity var(--transition);
}
#mainNav .navbar-brand:hover { opacity: 0.85; }

#mainNav .nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245,237,216,0.80) !important;
    padding: 0.5rem 0.8rem !important;
    transition: color var(--transition);
    position: relative;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-terra);
    transition: width var(--transition);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--color-sand) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border-color: rgba(245,237,216,0.4);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,237,216,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-terra {
    background-color: var(--color-terra);
    color: var(--color-white);
    border: 2px solid var(--color-terra);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-terra:hover {
    background-color: var(--color-terra-dark);
    border-color: var(--color-terra-dark);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(214,92,9,0.30);
    transform: translateY(-2px);
}

.btn-outline-terra {
    background-color: transparent;
    color: var(--color-terra);
    border: 2px solid var(--color-terra);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-outline-terra:hover {
    background-color: var(--color-terra);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(214,92,9,0.25);
    transform: translateY(-2px);
}

.btn-outline-light-terra {
    background-color: transparent;
    color: var(--color-sand);
    border: 2px solid rgba(245,237,216,0.6);
    padding: 0.7rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn-outline-light-terra:hover {
    background-color: rgba(245,237,216,0.15);
    color: var(--color-white);
}

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
    background-color: var(--color-dark);
    background-image: linear-gradient(135deg, rgba(44,36,22,0.92) 0%, rgba(44,36,22,0.75) 100%), url('/assets/img/sluzby.jpeg');
    background-size: cover;
    background-position: center;
    padding: 4.5rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--color-sand);
    position: relative;
    z-index: 1;
}
.page-hero .page-hero-sub {
    color: rgba(245,237,216,0.70);
    font-size: 1.05rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}
.page-hero .terra-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-terra);
    margin: 1rem auto 0;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

/* =========================================================
   CARDS
   ========================================================= */
.psb-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.psb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(44,36,22,0.15);
}
.psb-card-body {
    padding: 1.75rem;
}
.psb-card-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(214,92,9,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-terra);
    font-size: 1.4rem;
    transition: background-color var(--transition);
}
.psb-card:hover .psb-card-icon {
    background-color: var(--color-terra);
    color: var(--color-white);
}
.psb-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-left: 4px solid var(--color-terra);
    transition: box-shadow var(--transition);
    height: 100%;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-card);
}
.testimonial-card::before {
    content: '\201E';
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-terra);
    opacity: 0.25;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.testimonial-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.38;
    transition: opacity 1s ease;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,36,22,0.72) 0%, rgba(44,36,22,0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content .hero-tag {
    display: inline-block;
    background-color: rgba(214,92,9,0.20);
    color: var(--color-terra);
    border: 1px solid rgba(214,92,9,0.40);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: var(--color-sand);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-content h1 em {
    color: var(--color-terra);
    font-style: italic;
}
.hero-content p.lead {
    font-size: 1.15rem;
    color: rgba(245,237,216,0.80);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.75;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(245,237,216,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245,237,216,0.5), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* =========================================================
   PILLAR CARDS (homepage)
   ========================================================= */
.pillar-section {
    padding: 5rem 0;
    background-color: var(--color-sand);
}
.pillar-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}
.pillar-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(214,92,9,0.12), rgba(214,92,9,0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--color-terra);
    transition: all var(--transition);
}
.pillar-card:hover .pillar-icon {
    background: var(--color-terra);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(214,92,9,0.30);
}
.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

/* =========================================================
   ABOUT PREVIEW (homepage)
   ========================================================= */
.about-preview {
    padding: 5rem 0;
    background-color: var(--color-sand-light);
}
.about-preview img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    object-fit: cover;
    width: 100%;
    max-height: 480px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, #3D2E18 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(214,92,9,0.12) 0%, transparent 70%);
}
.cta-banner h2 {
    font-family: var(--font-heading);
    color: var(--color-sand);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.cta-banner p {
    color: rgba(245,237,216,0.70);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}
.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* =========================================================
   TEAM CARDS
   ========================================================= */
.team-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition);
    height: 100%;
}
.team-card:hover { transform: translateY(-6px); }
.team-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    object-position: top;
}
.team-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}
.team-card-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--color-terra);
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.team-card-body h3 { margin-bottom: 0.5rem; }

/* =========================================================
   PRICE CARDS
   ========================================================= */
.price-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--color-terra);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.price-card.featured {
    background: var(--color-dark);
    border-top-color: var(--color-terra);
}
.price-card.featured h3,
.price-card.featured p,
.price-card.featured .price-amount {
    color: var(--color-sand);
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-terra);
    line-height: 1;
    margin: 1rem 0 0.25rem;
}
.price-unit {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.badge-psb {
    background-color: rgba(214,92,9,0.10);
    color: var(--color-terra);
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.price-card.featured .price-unit { color: rgba(245,237,216,0.6); }
.price-card p { flex: 1; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-section {
    padding: 5rem 0;
    background-color: var(--color-sand);
}
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
}
.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}
.form-control, .form-select {
    border: 1.5px solid rgba(44,36,22,0.15);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-sand-light);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--color-terra);
    box-shadow: 0 0 0 3px rgba(214,92,9,0.12);
    background-color: var(--color-white);
    outline: none;
}
.form-check-input:checked {
    background-color: var(--color-terra);
    border-color: var(--color-terra);
}

.contact-info-box {
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    color: var(--color-sand);
    height: 100%;
}
.contact-info-box h3 {
    color: var(--color-sand);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(245,237,216,0.80);
}
.contact-info-item i {
    color: var(--color-terra);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.contact-info-item a {
    color: rgba(245,237,216,0.80);
    transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--color-terra); }

/* SUCCESS / ERROR messages */
.alert-psb-success {
    background: rgba(125,155,118,0.15);
    border: 1.5px solid var(--color-sage);
    color: #3e6b38;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}
.alert-psb-error {
    background: rgba(214,92,9,0.10);
    border: 1.5px solid var(--color-terra);
    color: var(--color-terra-dark);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
#mainFooter {
    background-color: var(--color-dark);
    color: rgba(245,237,216,0.70);
    padding: 4rem 0 0;
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-sand);
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(245,237,216,0.55);
    margin-bottom: 1.5rem;
}
.footer-nav-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-terra);
    margin-bottom: 1rem;
}
.footer-nav a {
    display: block;
    color: rgba(245,237,216,0.65);
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-terra); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(245,237,216,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245,237,216,0.60);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    border-color: var(--color-terra);
    color: var(--color-terra);
    background: rgba(214,92,9,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(245,237,216,0.08);
    padding: 1.25rem 0;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: rgba(245,237,216,0.35);
}
.footer-bottom a {
    color: rgba(245,237,216,0.45);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-terra); }

/* =========================================================
   COOKIE BAR
   ========================================================= */
#cookieBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--color-dark);
    color: rgba(245,237,216,0.80);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
#cookieBar.show { transform: translateY(0); }
#cookieBar p { margin: 0; font-size: 0.88rem; }
#cookieBar .cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* =========================================================
   SECTION SPACING
   ========================================================= */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.section-heading-light {
    color: var(--color-sand);
}
.section-subheading {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.section-subheading-light {
    color: rgba(245,237,216,0.70);
}

/* Terra underline decoration */
.heading-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 0.6rem;
}
.heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-terra);
    border-radius: 2px;
}
.heading-underline.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* =========================================================
   ABOUT PAGE - Timeline
   ========================================================= */
.timeline {
    position: relative;
    padding-left: 0.5rem; /* Adjusted for better centering with columns */
}
.timeline-item {
    position: relative;
    margin-bottom: 0;
    padding-left: 2.2rem;
    padding-bottom: 2.5rem; /* Controls spacing between dots */
}
/* The Line (using ::after on item) */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 0.38rem; /* Centered on dot */
    top: 1.5rem;   /* Starts below the dot */
    bottom: 0;      /* Goes to the next item */
    width: 2px;
    background-color: rgba(214,92,9,0.25);
}
/* Remove line from last item */
.timeline-item:last-child::after { display: none; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    /* Dot */
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-terra);
    border: 3px solid var(--color-sand-light);
    box-shadow: 0 0 0 1px var(--color-terra);
    z-index: 2;
}
.timeline-year {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--color-terra);
    margin-bottom: 0.2rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.timeline-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* =========================================================
   VALUES ICONS
   ========================================================= */
.value-item {
    text-align: center;
    padding: 1.5rem;
}
.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(214,92,9,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: var(--color-terra);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
    .hero-section { min-height: 80vh; }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .section-padding { padding: 3.5rem 0; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 70vh; }
    .hero-content p.lead { font-size: 1rem; }
    .team-card-img { height: 260px; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
    .contact-info-box { padding: 1.75rem 1.25rem; margin-top: 1.5rem; }
    #cookieBar { flex-direction: column; text-align: center; }
}
