/* ============================================================
   TESTIMONIALS
   ============================================================ */
.et-testimonials {
    padding-block: 120px;
    background: var(--et-green);
}
.et-testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}
.et-testimonials__header .et-label { color: var(--et-gold); }
.et-testimonials__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    color: var(--et-white);
    margin-bottom: 12px;
}
.et-testimonials__sub {
    font-family: var(--et-font-body);
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.6);
}
.et-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.et-testimonial {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 36px 32px;
    transition: transform 0.4s ease, background 0.4s ease;
}
.et-testimonial:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.12);
}
.et-testimonial__stars {
    font-size: 16px;
    color: #34E0A1;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.et-testimonial__quote-mark {
    font-family: var(--et-font-heading);
    font-size: 64px;
    line-height: 0.6;
    color: var(--et-gold);
    margin-bottom: 20px;
    display: block;
}
.et-testimonial__body {
    font-family: var(--et-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    margin: 0 0 24px;
}
.et-testimonial__footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
}
.et-testimonial__name {
    font-family: var(--et-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--et-white);
}
.et-testimonial__origin {
    font-family: var(--et-font-body);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.et-testimonials__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    text-decoration: none;
}
.et-testimonials__ta-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}
.et-testimonials__ta-stars {
    font-size: 18px;
    color: #34E0A1;
    letter-spacing: 2px;
}
.et-testimonials__ta-label {
    font-family: var(--et-font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .et-testimonials__trust {
        flex-direction: column;
        gap: 8px;
    }
    .et-testimonials__ta-logo {
        height: 22px;
    }
}

/* ============================================================
   FOUNDER / FINAL CTA
   ============================================================ */
.et-founder {
    padding-block: 120px;
    background: var(--et-off-white);
}
.et-founder__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.et-founder__heading {
    font-family: var(--et-font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 400;
    color: var(--et-black);
    line-height: 1.15;
    margin-bottom: 24px;
}
.et-founder__body {
    font-family: var(--et-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 36px;
}
/* Founder inline form */
.et-founder__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}
.et-founder__input,
.et-founder__textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-family: var(--et-font-body);
    font-size: 16px;  /* iOS Safari auto-zooms <16px on focus */
    background: var(--et-white);
    transition: border-color 0.3s;
}
.et-founder__input:focus,
.et-founder__textarea:focus {
    outline: none;
    border-color: var(--et-green);
}
.et-founder__textarea {
    resize: vertical;
    min-height: 80px;
}
.et-founder__submit {
    width: 100%;
    justify-content: center;
}

.et-founder__quote-wrap {
    margin-top: 36px;
    padding: 24px;
    background: rgba(26,79,49,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 3px solid var(--et-gold);
    border-radius: 0 8px 8px 0;
}
.et-founder__quote {
    font-family: var(--et-font-heading);
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: var(--et-black);
    margin-bottom: 8px;
}
.et-founder__cite {
    font-family: var(--et-font-body);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--et-grey);
    font-style: normal;
}
.et-founder__img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.et-founder__img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center 35%;  /* show the face, not the coach ceiling */
    display: block;
}
.et-founder__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.et-founder__img-caption span:first-child {
    font-family: var(--et-font-heading);
    font-size: 16px;
    color: var(--et-white);
    font-weight: 400;
}
.et-founder__img-caption span:last-child {
    font-family: var(--et-font-body);
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* ============================================================
   FOOTER
   ============================================================ */
.et-footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.75);
}
.et-footer__main {
    padding-block: 72px 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.et-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.et-footer__col-title {
    font-family: var(--et-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--et-gold);
    margin-bottom: 20px;
}
.et-footer__logo {
    /* Logo is already styled (green box + white text); no inversion needed.
       brightness(0) invert(1) was masking the actual logo as a flat white shape. */
    margin-bottom: 0;
    display: block;
    height: auto;
    max-height: 56px;
    width: auto;
}
.et-footer__logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--et-font-body);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--et-white);
    margin-bottom: 16px;
}
.et-footer__logo-text strong {
    font-size: 28px;
    font-family: var(--et-font-heading);
    letter-spacing: 0;
}
.et-footer__brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.et-footer__social {
    display: flex;
    gap: 12px;
}
.et-footer__social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: border-color var(--et-transition), color var(--et-transition);
}
.et-footer__social-link:hover { border-color: var(--et-gold); color: var(--et-gold); }
.et-footer__social-link--ta {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    padding: 0;
}
.et-footer__social-ta-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity var(--et-transition);
}
.et-footer__social-link--ta:hover .et-footer__social-ta-logo { opacity: 1; }
.et-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.et-footer__links a {
    font-family: var(--et-font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--et-transition);
}
.et-footer__links a:hover { color: var(--et-white); }
.et-footer__contact {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.et-footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--et-font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.et-footer__contact a,
.et-footer__contact span {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--et-transition);
    overflow-wrap: break-word;
    word-break: break-word;
}
.et-footer__contact a:hover { color: var(--et-white); }
.et-footer__contact svg { flex-shrink: 0; color: var(--et-gold); }
.et-footer__cta { width: 100%; justify-content: center; }

.et-footer__trust {
    padding-block: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.et-footer__trust-wrap {
    display: flex;
    align-items: center;
}
.et-footer__trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex: 1;
    flex-wrap: wrap;
    row-gap: 18px;
}
.et-footer__trust-arrow { display: none; }
.et-footer__trust-logo {
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: transform var(--et-transition);
    flex-shrink: 0;
}
.et-footer__trust-logo:hover { transform: translateY(-1px); }

/* Per-logo sizing — each badge is normalised to roughly the same optical weight,
   regardless of its native aspect ratio. */
.et-footer__trust-logo--failte    { height: 44px; }
.et-footer__trust-logo--waw       { height: 40px; }
.et-footer__trust-logo--discover  { height: 26px; max-width: 150px; }
.et-footer__trust-logo--heartlands{ height: 38px; }
.et-footer__trust-logo--asta      { height: 56px; }
.et-footer__trust-logo--ta        { height: 22px; filter: brightness(0) invert(1); }
.et-footer__trust-logo--iagto {
    height: 54px;
    background: #ffffff;
    padding: 5px 9px;
    border-radius: 6px;
}

.et-footer__legal { padding-block: 20px; }
.et-footer__legal .et-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.et-footer__legal-text {
    font-family: var(--et-font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.et-footer__legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.et-footer__legal-links a {
    font-family: var(--et-font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--et-transition);
}
.et-footer__legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.et-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.et-sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--et-green);
    color: var(--et-white);
    font-family: var(--et-font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--et-radius);
    text-decoration: none;
}

@media (max-width: 1024px) {
    .et-testimonials__grid { grid-template-columns: 1fr 1fr; }
    .et-founder__grid { gap: 48px; }
    .et-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .et-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .et-sticky-cta { display: block; }
    body { padding-bottom: 64px; }

    /* Testimonials — compact */
    .et-testimonials { padding-block: 28px; }
    .et-testimonials__header { margin-bottom: 16px; }
    .et-testimonials__heading { font-size: 20px; margin-bottom: 4px; }
    .et-testimonials__sub { font-size: 12px; margin-bottom: 0; }

    .et-testimonials__grid {
        display: flex !important;
        grid-template-columns: none;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-bottom: 16px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
    }
    .et-testimonials__grid::-webkit-scrollbar { display: none; }
    .et-testimonial {
        flex: 0 0 80%;
        min-width: 0;
        scroll-snap-align: start;
        padding: 16px;
    }
    .et-testimonial__quote-mark { font-size: 24px; margin-bottom: 4px; line-height: 1; }
    .et-testimonial__body { font-size: 13px; line-height: 1.45; }
    .et-testimonial__footer { margin-top: 10px; padding-top: 10px; }
    .et-testimonial__name { font-size: 13px; }
    .et-testimonial__origin { font-size: 11px; }

    /* TripAdvisor trust — tighter */
    .et-testimonials__trust { margin-top: 0; gap: 8px; }
    .et-testimonials__ta-logo { height: 18px; }
    .et-testimonials__ta-stars { font-size: 14px; }
    .et-testimonials__ta-label { font-size: 11px; }

    /* Founder — compact */
    .et-founder { padding-block: 48px; }
    .et-founder__grid { grid-template-columns: 1fr; gap: 32px; }
    .et-founder__heading { font-size: 26px; }
    .et-founder__body { font-size: 14px; line-height: 1.55; }
    .et-founder__img-wrap img { height: 300px; }
    .et-founder__quote { font-size: 14px; }
    .et-founder__cite { font-size: 12px; }

    /* Footer — single column, prominent text like Oroko */
    .et-footer__main { padding-block: 48px; }
    .et-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .et-footer__col--brand { grid-column: auto; margin-bottom: 8px; }
    .et-footer__col-title {
        font-size: 13px;
        letter-spacing: 0.14em;
        color: var(--et-gold);
        margin-bottom: 16px;
    }
    .et-footer__links { gap: 0; }
    .et-footer__links a {
        font-size: 14px;
        color: rgba(255,255,255,0.75);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border: none;
    }
    .et-footer__links a::after {
        content: '\203A';
        font-size: 16px;
        color: rgba(255,255,255,0.2);
    }
    .et-footer__contact { margin-bottom: 20px; gap: 14px; }
    .et-footer__contact li { font-size: 15px; color: rgba(255,255,255,0.85); }
    .et-footer__contact a,
    .et-footer__contact span { color: rgba(255,255,255,0.85); }
    .et-footer__cta { margin-top: 8px; }
    .et-footer__trust { padding-block: 14px; }
    .et-footer__trust-wrap { gap: 0; }
    .et-footer__trust-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        color: rgba(255,255,255,0.4);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .et-footer__trust-arrow:hover { color: rgba(255,255,255,0.8); }
    .et-footer__trust-bar {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 28px;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .et-footer__trust-bar::-webkit-scrollbar { display: none; }
    .et-footer__trust-logo--failte    { height: 32px; }
    .et-footer__trust-logo--waw       { height: 28px; }
    .et-footer__trust-logo--discover  { height: 20px; max-width: 110px; }
    .et-footer__trust-logo--heartlands{ height: 28px; }
    .et-footer__trust-logo--asta      { height: 40px; }
    .et-footer__trust-logo--ta        { height: 18px; }
    .et-footer__trust-logo--iagto     { height: 40px; padding: 4px 7px; }
    .et-footer__legal .et-container { flex-direction: column; gap: 8px; text-align: center; }
    .et-footer__legal-text { font-size: 13px; }
    .et-footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .et-footer__legal-links a { font-size: 13px; }
}
