/* Home page only. */

/* Group structure chart: parent company, the six companies, then brands and titles */
.org { margin-top: clamp(24px, 4vw, 56px); text-align: center; }
.org__parent { display: inline-flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px 36px; border: 1px solid var(--line-2); border-radius: 2px; }
.org__parent .logo-lockup { height: 19px; width: auto; color: var(--paper); }
.org__parent span { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); }
.org__row { list-style: none; position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-top: 56px; padding-top: 30px; }
.org__row::before { content: ""; position: absolute; top: 0; left: calc(100% / 12); right: calc(100% / 12); height: 1px; background: var(--line-2); }
.org__row::after { content: ""; position: absolute; left: 50%; top: -56px; width: 1px; height: 56px; background: var(--line-2); }
.org__row li { position: relative; }
.org__row li::before { content: ""; position: absolute; top: -30px; left: 50%; width: 1px; height: 30px; background: var(--line-2); }
.org__row a { display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; padding: 24px 12px 22px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 2px; text-decoration: none; transition: border-color .35s var(--ease), transform .5s var(--ease); }
.org__row a:hover { border-color: var(--pear); transform: translateY(-3px); }
.org__logo { width: 86px; height: 86px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.org__logo img { max-width: 62px; max-height: 46px; width: auto; height: auto; }
.org__row strong { font-family: var(--serif); font-weight: 400; font-size: 1.16rem; line-height: 1.2; color: var(--paper); }
.org__kind { font-size: .82rem; line-height: 1.4; color: var(--text-2); }
.org__brands { margin-top: 40px; font-size: .95rem; color: var(--text-2); }
.org__brands span { display: block; margin-bottom: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 1000px) {
  .org__row { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; padding-top: 0; }
  .org__row::before, .org__row::after, .org__row li::before { display: none; }
}
@media (max-width: 560px) { .org__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } }
.home-tree .sec-head__aside { color: var(--text-2); }
.tree { margin-top: clamp(24px, 4vw, 56px); }
.tree__fruit { fill: var(--pear); }
.tree__ring { fill: none; stroke: var(--pear); stroke-opacity: .4; stroke-width: 1; }
.tree__labels { pointer-events: none; }
.tree__node { top: 0; }
.tree__node a { pointer-events: auto; text-decoration: none; }
.tree__node a:hover strong { text-decoration: underline; text-underline-offset: .2em; }
.home-tree .tree__root { left: calc(50% + 22px); bottom: 21%; transform: none; text-align: left; }
.tree__root strong { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1; }
.tree__root span { display: block; margin-top: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }
.tree__list { display: none; list-style: none; margin-top: 36px; border-top: 1px solid var(--line); }
.tree__list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.tree__list a:not(.flip) { font-family: var(--serif); font-size: 1.2rem; text-decoration: none; }
.tree__list li > span { font-family: var(--serif); font-style: italic; color: var(--text-2); }
@media (max-width: 760px) {
  .tree__labels { display: none; }
  .tree__list { display: block; }
  .tree__root { display: none; }
}

.home-orchard .split__copy .t-2 { margin-top: 18px; }
.home-orchard .split__copy p.body-lg { margin-top: 24px; }
.home-orchard .split__copy .link-arrow { margin-top: 12px; }

.home-map__frame { position: relative; margin-top: clamp(28px, 4vw, 56px); }
.home-map__frame > img { width: 100%; height: auto; opacity: .9; }
.home-map__arc { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.home-map__frame { overflow: hidden; }
.map-pin { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; }
.map-pin__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--pear-deep); box-shadow: 0 0 0 6px rgba(74, 90, 28, .16); }
.map-pin--home .map-pin__dot { width: 16px; height: 16px; background: var(--ink); box-shadow: 0 0 0 7px rgba(19, 21, 15, .12), 0 0 0 16px rgba(19, 21, 15, .05); }
.map-pin__label { position: absolute; bottom: calc(100% + 12px); white-space: nowrap; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; background: var(--paper); padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; }
.map-pin--west .map-pin__label { transform: translateX(-58%); }
.map-pin--east .map-pin__label { transform: translateX(46%); }
@media (max-width: 640px) {
  .map-pin__label { font-size: .62rem; padding: 4px 7px; letter-spacing: .12em; }
  .map-pin--east .map-pin__label { display: none; }
}
.home-map__legend { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 32px; color: var(--text-2); font-size: .95rem; }

.home-cta { padding-block: clamp(96px, 12vw, 190px); }
.home-cta .t-1 em { color: var(--pear); }

/* Tree logos: each branch ends in the company's own logo, which flips to link to its website */
.tree__logos { position: absolute; inset: 0; pointer-events: none; }
.tree__logo { position: absolute; top: 20%; transform: translate(-50%, -50%); --size: clamp(58px, 5.6vw, 80px); pointer-events: auto; }
.tree__logo .flip__front { box-shadow: 0 0 0 1px rgba(207, 218, 85, .35), 0 8px 26px rgba(0, 0, 0, .35); }
.tree__node { top: -8px; }
.tree__hint { margin: 18px 0 0; text-align: center; font-size: .86rem; color: var(--text-2); }
.tree__list .tree__chip { --size: 46px; }
.tree__list li { align-items: center; justify-content: flex-start; gap: 16px; }
.tree__list li > span { margin-left: auto; }
.flip__type { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
@media (max-width: 760px) { .tree__logos { display: none; } .tree__hint { text-align: left; } }
.hint-touch { display: none; }
@media (hover: none) { .hint-hover { display: none; } .hint-touch { display: inline; } }
