/* The Cellar Custom Layout — frontend */
.tccl-header,
.tccl-home,
.tccl-footer,
.tccl-header *,
.tccl-home *,
.tccl-footer * { box-sizing: border-box; }

.tccl-header,
.tccl-home,
.tccl-footer {
    font-family: var(--tccl-body-font);
    font-size: var(--tccl-base-size);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.tccl-home,
.tccl-footer { color: var(--tccl-text); }
.tccl-home img,
.tccl-footer img,
.tccl-header img { display: block; max-width: 100%; }
.tccl-home p,
.tccl-footer p { margin: 0 0 1em; }
.tccl-home a,
.tccl-footer a,
.tccl-header a { text-decoration: none; }
.tccl-home h1,
.tccl-home h2,
.tccl-home h3,
.tccl-footer h2,
.tccl-footer h3 {
    margin: 0;
    font-family: var(--tccl-heading-font);
    font-weight: var(--tccl-heading-weight);
    line-height: 1.04;
}

.tccl-container {
    width: min(calc(100% - 48px), var(--tccl-container));
    margin-inline: auto;
}

.tccl-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--tccl-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.tccl-section-heading {
    margin-bottom: 34px;
    text-align: center;
}
.tccl-section-heading h2 {
    color: var(--tccl-text);
    font-size: clamp(34px, 4vw, 52px);
}

.tccl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: var(--tccl-radius);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}
.tccl-button:hover { transform: translateY(-2px); }
.tccl-button-outline { border-color: var(--tccl-gold); color: var(--tccl-gold); background: rgba(58, 5, 7, .72); }
.tccl-button-outline:hover { background: var(--tccl-gold); color: var(--tccl-burgundy-dark); }
.tccl-button-solid { background: var(--tccl-burgundy); color: var(--tccl-gold); border-color: var(--tccl-gold); }
.tccl-button-solid:hover { background: var(--tccl-burgundy-dark); color: var(--tccl-cream); }
.tccl-button-gold { background: var(--tccl-gold); color: var(--tccl-burgundy-dark); border-color: var(--tccl-gold); }
.tccl-button-gold:hover { background: var(--tccl-cream); border-color: var(--tccl-cream); }

.tccl-svg-icon {
    width: 48px;
    height: 48px;
    display: block;
}
.tccl-svg-icon-small { width: 19px; height: 19px; flex: 0 0 19px; }
.tccl-custom-icon { width: 48px; height: 48px; object-fit: contain; }
.tccl-icon-text { font-size: 28px; line-height: 1; }

/* Header */
.tccl-header {
    position: relative;
    z-index: 9990;
    width: 100%;
    color: var(--tccl-header-text);
    background: var(--tccl-header-bg);
    border-bottom: 1px solid rgba(214,168,75,.14);
}
.tccl-header-sticky { position: sticky; top: 0; }
body.admin-bar .tccl-header-sticky { top: 32px; }
.tccl-header-inner {
    min-height: var(--tccl-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}
.tccl-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.tccl-brand img { max-height: calc(var(--tccl-header-height) - 12px); object-fit: contain; }
.tccl-logo-fallback { display: grid; color: var(--tccl-gold); text-align: center; line-height: 1; }
.tccl-logo-fallback strong { font-family: var(--tccl-heading-font); font-size: 26px; letter-spacing: .08em; }
.tccl-logo-fallback small { margin-top: 7px; font-size: 8px; letter-spacing: .35em; }
.tccl-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(24px, 3vw, 50px); }
.tccl-nav ul { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); margin: 0; padding: 0; list-style: none; }
.tccl-nav li { margin: 0; padding: 0; }
.tccl-nav li a {
    position: relative;
    display: block;
    padding: 26px 0 24px;
    color: var(--tccl-header-text);
    font-family: var(--tccl-heading-font);
    font-size: 16px;
    white-space: nowrap;
    transition: color .2s ease;
}
.tccl-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 1px;
    background: var(--tccl-header-active);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.tccl-nav li a:hover,
.tccl-nav li a.is-active { color: var(--tccl-header-active); }
.tccl-nav li a:hover::after,
.tccl-nav li a.is-active::after { transform: scaleX(1); }
.tccl-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 25px;
    border: 1px solid var(--tccl-header-button-border);
    color: var(--tccl-header-button-text);
    background: var(--tccl-header-button-bg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    white-space: nowrap;
    transition: all .2s ease;
}
.tccl-header-cta:hover { background: var(--tccl-header-active); border-color: var(--tccl-header-active); color: var(--tccl-burgundy-dark); }
.tccl-menu-toggle { display: none; align-items: center; gap: 10px; padding: 8px 0; border: 0; color: var(--tccl-header-text); background: none; cursor: pointer; }
.tccl-menu-toggle-label { font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.tccl-menu-lines { display: grid; gap: 4px; width: 24px; }
.tccl-menu-lines i { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.tccl-header.is-open .tccl-menu-lines i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.tccl-header.is-open .tccl-menu-lines i:nth-child(2) { opacity: 0; }
.tccl-header.is-open .tccl-menu-lines i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Hero */
.tccl-hero {
    position: relative;
    min-height: var(--tccl-hero-min-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--tccl-hero-text);
    background-size: cover;
    background-repeat: no-repeat;
}
.tccl-hero-overlay,
.tccl-cta-overlay { position: absolute; inset: 0; pointer-events: none; }
.tccl-hero-overlay { background: var(--tccl-hero-overlay); opacity: var(--tccl-hero-overlay-opacity); }
.tccl-hero-inner { position: relative; z-index: 1; display: flex; padding-block: 90px; }
.tccl-hero-content { width: min(100%, var(--tccl-hero-content-width)); }
.tccl-align-center .tccl-hero-inner { justify-content: center; text-align: center; }
.tccl-align-right .tccl-hero-inner { justify-content: flex-end; text-align: right; }
.tccl-align-center .tccl-ornament { justify-content: center; }
.tccl-align-right .tccl-ornament { justify-content: flex-end; }
.tccl-hero h1 span,
.tccl-hero h1 em { display: block; }
.tccl-hero h1 span { font-size: clamp(54px, 6.4vw, 86px); letter-spacing: .01em; text-transform: uppercase; }
.tccl-hero h1 em { margin-top: 4px; font-size: clamp(38px, 4.9vw, 66px); font-weight: 400; }
.tccl-ornament { display: flex; align-items: center; gap: 10px; width: 100%; margin: 24px 0 20px; color: var(--tccl-gold); }
.tccl-ornament span { width: 90px; max-width: 28%; height: 1px; background: currentColor; }
.tccl-ornament i { font-style: normal; line-height: 1; }
.tccl-hero-description { max-width: 450px; font-size: 15px; line-height: 1.65; }
.tccl-align-center .tccl-hero-description { margin-inline: auto; }
.tccl-align-right .tccl-hero-description { margin-left: auto; }
.tccl-hero .tccl-button { margin-top: 16px; }

/* Statistics */
.tccl-stats { padding: 34px 0; }
.tccl-stats-grid { display: grid; grid-template-columns: repeat(var(--tccl-stats-columns), minmax(0, 1fr)); }
.tccl-stat { display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 122px; padding: 14px 34px; border-right: 1px solid rgba(107,73,48,.2); }
.tccl-stat:first-child { padding-left: 4px; }
.tccl-stat:last-child { border-right: 0; padding-right: 4px; }
.tccl-stat-icon { color: var(--tccl-gold); padding-top: 4px; }
.tccl-stat-icon .tccl-custom-icon { width: 42px; height: 42px; display: block; object-fit: contain; }
.tccl-stat-copy strong { display: block; color: var(--tccl-burgundy); font-family: var(--tccl-heading-font); font-size: clamp(32px, 3vw, 45px); font-weight: 500; line-height: .9; }
.tccl-stat-copy h3 { margin-top: 10px; color: #6c5550; font-family: var(--tccl-body-font); font-size: 10px; font-weight: 600; letter-spacing: .08em; line-height: 1.25; }
.tccl-stat-copy div { margin-top: 8px; color: var(--tccl-muted); font-size: 11px; line-height: 1.5; }
.tccl-stat-copy p { margin: 0; }

/* About */
.tccl-about { min-height: 500px; display: flex; }
.tccl-about-reverse { flex-direction: row-reverse; }
.tccl-about-copy { width: var(--tccl-about-copy-width); }
.tccl-about-image { width: calc(100% - var(--tccl-about-copy-width)); }
.tccl-about-copy { display: flex; align-items: center; }
.tccl-about-copy-inner {
    width: 100%;
    max-width: calc(var(--tccl-container) / 2);
    margin-left: auto;
    padding: 70px clamp(34px, 5vw, 78px) 70px 24px;
}
.tccl-about-reverse .tccl-about-copy-inner { margin-left: 0; margin-right: auto; padding-left: clamp(34px, 5vw, 78px); padding-right: 24px; }
.tccl-about h2 span,
.tccl-about h2 em { display: block; }
.tccl-about h2 span { font-size: clamp(42px, 5vw, 64px); }
.tccl-about h2 em { font-size: clamp(37px, 4.3vw, 57px); font-weight: 400; }
.tccl-ornament-dark { margin: 20px 0 23px; color: var(--tccl-gold); }
.tccl-richtext { max-width: 570px; color: inherit; font-size: 13px; line-height: 1.8; }
.tccl-richtext p:last-child { margin-bottom: 0; }
.tccl-about .tccl-button { margin-top: 24px; }
.tccl-about-image { min-height: 500px; background-size: cover; background-repeat: no-repeat; }

/* Partners */
.tccl-partners { padding: 18px 0 25px; }
.tccl-partners-title { margin-bottom: 19px; text-align: center; font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: inherit !important; opacity: 1 !important; visibility: visible !important; }
.tccl-partners-grid { display: grid; grid-template-columns: repeat(var(--tccl-partner-columns), minmax(0,1fr)); align-items: stretch; gap: 30px; }
.tccl-partner,
a.tccl-partner,
div.tccl-partner { min-height: 105px !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 10px !important; color: inherit !important; text-align: center !important; text-decoration: none !important; overflow: visible !important; }
.tccl-partner .tccl-partner-logo-wrap { display: flex !important; width: 100% !important; min-height: 68px !important; height: 68px !important; align-items: center !important; justify-content: center !important; overflow: visible !important; opacity: 1 !important; visibility: visible !important; }
.tccl-partner .tccl-partner-logo-img { display: block !important; position: static !important; width: auto !important; height: auto !important; max-width: 185px !important; max-height: 68px !important; margin: 0 auto !important; padding: 0 !important; object-fit: contain !important; opacity: 1 !important; visibility: visible !important; transform: none !important; filter: none !important; clip: auto !important; }
.tccl-partner .tccl-partner-name { display: block !important; width: 100% !important; margin: 0 !important; padding: 0 !important; font-family: var(--tccl-heading-font) !important; font-size: clamp(13px, 1.15vw, 17px) !important; font-weight: 600 !important; letter-spacing: .12em !important; line-height: 1.2 !important; color: inherit !important; opacity: 1 !important; visibility: visible !important; text-transform: uppercase !important; position: static !important; transform: none !important; }

/* Experiences */
.tccl-experiences { padding: var(--tccl-section-pad) 0 48px; }
.tccl-experience-grid { display: grid; grid-template-columns: repeat(var(--tccl-experience-columns), minmax(0,1fr)); gap: var(--tccl-grid-gap); }
.tccl-experience-card {
    position: relative;
    aspect-ratio: var(--tccl-experience-ratio);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--tccl-radius);
    background-position: center;
    background-size: cover;
    box-shadow: var(--tccl-card-shadow);
    isolation: isolate;
}
.tccl-card-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(19,5,5,.08), rgba(19,5,5,.74)); transition: background .35s ease; }
.tccl-experience-card:hover .tccl-card-overlay { background: linear-gradient(180deg, rgba(19,5,5,.18), rgba(19,5,5,.86)); }
.tccl-experience-content { padding: 28px; color: #fff; text-align: center; transform: translateY(14px); transition: transform .3s ease; }
.tccl-experience-card:hover .tccl-experience-content { transform: translateY(0); }
.tccl-experience-content h3 { font-size: clamp(27px, 3vw, 40px); text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.tccl-mini-ornament { display: block; margin: 7px 0 5px; color: var(--tccl-gold); font-size: 12px; }
.tccl-experience-content a { color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.55); }

/* Process */
.tccl-process { padding: 18px 0 var(--tccl-section-pad); }
.tccl-process-grid { display: grid; grid-template-columns: repeat(var(--tccl-process-columns), minmax(0,1fr)); gap: 40px; }
.tccl-process-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; }
.tccl-process-icon { width: 63px; height: 63px; display: grid; place-items: center; border: 1px solid var(--tccl-gold); border-radius: 50%; color: var(--tccl-gold); }
.tccl-process-icon .tccl-svg-icon { width: 34px; height: 34px; }
.tccl-process-icon .tccl-custom-icon { width: 34px; height: 34px; display: block; object-fit: contain; }
.tccl-process-label { display: block; margin-bottom: 5px; color: var(--tccl-gold); font-size: 9px; font-weight: 600; letter-spacing: .08em; }
.tccl-process-step h3 { margin-bottom: 4px; font-size: 24px; }
.tccl-process-step div > div { color: var(--tccl-muted); font-size: 10px; line-height: 1.65; }
.tccl-process-step p { margin: 0; }
.tccl-process-line { position: absolute; top: 31px; right: -28px; width: 20px; height: 1px; background: var(--tccl-gold); opacity: .65; }

/* Gallery */
.tccl-gallery {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    overflow: hidden;
    background: var(--tccl-burgundy-dark);
}
.tccl-gallery-item { min-width: 0; height: var(--tccl-gallery-height); overflow: hidden; }
.tccl-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.tccl-gallery-item:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* Testimonials */
.tccl-testimonials { padding: 28px 0 25px; overflow: hidden; }
.tccl-testimonial-heading { margin-bottom: 14px; color: var(--tccl-gold); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-align: center; text-transform: uppercase; }
.tccl-testimonial-viewport { overflow: hidden; }
.tccl-testimonial-track { display: flex; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.tccl-testimonial-slide { min-width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.tccl-testimonial-slide blockquote { display: grid; grid-template-columns: auto 1fr; gap: 22px; margin: 0; padding: 12px 50px; color: var(--tccl-muted); }
.tccl-testimonial-slide blockquote + blockquote { border-left: 1px solid rgba(107,73,48,.22); }
.tccl-quote-mark { color: var(--tccl-burgundy); font-family: Georgia, serif; font-size: 56px; font-weight: 700; line-height: .8; }
.tccl-quote-copy p { font-size: 12px; line-height: 1.7; }
.tccl-quote-copy footer { display: grid; margin-top: 10px; color: var(--tccl-text); font-family: var(--tccl-heading-font); line-height: 1.3; }
.tccl-quote-copy footer strong { font-size: 13px; letter-spacing: .05em; }
.tccl-quote-copy footer span { font-size: 10px; letter-spacing: .05em; }
.tccl-slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.tccl-slider-dots button { width: 7px; height: 7px; padding: 0; border: 1px solid rgba(75,7,9,.35); border-radius: 50%; background: transparent; cursor: pointer; }
.tccl-slider-dots button.is-active { background: var(--tccl-burgundy); border-color: var(--tccl-burgundy); }

/* CTA */
.tccl-cta { position: relative; overflow: hidden; color: var(--tccl-cream); background-position: center; background-size: cover; }
.tccl-cta-overlay { background: var(--tccl-cta-overlay); opacity: var(--tccl-cta-overlay-opacity); }
.tccl-cta-inner { position: relative; z-index: 1; min-height: 190px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; padding-block: 34px; }
.tccl-cta-copy h2 span,
.tccl-cta-copy h2 em { display: block; }
.tccl-cta-copy h2 span { color: var(--tccl-gold); font-size: clamp(35px, 4.5vw, 55px); }
.tccl-cta-copy h2 em { font-size: clamp(28px, 3.6vw, 46px); font-weight: 400; }
.tccl-cta-copy > div { max-width: 580px; margin-top: 10px; font-size: 11px; line-height: 1.6; }
.tccl-cta-copy p { margin: 0; }
.tccl-cta-actions { display: grid; justify-items: center; gap: 7px; }
.tccl-secondary-link { color: var(--tccl-gold); font-family: var(--tccl-heading-font); font-size: 16px; text-decoration: underline !important; text-underline-offset: 3px; }

/* Footer */
.tccl-footer { position: relative; }
.tccl-footer-grid { display: grid; grid-template-columns: var(--tccl-footer-grid); gap: 40px; padding-block: 46px 38px; }
.tccl-footer-brand,
.tccl-footer-column { min-width: 0; }
.tccl-footer-column { padding-left: 25px; border-left: 1px solid rgba(214,168,75,.25); }
.tccl-footer-logo img { width: 170px; max-height: 75px; object-fit: contain; object-position: left center; }
.tccl-footer-about { max-width: 230px; margin-top: 17px; font-size: 9px; line-height: 1.65; }
.tccl-footer-about p { margin: 0; }
.tccl-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.tccl-socials a { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--tccl-footer-heading); border-radius: 50%; color: var(--tccl-footer-heading); transition: all .2s ease; }
.tccl-socials a:hover { background: var(--tccl-footer-heading); color: var(--tccl-burgundy-dark); }
.tccl-socials .tccl-svg-icon-small { width: 14px; height: 14px; }
.tccl-footer-column h3 { margin-bottom: 14px; color: var(--tccl-footer-heading); font-family: var(--tccl-body-font); font-size: 10px; font-weight: 600; letter-spacing: .09em; }
.tccl-footer-links { margin: 0; padding: 0; list-style: none; }
.tccl-footer-links li { margin: 0 0 4px; padding: 0; }
.tccl-footer-links a { color: inherit; font-size: 9px; line-height: 1.55; transition: color .2s ease; }
.tccl-footer-links a:hover { color: var(--tccl-footer-heading); }
.tccl-newsletter > div { font-size: 9px; line-height: 1.65; }
.tccl-newsletter > div p { margin: 0 0 12px; }
.tccl-newsletter form { display: grid; grid-template-columns: 1fr auto; gap: 6px; margin-top: 12px; }
.tccl-newsletter input { min-width: 0; height: 32px; padding: 7px 10px; border: 1px solid rgba(214,168,75,.35); border-radius: 0; color: inherit; background: transparent; font: inherit; font-size: 9px; }
.tccl-newsletter input::placeholder { color: rgba(248,238,224,.55); }
.tccl-newsletter button { min-height: 32px; padding: 7px 12px; border: 0; border-radius: 0; color: var(--tccl-burgundy-dark); background: var(--tccl-footer-heading); font-size: 8px; font-weight: 600; letter-spacing: .07em; cursor: pointer; }
.tccl-contact-column > a,
.tccl-contact-address { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; color: inherit; font-size: 9px; line-height: 1.5; }
.tccl-contact-column > a:hover { color: var(--tccl-footer-heading); }
.tccl-contact-column .tccl-svg-icon-small { color: var(--tccl-footer-heading); }
.tccl-footer-bottom { border-top: 1px solid rgba(214,168,75,.14); }
.tccl-footer-bottom .tccl-container { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 8px; }
.tccl-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 25px; }
.tccl-footer-bottom a { color: inherit; }
.tccl-footer-bottom a:hover { color: var(--tccl-footer-heading); }

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1100px) {
    .tccl-nav { gap: 22px; }
    .tccl-nav ul { gap: 20px; }
    .tccl-header-cta { padding-inline: 15px; }
    .tccl-stat { padding-inline: 20px; }
    .tccl-process-grid { gap: 28px; }
    .tccl-process-step { grid-template-columns: 54px 1fr; gap: 14px; }
    .tccl-process-icon { width: 54px; height: 54px; }
    .tccl-process-line { display: none; }
    .tccl-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .tccl-newsletter,
    .tccl-contact-column { margin-top: 10px; }
}

@media (max-width: 900px) {
    body.admin-bar .tccl-header-sticky { top: 46px; }
    .tccl-menu-toggle { display: inline-flex; }
    .tccl-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 18px;
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        visibility: hidden;
        background: var(--tccl-header-bg);
        border-top: 1px solid rgba(214,168,75,.16);
        box-shadow: 0 18px 40px rgba(0,0,0,.22);
        transition: max-height .35s ease, padding .35s ease, visibility .35s ease;
    }
    .tccl-header.is-open .tccl-nav { max-height: 680px; padding-block: 18px 26px; visibility: visible; }
    .tccl-nav ul { display: grid; gap: 0; }
    .tccl-nav li a { padding: 10px 0; font-size: 21px; }
    .tccl-nav li a::after { bottom: 7px; right: auto; width: 40px; }
    .tccl-header-cta { justify-self: start; }
    .tccl-stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .tccl-stat:nth-child(2) { border-right: 0; }
    .tccl-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(107,73,48,.2); }
    .tccl-stat:first-child,
    .tccl-stat:last-child { padding-inline: 24px; }
    .tccl-about { display: grid; }
    .tccl-about-copy,
    .tccl-about-image { width: 100%; }
    .tccl-about-reverse { display: grid; }
    .tccl-about-reverse .tccl-about-image { order: 2; }
    .tccl-about-copy-inner,
    .tccl-about-reverse .tccl-about-copy-inner { max-width: none; margin: 0; padding: var(--tccl-section-pad-mobile) 24px; }
    .tccl-about-image { min-height: 440px; }
    .tccl-partners-grid { grid-template-columns: repeat(3, minmax(0,1fr)); row-gap: 25px; }
    .tccl-experience-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .tccl-process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 38px; }
    .tccl-cta-inner { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .tccl-cta-copy > div { margin-inline: auto; }
    .tccl-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .tccl-footer-brand { grid-column: 1 / -1; }
    .tccl-footer-about { max-width: 520px; }
}

@media (max-width: 640px) {
    .tccl-container { width: min(calc(100% - 36px), var(--tccl-container)); }
    .tccl-header-inner { min-height: 68px; }
    .tccl-brand img { width: 142px !important; }
    .tccl-menu-toggle-label { display: none; }
    .tccl-hero { min-height: max(540px, calc(100svh - 68px)); background-position: 67% center !important; }
    .tccl-hero-inner { align-items: flex-end; padding-block: 72px 58px; }
    .tccl-hero h1 span { font-size: clamp(43px, 13vw, 62px); }
    .tccl-hero h1 em { font-size: clamp(34px, 10vw, 48px); }
    .tccl-hero-description { font-size: 13px; }
    .tccl-stats { padding: 20px 0; }
    .tccl-stats-grid { grid-template-columns: 1fr; }
    .tccl-stat,
    .tccl-stat:first-child,
    .tccl-stat:last-child { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(107,73,48,.2); }
    .tccl-stat:last-child { border-bottom: 0; }
    .tccl-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(107,73,48,.2); }
    .tccl-stat-copy strong { font-size: 40px; }
    .tccl-about-image { min-height: 320px; }
    .tccl-partners { padding-block: 23px; }
    .tccl-partners-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px 18px; }
    .tccl-partner span { font-size: 18px; }
    .tccl-experiences { padding-top: var(--tccl-section-pad-mobile); }
    .tccl-experience-grid { grid-template-columns: 1fr; }
    .tccl-experience-card { aspect-ratio: 1.35; }
    .tccl-process { padding-bottom: var(--tccl-section-pad-mobile); }
    .tccl-process-grid { grid-template-columns: 1fr; }
    .tccl-process-step { grid-template-columns: 58px 1fr; }
    .tccl-gallery { overflow-x: auto; grid-auto-columns: 78vw; scroll-snap-type: x mandatory; }
    .tccl-gallery-item { scroll-snap-align: start; height: min(var(--tccl-gallery-height), 260px); }
    .tccl-testimonial-slide { grid-template-columns: 1fr; }
    .tccl-testimonial-slide blockquote { padding: 14px 8px; }
    .tccl-testimonial-slide blockquote + blockquote { border-left: 0; border-top: 1px solid rgba(107,73,48,.22); }
    .tccl-cta-inner { padding-block: 46px; }
    .tccl-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .tccl-footer-brand { grid-column: auto; }
    .tccl-footer-column { padding-left: 0; padding-top: 22px; border-left: 0; border-top: 1px solid rgba(214,168,75,.25); }
    .tccl-footer-bottom .tccl-container { align-items: flex-start; flex-direction: column; padding-block: 14px; }
}
