/* ============================================================
   TTA — MOBILE SKIN (phone-first), device-gated via @media.
   Desktop (>768px) is completely unaffected: the only rules
   outside the media query hide the mobile menu elements.
   Same brand, fonts, heroes, images and content order — just
   lighter, airier, app-like on phones.
   NOTE: dc-runtime (React) re-serializes inline styles, so we
   target data-attributes / classes / structure — never [style*].
   ============================================================ */

/* mobile-only elements are invisible on desktop */
#tta-mbtn, #tta-sheet { display: none; }

html.is-phone html { font-size: 17px; -webkit-text-size-adjust: 100%; }html.is-phone [data-nav],
html.is-phone nav.bar {
    padding: 0.95rem 1.3rem !important;
    padding-top: calc(0.95rem + env(safe-area-inset-top)) !important;
  }html.is-phone [data-nav] [data-navlinks],
html.is-phone nav.bar .links { display: none !important; }html.is-phone [data-nav] [data-navtoggle],
html.is-phone nav [data-navtoggle] { display: none !important; }html.is-phone [data-nav] [data-navcta],
html.is-phone nav.bar .cta { display: none !important; }html.is-phone [data-navlogo],
html.is-phone nav.bar .logo { font-size: 1.18rem !important; }html.is-phone #tta-mbtn {
    position: fixed; z-index: 96;
    top: calc(0.7rem + env(safe-area-inset-top)); right: 1.05rem;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    background: rgba(255,255,255,0.82);
    -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
    border: none; box-shadow: 0 1px 10px rgba(22,39,29,0.10); cursor: pointer; padding: 0;
  }html.is-phone #tta-mbtn span { display: block; width: 17px; height: 1.5px; background: #16271d; border-radius: 2px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }html.is-phone #tta-mbtn[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }html.is-phone #tta-mbtn[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }html.is-phone #tta-sheet {
    position: fixed; inset: 0; z-index: 95;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: saturate(1.3) blur(22px); backdrop-filter: saturate(1.3) blur(22px);
    display: flex; flex-direction: column;
    padding: calc(4.8rem + env(safe-area-inset-top)) 1.7rem calc(2.2rem + env(safe-area-inset-bottom));
    opacity: 0; visibility: hidden; transition: opacity .32s ease, visibility .32s ease;
  }html.is-phone #tta-sheet.open { opacity: 1; visibility: visible; }html.is-phone #tta-sheet nav { display: flex; flex-direction: column; }html.is-phone #tta-sheet nav a {
    font-family: 'Tenderness', Georgia, serif; font-size: 2rem; line-height: 1.15; color: #16271d; text-decoration: none;
    padding: 1.05rem 0.1rem; border-bottom: 1px solid rgba(30,45,28,0.08);
    display: flex; align-items: center; justify-content: space-between;
    opacity: 0; transform: translateY(10px); transition: opacity .45s cubic-bezier(.2,.7,.2,1), transform .45s cubic-bezier(.2,.7,.2,1);
  }html.is-phone #tta-sheet nav a::after { content: '\203A'; font-size: 1.5rem; color: rgba(107,122,94,0.55); font-family: Georgia, serif; }html.is-phone #tta-sheet.open nav a { opacity: 1; transform: none; }html.is-phone #tta-sheet.open nav a:nth-child(1) {transition-delay:.05s}html.is-phone #tta-sheet.open nav a:nth-child(2) {transition-delay:.11s}html.is-phone #tta-sheet.open nav a:nth-child(3) {transition-delay:.17s}html.is-phone #tta-sheet.open nav a:nth-child(4) {transition-delay:.23s}html.is-phone #tta-sheet .foot { margin-top: auto; display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; opacity: 0; transition: opacity .5s ease .3s; }html.is-phone #tta-sheet.open .foot { opacity: 1; }html.is-phone #tta-sheet .pill { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: #005C5B; text-decoration: none; padding: 0.95rem 2.4rem; border-radius: 999px; }html.is-phone #tta-sheet .mail { font-size: 0.85rem; color: #6B7A5E; text-decoration: none; }html.is-phone [data-sec] { padding: 4.4rem 1.35rem !important; }html.is-phone [data-grid="two"],
html.is-phone [data-grid="how"],
html.is-phone [data-grid="products"],
html.is-phone [data-grid="wlist"],
html.is-phone [data-sgrid],
html.is-phone [data-tmgrid] { grid-template-columns: 1fr !important; gap: 2.1rem !important; }html.is-phone [data-sec] p { font-size: 0.99rem !important; line-height: 1.9 !important; }html.is-phone [data-sec] h2 { line-height: 1.16 !important; }html.is-phone [data-journey] { height: 150vh !important; }html.is-phone [data-eyebrow] { letter-spacing: 0.18em !important; font-size: 0.56rem !important; max-width: 88vw !important; }html.is-phone [data-marquee] img,
html.is-phone [data-logos] img { height: 20px !important; }html.is-phone [data-grid="teamrow"] {
    grid-template-columns: 78px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0.2rem 1.1rem !important;
    padding: 1.5rem 0 !important;
    align-items: start !important;
    border-bottom-color: rgba(30,45,28,0.09) !important;
  }html.is-phone [data-grid="teamrow"] > div:first-child {
    width: 78px !important; height: auto !important; aspect-ratio: 4/5 !important;
    grid-row: 1 / 3 !important; align-self: start !important; border-radius: 12px !important; overflow: hidden !important;
  }html.is-phone [data-grid="teamrow"] > div:nth-child(2) { grid-column: 2 !important; grid-row: 1 !important; align-self: center !important; }html.is-phone [data-grid="teamrow"] > p {
    grid-column: 2 !important; grid-row: 2 !important;
    margin-top: 0.55rem !important; font-size: 0.92rem !important; line-height: 1.75 !important; max-width: none !important;
  }html.is-phone [data-teamlink] { display: none !important; }html.is-phone [data-grid="wfeat"] {
    display: flex !important; overflow-x: auto !important; scroll-snap-type: x mandatory;
    gap: 1rem !important; padding: 0.3rem 0.15rem 1.2rem !important;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }html.is-phone [data-grid="wfeat"]::-webkit-scrollbar { display: none; }html.is-phone [data-grid="wfeat"] > a { min-width: 80% !important; scroll-snap-align: center; border: none !important; border-radius: 20px !important; overflow: hidden; box-shadow: 0 12px 34px rgba(0,40,39,0.10); }html.is-phone [data-grid="products"] { gap: 0.9rem !important; background: transparent !important; border: none !important; }html.is-phone [data-grid="products"] > div,
html.is-phone [data-product] { background: rgba(0,92,91,0.04) !important; border: none !important; border-radius: 20px !important; padding: 1.7rem 1.4rem !important; }html.is-phone [data-book] { text-align: center !important; gap: 2.4rem !important; }html.is-phone [data-book] > div:first-child { display: flex !important; flex-direction: column !important; align-items: center !important; }html.is-phone [data-book] > div:first-child > span { justify-content: center !important; }html.is-phone [data-book] a {
    display: inline-block !important; width: auto !important; margin-top: 0.4rem !important;
    padding: 0.95rem 2.6rem !important; border-radius: 999px !important;
  }html.is-phone footer { padding: 3.6rem 1.35rem calc(2.4rem + env(safe-area-inset-bottom)) !important; }html.is-phone [data-grid="footer"],
html.is-phone footer .fg {
    display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2.2rem 0.9rem !important;
  }html.is-phone [data-grid="footer"] > div:first-child,
html.is-phone footer .fg > div:first-child { grid-column: 1 / -1 !important; }html.is-phone [data-grid="footer"] ul,
html.is-phone footer .fg ul { display: flex !important; flex-direction: column !important; gap: 0.65rem !important; }html.is-phone [data-grid="footer"] h5,
html.is-phone footer .fg h5 { margin-bottom: 1rem !important; }html.is-phone footer > div:last-child { flex-direction: column !important; gap: 0.45rem !important; align-items: flex-start !important; }html.is-phone [data-pagehero] { height: 46vh !important; min-height: 300px !important; }html.is-phone nav.bar { flex-wrap: nowrap !important; }html.is-phone .hero { padding: 2.2rem 1.35rem !important; }html.is-phone .article { grid-template-columns: 1fr !important; gap: 1.6rem !important; padding-left: 1.35rem !important; padding-right: 1.35rem !important; }html.is-phone .rail { position: static !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 1.2rem !important; align-items: center !important; }html.is-phone .rail .rule { display: none !important; }html.is-phone .article-content p { font-size: 1rem !important; line-height: 1.9 !important; }html.is-phone [data-form] input,
html.is-phone [data-form] textarea { font-size: 1rem !important; padding: 1rem 1.1rem !important; border-radius: 12px !important; border-color: rgba(30,45,28,0.16) !important; }html.is-phone [data-form] button[type="submit"] { width: 100% !important; text-align: center !important; padding: 1.05rem !important; font-size: 0.7rem !important; border-radius: 999px !important; }html.is-phone main { padding-bottom: 5rem !important; }

