@font-face{font-family:'Geist Offline';src:url('/assets/geist-sans.woff2') format('woff2');font-weight:100 900;font-display:swap}@font-face{font-family:'Geist Mono Offline';src:url('/assets/geist-mono.woff2') format('woff2');font-weight:100 900;font-display:swap}:root{--font-geist-sans:'Geist Offline';--font-geist-mono:'Geist Mono Offline'}

:root {
  --ink: #0b1210;
  --forest: #0f2019;
  --forest-soft: #1d3429;
  --paper: #f2efe7;
  --paper-bright: #fbf9f3;
  --stone: #ced1c8;
  --mist: #98a49b;
  --moss: #78916f;
  --water: #1f5267;
  --water-bright: #71aabd;
  --sand: #d0b88f;
  --line-dark: rgba(11, 18, 16, 0.2);
  --line-light: rgba(244, 241, 232, 0.24);
  --gutter: clamp(20px, 4vw, 66px);
  --mono: var(--font-geist-mono), 'Courier New', monospace;
  --sans: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body, button, a { -webkit-tap-highlight-color: transparent; }
button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }
picture, img { display: block; }
img { max-width: 100%; }

::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 5px; }

.brand-loader {
  position: fixed;
  z-index: 600;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: #494949;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms;
  animation: brand-loader-failsafe 0s 12s forwards;
}

.brand-loader[data-active='true'] { animation: none; }

.brand-loader[data-phase='leaving'] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-loader__content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.brand-loader__art { position: relative; width: min(420px, 84vw, max(120px, calc(70vh - 105px))); width: min(420px, 84vw, max(120px, calc(70svh - 105px))); }
.brand-loader__portrait-frame { position: relative; isolation: isolate; width: 100%; aspect-ratio: 1; }
.brand-loader__portrait-crop { position: absolute; z-index: 0; width: 86%; aspect-ratio: 1023 / 974; left: 5.45%; top: 1%; overflow: hidden; }
.brand-loader__portrait-crop img { width: 100%; max-width: none; height: auto; }
.brand-loader__head-layer {
  z-index: 2;
  pointer-events: none;
  clip-path: polygon(
    29% 12%, 43% 12%, 43% 14.3%, 45% 15%,
    46.55% 16%, 47.14% 16.5%, 47.5% 17%,
    47.74% 17.5%, 48.10% 18%, 48.34% 18.5%,
    48.34% 19%, 49.17% 19.5%, 50% 22%,
    54% 30%, 54% 56%, 32% 56%, 29% 40%
  );
}
.brand-loader__wordmark-crop { position: relative; width: 100%; aspect-ratio: 1023 / 390; overflow: hidden; margin-top: 24px; }
.brand-loader__wordmark-crop img { position: absolute; width: 100%; max-width: none; height: auto; top: 0; left: 0; transform: translateY(-63.55%); }
.brand-loader__ring { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.brand-loader__track { stroke: #e7e9ec; stroke-width: 20; stroke-linecap: round; }
.brand-loader__trace {
  stroke-linecap: round;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  animation: brand-loader-trace 6.6s 150ms linear both paused;
}
.brand-loader__trace--glow {
  stroke: #fff;
  stroke-width: 28;
  filter: drop-shadow(0 0 5px rgba(119, 126, 136, 0.85)) drop-shadow(0 0 16px #fff) drop-shadow(0 0 36px #fff);
}
.brand-loader__trace--core { stroke: #fff; stroke-width: 10; }
.brand-loader__orbit {
  transform-box: view-box;
  transform-origin: 500px 502px;
  transform: rotate(-135deg);
  animation: brand-loader-orbit 6.6s 150ms linear both paused;
}
.brand-loader[data-intro-ready='true'] .brand-loader__trace,
.brand-loader[data-intro-ready='true'] .brand-loader__orbit { animation-play-state: running; }
.brand-loader__light-halo { fill: #fff; filter: blur(9px) drop-shadow(0 0 12px #fff); }
.brand-loader__light-rays { stroke: #fff; stroke-width: 5; stroke-linecap: round; filter: drop-shadow(0 0 3px #929aa5) drop-shadow(0 0 12px #fff) drop-shadow(0 0 24px #fff); }
.brand-loader__dot { fill: #fff; stroke: #fff; stroke-width: 3; filter: drop-shadow(0 0 5px #87909c) drop-shadow(0 0 16px #fff) drop-shadow(0 0 32px #fff); }
.brand-loader__status { margin: 12px 0 6px; font: 500 0.875rem/1.5 var(--sans); letter-spacing: 0.015em; color: #686868; }

.brand-loader__skip {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #686868;
  cursor: pointer;
  font: 500 0.875rem/1.4 var(--sans);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #d0d0d0;
  transition: color 160ms ease;
}

.brand-loader__skip:hover { color: #494949; }
.brand-loader__skip:focus-visible { outline-color: #969696; }

@keyframes brand-loader-trace { to { stroke-dashoffset: 0; } }
@keyframes brand-loader-orbit { to { transform: rotate(45deg); } }
@keyframes brand-loader-failsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }

@media (max-width: 900px) {
  :root { --gutter: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .brand-loader__orbit { animation: none !important; transform: rotate(45deg); }
  .brand-loader__trace { animation: none !important; stroke-dashoffset: 0; }
}
:root{--paper:#f2efe7;--ink:#0b1210;--forest:#0f2019;--cinema-ease:cubic-bezier(.2,.75,.2,1)}

.builder{--builder-green:#215d49;--builder-line:#dce3df;min-height:100dvh;background:#f4f6f5;color:#192d25;display:grid;grid-template-columns:240px minmax(0,1fr);font:16px/1.5 var(--font-geist-sans),sans-serif}.builder *{box-sizing:border-box}.builder button,.builder input,.builder textarea,.builder select{font:inherit}.builder button{cursor:pointer}.builder button:disabled{opacity:.5;cursor:not-allowed}.builder :focus-visible{outline:3px solid #438c70;outline-offset:3px}.builder-sidebar{background:#153c31;color:#fff;padding:36px 20px;position:sticky;top:0;height:100dvh;display:flex;flex-direction:column;gap:24px}.builder-brand{font-family:Georgia,serif;font-size:27px;text-decoration:none;color:#fff;line-height:1.2}.builder-brand strong{display:block;font-family:var(--font-geist-sans),sans-serif;font-size:15px;letter-spacing:.18em;text-transform:uppercase;margin-top:6px}.builder-overline{font-size:12px;font-weight:600;letter-spacing:.12em}.builder-sidebar>.builder-overline{color:#adcabb}.builder-sidebar nav{display:grid;gap:8px}.builder-sidebar nav button{display:flex;align-items:center;gap:13px;border:0;background:transparent;color:#ddece4;border-radius:10px;padding:14px 12px;text-align:left;font-size:15px}.builder-sidebar nav button[aria-current=page]{background:#fff;color:#153c31;font-weight:600}.builder-local{margin-top:auto;font-size:14px;color:#bdd2c7;line-height:1.6}.builder-main{padding:32px clamp(20px,3vw,52px) 60px;min-width:0}.builder-top{display:flex;gap:20px;justify-content:space-between;align-items:center;padding-bottom:26px;border-bottom:1px solid var(--builder-line)}.builder h1{font-size:clamp(26px,3vw,36px);letter-spacing:-.04em;font-weight:550;line-height:1.2;margin:6px 0 0}.builder h2{font-size:20px;line-height:1.3;font-weight:550;letter-spacing:-.025em;margin:0 0 8px}.builder h3{font-size:17px;margin:0 0 8px}.builder p{margin:0;color:#52665c}.builder-section-head{display:flex;justify-content:space-between;align-items:center;gap:24px;margin:28px 0 22px}.builder-photo-layout{display:grid;grid-template-columns:minmax(250px,1fr) minmax(300px,390px);gap:28px;align-items:start}.builder-photo-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px;align-content:start}.builder-photo-card{background:#fff;border:1px solid var(--builder-line);border-radius:12px;overflow:hidden;text-align:left;padding:0 0 14px;transition:border-color .15s,box-shadow .15s;color:#192d25}.builder-photo-card[aria-pressed=true]{border-color:#215d49;box-shadow:0 0 0 2px #215d49}.builder-photo-card img{width:100%;height:140px;object-fit:cover;display:block;margin-bottom:12px}.builder-photo-card span,.builder-photo-card small{display:block;margin:0 13px;overflow-wrap:anywhere}.builder-photo-card span{font-weight:600;font-size:15px}.builder-photo-card small{font-size:13px;color:#64766d;margin-top:4px}.builder-detail{background:white;border:1px solid var(--builder-line);border-radius:14px;padding:22px;display:grid;gap:18px;min-width:0}.builder-detail-image{width:100%;height:210px;object-fit:contain;background:#ecf0ee;border-radius:8px}.builder-field{display:grid;gap:7px;font-size:14px;font-weight:550;color:#253f32}.builder-field input,.builder-field textarea,.builder-field select{width:100%;min-width:0;border:1px solid #cbd7cf;border-radius:7px;padding:10px 12px;min-height:44px;background:#fff;color:#1b3127;font-size:16px;line-height:1.5;font-weight:400}.builder-field textarea{resize:vertical}.builder .builder-hint{font-size:13px;color:#66786d;line-height:1.6}.builder-button{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid #ced9d2;border-radius:8px;padding:10px 16px;background:white;color:#214b39;text-decoration:none;font-weight:550;min-height:44px;font-size:14px}.builder-button--primary{background:#215d49;border-color:#215d49;color:white}.builder-button:hover{filter:brightness(.95)}@media(min-width:1500px){.builder-photo-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media(max-width:1100px){.builder{grid-template-columns:200px minmax(0,1fr)}.builder-photo-layout{grid-template-columns:minmax(190px,1fr) minmax(260px,1fr)}.builder-photo-grid{grid-template-columns:1fr}}@media(max-width:760px){.builder{display:block}.builder-sidebar{position:relative;height:auto;padding:20px}.builder-brand strong{display:inline;margin-left:9px}.builder-sidebar>.builder-overline,.builder-local{display:none}.builder-sidebar nav{display:flex;gap:8px;overflow:auto}.builder-sidebar nav button{white-space:nowrap;flex-shrink:0}.builder-main{padding:22px 18px 50px}.builder-photo-layout{grid-template-columns:1fr}.builder-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-height:400px;overflow:auto;padding:3px}.builder-photo-card img{height:110px}.builder-top,.builder-section-head{flex-wrap:wrap}}

.builder-workspace{border:0;padding:0;margin:0;min-width:0}.builder-actions{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.builder-icon-button{border:1px solid #cbd7cf;border-radius:8px;background:#fff;color:#294e3d;width:44px;height:44px;font-size:23px;display:inline-grid;place-items:center;flex-shrink:0}.builder-status{display:flex;align-items:center;gap:9px;min-height:48px;font-size:14px;color:#586b61;line-height:1.5;padding:10px 0}.builder-status-dot{width:7px;height:7px;border-radius:50%;background:#54856a;flex-shrink:0}.builder-status-dot[data-dirty=true]{background:#b17e23}.builder-error{position:relative;display:grid;gap:4px;background:#fff0ed;color:#8a3027;padding:16px 48px 16px 18px;border:1px solid #e9bcb5;border-radius:8px;margin:10px 0}.builder-error button{position:absolute;top:8px;right:10px;width:32px;height:32px;background:none;border:0;color:inherit;font-size:23px}.builder-recovery{display:flex;align-items:center;gap:14px;background:#e8f1ec;border:1px solid #c3d6ca;border-radius:9px;padding:16px;margin-bottom:20px}.builder-recovery p{flex:1;font-size:14px}.builder-sidebar-note{margin-top:auto;border-top:1px solid #ffffff25;padding:20px 8px 0}.builder-sidebar-note strong{font-size:14px;color:#fff}.builder-sidebar-note p{font-size:13px;line-height:1.7;color:#c2d7cc;margin:8px 0 14px}.builder-sidebar-preview{color:#fff;font-size:14px;background:none;border:0;padding:10px 0;text-align:left}.builder-upload{position:relative;cursor:pointer}.builder-upload input{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden;left:50%;bottom:0}.builder-upload:focus-within{outline:3px solid #438c70;outline-offset:3px}.builder-dropzone{display:grid;grid-template-columns:32px 1fr;align-items:center;gap:2px 12px;padding:18px 20px;border:1px dashed #aabfb1;border-radius:10px;background:#edf3ef;margin:0 0 26px;transition:background .15s,border-color .15s}.builder-dropzone[data-dragging=true]{background:#d2e8da;border:2px dashed #215d49}.builder-dropzone>span{font-size:27px;grid-row:span 2}.builder-dropzone p{font-size:14px}.builder-dropzone small{font-size:13px;color:#5b7465}.builder-search{margin-bottom:18px}.builder-detail{gap:18px}.builder-detail-heading h2{overflow-wrap:anywhere}.builder-detail-heading small{display:block;font-size:12px;color:#708177;overflow-wrap:anywhere}.builder-two-columns{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.builder-prices{border-top:1px solid #dce3df;padding-top:22px}.builder-prices p{font-size:13px;margin-bottom:15px}.builder-price-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.builder-money{position:relative;display:block}.builder-money input{padding-right:30px}.builder-money>span{position:absolute;right:12px;top:11px;font-size:16px;color:#63766b}.builder-field-error{font-size:12px;color:#ae3a2f}.builder input[aria-invalid=true]{border-color:#bf594d;background:#fff7f5}.builder-text-button{font-size:14px;color:#215d49;background:none;border:0;padding:14px 0 0;text-align:left;text-decoration:underline;text-underline-offset:4px}.builder-toggle{display:flex;align-items:center;gap:12px;font-size:15px;cursor:pointer}.builder-toggle input{accent-color:#215d49;width:20px;height:20px;flex-shrink:0}.builder-toggle small{display:block;font-size:12px;color:#6b7d72;margin-top:3px}.builder-details{border-top:1px solid #dce3df;padding-top:16px}.builder-details summary{font-size:14px;cursor:pointer;font-weight:550;padding:4px 0}.builder-details[open] summary{margin-bottom:18px}.builder-crop-preview{height:140px;overflow:hidden;margin:16px 0;border-radius:6px;background:#e8eeea}.builder-crop-preview img{height:100%;width:100%;object-fit:cover}.builder-range{display:grid;gap:14px;margin:12px 0 18px;font-size:14px}.builder-range>span{display:flex;justify-content:space-between;gap:15px}.builder-range strong{font-weight:500;color:#215d49;white-space:nowrap}.builder-range input{width:100%;accent-color:#215d49;cursor:pointer;min-height:24px}.builder-delete{background:none;border:0;border-top:1px solid #e4e8e5;color:#a63a30;font-size:14px;padding:18px 0 0;text-align:left}.builder-empty{display:grid;gap:14px;padding:30px 0}.builder-text-search{max-width:620px;margin:0 0 28px}.builder-text-layout{display:grid;grid-template-columns:190px minmax(0,1fr);gap:28px;align-items:start}.builder-groups{display:grid;gap:3px;position:sticky;top:22px}.builder-groups button{padding:12px 14px;border:0;border-radius:7px;text-align:left;font-size:14px;background:none;color:#536a5c}.builder-groups button[aria-current=page]{background:#deebe2;color:#1e5039;font-weight:600}.builder-fields{background:#fff;border:1px solid #dce3df;border-radius:12px;padding:24px;display:grid;gap:22px}.builder-fields .builder-section-head{margin:0 0 5px}.builder-text-field small{font-weight:400;color:#718076}.builder-placements{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.builder-placement{background:#fff;border:1px solid #dce3df;border-radius:11px;overflow:hidden;display:grid;gap:12px;padding:0 16px 18px}.builder-placement img{width:calc(100% + 32px);margin:0 -16px;max-width:none;height:160px;object-fit:cover}.builder-placement>span{font-size:15px;font-weight:600}.builder-placement select{background:#fff;border:1px solid #cbd7cf;border-radius:7px;min-height:44px;min-width:0;width:100%;padding:8px;font-size:14px;color:#294e3d}.builder-brand-images{margin-top:30px}.builder-card{border:1px solid #dce3df;background:#fff;border-radius:12px;padding:26px;display:flex;flex-direction:column;align-items:flex-start;gap:18px;min-width:0}.builder-card p{font-size:15px;line-height:1.7}.builder-card h2{margin:0}.builder-card>img{width:100%;height:230px;background:#f1f4f2;border-radius:8px}.builder-card small{font-size:13px;color:#687c6e}.builder-card .builder-field,.builder-card .builder-range{width:100%}.builder-card>.builder-overline{color:#5c7a68}.builder-design{align-items:start}.builder-format-row{display:flex;align-items:end;gap:10px;width:100%}.builder-format-row .builder-field{flex:1}.builder input.builder-color{width:100px;height:48px;padding:4px;cursor:pointer}.builder-export-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.builder-card--featured{border-color:#5c9875;background:#f7fbf8;box-shadow:inset 0 3px #215d49}.builder-card--featured .builder-button{margin-top:auto}.builder-info{padding:24px;border-radius:10px;border:1px solid #d7e0d9;background:#eaf0ed;margin-top:26px;max-width:1100px}.builder-info strong{font-size:15px}.builder-info p{font-size:14px;line-height:1.8;margin-top:8px}.builder-preview-dialog{color:#192d25;border:0;border-radius:12px;padding:0;width:calc(100vw - 32px);max-width:none;height:calc(100dvh - 32px);max-height:none;background:#dfe6e2;margin:16px;font:16px/1.5 var(--font-geist-sans),sans-serif;overflow:hidden}.builder-preview-dialog::backdrop{background:#081b15d9;backdrop-filter:blur(5px)}.builder-preview-dialog[open]{display:flex;flex-direction:column}.builder-preview-dialog>header{background:white;display:flex;justify-content:space-between;align-items:center;gap:15px;padding:16px 22px;flex-shrink:0}.builder-preview-dialog header small{display:block;color:#6d7d74;font-size:13px}.builder-preview-dialog header button[aria-pressed=true]{border-color:#215d49;background:#ecf5ef}.builder-preview-stage{padding:18px;min-height:0;flex:1;display:flex;justify-content:center}.builder-preview-stage iframe{width:100%;height:100%;border:0;background:#07130f;border-radius:8px}.builder-preview-stage[data-mobile=true] iframe{width:390px;max-width:100%}.product-price{padding:16px 0;margin:10px 0;border-top:1px solid #ffffff24;border-bottom:1px solid #ffffff24;display:grid;gap:6px}.product-price strong{font-size:26px;line-height:1.2;font-weight:500}.product-price small{font-size:12px;line-height:1.5;opacity:.65}.reel-progress i[data-running=true]{animation-duration:var(--builder-hero-duration,8.5s)}.exhibition[data-custom-accent=true] .kicker,.exhibition[data-custom-accent=true] .eyebrow{color:var(--builder-accent,#a8ba90)}.exhibition[data-custom-accent=true] .shop-filter[aria-pressed=true]{background:var(--builder-accent,#a8ba90);color:#11281b}.exhibition .service-offers .kicker{color:inherit}
@media(max-width:1200px){.builder-top{align-items:flex-start}.builder-top>.builder-actions{justify-content:flex-end;max-width:390px}.builder-placements{grid-template-columns:repeat(2,minmax(0,1fr))}.builder-text-layout{grid-template-columns:155px minmax(0,1fr);gap:18px}.builder-detail .builder-two-columns,.builder-price-grid{grid-template-columns:1fr}.builder-export-grid{gap:15px}}
@media(max-width:900px){.builder-top{flex-direction:column}.builder-top>.builder-actions{max-width:none;justify-content:flex-start}.builder-text-layout{grid-template-columns:1fr}.builder-groups{position:static;display:flex;flex-wrap:wrap}.builder-groups button{padding:9px 12px}.builder-design,.builder-export-grid{grid-template-columns:1fr}.builder-preview-dialog>header{flex-wrap:wrap;padding:10px}.builder-preview-dialog>header>.builder-actions{gap:5px}.builder-preview-dialog .builder-button{padding:8px 10px;font-size:13px}.builder-preview-stage{padding:8px}}
@media(max-width:760px){.builder-sidebar{gap:15px}.builder-sidebar-note{display:none}.builder-recovery{flex-wrap:wrap}.builder-recovery p{flex-basis:100%}.builder-dropzone{padding:14px;grid-template-columns:1fr}.builder-dropzone>span{display:none}.builder-top .builder-button{font-size:13px;padding:10px 12px}.builder-two-columns{grid-template-columns:1fr}.builder-detail .builder-two-columns,.builder-price-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.builder-placements{gap:12px}.builder-placement{padding:0 10px 12px}.builder-placement img{height:120px;width:calc(100% + 20px);margin:0 -10px}.builder-placement select{font-size:13px}.builder-fields{padding:18px}.builder-card{padding:20px}.builder-photo-grid{max-height:340px}.builder-preview-dialog{margin:6px;width:calc(100vw - 12px);height:calc(100dvh - 12px)}.builder-preview-dialog>header>div:first-child{display:none}}
@media(max-width:430px){.builder-detail .builder-two-columns,.builder-price-grid{grid-template-columns:1fr}.builder-top .builder-actions{gap:5px}.builder-top .builder-icon-button{width:36px}.builder-detail-image{height:180px}.builder-placements{grid-template-columns:1fr}}

.customer-voices{position:relative;padding:110px var(--gutter,40px) 100px;background:#e9e7dc;color:#1d3027;scroll-margin-top:90px;border-top:1px solid #263e291a;isolation:isolate}
.customer-voices__inner{max-width:1220px;margin:0 auto}
.customer-voices__heading{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:42px}
.customer-voices__eyebrow{margin:0 0 28px;font:600 10px/1.5 var(--mono,monospace);letter-spacing:.19em;color:#64755b}
.customer-voices h2{margin:0;max-width:900px;font-size:clamp(42px,5.7vw,82px);line-height:1.03;font-weight:450;letter-spacing:-.057em;text-wrap:balance;overflow-wrap:anywhere}
.customer-voices h2 em{font-family:Georgia,'Times New Roman',serif;font-weight:400;letter-spacing:-.045em;color:#53664b}
.customer-voices__intro{font-size:16px;line-height:1.7;color:#5c685f;max-width:600px;margin:28px 0 0;white-space:pre-wrap}
.customer-voices__pause{display:inline-flex;align-items:center;gap:9px;min-height:44px;flex-shrink:0;padding:10px 0;background:none;border:0;border-bottom:1px solid #89967c;color:#475b44;font-size:12px;cursor:pointer;white-space:nowrap}
.customer-voices__pause>span{font-size:18px;line-height:1}.customer-voices__pause:hover{color:#1b3828}.customer-voices__pause:focus-visible{outline:2px solid #466944;outline-offset:5px}
.customer-voices__wall{columns:3;column-gap:22px;padding:38px 12px 52px;position:relative}
.customer-voices__wall::before,.customer-voices__wall::after{content:'';position:absolute;left:0;right:0;height:24px;z-index:1;pointer-events:none}
.customer-voices__wall::before{top:0;background:linear-gradient(#e9e7dc,transparent)}.customer-voices__wall::after{bottom:0;background:linear-gradient(transparent,#e9e7dc)}
.customer-voices__card{display:inline-block;width:100%;padding:30px 28px 28px;margin:0 0 22px;background:#f7f6ef;border:1px solid #d7ddcf;box-shadow:0 8px 26px #1e382407;break-inside:avoid;vertical-align:top;animation:customer-card-drift 15s ease-in-out infinite;overflow-wrap:anywhere}
.customer-voices__card:nth-child(3n+2){margin-top:28px;animation-direction:reverse}.customer-voices__card:nth-child(3n){background:#f2f3e9}
.customer-voices__quote-mark{display:block;font-family:Georgia,serif;font-size:53px;line-height:.8;color:#859475;margin-bottom:12px}
.customer-voices__quote{font-size:15px;line-height:1.85;color:#48554b;margin:0 0 30px;padding:0;white-space:pre-wrap}
.customer-voices__person{display:flex;align-items:center;gap:12px}.customer-voices__person>div{min-width:0}.customer-voices__person strong{font-size:13px;line-height:1.5;font-weight:600;display:block;color:#283d2c}
.customer-voices__person div>span{display:block;margin-top:4px;font:500 9px/1.65 var(--mono,monospace);text-transform:uppercase;letter-spacing:.13em;color:#657260}
.customer-voices__avatar{width:44px;height:44px;flex:0 0 44px;border-radius:50%;object-fit:cover;background:#e4e9dc}.customer-voices__initials{display:grid;place-items:center;font-size:13px;letter-spacing:.02em;color:#4e6545;border:1px solid #d3ddc9}
.customer-voices__bottom{display:flex;align-items:center;justify-content:center;gap:18px;max-width:460px;margin:0 auto;color:#708066}.customer-voices__bottom span{height:1px;flex:1;background:#bbc5b0}.customer-voices__bottom i{font:italic 15px Georgia,serif;white-space:nowrap}
.customer-voices__preview-note{font-size:12px;line-height:1.6;padding:10px 14px;margin:0 0 26px;border:1px dashed #8e9c80;border-radius:5px;color:#425438;background:#f5f6ed}
.customer-voices__draft{display:inline-block;font-size:10px;line-height:1.6;color:#6d674c;margin-top:6px;padding:2px 6px;border:1px solid #d9d3bc;border-radius:3px;background:#f3efdf}
.customer-voices[data-paused=true] .customer-voices__card,.customer-voices__wall:hover .customer-voices__card,.customer-voices__wall:focus-within .customer-voices__card{animation-play-state:paused}
.customer-voices[data-count='1'] .customer-voices__wall,.customer-voices[data-count='2'] .customer-voices__wall{columns:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));align-items:start;max-width:960px;margin:auto}.customer-voices[data-count='1'] .customer-voices__wall{max-width:700px;grid-template-columns:1fr}.customer-voices[data-count='1'] .customer-voices__card{animation:none}
@keyframes customer-card-drift{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}
.builder-voices__settings{margin-bottom:28px}.builder-voices__settings>details{width:100%}.builder-voices__edit-layout{display:grid;grid-template-columns:240px minmax(0,1fr);gap:22px;align-items:start;margin:26px 0 46px}
.builder-voices__list{display:grid;gap:8px;position:sticky;top:24px;max-height:75vh;overflow-y:auto;padding:2px}.builder-voices__entry{display:flex;gap:12px;align-items:flex-start;text-align:left;border:1px solid #d8e1d8;background:#fff;padding:16px 14px;border-radius:8px;color:#3f5747;width:100%;overflow-wrap:anywhere}.builder-voices__entry>span{font-size:11px;color:#7a8c7f;padding-top:2px}.builder-voices__entry>div{min-width:0}.builder-voices__entry strong{font-size:14px;font-weight:550;display:block}.builder-voices__entry small{display:block;font-size:11px;margin-top:5px;line-height:1.6}.builder-voices__entry[aria-pressed=true]{border-color:#508060;background:#edf4e9;box-shadow:inset 3px 0 #508060}
.builder-voices__detail>.builder-section-head,.builder-voices__detail>.builder-two-columns{width:100%}.builder-voices__detail .builder-section-head{margin:0}.builder-voices__detail .builder-section-head h2{overflow-wrap:anywhere}
.builder-voices__photo{width:100%;display:flex;gap:16px;align-items:center;padding:20px 0;border-block:1px solid #e0e6de}.builder-voices__photo>img,.builder-voices__photo>span{flex:0 0 72px;width:72px;height:72px;object-fit:cover;border-radius:50%;background:#e8eee2}.builder-voices__photo>span{display:grid;place-items:center;font-size:23px;color:#637653}.builder-voices__photo>div{min-width:0}.builder-voices__photo strong{font-size:14px}.builder-voices__photo p{font-size:12px;margin:5px 0 12px}
.builder-voices__empty{background:#edf2e9;border:1px dashed #aebda0;border-radius:12px;padding:34px;margin:24px 0 40px;max-width:850px}.builder-voices__empty h3{font-size:25px;line-height:1.4;max-width:620px;margin:12px 0;letter-spacing:-.025em}.builder-voices__empty p{max-width:650px;font-size:15px;line-height:1.75;margin-bottom:22px}
.builder-voices__preview{margin-top:40px}.builder-voices__preview>.customer-voices{border-radius:12px;overflow:hidden;padding:50px 30px}.builder .customer-voices h2{font-size:clamp(36px,4vw,60px);font-weight:450;line-height:1.08;letter-spacing:-.05em;color:#1d3027}.builder .customer-voices__eyebrow{font-size:10px;margin:0 0 20px;color:#64755b}.builder .customer-voices__quote{font-size:14px;line-height:1.85;color:#48554b}.builder .customer-voices__preview-note{font-size:12px;color:#425438}.builder .customer-voices__card{padding:24px 20px}.builder .customer-voices__wall{column-gap:15px;padding-inline:3px}.builder .customer-voices__heading{align-items:flex-start;flex-wrap:wrap}.builder .customer-voices__intro{font-size:15px;color:#5c685f}
@media(max-width:1100px){.builder-voices__edit-layout{grid-template-columns:1fr}.builder-voices__list{position:static;display:flex;max-height:none;overflow-x:auto}.builder-voices__entry{min-width:205px;max-width:260px}.builder .customer-voices__wall{columns:2}.builder .customer-voices[data-count='1'] .customer-voices__wall,.builder .customer-voices[data-count='2'] .customer-voices__wall{columns:auto}}
@media(max-width:800px){.customer-voices{padding:80px 24px 70px}.customer-voices__heading{align-items:flex-start;flex-direction:column;gap:24px;margin-bottom:10px}.customer-voices__wall{columns:2;column-gap:16px;padding-inline:0}.customer-voices__card{padding:26px 22px}.customer-voices h2{font-size:clamp(40px,7vw,65px)}}
@media(max-width:540px){.customer-voices{padding:64px 20px}.customer-voices__wall,.builder .customer-voices__wall{columns:1;padding-top:24px}.customer-voices__card:nth-child(3n+2){margin-top:0}.customer-voices[data-count='2'] .customer-voices__wall{grid-template-columns:1fr}.customer-voices h2,.builder .customer-voices h2{font-size:42px}.customer-voices__quote{font-size:15px}.builder-voices__preview>.customer-voices{padding:30px 16px}.builder-voices__empty{padding:24px}.builder-voices__photo{align-items:flex-start}.builder-voices__photo>img,.builder-voices__photo>span{width:52px;height:52px;flex-basis:52px}}
@media(prefers-reduced-motion:reduce){.customer-voices__card{animation:none}.customer-voices__pause{display:none}}
.builder .customer-voices__quote{margin:0 0 28px}.builder .customer-voices__preview-note{margin:0 0 26px}.builder .customer-voices__intro{margin:24px 0 0}.builder .customer-voices__pause{font-size:12px}

:root{--studio-ink:#18372a;--studio-paper:#f5f5ee;--studio-green:#274f3b;--studio-line:#d7dfd2;--studio-muted:#60715f}
.studio-bar{min-height:78px;background:#173529;color:#f6f7ed;padding:18px max(24px,4vw);display:flex;justify-content:space-between;align-items:center;gap:22px;position:relative;z-index:30;font:16px/1.5 var(--sans,Arial),sans-serif}.studio-brand{font-size:23px;white-space:nowrap;font-weight:500;letter-spacing:-.04em}.studio-brand em{font-family:Georgia,serif;font-weight:400}.studio-bar nav{display:flex;align-items:center;flex-wrap:wrap;gap:24px;font-size:14px}.studio-bar nav a,.studio-bar nav button{min-height:44px;display:inline-flex;align-items:center;border:0;background:none;color:inherit}.studio-bar nav a:hover,.studio-bar nav button:hover{color:#d2e6b7}.studio-bar--home{position:fixed;bottom:18px;left:20px;right:20px;border:1px solid #ffffff40;border-radius:12px;box-shadow:0 9px 40px #06170e55;min-height:60px;padding:10px 24px;background:#173529eb;backdrop-filter:blur(14px)}.studio-bar--home .studio-brand{font-size:19px}.studio-test{background:#e8ecd9;color:#425335;text-align:center;padding:9px 20px;font-size:12px;letter-spacing:.06em;line-height:1.6}.studio-test--home{position:fixed;z-index:35;bottom:0;left:0;right:0;padding:2px;font-size:10px}.studio-main{min-height:calc(100vh - 114px);background:var(--studio-paper);color:var(--studio-ink);padding:52px max(24px,5vw) 100px;font:16px/1.65 var(--sans,Arial),sans-serif}.studio-main *{box-sizing:border-box}.studio-main h1{font-size:clamp(38px,5.8vw,76px);line-height:1.05;font-weight:450;letter-spacing:-.055em;margin:14px 0 22px}.studio-main h1 em{font-family:Georgia,serif;font-weight:400;color:#62764d}.studio-main h2{font-size:25px;line-height:1.25;letter-spacing:-.025em;font-weight:550;margin:0}.studio-main p{margin:0;color:#586c5b;line-height:1.7}.studio-main a:not(.studio-button){text-underline-offset:5px}.studio-main button,.studio-main input,.studio-main textarea,.studio-main select{font:inherit}.studio-main button:disabled,.studio-builder-tools button:disabled{opacity:.5;cursor:not-allowed}.studio-main :focus-visible,.studio-bar :focus-visible{outline:3px solid #8ba859;outline-offset:4px}.studio-eyebrow{font:600 12px/1.5 var(--mono,monospace);letter-spacing:.16em;color:#6c7f54}.studio-heading{max-width:1100px;margin:12px auto 45px}.studio-heading p{max-width:640px}.studio-heading--compact{max-width:none}.studio-heading--compact h1{font-size:clamp(38px,4vw,60px)}.studio-panel{background:#fffef8;border:1px solid var(--studio-line);border-radius:14px;padding:28px;display:flex;flex-direction:column;gap:22px;min-width:0;box-shadow:0 8px 32px #213c1c04}.studio-panel form{display:flex;flex-direction:column;gap:20px}.studio-panel hr{width:100%;border:0;border-top:1px solid var(--studio-line)}.studio-button{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:var(--studio-green);color:#fff!important;min-height:48px;border:1px solid var(--studio-green);padding:12px 20px;border-radius:7px;cursor:pointer;text-decoration:none!important;font-size:15px;font-weight:500}.studio-button:hover{background:#173925}.studio-button--light{background:#f3f5eb;color:var(--studio-green)!important;border-color:#d0dcc5}.studio-field{display:grid;gap:8px;font-size:14px;color:#3e553e;min-width:0}.studio-field input,.studio-field textarea,.studio-field select{width:100%;min-width:0;min-height:46px;padding:10px 12px;border:1px solid #cad6bf;border-radius:6px;background:#fff;color:#173529;font-size:16px}.studio-field textarea{resize:vertical}.studio-small{font-size:13px!important;line-height:1.65}.studio-two{display:grid;grid-template-columns:1fr 1fr;gap:14px}.studio-actions{display:flex;gap:12px;flex-wrap:wrap}.studio-auth{max-width:1140px;margin:60px auto;display:grid;grid-template-columns:1.2fr 1fr;align-items:center;gap:80px}.studio-auth__intro p{max-width:420px;margin-bottom:26px}.studio-auth .studio-panel{padding:38px}.studio-auth a{color:#406831}.studio-notice-wrap{background:var(--studio-paper);position:sticky;top:0;z-index:45;padding:12px 24px}.studio-notice{position:relative;padding:16px 48px 16px 20px;background:#e9f1df;color:#35532d;border:1px solid #c3d5b2;border-radius:8px;font:15px/1.6 var(--sans,Arial),sans-serif;margin-bottom:20px}.studio-notice--error{background:#fff0e9;border-color:#e9c2a9;color:#813d25}.studio-notice button{position:absolute;right:12px;top:10px;background:none;border:0;color:inherit;font-size:24px;cursor:pointer}.studio-notice-wrap .studio-notice{max-width:1300px;margin:0 auto}.studio-shop-layout{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(310px,1fr);gap:30px;max-width:1440px;margin:auto;align-items:start}.studio-filters{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}.studio-filters button,.studio-admin-nav button{background:transparent;color:#546b43;border:1px solid #ced9c3;padding:9px 15px;min-height:44px;border-radius:24px;cursor:pointer;font-size:14px}.studio-filters button[aria-pressed=true],.studio-admin-nav button[aria-pressed=true]{background:#284d36;border-color:#284d36;color:#fff}.studio-products{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.studio-product{border:1px solid #d4ddcb;padding:0;background:#fffdf5;color:#243f2a;border-radius:10px;overflow:hidden;text-align:left;cursor:pointer;transition:transform .2s,box-shadow .2s}.studio-product:hover{transform:translateY(-3px);box-shadow:0 14px 25px #25431e17}.studio-product[aria-pressed=true]{outline:2px solid #597e36;outline-offset:3px}.studio-product img{width:100%;height:210px;object-fit:cover;display:block}.studio-product>span{display:grid;gap:5px;padding:16px}.studio-product small{font-size:12px;color:#7a866d}.studio-product strong{font-size:16px;line-height:1.5;font-weight:550}.studio-product-detail{position:sticky;top:20px;gap:20px}.studio-product-detail>img{width:100%;height:240px;object-fit:contain;background:#e7ebdf;border-radius:7px}.studio-variants{border:0;padding:0;margin:0;display:grid;gap:10px;min-width:0}.studio-variants legend{font-size:15px;font-weight:550;margin-bottom:12px}.studio-variants label{display:flex;align-items:center;gap:11px;padding:14px 12px;border:1px solid #d4ddc9;border-radius:8px;cursor:pointer;min-width:0}.studio-variants label[data-active=true]{background:#eef3e5;border-color:#7e9b5b}.studio-variants input{width:18px;height:18px;accent-color:#507230;flex-shrink:0}.studio-variants label>span{flex:1;min-width:0}.studio-variants strong{font-size:14px;line-height:1.4;display:block}.studio-variants small{display:block;font-size:12px;color:#77816f;margin-top:4px}.studio-variants b{font-size:14px;white-space:nowrap;font-weight:500}.studio-text-link{color:#41632f;font-size:14px;text-decoration:underline}.studio-checkout,.studio-account-layout{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,1fr);gap:26px;align-items:start;max-width:1400px;margin:auto}.studio-cart-line{display:flex;align-items:center;gap:16px;padding:0 0 22px;border-bottom:1px solid var(--studio-line)}.studio-cart-line img{width:90px;height:100px;object-fit:cover;border-radius:6px}.studio-cart-line>div{flex:1;min-width:0}.studio-cart-line strong{font-size:16px;line-height:1.4}.studio-cart-line p,.studio-cart-line small{font-size:13px}.studio-cart-line .studio-field{width:76px;flex-shrink:0}.studio-remove{background:none;border:0;color:#876048;font-size:27px!important;min-width:32px;cursor:pointer}.studio-totals{border-top:1px solid var(--studio-line);padding-top:18px;display:grid;gap:8px}.studio-totals>span,.studio-totals>strong{display:flex;justify-content:space-between;gap:15px;font-size:15px}.studio-totals>strong{font-size:20px}.studio-totals b{font-weight:500}.studio-check{display:flex;gap:12px;align-items:flex-start;font-size:14px;line-height:1.7}.studio-check input{width:19px;height:19px;accent-color:#476b32;flex-shrink:0;margin-top:4px}.studio-order{margin-bottom:22px}.studio-order>header{display:flex;align-items:center;justify-content:space-between;gap:18px}.studio-badge{background:#e9f0df;color:#4f6b3c;padding:7px 12px;font-size:12px;border-radius:30px}.studio-order-line{display:flex;justify-content:space-between;gap:20px;padding-bottom:18px;border-bottom:1px solid var(--studio-line)}.studio-order-line p{font-size:14px}.studio-order-line b{white-space:nowrap}.studio-order details{font-size:14px}.studio-order summary{cursor:pointer;margin-bottom:10px;color:#406132}.studio-order ul{padding-left:20px;font-size:13px;color:#66795c}.studio-admin-nav{display:flex;gap:9px;align-items:center;flex-wrap:wrap;padding-bottom:26px;border-bottom:1px solid var(--studio-line);margin-bottom:30px}.studio-admin-nav a{margin-left:auto;color:#40662e;font-size:15px}.studio-section-heading{display:flex;justify-content:space-between;gap:20px;align-items:center;margin:25px 0}.studio-price-list{display:grid;gap:0}.studio-price-row{display:grid;grid-template-columns:minmax(170px,1.3fr) repeat(3,minmax(110px,1fr));gap:18px;padding:20px 0;border-bottom:1px solid var(--studio-line);align-items:center}.studio-price-row>strong{font-size:15px}.studio-file-list{display:grid}.studio-file-list>div{display:grid;grid-template-columns:1fr 1.5fr;gap:18px;padding:17px 0;border-bottom:1px solid var(--studio-line);font-size:14px;overflow-wrap:anywhere}.studio-file-list span{color:#6a785e}.studio-builder-tools{padding:18px 28px;display:flex;align-items:center;gap:22px;background:#eef2e4;color:#24452d;font:14px/1.5 var(--sans,Arial),sans-serif}.studio-builder-tools p{flex:1}.studio-builder-tools .studio-button{flex-shrink:0}.studio-builder-tools+.builder .builder-sidebar-note{display:none}.studio-bar~.exhibition .footer{padding-bottom:130px}
@media(max-width:1100px){.studio-auth{gap:35px}.studio-main{padding-inline:24px}.studio-shop-layout{grid-template-columns:1fr minmax(300px,.9fr);gap:22px}.studio-products{grid-template-columns:1fr}.studio-price-row{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.studio-price-row>strong{grid-column:1/-1}.studio-cart-line{flex-wrap:wrap}.studio-checkout,.studio-account-layout{grid-template-columns:1fr 1fr}.studio-bar nav{gap:15px}}
@media(max-width:760px){.studio-bar{flex-direction:column;align-items:flex-start;gap:8px;padding:15px 20px}.studio-bar nav{gap:16px}.studio-bar--home .studio-brand{display:none}.studio-bar--home{left:10px;right:10px;bottom:28px;min-height:50px;padding:5px 12px}.studio-bar--home nav{gap:13px;font-size:12px}.studio-test--home{font-size:9px}.studio-main{padding:28px 18px 70px}.studio-auth{grid-template-columns:1fr;gap:25px;margin:10px auto}.studio-auth__intro h1{font-size:44px}.studio-auth__intro p{font-size:15px}.studio-auth .studio-panel{padding:25px}.studio-shop-layout,.studio-checkout,.studio-account-layout{grid-template-columns:1fr}.studio-products{grid-template-columns:repeat(2,minmax(0,1fr));max-height:420px;overflow:auto;padding:4px}.studio-product img{height:150px}.studio-product>span{padding:12px}.studio-product strong{font-size:14px}.studio-product-detail{position:static}.studio-panel{padding:22px}.studio-order>header{align-items:flex-start;flex-direction:column}.studio-badge{font-size:12px}.studio-admin-nav a{margin-left:0;padding:12px 0}.studio-price-row{gap:8px}.studio-price-row .studio-field{font-size:12px}.studio-price-row input{padding:9px 7px}.studio-file-list>div{grid-template-columns:1fr;gap:5px}.studio-builder-tools{flex-wrap:wrap;padding:16px}.studio-builder-tools p{flex-basis:100%;order:3}.studio-builder-tools .studio-button{margin-left:auto}}
@media(prefers-reduced-motion:reduce){.studio-product{transition:none}.studio-product:hover{transform:none}}
.studio-quote-summary{display:grid;gap:12px;padding:18px;background:#edf2e5;border-radius:7px;border:1px solid #d0ddbf}.studio-quote-summary h3{font-size:16px;margin:0}.studio-quote-summary p{font-size:14px}.studio-quote-summary small{font-size:12px;color:#65785a}

/* The existing forest / landscape identity, with one clear navigation layer. */
.exhibition .site-header{gap:24px;grid-template-columns:minmax(230px,1fr) auto auto}
.exhibition .primary-nav{gap:22px}
.exhibition .primary-nav a,.exhibition .header-request{font:500 14px/1.3 var(--sans,Arial),sans-serif;text-transform:none;letter-spacing:0}
.exhibition .header-actions{gap:22px}
.exhibition .menu-toggle,.exhibition .menu-close{display:inline-flex;align-items:center;justify-content:center;gap:14px;min-width:108px;min-height:48px;padding:10px 18px;border:1px solid #ffffff40;border-radius:8px;color:inherit;background:#ffffff0c;font:500 14px/1 var(--sans,Arial),sans-serif;letter-spacing:0;text-transform:none;transition:background .25s,border-color .25s}
.exhibition .menu-toggle:hover,.exhibition .menu-close:hover{background:#ffffff1a;border-color:#ffffff90}
.exhibition .menu-toggle span,.exhibition .menu-close span{position:static;width:auto;height:auto;overflow:visible;clip:auto}
.exhibition .menu-toggle svg,.exhibition .menu-close svg,.studio-motif__close svg{width:22px;height:22px;flex-shrink:0;stroke:currentColor;stroke-width:1.5;stroke-linecap:round}
.exhibition .site-header--dark .menu-toggle{border-color:#18372a40;background:#18372a08}
.exhibition .menu-panel{display:grid;grid-template-columns:38% 1fr;gap:0;align-items:stretch;padding:0;background:#10221a;clip-path:inset(0);opacity:0;transform:translateY(-18px);transition:opacity .35s ease,transform .6s cubic-bezier(.22,1,.36,1),visibility .6s;isolation:isolate}
.exhibition .menu-panel[data-open=true]{opacity:1;transform:translateY(0);clip-path:inset(0)}
.menu-landscape{position:relative;min-height:100%;overflow:hidden;opacity:0;transition:opacity .5s .1s}
.menu-panel[data-open=true] .menu-landscape{opacity:1}
.menu-landscape>img,.menu-landscape>picture,.menu-landscape>picture img{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover}
.menu-landscape>img,.menu-landscape>picture img{transform:scale(1.08);transition:transform 1.3s cubic-bezier(.22,1,.36,1)}
.menu-panel[data-open=true] .menu-landscape>img,.menu-panel[data-open=true] .menu-landscape>picture img{transform:scale(1)}
.menu-landscape::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,#10221a05 20%,#10221ae6)}
.menu-landscape>div{position:absolute;z-index:1;left:12%;right:10%;bottom:9%}
.menu-landscape span{font:500 12px/1.5 var(--mono,monospace);letter-spacing:.16em;color:#e6e8db}
.menu-landscape p{font-size:clamp(24px,2.8vw,44px);line-height:1.18;letter-spacing:-.035em;margin-top:24px;color:#f7f4ec}
.menu-landscape em{font-family:Georgia,serif;font-weight:400}
.menu-content{align-self:center;padding:110px clamp(28px,6vw,105px) 48px;min-width:0}
.menu-content>.kicker{font-size:12px;letter-spacing:.16em;color:#b9c4ab;margin:0 0 30px}
.exhibition .menu-panel nav{display:block}
.exhibition .menu-panel nav a{display:grid;grid-template-columns:28px 1fr 28px;gap:14px;min-height:76px;padding:14px 0;border-color:#ffffff24;opacity:0;transform:translateY(22px);transition:transform .65s cubic-bezier(.22,1,.36,1),opacity .45s ease,color .2s}
.exhibition .menu-panel[data-open=true] nav a{opacity:1;transform:translateY(0);animation:none}
.exhibition .menu-panel nav small{font:12px/1.4 var(--mono,monospace);color:#a6b79b}
.exhibition .menu-panel nav span{font:400 clamp(25px,3.1vw,48px)/1.2 var(--sans,Arial),sans-serif;letter-spacing:-.045em}
.exhibition .menu-panel nav i{font-size:24px;opacity:.6}
.exhibition .menu-panel nav a:hover{color:#d1dec1}
.exhibition .menu-panel nav a:hover i{transform:translate(3px,-3px)}
.exhibition .menu-close{top:26px;right:32px;z-index:3;color:#f5f2e9}
.menu-account{display:flex;flex-wrap:wrap;gap:8px 26px;margin:30px 0 18px}
.menu-account a,.menu-account button{display:flex;align-items:center;min-height:44px;background:none;border:0;color:#f6f3eb;font:500 14px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.menu-account button:disabled{opacity:.5}
.exhibition .menu-contact{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px 26px}
.exhibition .menu-contact a{font-size:14px;color:#a6b49f;overflow-wrap:anywhere}
.exhibition .menu-panel :focus-visible{outline:2px solid #e6f0d8;outline-offset:5px;border-radius:2px}
.exhibition .scroll-progress{display:none}
.work-media{cursor:pointer}
.work-photo-link{display:block;width:100%;height:100%;color:inherit}
.work-photo-link:focus-visible{outline:3px solid #fff;outline-offset:-8px}
.print-experience{width:min(540px,44vw);padding:24px;background:#f5f3ec;color:#25362a;border:1px solid #ffffff40}
.print-experience__heading{font-size:12px!important;color:#526049}
.print-experience__motifs{margin-top:20px}
.print-experience__motifs strong{font-size:14px}
.print-experience__formats legend{font-size:14px}
.print-experience__formats label span{font-size:13px}
.print-experience>p{font-size:12px!important;line-height:1.6;color:#687164}
.studio-room{min-width:0;width:100%;color:#26372b}
.studio-room__tabs{display:flex;gap:4px;flex-wrap:wrap;margin:0 0 14px}
.studio-room__tabs button{font:500 14px/1.4 var(--sans,Arial),sans-serif;border:1px solid transparent;border-radius:5px;background:transparent;color:#64705d;min-height:44px;padding:10px 13px;cursor:pointer;transition:color .2s,background .2s}
.studio-room__tabs button[aria-pressed=true]{color:#233c2d;background:#e2e7da;border-color:#c8d2be}
.studio-room__tabs button:focus-visible{outline:2px solid #537049;outline-offset:3px}
.studio-room__canvas{position:relative;width:100%;aspect-ratio:3/2;overflow:hidden;background:#e8e6dd;border-radius:5px}
.studio-room__scene{position:absolute;inset:0;animation:room-appear .45s ease-out}
.studio-room__backdrop{display:block;width:100%;height:100%;object-fit:cover}
.studio-room__print{position:absolute;left:50%;top:34%;transform:translate(-50%,-50%);width:var(--print-width);aspect-ratio:var(--print-ratio);padding:1.4%;background:#fffdf8;border:3px solid #3b352b;box-shadow:2px 5px 7px #28281f40,0 1px 2px #0004;transition:width .4s ease,aspect-ratio .4s ease}
.studio-room__print img{display:block;width:100%;height:100%;object-fit:contain}
.studio-room__original{display:block;width:100%;height:100%;object-fit:contain;padding:14px;animation:room-appear .35s ease-out}
.studio-room__note,.studio-main .studio-room__note{margin:12px 0 0;font:12px/1.7 var(--sans,Arial),sans-serif;color:#687161}
@keyframes room-appear{from{opacity:0}to{opacity:1}}
.collection{max-width:1440px;margin:0 auto}
.collection-heading{display:grid;grid-template-columns:1.3fr 1fr;gap:50px;align-items:end;max-width:none;margin:22px 0 52px}
.collection-heading h1{margin-bottom:0}
.collection-heading>p{max-width:420px;justify-self:end;padding-bottom:5px;font-size:16px}
.collection-toolbar{display:flex;justify-content:space-between;align-items:center;gap:20px;border-top:1px solid #d3dccd;padding:24px 0 32px}
.collection-toolbar .studio-filters{margin:0}
.collection-toolbar>span{font-size:13px;color:#6a765f;white-space:nowrap}
.collection-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:42px 28px}
.collection-card{display:block;min-width:0;padding:0;border:0;background:none;color:#1e3425;text-align:left;cursor:pointer}
.collection-card__image{display:block;position:relative;overflow:hidden;aspect-ratio:4/3;background:#dce3d5;border-radius:6px}
.collection-card__image>img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.22,1,.36,1)}
.collection-card__image>span{position:absolute;inset:auto 0 0;display:flex;align-items:center;justify-content:space-between;padding:36px 22px 18px;background:linear-gradient(transparent,#0d1d16b8);color:#fff;font-size:14px;opacity:0;transform:translateY(8px);transition:opacity .3s,transform .3s}
.collection-card__image b{font-size:23px;font-weight:400}
.collection-card:hover .collection-card__image>img{transform:scale(1.04)}
.collection-card:is(:hover,:focus-visible) .collection-card__image>span{opacity:1;transform:translateY(0)}
.collection-card__caption{display:flex;justify-content:space-between;gap:18px;align-items:center;padding:18px 0 0}
.collection-card__caption>span{display:grid;gap:5px}
.collection-card small{font-size:12px;color:#748066;letter-spacing:.035em}
.collection-card strong{font-size:18px;font-weight:500;line-height:1.4;letter-spacing:-.02em}
.collection-card i{font:22px/1 var(--sans,Arial),sans-serif;color:#6f845b}
.collection-footer{display:flex;justify-content:space-between;flex-wrap:wrap;gap:22px;margin-top:65px;padding:32px 0 0;border-top:1px solid #cfd8c9;font-size:14px;color:#66755b}
.collection-notice{margin-bottom:25px!important}
.studio-motif{position:fixed;inset:0;max-width:min(1380px,calc(100vw - 64px));width:100%;max-height:calc(100dvh - 64px);padding:0;border:0;border-radius:12px;background:#f7f6ef;color:#243b2a;overflow:auto;overscroll-behavior:contain;box-shadow:0 30px 100px #06150f60;font:16px/1.65 var(--sans,Arial),sans-serif}
.studio-motif::backdrop{background:#071b13c4;backdrop-filter:blur(7px)}
.studio-motif[open]{animation:product-enter .45s cubic-bezier(.22,1,.36,1)}
@keyframes product-enter{from{opacity:0;transform:translateY(24px) scale(.985)}to{opacity:1;transform:none}}
.studio-motif__sheet{position:relative;display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,1fr);min-height:620px}
.studio-motif__close{position:absolute;top:18px;right:24px;z-index:2;display:flex;align-items:center;gap:10px;padding:8px 12px;min-height:44px;background:#f7f6ef;border:1px solid #d4dccb;border-radius:6px;color:#344832;font:500 14px/1 var(--sans,Arial),sans-serif;cursor:pointer}
.studio-motif__visual{background:#eceee4;display:flex;flex-direction:column;justify-content:center;gap:28px;padding:70px 30px 38px}
.studio-motif__credit{font:12px/1.5 var(--mono,monospace);color:#7f8b71;letter-spacing:.12em}
.studio-motif__details{display:flex;flex-direction:column;gap:20px;padding:85px 32px 36px}
.studio-motif__details h2{font-size:clamp(26px,3vw,38px);font-weight:450;line-height:1.15;letter-spacing:-.04em}
.studio-motif__details p{font-size:15px}
.studio-motif__details .studio-field{max-width:115px}
.studio-motif__notice{padding:14px;background:#e8efdf;border:1px solid #c7d5b8;border-radius:6px;color:#38522b!important}
@media(max-width:1250px){.exhibition .primary-nav{display:none}.exhibition .site-header{grid-template-columns:1fr auto}.collection-grid{gap:30px 20px}.studio-motif__sheet{grid-template-columns:1.2fr 1fr}.studio-motif__details{padding-inline:24px}}
@media(max-width:900px){.print-experience{width:min(600px,90vw);justify-self:center}.menu-content{padding:105px 28px 35px}.exhibition .menu-panel{grid-template-columns:30% 1fr}.menu-landscape p{font-size:27px}.menu-landscape>div{left:22px;right:18px}.collection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.collection-heading{gap:30px}.studio-motif__sheet{grid-template-columns:1fr}.studio-motif{max-width:min(700px,calc(100vw - 32px));max-height:calc(100dvh - 32px)}.studio-motif__visual{padding:72px 24px 24px;gap:16px}.studio-motif__details{padding:30px 24px}.studio-motif__credit{display:none}}
@media(max-width:600px){.exhibition .site-header{gap:12px}.exhibition .header-actions{gap:10px}.exhibition .header-request{display:none}.exhibition .menu-toggle{min-width:92px;min-height:44px;padding:9px 12px;gap:10px}.exhibition .menu-panel{display:block}.menu-landscape{display:none}.menu-content{padding:96px 24px 28px}.exhibition .menu-close{top:22px;right:22px;min-height:44px}.exhibition .menu-panel nav a{min-height:67px;grid-template-columns:24px 1fr 24px;gap:10px}.exhibition .menu-panel nav span{font-size:27px}.menu-content>.kicker{margin-bottom:20px}.menu-account{gap:3px 24px;margin:20px 0 12px}.exhibition .menu-contact{gap:0 20px}.studio-room__tabs{gap:2px;margin-bottom:10px}.studio-room__tabs button{font-size:13px;padding:9px 10px}.studio-room__print{border-width:2px}.print-experience{width:100%;padding:20px}.collection-heading{display:block;margin:10px 0 34px}.collection-heading>p{margin-top:22px;font-size:15px}.collection-toolbar{align-items:flex-start;flex-direction:column;gap:12px;padding:22px 0}.collection-toolbar .studio-filters{gap:7px}.collection-toolbar .studio-filters button{padding:8px 12px;font-size:13px}.collection-grid{gap:28px 14px}.collection-card strong{font-size:15px}.collection-card small{font-size:12px}.collection-card__caption{padding-top:12px;gap:8px;align-items:start}.collection-card__caption i{font-size:18px}.collection-card__image>span{display:none}.studio-motif{max-width:calc(100vw - 20px);max-height:calc(100dvh - 20px);border-radius:9px}.studio-motif__close{right:15px;top:15px}.studio-motif__visual{padding:70px 16px 20px}.studio-motif__details{padding:26px 20px 30px}.collection-footer{margin-top:45px;gap:16px}.collection-footer span{order:3;flex-basis:100%}}
@media(prefers-reduced-motion:reduce){.exhibition .menu-panel,.menu-landscape,.menu-landscape>picture img,.exhibition .menu-panel nav a,.studio-room__print,.collection-card__image>img,.collection-card__image>span{transition:none!important}.studio-room__scene,.studio-room__original,.studio-motif[open]{animation:none!important}.collection-card:hover .collection-card__image>img{transform:none}}

/* V2 shared tokens: rich forest shadows, clear daylight, natural photographic color. */
:root{--v2-ink:#10231c;--v2-forest:#142c24;--v2-deep:#081710;--v2-paper:#f4f4ed;--v2-white:#fffef9;--v2-muted:#708075;--v2-lime:#c3d5a6;--v2-line:#b7c4b340;--v2-ease:cubic-bezier(.22,1,.36,1);--v2-gutter:clamp(22px,5.5vw,108px)}
.v2-hero-reel{overflow:hidden}
.v2-reel-layer{position:absolute;inset:0;width:100%;height:100%}
.v2-reel-layer img{width:100%;height:100%;object-fit:cover;transform:scale(1.055)}
.v2-reel-layer--current{animation:v2-reel-dissolve 1.8s ease both}
.v2-reel-layer--current img{animation:v2-reel-breathe 13s ease-out both;animation-play-state:paused}
.v2-hero-reel[data-running=true] .v2-reel-layer--current img{animation-play-state:running}
@keyframes v2-reel-dissolve{from{opacity:0}to{opacity:1}}
@keyframes v2-reel-breathe{from{transform:scale(1.045)}to{transform:scale(1.12)}}
.exhibition .hero-content{padding-bottom:140px}
.exhibition .hero,.exhibition .hero-content{min-height:max(780px,100svh)}
.v2-motion-control{display:inline-flex;align-items:center;gap:10px;border:0;background:none;color:inherit;min-height:44px;padding:8px 0;font:400 13px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.v2-motion-control svg{width:16px;height:16px;stroke:currentColor;stroke-width:1.5;fill:none}
.v2-motion-control:disabled{cursor:default;opacity:.7}
[data-v2-motion=paused] .v2-reel-layer,[data-v2-motion=paused] .v2-reel-layer img{animation:none!important}
@media(max-width:700px){.exhibition .hero,.exhibition .hero-content{min-height:max(720px,100svh)}.exhibition .hero-content{padding-bottom:100px}.exhibition .scroll-cue{bottom:35px;writing-mode:horizontal-tb}}
@media(prefers-reduced-motion:reduce){.v2-reel-layer,.v2-reel-layer img{animation:none!important}}

/* A photographic walk: a dark introduction, unhurried images, then daylight. */
html{scroll-padding-top:100px}
body{background:var(--v2-paper);color:var(--v2-ink)}
.v2-site{overflow:clip;background:var(--v2-paper);font-family:var(--sans,Arial),sans-serif;font-size:calc(16px * var(--v2-type-scale,1));line-height:1.65;color:var(--v2-ink)}
.v2-site :is(h1,h2,h3,p,figure){margin:0}
.v2-site :is(h1,h2,h3){font-weight:400;letter-spacing:-.055em;line-height:1.06}
.v2-site h2{font-size:clamp(42px,5.2vw,84px);max-width:880px;text-wrap:balance}
.v2-site em{font-family:Georgia,serif;font-weight:400;letter-spacing:-.045em}
.v2-site a,.v2-header a,.v2-menu a,.v2-footer a{color:inherit;text-decoration:none}
.v2-site :focus-visible,.v2-header :focus-visible,.v2-menu :focus-visible,.v2-footer :focus-visible{outline:2px solid currentColor;outline-offset:6px;border-radius:2px}
.v2-eyebrow{display:block;font:500 11px/1.6 var(--sans,Arial),sans-serif;letter-spacing:.19em;text-transform:uppercase}
.v2-skip{position:fixed;top:12px;left:20px;z-index:1000;padding:12px 20px;background:white;color:#10231c!important;transform:translateY(-180%)}
.v2-skip:focus{transform:none}
.v2-button{position:relative;display:inline-flex;justify-content:space-between;align-items:center;gap:34px;min-height:56px;padding:15px 23px;border:1px solid #10231c33;background:var(--v2-ink);color:var(--v2-white)!important;border-radius:3px;font-size:14px;font-weight:500;line-height:1.4;overflow:hidden;isolation:isolate;transition:background .3s,border-color .3s,box-shadow .3s}
.v2-button>span,.v2-button>svg{position:relative;z-index:1}
.v2-button::before{content:'';position:absolute;inset:0;background:#2c4b3e;transform:translateY(102%);transition:transform .5s var(--v2-ease)}
.v2-button:hover::before{transform:none}
.v2-button svg,.v2-circle-link svg,.v2-landscape__view svg{width:20px;height:20px;stroke:currentColor;stroke-width:1.4;flex-shrink:0;transition:transform .35s var(--v2-ease)}
.v2-button:hover svg,.v2-circle-link:hover svg{transform:translate(2px,-2px)}
.v2-button--light{color:var(--v2-ink)!important;background:var(--v2-white);border-color:var(--v2-white)}
.v2-button--light::before{background:#dde5d5}
.v2-button--subtle{background:none;color:var(--v2-ink)!important;border-color:#10231c38}
.v2-button--subtle::before{background:#e3e8db}
.v2-circle-link{display:grid;place-items:center;width:54px;height:54px;border:1px solid #ffffff40;border-radius:50%;transition:background .3s}
.v2-circle-link:hover{background:#ffffff17}

/* A single, quiet navigation layer shared by every page. */
.v2-header{position:fixed;z-index:90;inset:0 0 auto;display:flex;align-items:center;justify-content:space-between;gap:30px;height:104px;padding:0 var(--v2-gutter);color:var(--v2-white);border-bottom:1px solid #ffffff1f;background:linear-gradient(#07181030,transparent);font:14px/1.4 var(--sans,Arial),sans-serif;transition:height .4s var(--v2-ease),background .3s,color .3s,border-color .3s}
.v2-header[data-solid=true]{height:82px;color:var(--v2-ink);background:#f4f4edf2;backdrop-filter:blur(20px);border-color:#10231c14}
.v2-header[data-solid=false]{background:linear-gradient(#06180dbd,#0618103d)}
.v2-brand{display:flex;align-items:center;gap:14px;flex-shrink:0;font-size:24px;letter-spacing:-.06em;white-space:nowrap}
.v2-brand em{font-family:Georgia,serif;font-weight:400}
.v2-brand__portrait{position:relative;display:block;width:52px;height:52px;border-radius:50%;overflow:hidden;background:#fff;box-shadow:0 0 0 1px #ffffff80}
.v2-brand__portrait img{position:absolute;width:80px;max-width:none;height:auto;left:50%;top:-13px;transform:translateX(-50%)}
.v2-header__links{display:flex;gap:30px;margin-left:auto;margin-right:20px}
.v2-header__links a{position:relative;padding:14px 0}
.v2-header__links a::after{content:'';position:absolute;bottom:6px;left:0;width:100%;height:1px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .3s}
.v2-header__links a:hover::after{transform:scaleX(1)}
.v2-header__actions{display:flex;align-items:center;gap:24px}
.v2-header__bag{display:grid;place-items:center;width:44px;height:44px}
.v2-header__bag svg{width:22px;height:22px;stroke:currentColor;stroke-width:1.3;transition:transform .3s}
.v2-header__bag:hover svg{transform:translateY(-2px)}
.v2-menu-toggle{display:flex;align-items:center;gap:20px;min-height:46px;padding:10px 0 10px 10px;border:0;background:none;color:inherit;font:inherit;cursor:pointer}
.v2-menu-toggle svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.3;transition:transform .3s}
.v2-menu-toggle:hover svg{transform:translateX(3px)}
.v2-menu{position:fixed;inset:0;width:100%;max-width:none;height:100dvh;max-height:none;margin:0;padding:0;border:0;background:var(--v2-deep);color:var(--v2-white);overflow:auto;overscroll-behavior:contain;font:16px/1.5 var(--sans,Arial),sans-serif}
.v2-menu[open]{display:grid;grid-template-columns:42% 58%;animation:v2-menu-in .65s var(--v2-ease) both}
.v2-menu::backdrop{background:#061710d9}
.v2-menu[data-leaving=true]{animation:v2-menu-out .28s ease both}
@keyframes v2-menu-in{from{opacity:0;clip-path:inset(0 0 100%)}to{opacity:1;clip-path:inset(0)}}
@keyframes v2-menu-out{to{opacity:0;transform:translateY(-15px)}}
.v2-menu__close{position:absolute;top:25px;right:var(--v2-gutter);z-index:3;display:flex;align-items:center;gap:16px;min-height:48px;padding:8px 0;border:0;background:none;color:inherit;font:14px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.v2-menu__close svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.3;transition:transform .4s}
.v2-menu__close:hover svg{transform:rotate(90deg)}
.v2-menu__image{position:relative;min-height:100dvh;overflow:hidden;background:#173027}
.v2-menu__image>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;animation:v2-menu-photo 1s var(--v2-ease) both}
@keyframes v2-menu-photo{from{opacity:.2;transform:scale(1.06)}to{opacity:1;transform:scale(1)}}
.v2-menu__image::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,#0b1a1220 25%,#081710e0)}
.v2-menu__image>div{position:absolute;z-index:1;left:13%;right:10%;bottom:10%}
.v2-menu__image span{font-size:10px;letter-spacing:.2em;color:#e0e8d6}
.v2-menu__image p{font:italic 42px/1.15 Georgia,serif;letter-spacing:-.04em;margin-top:20px}
.v2-menu__content{display:flex;flex-direction:column;justify-content:center;padding:100px clamp(30px,5.5vw,90px) 35px;min-width:0}
.v2-menu__content>.v2-eyebrow{color:#a5ba9d;margin-bottom:28px}
.v2-menu__content nav>a{display:grid;grid-template-columns:22px 1fr 24px;align-items:center;gap:18px;border-top:1px solid #b7c4b330;padding:19px 0;animation:v2-menu-link .75s var(--v2-ease) both;animation-delay:calc(.13s + var(--item-order)*.055s)}
@keyframes v2-menu-link{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.v2-menu__content nav small{font-size:11px;color:#a5ba9d}
.v2-menu__content nav span{font-weight:400;font-size:clamp(26px,3.05vw,49px);line-height:1.15;letter-spacing:-.055em;transition:transform .4s,color .3s}
.v2-menu__content nav i{font-size:24px;font-style:normal;color:#a5ba9d;transition:transform .3s}
.v2-menu__content nav>a:hover span{transform:translateX(7px);color:#d3e0c6}
.v2-menu__content nav>a:hover i{transform:translate(3px,-3px)}
.v2-menu__account{display:flex;flex-wrap:wrap;gap:2px 25px;margin-top:27px}
.v2-menu__account a,.v2-menu__account button{display:flex;align-items:center;min-height:44px;font-size:13px}
.v2-menu__account button{border:0;background:none;color:inherit;cursor:pointer;font-family:inherit}
.v2-menu__bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:5px 20px;margin-top:15px;border-top:1px solid #b7c4b325;padding-top:20px;color:#b8c5ae;font-size:13px}
.v2-menu__bottom>a{overflow-wrap:anywhere}

/* Opening scene: no thumbnail chooser, just the photograph and a clear invitation. */
.v2-hero.hero{position:relative;display:flex;align-items:center;min-height:max(780px,100svh);height:auto;isolation:isolate;overflow:hidden;background:#10271c;color:var(--v2-white)}
.v2-hero .v2-hero-reel{position:absolute;inset:0;z-index:-3}
.v2-hero__shade{position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,#061910a6 0%,#06191060 55%,#06191010),linear-gradient(0deg,#081710 0%,#08171000 33%,#08171010 80%,#08171040)}
.v2-hero__content{width:100%;padding:185px var(--v2-gutter) 170px}
.v2-hero__content>.v2-eyebrow{color:#ecf0e3;margin-bottom:38px}
.v2-hero h1{font-size:clamp(72px,6.9vw,118px);line-height:1.04;letter-spacing:-.065em;max-width:1500px}
.v2-hero h1 span,.v2-hero h1 em{display:block}
.v2-hero h1 em{font-size:1.03em;line-height:1.07;letter-spacing:-.055em}
.v2-hero__bottom{display:flex;align-items:end;justify-content:space-between;gap:40px;margin-top:45px;max-width:1310px}
.v2-hero__bottom>p{max-width:475px;font-size:calc(17px * var(--v2-type-scale,1));line-height:1.7;color:#f2f4e9e0;text-wrap:pretty}
.v2-hero__actions{display:flex;align-items:center;flex-wrap:wrap;gap:23px}
.v2-hero__actions>.v2-text-link{min-height:56px;padding:15px 20px;background:#071c14b8;border:1px solid #ffffff59;backdrop-filter:blur(8px);transition:background .25s,border-color .25s}
.v2-hero__actions>.v2-text-link:hover,.v2-hero__actions>.v2-text-link:focus-visible{background:#071c14eb;border-color:#ffffffbf}
.v2-text-link{display:flex;align-items:center;gap:18px;min-height:50px;font-size:14px}
.v2-text-link span{font-size:21px}
.v2-hero__foot{position:absolute;inset:auto var(--v2-gutter) 33px;display:flex;justify-content:space-between;align-items:center;color:#d1dcc8}
.v2-hero__foot>a{display:flex;align-items:center;gap:20px;font-size:12px}
.v2-hero__foot>a svg{width:16px;height:23px;stroke:currentColor;stroke-width:1.2;animation:v2-scroll-hint 2.5s ease-in-out infinite}
@keyframes v2-scroll-hint{50%{transform:translateY(5px)}}
.v2-site[data-ready=true] .v2-hero__content>:is(p,h1,div){animation:v2-intro 1.3s var(--v2-ease) both}
.v2-site[data-ready=true] .v2-hero__content>h1{animation-delay:.1s}
.v2-site[data-ready=true] .v2-hero__content>div{animation-delay:.22s}
@keyframes v2-intro{from{opacity:0;transform:translateY(30px);filter:blur(3px)}to{opacity:1;transform:none;filter:none}}

/* The three selected photographs remain complete and spacious. */
.v2-nature{position:relative;isolation:isolate;overflow:hidden;padding:95px var(--v2-gutter) 115px;background:var(--v2-deep);color:var(--v2-white)}
.v2-nature__ambient{position:absolute;inset:0;z-index:-2;pointer-events:none;overflow:hidden;opacity:.16}
.v2-nature__ambient img{width:100%;height:100%;object-fit:cover;filter:saturate(.7)}
.v2-nature::before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,var(--v2-deep),#08171088 20%,#102a21bb 70%,#142c24)}
.v2-section-head{display:grid;grid-template-columns:1.5fr 1fr;align-items:end;gap:8vw;margin-bottom:65px}
.v2-section-head .v2-eyebrow{color:#aec6a1;margin-bottom:24px}
.v2-section-head>p{max-width:350px;justify-self:end;font-size:calc(16px * var(--v2-type-scale,1));line-height:1.8;color:#c6d0be;padding-bottom:5px}
.v2-photo-walk{display:grid;gap:90px}
.v2-landscape{min-width:0}
.v2-landscape__image{position:relative;display:block;overflow:hidden;width:100%;aspect-ratio:2.12;background:#244036;border-radius:4px}
.v2-landscape__image>img{width:100%;height:100%;object-fit:cover;transform:translateY(var(--v2-image-shift,0px)) scale(1.05);transition:filter .5s;will-change:auto}
.v2-landscape__image:hover>img{filter:brightness(1.08)}
.v2-landscape__view{position:absolute;bottom:24px;right:24px;display:flex;align-items:center;gap:32px;padding:14px 18px;background:#f8faf0ed;color:#183527;font-size:13px;border-radius:3px;opacity:0;transform:translateY(10px);transition:opacity .35s,transform .35s var(--v2-ease);backdrop-filter:blur(10px)}
.v2-landscape__image:is(:hover,:focus-visible) .v2-landscape__view{opacity:1;transform:none}
.v2-landscape__caption{display:grid;grid-template-columns:45px 1.4fr 1fr 54px;gap:24px;align-items:center;padding-top:24px}
.v2-landscape__number{font-size:12px;align-self:start;padding-top:4px;color:#9db494}
.v2-landscape__caption .v2-eyebrow{font-size:10px;color:#c2d0b9;letter-spacing:.14em}
.v2-landscape h3{font-size:clamp(27px,2.6vw,42px);margin-top:7px;line-height:1.15;letter-spacing:-.04em}
.v2-landscape__caption>p{font-size:calc(14px * var(--v2-type-scale,1));max-width:300px;color:#bdcdb5;line-height:1.75}
.v2-landscape[data-order="1"]{width:82%;justify-self:end}
.v2-landscape[data-order="1"] .v2-landscape__image{aspect-ratio:1.8}
.v2-landscape[data-order="2"]{width:89%}
.v2-landscape[data-order="2"] .v2-landscape__image{aspect-ratio:2}
.v2-nature__end{display:flex;justify-content:space-between;align-items:end;gap:35px;margin-top:95px;padding-top:38px;border-top:1px solid var(--v2-line)}
.v2-nature__end>p{font-size:clamp(24px,2.7vw,40px);line-height:1.4;letter-spacing:-.035em}
.v2-nature__end em{color:#c2d5b2}

/* See the actual motif in a room, not an abstract color selector. */
.v2-prints{display:grid;grid-template-columns:.92fr 1.08fr;align-items:center;gap:7vw;padding:120px var(--v2-gutter);background:var(--v2-paper)}
.v2-prints__copy>.v2-eyebrow,.v2-about__copy>.v2-eyebrow{color:#66795b;margin-bottom:25px}
.v2-prints h2{font-size:clamp(42px,4.2vw,67px)}
.v2-prints__copy>p{max-width:460px;margin-top:29px;color:#596853;font-size:calc(16px * var(--v2-type-scale,1));line-height:1.8}
.v2-print-facts{display:grid;gap:0;margin:28px 0 33px;max-width:420px}
.v2-print-facts span{font-size:13px;border-bottom:1px solid #203b2319;padding:9px 0;color:#526249}
.v2-print-studio{background:var(--v2-white);padding:26px;border:1px solid #d9dfd1;border-radius:6px;box-shadow:0 18px 45px #162b1c07}
.v2-print-studio__heading{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:17px;color:#738368;font-size:11px}
.v2-print-studio .studio-room__tabs{justify-content:center}
.v2-print-studio .studio-room__canvas{border-radius:3px}
.v2-print-studio__choices{display:flex;align-items:center;gap:9px;margin-top:23px}
.v2-print-studio__choices button{width:56px;height:48px;padding:3px;flex-shrink:0;border:1px solid transparent;background:none;border-radius:3px;cursor:pointer;transition:border-color .25s,transform .25s}
.v2-print-studio__choices button[aria-pressed=true]{border-color:#547147}
.v2-print-studio__choices button:hover{transform:translateY(-2px)}
.v2-print-studio__choices button img{display:block;width:100%;height:100%;object-fit:cover;border-radius:1px}
.v2-print-studio__choices>span{font-size:12px;margin-left:6px;line-height:1.4;color:#506048}
.v2-print-studio__formats{display:flex;gap:8px;margin:20px 0}
.v2-print-studio__formats button{min-height:40px;flex:1;border:1px solid #d1dac8;border-radius:3px;background:transparent;color:#617154;font:13px/1.4 var(--sans,Arial),sans-serif;cursor:pointer;transition:background .3s,color .3s}
.v2-print-studio__formats button[aria-pressed=true]{background:#203c2b;color:#fff;border-color:#203c2b}
.v2-print-studio>.v2-button{width:100%}

/* The photographer has a calm, square portrait without an added landscape. */
.v2-about{display:grid;grid-template-columns:1fr 1fr;gap:8vw;align-items:center;padding:15px var(--v2-gutter) 125px;background:var(--v2-paper)}
.v2-about__portrait{overflow:hidden;min-width:0}
.v2-about__portrait>img{display:block;width:100%;height:auto;aspect-ratio:1;object-fit:cover;border-radius:4px;background:#e4e5de}
.v2-about__portrait figcaption{display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;padding-top:18px;font-size:11px;color:#6b7960}
.v2-about__copy h2{font-size:clamp(46px,5vw,78px);margin-bottom:30px}
.v2-about__copy>p{font-size:calc(16px * var(--v2-type-scale,1));line-height:1.8;color:#57674f;margin:14px 0;max-width:500px}
.v2-about__facts{list-style:none;display:flex;flex-wrap:wrap;gap:10px 18px;margin:27px 0 32px;padding:0;font-size:11px;color:#607350}
.v2-about__facts li:not(:last-child)::after{content:'·';padding-left:18px}

/* Service details open where the reader needs them. */
.v2-people{position:relative;isolation:isolate;overflow:hidden;background:#0c2218;color:#fffef9}
.v2-people__background{position:absolute;inset:-30px 0;z-index:-2}
.v2-people__background img{width:100%;height:100%;object-fit:cover;transform:translateY(var(--v2-image-shift,0px)) scale(1.06)}
.v2-people::after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,#081d14e6,#092217cc 70%,#092217a3)}
.v2-people__inner{display:grid;grid-template-columns:1fr 1.12fr;align-items:start;gap:8vw;padding:110px var(--v2-gutter)}
.v2-people header{position:sticky;top:130px}
.v2-people header>.v2-eyebrow{color:#c0d2b2;margin-bottom:27px}
.v2-people h2{font-size:clamp(46px,5.2vw,80px)}
.v2-service{border-top:1px solid #d7e1ce4a}
.v2-service:last-child{border-bottom:1px solid #d7e1ce4a}
.v2-service summary{display:flex;list-style:none;align-items:center;gap:21px;cursor:pointer;padding:28px 0}
.v2-service summary::-webkit-details-marker{display:none}
.v2-service__number{font-size:11px;align-self:start;padding-top:4px;color:#afc49e}
.v2-service summary>span:nth-child(2){flex:1}
.v2-service summary small{display:block;font-size:10px;letter-spacing:.16em;color:#c1d1b4;margin-bottom:6px}
.v2-service summary strong{display:block;font-size:clamp(25px,2.5vw,39px);font-weight:400;letter-spacing:-.04em;line-height:1.2}
.v2-service summary i{position:relative;width:30px;height:30px;flex-shrink:0;transition:transform .45s var(--v2-ease)}
.v2-service summary i::before,.v2-service summary i::after{content:'';position:absolute;left:6px;right:6px;top:14px;height:1px;background:#d8e2cf}
.v2-service summary i::after{transform:rotate(90deg)}
.v2-service[open] summary i{transform:rotate(45deg)}
.v2-service__body{padding:0 0 33px 34px;color:#d3ddc9}
.v2-service__body p{font-size:calc(14px * var(--v2-type-scale,1));line-height:1.85;margin-bottom:15px}
.v2-service__body ul{padding:0;list-style:none;font-size:12px;margin:16px 0 22px;display:grid;gap:6px}
.v2-service__body ul>li::before{content:'—';padding-right:12px;color:#a9c197}
.v2-service__body .v2-button{margin-top:10px}
.v2-service[open] .v2-service__body{animation:v2-service-open .45s ease both}
@keyframes v2-service-open{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}

.v2-process{padding:110px var(--v2-gutter);background:#ecefe5}
.v2-process .v2-section-head{margin-bottom:55px}
.v2-process .v2-eyebrow{color:#647951}
.v2-process h2{font-size:clamp(40px,4.7vw,73px)}
.v2-process .v2-section-head>p{color:#627254}
.v2-process ol{display:grid;grid-template-columns:repeat(3,1fr);gap:38px;list-style:none;padding:0;margin:0}
.v2-process li{padding-top:24px;border-top:1px solid #90a08170}
.v2-process li>span{font-size:12px;color:#617e4c}
.v2-process h3{font-size:clamp(24px,2vw,31px);margin:35px 0 20px;line-height:1.2;letter-spacing:-.035em}
.v2-process li>p{font-size:calc(14px * var(--v2-type-scale,1));line-height:1.85;color:#627254;max-width:380px}
.v2-contact{position:relative;isolation:isolate;overflow:hidden;min-height:620px;background:#102c20;color:#f5f8ee;display:flex;align-items:center;text-align:center}
.v2-contact__landscape{position:absolute;inset:-30px 0;z-index:-2}
.v2-contact__landscape img{width:100%;height:100%;object-fit:cover;transform:translateY(var(--v2-image-shift,0px)) scale(1.06)}
.v2-contact::before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,#081b1599,#081b1577 40%,#081b15e8)}
.v2-contact__content{max-width:1050px;margin:auto;padding:115px var(--v2-gutter)}
.v2-contact .v2-eyebrow{color:#d4e0c9;margin-bottom:28px}
.v2-contact h2{margin:0 auto;font-size:clamp(52px,7vw,109px);line-height:1.03}
.v2-contact__content>p{max-width:490px;margin:30px auto 34px;color:#e3eadd;font-size:calc(15px * var(--v2-type-scale,1));line-height:1.8}
.v2-contact__actions{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:20px 30px}
.v2-contact__actions>a:not(.v2-button){min-height:44px;display:flex;align-items:center;gap:15px;font-size:14px}
.v2-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;padding:30px var(--v2-gutter);background:var(--v2-deep);color:#b3c3a7;font:11px/1.6 var(--sans,Arial),sans-serif}
.v2-footer nav{display:flex;gap:24px;flex-wrap:wrap}
.v2-footer nav a{display:flex;align-items:center;min-height:32px}
.v2-footer nav a:hover{color:#f8fbf2}

/* Motion is progressive enhancement, never a requirement to read the page. */
.v2-site[data-reveal-ready=true] [data-v2-reveal]{opacity:0;transform:translateY(28px);transition:opacity .9s var(--v2-ease),transform 1.05s var(--v2-ease)}
.v2-site[data-reveal-ready=true] [data-v2-reveal].is-revealed{opacity:1;transform:none}
.studio-main{padding-top:130px;min-height:calc(100svh - 92px)}
.studio-notice-wrap{top:93px}
.v2-draft-label{font-size:11px!important;padding:12px 16px;border:1px solid #c8d8b8;border-radius:4px;margin-bottom:25px!important;background:#e9f1df;color:#436131!important}
.v2-preview-message{position:fixed;left:20px;right:20px;top:90px;z-index:1000;display:flex;gap:15px;align-items:center;background:#fffce9;border:1px solid #c7b875;color:#554727;padding:18px 20px;border-radius:4px;font:14px/1.5 var(--sans,Arial),sans-serif;box-shadow:0 8px 30px #16271922}
.v2-preview-message button{margin-left:auto;border:0;background:none;color:inherit;font-size:25px;min-width:35px;min-height:35px;cursor:pointer}
.v2-checkout-fields{display:grid;gap:22px;border:0;padding:0;margin:0;min-width:0}
.v2-checkout-section-title{display:flex;align-items:center;gap:14px}
.v2-checkout-section-title>span{display:grid;place-items:center;width:32px;height:32px;border:1px solid #c7d5bb;border-radius:50%;font-size:11px;color:#637e4e;flex-shrink:0}
.studio-main .v2-checkout-section-title h2{font-size:24px;font-weight:450;line-height:1.2}
.studio-cart-line .v2-quantity{flex:0 0 64px;min-width:64px}
.v2-quantity label{display:grid;gap:6px;font-size:11px;color:#697d58}
.v2-quantity input{min-height:43px;width:64px;min-width:0;border:1px solid #c7d3bd;background:#fffef9;color:#24452b;border-radius:4px;padding:7px;font-size:14px!important}
.v2-quantity small{display:block;font-size:10px;color:#95652a;margin-top:8px}
.v2-order-uncertain{display:grid;gap:17px;padding:22px;background:#f8f1dc;border:1px solid #cfbc84;border-radius:5px}
.v2-order-uncertain h3{font-size:20px;margin:0;line-height:1.3;font-weight:500}
.v2-order-uncertain p{font-size:14px}
.v2-order-uncertain a{font-size:13px}
.v2-checkout-note{font-size:11px!important}
.studio-auth{min-height:55vh;align-items:center}
.studio-auth__intro{position:relative;padding:35px 35px 35px 0}
.studio-auth__intro::before{content:'';display:block;width:42px;height:1px;background:#9ab383;margin-bottom:32px}
.studio-auth .studio-panel{border-radius:5px;box-shadow:0 18px 55px #132a1606}
.studio-auth .studio-panel h2{font-size:30px;font-weight:450;letter-spacing:-.04em}
.studio-auth__intro{position:relative;isolation:isolate;overflow:hidden;min-height:565px;display:flex;flex-direction:column;justify-content:center;padding:45px;border-radius:5px;background:#173627;color:#f4f8ed}
.studio-auth__intro::before{background:#c4d7b2}
.v2-auth-landscape{position:absolute;inset:0;z-index:-2}
.v2-auth-landscape img{width:100%;height:100%;object-fit:cover}
.studio-auth__intro::after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,#0b21168f,#0b2116a6 50%,#0b2116e6)}
.studio-auth__intro .studio-eyebrow{color:#d0dec4;font-size:10px}
.studio-main .studio-auth__intro h1{font-size:clamp(42px,4.5vw,67px)}
.studio-main .studio-auth__intro h1 em{color:#d3e4c3}
.studio-main .studio-auth__intro p{color:#dce6d3;font-size:15px;max-width:340px;margin-bottom:25px}
.studio-auth__intro>a{color:#f5f9ec;font-size:13px}
.v2-admin-overview{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:0 0 30px}
.v2-admin-overview>button{display:grid;align-content:start;gap:12px;min-height:155px;padding:23px;text-align:left;border:1px solid #cedac4;border-radius:5px;background:#fffef9;color:#25492f;cursor:pointer;transition:background .25s,transform .25s}
.v2-admin-overview>button:hover{background:#e9f0e0;transform:translateY(-2px)}
.v2-admin-overview span{font-size:11px;color:#6e815d;letter-spacing:.1em;text-transform:uppercase}
.v2-admin-overview strong{font-size:34px;font-weight:400;line-height:1.1;letter-spacing:-.04em}
.v2-admin-overview small{font-size:12px;color:#647b53}
.studio-main>.studio-heading:not(.collection-heading){margin-top:25px}
.studio-panel{border-radius:6px}
.studio-button{border-radius:4px;transition:background .25s,transform .25s}
.studio-button:hover:not(:disabled){transform:translateY(-1px)}
.studio-order details summary{min-height:38px;display:flex;align-items:center}
.studio-admin-nav{position:sticky;top:82px;z-index:12;background:#f4f4edf5;backdrop-filter:blur(12px);padding-top:14px;padding-bottom:20px}
.studio-builder-tools{margin-top:82px;position:relative;padding:15px 30px;background:#e8eddf;border-bottom:1px solid #cfdac5;font-size:13px}
.studio-builder-tools+.builder .builder-sidebar{top:82px;height:calc(100dvh - 82px)}
.studio-builder-tools+.builder .builder-sidebar-note{display:block}
.builder{background:#f2f4ed}
.builder-sidebar{background:#132f24}
.builder-main{background:#f2f4ed}
.builder-photo-card,.builder-detail,.builder-fields,.builder-card{border-radius:6px}
.builder-sidebar nav button{border-radius:4px}
.builder-sidebar nav button[aria-current=page]{background:#e4eadb}
.v2-site .v2-section-head .v2-eyebrow,.v2-site .v2-landscape__number{color:color-mix(in srgb,var(--v2-accent,#a8ba90),#eaf3e0 20%)}
.v2-site .v2-prints__copy>.v2-eyebrow,.v2-site .v2-about__copy>.v2-eyebrow,.v2-site .v2-process .v2-eyebrow{color:color-mix(in srgb,var(--v2-accent,#a8ba90),#10231c 55%)}
.v2-site[data-reveal-ready=true] .v2-landscape__image::after{content:'';position:absolute;inset:0;background:#122b20;transform-origin:bottom;transform:scaleY(1);transition:transform 1.3s var(--v2-ease);pointer-events:none}
.v2-site[data-reveal-ready=true] .v2-landscape.is-revealed .v2-landscape__image::after{transform:scaleY(0)}
@media(max-width:800px){.studio-admin-nav{top:74px}.studio-builder-tools{margin-top:74px}.studio-builder-tools+.builder .builder-sidebar{top:74px;height:calc(100dvh - 74px)}}
@media(max-width:760px){.studio-builder-tools+.builder .builder-sidebar{position:relative;top:0;height:auto}.studio-builder-tools+.builder .builder-sidebar-note{display:none}.studio-builder-tools{padding:14px 18px}.studio-admin-nav{position:relative;top:0}.studio-auth__intro{padding:0}.studio-auth__intro::before{margin-bottom:24px}.studio-cart-line{gap:12px;flex-wrap:wrap}.studio-cart-line img{width:68px;height:76px}.studio-cart-line>.v2-quantity{margin-left:80px}.studio-cart-line>.studio-remove{margin-left:auto}.studio-main .v2-checkout-section-title h2{font-size:22px}}
.v2-visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
.v2-collection{animation:v2-intro .7s var(--v2-ease) both}
.v2-collection .collection-heading h1{font-size:clamp(46px,5.5vw,84px);max-width:760px;letter-spacing:-.055em;line-height:1.05;font-weight:400}
.collection-search{display:flex;align-items:center;justify-content:space-between;gap:30px;margin:45px 0 20px}
.collection-search>label{display:flex;align-items:center;gap:15px;max-width:540px;flex:1;border-bottom:1px solid #b8c6ae;padding:0 0 6px}
.collection-search svg{width:20px;height:20px;flex-shrink:0;stroke:currentColor;stroke-width:1.3}
.collection-search input{width:100%;min-width:0;border:0;background:none;min-height:48px;font:14px/1.4 var(--sans,Arial),sans-serif;color:var(--v2-ink);padding:10px 0;outline-offset:4px}
.collection-search input::placeholder{color:#77846c}
.collection-saved{display:flex;align-items:center;gap:12px;min-height:48px;padding:9px 14px;border:1px solid #ccd6c2;border-radius:4px;background:none;color:#4b6440;cursor:pointer;font:13px/1.4 var(--sans,Arial),sans-serif;transition:background .3s}
.collection-saved[aria-pressed=true]{background:#e0e7d8;border-color:#8ba377}
.collection-saved small{display:grid;place-items:center;min-width:24px;height:24px;border-radius:50%;background:#dbe4d3;font-size:11px}
.v2-collection .collection-toolbar{padding-top:20px;border-top:0}
.v2-collection .collection-grid{gap:40px 26px}
.collection-item{position:relative;min-width:0;animation:v2-card-in .6s var(--v2-ease) both;animation-delay:calc(var(--card-order)*.045s)}
@keyframes v2-card-in{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:none}}
.collection-item .collection-card{width:100%}
.collection-item .collection-card__image{aspect-ratio:3/2;border-radius:4px}
.collection-card__caption>svg,.collection-card__image svg{width:20px;height:20px;flex-shrink:0;stroke:currentColor;stroke-width:1.3}
.collection-card__caption>svg{color:#6b805a}
.collection-card__price{font:12px/1.4 var(--sans,Arial),sans-serif;color:#617451;margin-top:7px}
.collection-heart{position:absolute;right:12px;top:12px;display:grid;place-items:center;width:42px;height:42px;border:1px solid #ffffff60;border-radius:50%;background:#f7faf0d9;color:#34512b;backdrop-filter:blur(10px);cursor:pointer;transition:background .25s,transform .25s}
.collection-heart:hover{background:#fff;transform:scale(1.06)}
.collection-heart[aria-pressed=true]{background:#f9fbf3;color:#446f36}
.collection-heart svg{width:19px;height:19px;stroke:currentColor;stroke-width:1.25}
.collection-empty{padding:55px 20px 65px;text-align:center;border:1px solid #d5decd;background:#eef2e8;border-radius:4px}
.collection-empty>span{display:block;font-size:36px;color:#6d8858;margin-bottom:18px}
.studio-main .collection-empty h2{font-size:35px;letter-spacing:-.045em;line-height:1.15}
.collection-empty p{max-width:450px;margin:18px auto 25px!important}
.collection-skeleton{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.collection-skeleton span{display:block;aspect-ratio:3/2;background:linear-gradient(90deg,#e0e6d8,#ecf0e6,#e0e6d8);background-size:200% 100%;border-radius:4px;animation:v2-skeleton 1.5s ease-in-out infinite}
@keyframes v2-skeleton{to{background-position:-200% 0}}
.studio-motif{border-radius:7px;background:var(--v2-white)}
.studio-motif__top{position:sticky;top:0;z-index:4;display:flex;justify-content:space-between;align-items:center;gap:20px;padding:15px 24px;background:#fffef9f2;backdrop-filter:blur(18px);border-bottom:1px solid #d6dfcd}
.studio-motif__top>div{display:flex;align-items:center;gap:18px;min-width:0}
.studio-motif__top>div>span{font-size:10px;letter-spacing:.13em;color:#6a7d5d;text-transform:uppercase}
.studio-motif__top strong{font-size:14px;font-weight:500;line-height:1.3}
.studio-motif__top>.studio-motif__close{position:static;flex-shrink:0;background:none;border:0;padding:7px 0 7px 12px;font-size:13px;min-height:40px}
.studio-motif__sheet{min-height:0;grid-template-columns:1.4fr 1fr}
.studio-motif__visual{padding:32px;gap:22px;background:#ecefe5;justify-content:center}
.studio-motif__details{padding:36px 30px;gap:18px}
.studio-motif__details h2{font-size:clamp(28px,2.7vw,40px)}
.studio-motif__details .studio-variants label{transition:border-color .25s,background .25s;min-width:0;gap:10px}
.studio-motif__details .studio-variants label b{font-size:12px;white-space:nowrap}
.studio-motif__image-tools{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}
.studio-motif__image-tools button{display:flex;align-items:center;gap:10px;padding:8px 0;min-height:44px;border:0;background:none;color:#3f5d33;cursor:pointer;font:12px/1.4 var(--sans,Arial),sans-serif}
.studio-motif__image-tools button>span{font-size:24px}
.studio-motif__image-tools svg{width:17px;height:17px;stroke:currentColor;stroke-width:1.3}
.studio-motif__browse{display:flex;justify-content:center;align-items:center;gap:28px;border-top:1px solid #bccbb16b;padding-top:18px}
.studio-motif__browse span{font-size:11px;color:#6b7b5f;letter-spacing:.15em}
.studio-motif__browse button{display:grid;place-items:center;width:45px;height:45px;border:1px solid #bacbad;border-radius:50%;background:none;color:#36552c;font-size:22px;cursor:pointer;transition:background .3s}
.studio-motif__browse button:hover{background:#dce5d3}
.v2-zoom{position:fixed;inset:0;max-width:none;max-height:none;width:100vw;height:100dvh;margin:0;border:0;background:#081710;color:#f5f7ee;padding:0;overflow:hidden}
.v2-zoom[open]{display:grid;grid-template-rows:auto minmax(0,1fr) auto;animation:room-appear .25s ease}
.v2-zoom::backdrop{background:#081710}
.v2-zoom header{display:flex;align-items:center;gap:25px;padding:20px 30px;border-bottom:1px solid #b2c7a32e}
.v2-zoom header>div{display:grid;gap:4px;flex:1}
.v2-zoom header span{font-size:9px;letter-spacing:.16em;color:#a2b794}
.v2-zoom header strong{font-size:15px;font-weight:400;line-height:1.3}
.v2-zoom header button{min-height:44px;padding:8px 12px;border:1px solid #9eb28c50;border-radius:3px;background:none;color:inherit;font:12px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.v2-zoom__canvas{overflow:auto;overscroll-behavior:contain;text-align:center;min-height:0;padding:25px;touch-action:pan-x pan-y}
.v2-zoom__canvas img{display:block;width:100%;height:100%;object-fit:contain;margin:auto;max-width:none}
.v2-zoom__canvas[data-detail=true] img{width:180%;min-width:1000px;height:auto;object-fit:initial}
.v2-zoom>p{font-size:11px;color:#a2b794;margin:0;padding:12px 25px 18px;text-align:center}
@media(max-width:900px){.studio-motif__sheet{grid-template-columns:1fr}.studio-motif__visual{padding:20px 24px;gap:14px}.studio-motif__details{padding:28px 24px}.studio-motif__browse{padding-top:12px}.studio-motif__top>div{flex-direction:column;align-items:start;gap:4px}.studio-motif__top{padding:12px 22px}.studio-motif__top strong{font-size:13px}.collection-skeleton{grid-template-columns:1fr 1fr}.collection-skeleton>span:last-child{display:none}}
@media(max-width:600px){.v2-collection .collection-heading h1{font-size:45px}.collection-search{flex-wrap:wrap;gap:17px;margin:30px 0 15px}.collection-search>label{flex-basis:100%;max-width:none}.collection-search input{font-size:13px}.collection-saved{font-size:12px;min-height:44px}.v2-collection .collection-grid{gap:30px 14px}.collection-item .collection-card__image{aspect-ratio:4/3}.collection-heart{width:34px;height:34px;right:7px;top:7px}.collection-heart svg{width:16px;height:16px}.collection-card__caption>svg{width:16px;height:16px;margin-top:4px}.collection-card__price{font-size:11px;margin-top:5px}.studio-motif__top{padding:10px 16px;gap:10px}.studio-motif__top>.studio-motif__close span{display:none}.studio-motif__top>.studio-motif__close{width:40px;padding:8px;justify-content:center}.studio-motif__top strong{font-size:13px}.studio-motif__visual{padding:16px;gap:10px}.studio-motif__visual .studio-room__note{font-size:10px}.studio-motif__details{padding:24px 18px;gap:16px}.studio-motif__details h2{font-size:30px}.studio-motif__details .studio-variants strong{font-size:13px}.studio-motif__details .studio-variants label b{font-size:11px}.studio-motif__image-tools button{font-size:11px}.studio-motif__browse{gap:24px}.studio-motif__browse button{width:40px;height:40px}.v2-zoom header{gap:10px;padding:12px 16px;flex-wrap:wrap}.v2-zoom header>div{flex-basis:100%}.v2-zoom header button{flex:1;font-size:11px;min-height:40px}.v2-zoom__canvas{padding:12px}.v2-zoom>p{font-size:10px;padding-inline:17px}}
.v2-site .customer-voices{background:#ecefe5}
[data-v2-motion=paused] :is(.v2-site,.v2-menu,.v2-header,.studio-room,.studio-motif,.collection) *,[data-v2-motion=paused] :is(.v2-site,.v2-menu,.v2-header) *::before,[data-v2-motion=paused] :is(.v2-site,.v2-menu,.v2-header) *::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
[data-v2-motion=paused] :is(.v2-site,.v2-menu,.v2-header,.studio-room,.studio-motif,.v2-zoom,.collection){animation:none!important;transition:none!important}
@media(min-width:1800px){.v2-photo-walk,.v2-section-head,.v2-nature__end{max-width:1640px;margin-left:auto;margin-right:auto}.v2-prints,.v2-about,.v2-people__inner{padding-left:max(var(--v2-gutter),calc((100vw - 1640px)/2));padding-right:max(var(--v2-gutter),calc((100vw - 1640px)/2))}}
@media(max-width:1100px){.v2-header__links{display:none}.v2-hero__bottom{display:block}.v2-hero__actions{margin-top:27px}.v2-hero h1{font-size:11vw}.v2-prints{gap:5vw}.v2-about{gap:6vw}.v2-landscape__caption{grid-template-columns:35px 1fr 1fr 45px;gap:18px}.v2-circle-link{width:45px;height:45px}.v2-people__inner{gap:5vw;grid-template-columns:.9fr 1.1fr}.v2-menu__content nav>a{gap:12px}.v2-menu__content nav span{font-size:32px}}
@media(max-width:800px){html{scroll-padding-top:85px}.v2-header{height:85px}.v2-header[data-solid=true]{height:74px}.v2-brand{font-size:22px}.v2-brand__portrait{width:45px;height:45px}.v2-brand__portrait img{width:71px;top:-11px}.v2-header__actions{gap:14px}.v2-hero.hero{min-height:max(760px,100svh)}.v2-hero__content{padding-top:170px;padding-bottom:145px}.v2-hero h1{font-size:clamp(66px,11.5vw,92px)}.v2-hero__content>.v2-eyebrow{font-size:10px;margin-bottom:30px}.v2-hero__bottom{margin-top:30px}.v2-hero__bottom>p{max-width:470px;font-size:16px}.v2-hero__foot{bottom:28px}.v2-hero__foot .v2-motion-control{font-size:11px}.v2-section-head{grid-template-columns:1fr;gap:24px;margin-bottom:38px}.v2-section-head>p{justify-self:start;max-width:450px}.v2-nature{padding-top:65px;padding-bottom:75px}.v2-landscape__caption{grid-template-columns:28px 1fr 44px;gap:15px}.v2-landscape__caption>p{grid-column:2;grid-row:2;max-width:420px}.v2-landscape__caption>.v2-circle-link{grid-column:3;grid-row:1}.v2-landscape__number{grid-row:1}.v2-landscape[data-order="1"],.v2-landscape[data-order="2"]{width:100%}.v2-landscape__image,.v2-landscape[data-order="1"] .v2-landscape__image,.v2-landscape[data-order="2"] .v2-landscape__image{aspect-ratio:1.5}.v2-photo-walk{gap:50px}.v2-nature__end{margin-top:55px;align-items:start;flex-direction:column;gap:25px}.v2-prints{grid-template-columns:1fr;gap:45px;padding-block:80px}.v2-prints__copy{max-width:610px}.v2-print-studio{max-width:650px}.v2-about{grid-template-columns:1fr;gap:45px;padding-block:10px 80px}.v2-about__portrait{max-width:650px}.v2-about__copy{max-width:600px}.v2-people__inner{grid-template-columns:1fr;gap:42px;padding-block:80px}.v2-people header{position:static;max-width:550px}.v2-service summary strong{font-size:32px}.v2-service__body p{font-size:15px}.v2-process{padding-block:80px}.v2-process ol{grid-template-columns:1fr;gap:35px}.v2-process li{display:grid;grid-template-columns:30px 1fr;gap:16px 18px}.v2-process li>span{grid-row:1/3;padding-top:4px}.v2-process h3{margin:0}.v2-process li>p{max-width:600px;grid-column:2}.v2-contact{min-height:580px}.v2-contact__content{padding-block:90px}.v2-contact h2{font-size:clamp(52px,9vw,76px)}.v2-footer{gap:12px 25px}.v2-footer nav{margin-left:auto}.v2-menu[open]{grid-template-columns:30% 70%}.v2-menu__image>div{left:20px;right:15px;bottom:55px}.v2-menu__image p{font-size:28px}.v2-menu__image span{font-size:8px}.v2-menu__content{padding:105px 30px 30px}.v2-menu__content nav span{font-size:29px}.studio-main{padding-top:110px}.studio-notice-wrap{top:82px}}
@media(max-width:520px){.v2-header{gap:12px}.v2-brand{font-size:20px;gap:9px}.v2-brand__portrait{width:39px;height:39px}.v2-brand__portrait img{width:63px;top:-10px}.v2-header__actions{gap:6px}.v2-menu-toggle{gap:10px;font-size:12px}.v2-header__bag{width:35px}.v2-header__bag svg{width:20px}.v2-hero.hero{min-height:max(735px,100svh)}.v2-hero__content{padding-top:155px;padding-bottom:145px}.v2-hero h1{font-size:clamp(53px,12.3vw,64px)}.v2-hero__bottom>p{font-size:14px;max-width:350px}.v2-hero__actions{gap:14px 20px}.v2-hero__actions>.v2-button{font-size:13px;min-height:52px;padding:14px 17px;gap:24px}.v2-hero__actions>.v2-text-link{font-size:13px;gap:12px}.v2-hero__foot>a{font-size:10px;gap:10px}.v2-hero__foot .v2-motion-control{gap:6px;font-size:10px;max-width:110px;text-align:right;line-height:1.3}.v2-motion-control svg{flex-shrink:0}.v2-hero__foot .v2-motion-control svg{width:13px;height:13px}.v2-nature{padding-top:45px}.v2-site h2{font-size:40px}.v2-section-head .v2-eyebrow{font-size:10px;margin-bottom:20px}.v2-section-head>p{font-size:14px}.v2-landscape__caption{padding-top:20px;gap:12px}.v2-landscape h3{font-size:27px}.v2-landscape__caption>p{font-size:13px}.v2-landscape__caption .v2-eyebrow{font-size:9px}.v2-landscape__view{display:none}.v2-nature__end>p{font-size:27px}.v2-prints{padding-block:65px}.v2-prints__copy>p,.v2-about__copy>p{font-size:15px}.v2-print-studio{padding:17px}.v2-print-studio__heading .v2-eyebrow{font-size:9px}.v2-print-studio__choices{flex-wrap:wrap}.v2-print-studio__choices>span{flex-basis:100%;margin-top:5px;margin-left:0}.v2-about{padding-bottom:65px;gap:35px}.v2-about__copy h2{font-size:54px}.v2-about__facts{gap:8px 13px}.v2-about__facts li:not(:last-child)::after{padding-left:13px}.v2-people__inner{padding-block:65px;gap:34px}.v2-service summary{gap:14px;padding:24px 0}.v2-service summary strong{font-size:27px}.v2-service__body{padding-left:26px}.v2-service__body p{font-size:14px}.v2-process{padding-block:65px}.v2-process .v2-section-head{margin-bottom:35px}.v2-process h3{font-size:25px}.v2-process li>p{font-size:14px}.v2-contact{min-height:590px}.v2-contact h2{font-size:52px}.v2-contact__content>p{font-size:14px}.v2-contact__actions{gap:14px 23px}.v2-contact__actions .v2-button{flex-basis:100%;justify-content:center;max-width:300px}.v2-footer{padding-block:25px}.v2-footer>span{flex-basis:100%}.v2-footer>span:nth-child(2){font-size:10px;color:#8ea280}.v2-footer nav{margin-left:0;gap:23px}.v2-menu[open]{display:block}.v2-menu__image{position:absolute;inset:0;min-height:100%;opacity:.13}.v2-menu__image>div{display:none}.v2-menu__content{position:relative;min-height:100dvh;padding:98px 24px 26px;justify-content:flex-start}.v2-menu__content>.v2-eyebrow{margin-bottom:24px;font-size:10px}.v2-menu__content nav>a{grid-template-columns:17px 1fr 22px;gap:10px;padding:20px 0}.v2-menu__content nav span{font-size:28px}.v2-menu__content nav small{font-size:10px}.v2-menu__close{top:20px;right:24px}.v2-menu__bottom{margin-top:auto;padding-top:20px}.v2-menu__account{margin-top:20px;margin-bottom:15px}.v2-menu__content nav>a:hover span{transform:none}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important}.v2-site *,.v2-site *::before,.v2-site *::after,.v2-header *,.v2-header *::after,.v2-menu,.v2-menu *{animation:none!important;transition:none!important}.v2-site [data-v2-reveal]{opacity:1!important;transform:none!important}}
@media(prefers-reduced-motion:reduce){.v2-collection,.v2-collection *,.studio-motif,.studio-motif *,.v2-zoom,.v2-zoom *{animation:none!important;transition:none!important}}
@media(max-width:760px){.studio-auth__intro{min-height:340px;padding:32px}.v2-admin-overview{grid-template-columns:1fr;gap:10px}.v2-admin-overview>button{min-height:0;padding:18px;grid-template-columns:1fr auto;align-items:center;gap:8px 18px}.v2-admin-overview strong{grid-column:2;grid-row:1/3;font-size:28px}.v2-admin-overview small{grid-column:1}.v2-quantity input,.collection-search input{font-size:16px!important}}
/* Keep the brand and both touch targets inside very narrow screens. */
@media(max-width:360px){.v2-header{padding-inline:16px;gap:8px}.v2-brand{font-size:18px;gap:8px}.v2-brand__portrait{width:34px;height:34px}.v2-header__actions{gap:4px}.v2-header__bag,.v2-menu-toggle{width:44px;min-width:44px;height:44px;min-height:44px;padding:0;justify-content:center}.v2-menu-toggle>span{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}.v2-menu-toggle svg{width:23px}.v2-hero__bottom{gap:16px}.v2-hero__bottom .v2-motion-control{font-size:10px}}
/* Root-level locking avoids a second scrollbar behind native dialogs. */
html:has(dialog[open]){overflow:hidden}
@media(max-width:700px){.v2-menu__close{position:fixed}}
.studio-notice .v2-session-retry{position:static;display:inline-flex;align-items:center;min-height:44px;margin:0 0 0 12px;padding:6px 12px;border:1px solid currentColor;border-radius:5px;font-size:14px}

/* V3: continuous photographic movement, with V2's established typography. */
.v3-hero-reel{position:absolute;inset:0;z-index:-3;overflow:hidden}
.v3-reel-layer{position:absolute;inset:0;z-index:0;opacity:0}
.v3-reel-layer[data-outgoing=true]{z-index:1;opacity:1}
.v3-reel-layer[data-active=true]{z-index:2;opacity:1}
.v3-reel-layer img,.v3-reel-layer picture{display:block;width:100%;height:100%;object-fit:cover}
.v3-reel-layer img{transform:scale(1.035);transform-origin:center}
.v3-menu-toggle{padding:10px 17px;border:1px solid currentColor;border-radius:4px;gap:14px;min-height:46px;background:#ffffff08;transition:background .25s,border-color .25s}
.v3-menu-toggle:hover{background:#ffffff20}
.v2-header[data-solid=true] .v3-menu-toggle:hover{background:#10231c0d}
@media(max-width:520px){.v3-menu-toggle{padding:8px 12px;gap:10px}}
@media(prefers-reduced-motion:reduce){.v3-reel-layer[data-active=true]{transition:none}}

body{overflow-x:clip}
/* V3 follows the existing ivory / forest palette, with broad photographic scenes. */
.v3-landscapes{position:relative;overflow:clip;background:#172e26;color:#f5f2e9;padding:110px var(--v2-gutter) 90px}
.v3-landscapes>.v2-section-head{max-width:1480px;margin:0 auto 45px}
.v3-landscapes .v2-section-head>p{color:#d0d7cc}
.v3-landscapes .v2-section-head h2{max-width:700px}
.v3-flight-stage{padding:35px 0}
.v3-flight-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(18px,2.2vw,38px);max-width:1600px;margin:auto;align-items:start}
.v3-flight-card{min-width:0;transform-origin:50% 80%}
.v3-flight-card__surface{height:100%}

.v3-flight-card__image{display:block;position:relative;overflow:hidden;aspect-ratio:3/2;background:#273e34;box-shadow:0 24px 55px #030d0840}
.v3-flight-card__image picture,.v3-flight-card__image img{display:block;width:100%;height:100%;object-fit:cover}
.v3-flight-card__image img{transition:transform 1.1s cubic-bezier(.2,.8,.2,1)}
.v3-flight-card__image:hover img,.v3-flight-card__image:focus-visible img{transform:scale(1.035)}
.v3-flight-card__image>span{position:absolute;bottom:15px;right:15px;padding:11px 14px;display:flex;align-items:center;gap:20px;background:#f5f2e9;color:#192d23;font-size:11px;letter-spacing:.08em}
.v3-flight-card__image svg{width:15px;height:15px;stroke:currentColor;stroke-width:1.4}
.v3-flight-card__caption{display:block;padding-top:25px;border-top:1px solid #ffffff2b;margin-top:25px}
.v3-flight-card__caption small{font-size:12px;letter-spacing:.15em;text-transform:uppercase;color:#cbd5c8}
.v3-flight-card__caption h3{font-family:Georgia,serif;font-size:clamp(25px,2.4vw,39px);font-weight:400;line-height:1.15;margin:11px 0 15px}
.v3-flight-card__caption h3 a{text-decoration:none;color:inherit}
.v3-flight-card__caption p{font-size:16px;line-height:1.8;color:#d0d7cc;max-width:38ch}
.v3-landscapes .v2-nature__end{max-width:1480px;margin:65px auto 0}

.v3-statement{color:#fff;background:#10271e;position:relative}
.v3-statement-stage{position:relative;isolation:isolate;min-height:105svh;display:flex;align-items:center;overflow:clip;padding:120px var(--v2-gutter)}
.v3-statement-image,.v3-statement-image:after{position:absolute;inset:0;z-index:-1}
.v3-statement-image img,.v3-statement-image picture{width:100%;height:100%;display:block;object-fit:cover}
.v3-statement-image:after{content:'';z-index:1;background:linear-gradient(90deg,#091810d9,#0918108c),linear-gradient(0deg,#10271e55,transparent 50%)}
.v3-statement-copy{width:100%;max-width:1340px;margin:auto}
.v3-statement-copy h2{font-size:16px;line-height:1.6;font-weight:400;margin:22px 0 40px;color:#d7ded3}
.v3-statement-words{font-family:Georgia,serif;font-size:clamp(42px,6.6vw,104px);font-weight:400;line-height:1.16;letter-spacing:-.025em;text-wrap:pretty;max-width:23ch;margin:0;overflow-wrap:anywhere}
.v3-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.v3-site .v2-about{padding-top:125px}

.v3-people{position:relative;isolation:isolate;overflow:clip;background:#142c22;color:#fff;padding:125px var(--v2-gutter)}
.v3-people__image{position:absolute;inset:-30px 0;z-index:-2;transform:translateY(var(--v2-image-shift,0px))}
.v3-people__image picture,.v3-people__image img{width:100%;height:100%;display:block;object-fit:cover}
.v3-people:before{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,#0b1b1599 0%,#0b1b1522 32%,#0b1b15bd 100%),linear-gradient(90deg,#0b1b1566,transparent)}
.v3-people__inner{max-width:1440px;margin:auto}
.v3-people__inner>header{display:flex;flex-direction:column;gap:0;padding:0 0 55px}
.v3-people h2{font-family:Georgia,serif;font-size:clamp(50px,6.5vw,100px);font-weight:400;line-height:1.04;letter-spacing:-.035em;max-width:850px;margin:25px 0 0;text-wrap:balance}
.v3-services{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;align-items:stretch}
.v3-service{padding:clamp(28px,3.4vw,52px);transition:box-shadow .4s,border-color .4s;display:flex;flex-direction:column;gap:24px;min-width:0;height:100%;border:1px solid #ffffff65;box-shadow:0 20px 65px #05120a24;background:#f0eee5f5;color:#1d3025;backdrop-filter:blur(14px)}
.v3-service:hover{box-shadow:0 24px 75px #05120a38;border-color:#fff}
.v3-service__label{display:flex;justify-content:space-between;font-size:12px;letter-spacing:.16em;text-transform:uppercase;border-bottom:1px solid #1d302530;padding-bottom:20px}
.v3-service h3{font-family:Georgia,serif;font-weight:400;font-size:clamp(34px,3.5vw,54px);line-height:1.1;letter-spacing:-.025em;margin:4px 0 2px;max-width:15ch;overflow-wrap:anywhere}
.v3-service p,.v3-service li{font-size:16px;line-height:1.8;margin:0;overflow-wrap:anywhere}
.v3-service ul{list-style:none;display:grid;gap:12px;padding:0;margin:0}
.v3-service__details{border-top:1px solid #1d302526;padding-top:22px!important;color:#4c5c4e}.v3-service li{display:flex;gap:10px;align-items:baseline}.v3-service li:before{content:'—';color:#7e9279}
.v3-service .v2-button{align-self:start;margin-top:auto}
@supports(grid-template-rows:subgrid){.v3-services{grid-template-rows:repeat(5,auto)}.v3-service{display:grid;grid-template-rows:subgrid;grid-row:span 5;row-gap:24px}.v3-service .v2-button{justify-self:start;align-self:end;margin-top:0}}

.v3-site .v2-contact{min-height:108svh;display:flex;align-items:center;justify-content:center;text-align:center;padding:0}
.v3-site .v2-contact__landscape{inset:-30px 0;opacity:1}
.v3-site .v2-contact__landscape picture,.v3-site .v2-contact__landscape img{display:block;width:100%;height:100%;object-fit:cover}
.v3-site .v2-contact:before{background:radial-gradient(ellipse at center,#071a13a6 10%,#071a133d 75%),linear-gradient(0deg,#0a1f16b3,transparent 60%)}
.v3-site .v2-contact__content{max-width:1500px;width:100%;padding:140px var(--v2-gutter);margin:auto}
.v3-site .v2-contact h2{font-size:clamp(62px,9vw,145px);line-height:1.02;max-width:1000px;margin:28px auto 32px;text-wrap:balance}
.v3-site .v2-contact p{max-width:650px;margin:0 auto;font-size:18px;line-height:1.8}
.v3-site .v2-contact__actions{justify-content:center;margin-top:40px}

@media(max-width:999px){
 .v3-landscapes{padding-top:80px}.v3-flight-grid{grid-template-columns:1fr;gap:65px;max-width:780px}
 .v3-flight-card__caption h3{font-size:36px}.v3-flight-card__caption p{max-width:60ch}
 .v3-flight-stage{padding-top:10px}
 .v3-people{padding-top:85px;padding-bottom:85px}.v3-service{min-height:0;padding:32px;gap:20px}
 .v3-service h3{font-size:38px}.v3-statement-words{font-size:clamp(38px,7.6vw,76px)}
}
@media(max-width:700px){
 .v3-landscapes{padding-top:65px;padding-bottom:60px}.v3-landscapes .v2-nature__end{margin-top:35px}
 .v3-flight-card__caption h3{font-size:30px}.v3-flight-card__image>span{font-size:10px;padding:10px;bottom:10px;right:10px}
 .v3-services{grid-template-columns:1fr;gap:28px}.v3-people__inner>header{padding-bottom:40px}
 .v3-service .v2-button{align-self:flex-start;margin-top:auto}.v3-services{grid-template-rows:none}.v3-service{padding:30px;display:flex;grid-row:auto}.v3-people h2{font-size:52px}.v3-site .v2-about{padding-top:75px}
 .v3-statement-stage{padding-top:95px;padding-bottom:95px}
 .v3-statement-copy h2{margin:16px 0 30px}.v3-site .v2-contact__content{padding-top:120px;padding-bottom:120px}
 .v3-site .v2-contact h2{font-size:clamp(52px,12vw,82px)}.v3-site .v2-contact p{font-size:16px}.v3-site .v2-contact__actions{gap:26px}
}
@media(max-height:700px) and (min-width:1000px){.v3-flight-card__caption{margin-top:15px;padding-top:15px}.v3-flight-card__caption p{font-size:16px;line-height:1.8}.v3-flight-card__caption h3{font-size:27px}.v3-statement-words{font-size:clamp(44px,5.7vw,78px)}}
@media(prefers-reduced-motion:reduce){.v3-flight-card__surface,.v3-flight-card__image img,.v3-service{transition:none}.v3-flight-card__surface:hover,.v3-service:hover{translate:none}.v3-flight-card__image:hover img{transform:none}}
html[data-v2-motion=paused] .v3-flight-card__surface:hover,html[data-v2-motion=paused] .v3-service:hover{translate:none}

/* Product first; room mockups are a deliberate secondary view. */
.studio-motif__visual{align-self:start;justify-content:flex-start;position:sticky;top:75px}
.v3-motif-preview{min-width:0;width:100%}
.v3-motif-preview__tabs{display:flex;gap:24px;border-bottom:1px solid #b8c7b4;margin:0 0 24px}
.v3-motif-preview__tabs button{position:relative;border:0;background:none;color:#5b6d54;padding:12px 4px 15px;min-height:48px;font:500 16px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.v3-motif-preview__tabs button:after{content:'';position:absolute;bottom:-1px;left:0;right:0;height:2px;background:currentColor;transform:scaleX(0);transition:transform .25s ease}
.v3-motif-preview__tabs button[aria-selected=true]{color:#132c20}
.v3-motif-preview__tabs button[aria-selected=true]:after{transform:scaleX(1)}
.v3-motif-preview__tabs button:focus-visible,.v3-motif-photo:focus-visible{outline:2px solid #345a40;outline-offset:5px}
.v3-motif-preview__panel[hidden]{display:none!important}
.v3-motif-photo{border:0;padding:0;background:none;display:flex;align-items:center;justify-content:center;width:100%;min-height:0;cursor:zoom-in}
.v3-motif-photo img{display:block;width:auto;height:auto;max-width:100%;max-height:min(60dvh,670px);object-fit:contain;box-shadow:0 14px 34px #17271a18}
.studio-room__print{padding:0;background:#302b24;border:3px solid #302b24;aspect-ratio:var(--print-ratio);box-sizing:content-box;transition:width .3s ease}
.studio-room__print img{display:block;width:100%;height:100%;object-fit:cover}
.studio-motif__visual .studio-room__note{font-size:13px;line-height:1.65}
.studio-motif__details .studio-motif__description{border-top:1px solid #d1dacb;padding-top:20px;margin-top:6px;line-height:1.8;font-size:16px}
.studio-motif__image-tools{justify-content:flex-end}
.studio-motif__image-tools button{font-size:14px}
@media(max-width:900px){.studio-motif__visual{position:static;top:auto}.v3-motif-preview__tabs{margin-bottom:18px}.v3-motif-photo img{max-height:48dvh}.studio-motif__details{padding-top:20px}}
@media(max-width:600px){.v3-motif-preview__tabs{gap:22px;margin-bottom:15px}.v3-motif-preview__tabs button{font-size:15px;padding:9px 3px 12px}.v3-motif-photo img{max-height:36dvh}.studio-room__print{border-width:2px}.studio-motif__visual .studio-room__note{font-size:12px}}
@media(prefers-reduced-motion:reduce){.v3-motif-preview__tabs button:after{transition:none}}

/* V4 adds two quiet film compositions to the existing photographic identity. */
.v4-site{--v4-ink:#14291f;--v4-paper:#f2f1e9}
.v4-film{position:relative;isolation:isolate}
.v4-film-stage{position:relative;isolation:isolate;overflow:hidden;background:#14291f}
.v4-film-poster,.v4-film-video{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover}
.v4-film-video{opacity:0;transition:opacity 1s ease;pointer-events:none}
.v4-film-stage[data-has-frame=true] .v4-film-video{opacity:1}
.v4-film--cinematic{color:#fff;background:#10251c;padding:22px 22px 0}
.v4-film--cinematic .v4-film-stage{min-height:clamp(740px,100svh,1200px);display:flex;align-items:center;padding:130px max(35px,calc(var(--v2-gutter) - 22px)) 150px;border-radius:3px}
.v4-film--cinematic .v4-film-video,.v4-film--cinematic .v4-film-poster{object-position:65% center}
.v4-film-shade{position:absolute;inset:0;background:linear-gradient(90deg,#071a14cf 0%,#071a146b 54%,#071a141c 100%),linear-gradient(0deg,#071a14b3,transparent 30%,transparent 80%,#071a1438)}
.v4-film-copy{position:relative;z-index:1;max-width:1500px;width:100%;margin:auto}
.v4-film-copy .v2-eyebrow{font-size:14px;letter-spacing:.2em;line-height:1.8;display:block}
.v4-film-copy h2{font-family:Georgia,serif;font-size:clamp(54px,6.9vw,108px);font-weight:400;letter-spacing:-.045em;line-height:1.03;text-wrap:balance;margin:25px 0 30px;max-width:12ch}
.v4-film-copy h2 em{font-weight:400;display:block;color:#d3e0c6}
.v4-film-copy p{font-size:clamp(17px,1.3vw,20px);line-height:1.9;max-width:42ch;margin:0 0 34px;color:#f0f2ed}
.v4-film-copy .v2-button{font-size:15px;min-height:48px}
.v4-film-controls{position:absolute;z-index:2;bottom:28px;left:max(28px,calc(var(--v2-gutter) - 22px));right:max(28px,calc(var(--v2-gutter) - 22px));display:flex;align-items:center;justify-content:space-between;gap:20px;color:#fff}
.v4-film-state{font-size:13px;letter-spacing:.025em;line-height:1.5}
.v4-film-toggle{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-height:48px;padding:12px 20px;border:1px solid #ffffff80;border-radius:100px;background:#0b2419b8;backdrop-filter:blur(12px);color:#fff;font:500 14px/1.4 var(--sans,Arial),sans-serif;cursor:pointer;transition:background .25s,border-color .25s}
.v4-film-toggle svg{width:18px;height:18px;fill:currentColor;flex-shrink:0}
.v4-film-toggle:hover{background:#183c2be8;border-color:#fff}
.v4-film-toggle:focus-visible,.v4-film a:focus-visible{outline:2px solid currentColor;outline-offset:6px}
.v4-film-toggle:disabled{cursor:default;opacity:.75}
.v4-film-credit{font-size:12px;line-height:1.6;padding:12px 0 15px;text-align:right;color:#d3ddd2;overflow-wrap:anywhere}
.v4-film-credit a{text-underline-offset:4px;color:inherit}
.v4-film-music-credit{margin-top:4px}
.v4-film-music-credit>div+div{margin-top:2px}
.v4-film--editorial{background:var(--v4-paper);color:var(--v4-ink);padding:110px var(--v2-gutter) 100px;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);gap:0 clamp(45px,6vw,100px);align-items:center}
.v4-film--editorial .v4-film-stage{min-height:530px;height:42vw;max-height:720px;align-self:stretch;border-radius:3px}
.v4-film--editorial .v4-film-stage:after{content:'';position:absolute;inset:55% 0 0;pointer-events:none;background:linear-gradient(transparent,#0b2114bf)}
.v4-film--editorial .v4-film-copy{padding:35px 0}
.v4-film--editorial .v4-film-copy h2{font-size:clamp(48px,4.5vw,76px);max-width:12ch}
.v4-film--editorial .v4-film-copy h2 em{color:#61754d}
.v4-film--editorial .v4-film-copy p{color:#4c5d51;font-size:17px}
.v4-film--editorial .v4-film-controls{left:24px;right:24px;bottom:24px;justify-content:flex-end}
.v4-film--editorial .v4-film-state{margin-right:auto;max-width:15ch}
.v4-film--editorial .v4-film-credit{grid-column:1;color:#5b6d5b}
@media(min-width:1600px){.v4-film--editorial{grid-template-columns:minmax(0,1.15fr) minmax(0,1fr)}}
@media(max-width:1050px){.v4-film--editorial{gap:0 36px;padding-top:80px;padding-bottom:75px}.v4-film--editorial .v4-film-stage{min-height:470px}.v4-film--editorial .v4-film-copy h2{font-size:52px}.v4-film--editorial .v4-film-state{display:none}}
@media(max-width:760px){
 .v4-film--cinematic{padding:12px 12px 0}.v4-film--cinematic .v4-film-stage{min-height:780px;padding:95px 24px 135px;align-items:center}
 .v4-film-copy h2{font-size:clamp(48px,11vw,76px);max-width:13ch}.v4-film-copy p{font-size:17px;line-height:1.85}
 .v4-film-copy .v2-eyebrow{font-size:13px;letter-spacing:.15em}.v4-film--cinematic .v4-film-shade{background:linear-gradient(90deg,#071a14c9,#071a1466),linear-gradient(0deg,#071a14d9,transparent 42%)}
 .v4-film-controls{left:24px;right:24px;bottom:22px;gap:12px;align-items:flex-end}.v4-film-state{max-width:16ch;font-size:12px}.v4-film-toggle{padding:12px 15px}
 .v4-film-credit{font-size:12px}.v4-film--editorial{padding:65px var(--v2-gutter);grid-template-columns:minmax(0,1fr);gap:0}
 .v4-film--editorial .v4-film-stage{height:auto;min-height:400px;aspect-ratio:4/3;max-height:none;order:1}
 .v4-film--editorial .v4-film-copy{padding:0 0 35px;order:0}.v4-film--editorial .v4-film-copy h2{font-size:clamp(46px,10vw,66px);max-width:14ch}
 .v4-film--editorial .v4-film-credit{order:2}.v4-film--editorial .v4-film-controls{left:20px;right:20px}.v4-film--editorial .v4-film-state{display:block}
}
@media(max-width:380px){.v4-film-controls{flex-wrap:wrap;align-items:center;gap:8px}.v4-film-state{max-width:none}.v4-film--cinematic .v4-film-stage{padding-left:18px;padding-right:18px}.v4-film--editorial .v4-film-stage{min-height:340px}}
@media(prefers-reduced-motion:reduce){.v4-film-video,.v4-film-toggle{transition:none}}
/* An opt-in listening moment, integrated into the film rather than a floating bar. */
.v4-music{max-width:440px;margin-top:34px;padding:20px 22px 16px;border:1px solid #ffffff36;border-radius:18px;background:linear-gradient(135deg,#19382bcf,#0b241be0);box-shadow:0 12px 40px #06150e20;backdrop-filter:blur(20px);color:#f4f6ee;font-family:var(--sans,Arial),sans-serif}
.v4-music audio{display:none}
.v4-music-main{display:flex;align-items:center;gap:15px}
.v4-music-play{flex:0 0 46px;width:46px;height:46px;display:grid;place-items:center;border:1px solid #fff9;border-radius:50%;background:#eff3e6;color:#193426;cursor:pointer;transition:transform .25s,background .25s,box-shadow .25s}
.v4-music-play:hover{transform:scale(1.06);background:#fff;box-shadow:0 0 24px #e7f3ce26}
.v4-music-play svg{width:20px;height:20px}
.v4-music-caption{min-width:0;display:grid;gap:5px}
.v4-music-heading{font-size:15px;font-weight:600;line-height:1.4;letter-spacing:.01em}
.v4-music-status{font-size:13px;line-height:1.5;color:#d2ddcf}
.v4-music-status:empty{display:none}
.v4-music-wave{margin-left:auto;display:flex;gap:3px;align-items:center;height:26px;flex-shrink:0}
.v4-music-wave i{display:block;width:2px;height:18px;border-radius:3px;background:#d7e5c8;transform:scaleY(.25);transform-origin:center}
.v4-music-wave i:nth-child(2n){height:26px}
.v4-music[data-playing=true] .v4-music-wave i{animation:v4-music-wave 1.2s ease-in-out infinite alternate}
.v4-music-wave i:nth-child(2){animation-delay:-.3s!important}.v4-music-wave i:nth-child(3){animation-delay:-.7s!important}.v4-music-wave i:nth-child(4){animation-delay:-.9s!important}
@keyframes v4-music-wave{to{transform:scaleY(1)}}
.v4-music-volume{display:flex;align-items:center;gap:12px;margin-top:13px;font-size:12px;color:#d2ddcf}
.v4-music-volume input{min-width:0;width:100%;height:28px;margin:0;accent-color:#e7eddd;cursor:pointer}
.v4-music-volume span{min-width:34px;text-align:right;font-variant-numeric:tabular-nums}
.v4-music-credit{margin-top:10px;font-size:12px;line-height:1.65;color:#c6d3c3;overflow-wrap:anywhere}
.v4-music-credit a{color:inherit;text-decoration:underline;text-decoration-color:#c6d3c36b;text-underline-offset:3px}
.v4-music-credit>span{display:block;margin-top:4px}
.v4-music--river{max-width:440px;background:#e4e9de;color:#213b2b;border-color:#9fb49766;box-shadow:none;backdrop-filter:none}
.v4-music--river .v4-music-status,.v4-music--river .v4-music-volume,.v4-music--river .v4-music-credit{color:#425b46}
.v4-music--river .v4-music-credit a{text-decoration-color:#425b4680}
.v4-music--river .v4-music-play{background:#294c36;color:#fff;border-color:#294c36}
.v4-music--river .v4-music-play:hover{background:#1b3927}
.v4-music--river .v4-music-wave i{background:#456c4b}
.v4-music--river .v4-music-volume input{accent-color:#345d3d}
.v4-music--river button:focus-visible,.v4-music--river input:focus-visible{outline-color:#294c36}
.v4-music button:focus-visible,.v4-music input:focus-visible{outline:2px solid #fff;outline-offset:4px}
html[data-v2-motion=paused] .v4-music-wave i{animation:none!important}
@media(max-width:760px){.v4-music{max-width:440px;padding:18px 16px 15px}.v4-music-main{gap:12px}.v4-music-wave{gap:2px}.v4-music-heading{font-size:14px}}
@media(prefers-reduced-motion:reduce){.v4-music-wave i{animation:none!important}.v4-music-play{transition:none}}

/* A photographic light journey. Depth, not scroll hijacking; the normal page remains intact. */
.v4-journey{position:relative;height:320svh;background:#091a1d;color:#f1f4ef;isolation:isolate;scroll-margin-top:0}
.v4-journey-stage{position:sticky;top:0;min-height:720px;height:100svh;overflow:hidden;isolation:isolate;--journey-x:50%;--journey-y:45%;--journey-drift:0%;--journey-accent:#b5e3da}
.v4-journey-stage[data-chapter="1"]{--journey-accent:#d6dfaa}.v4-journey-stage[data-chapter="2"]{--journey-accent:#c0e6f2}
.v4-journey-backdrops,.v4-journey-backdrops>div,.v4-journey-backdrops img,.v4-journey-backdrops picture{position:absolute;inset:0;display:block;width:100%;height:100%;pointer-events:none}
.v4-journey-backdrops>div{opacity:0;transition:opacity 1.7s;overflow:hidden}.v4-journey-backdrops>div[data-active=true]{opacity:.28}
.v4-journey-backdrops img{object-fit:cover;filter:saturate(.65) brightness(.63);transform:scale(1.12) translateY(var(--journey-drift));transition:transform .2s linear}
.v4-journey-atmosphere{position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse at var(--journey-x) var(--journey-y),#4a9b9130 0%,transparent 57%),linear-gradient(90deg,#07181fec 0%,#07181f9c 39%,#07181f25 77%),linear-gradient(0deg,#06171cee,transparent 45%,#091a1dcc);z-index:1}
.v4-journey-particles{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:3;mix-blend-mode:screen;opacity:.9}
.v4-journey-orbits{position:absolute;inset:0;pointer-events:none;z-index:2;perspective:900px;opacity:.6}
.v4-journey-orbits i{position:absolute;display:block;width:69vw;height:69vw;left:35%;top:50%;margin-top:-34.5vw;border:1px solid #acd7d638;border-radius:50%;box-shadow:0 0 28px #b6e4d810,inset 0 0 24px #b6e4d808;transform:rotateX(62deg) rotateY(-25deg) rotateZ(-20deg)}
.v4-journey-orbits i:nth-child(2){width:80vw;height:80vw;margin-top:-40vw;transform:rotateX(64deg) rotateY(35deg) rotateZ(14deg);border-color:#e1d0a72b}
.v4-journey-orbits i:nth-child(3){width:60vw;height:60vw;margin-top:-30vw;transform:rotateX(32deg) rotateY(63deg);border-color:#a2d9e038}
.v4-journey-mast{position:absolute;z-index:7;top:105px;left:var(--v2-gutter);right:var(--v2-gutter);display:flex;justify-content:space-between;align-items:center;gap:24px}
.v4-journey-mast h2{font:400 14px/1.5 var(--sans,Arial),sans-serif;letter-spacing:.13em;text-transform:uppercase;margin:12px 0 0;color:#d4e2df}
.v4-journey-skip{display:flex;gap:15px;align-items:center;font-size:14px;color:#dbe5e0;text-decoration:none;min-height:44px}.v4-journey-skip span{font-size:21px}
.v4-journey-word{position:absolute;z-index:2;top:25%;left:20%;font:400 clamp(100px,17.2vw,330px)/1 Georgia,serif;letter-spacing:-.065em;color:#c8e7dd0a;white-space:nowrap;transform:translateX(var(--journey-drift));pointer-events:none}
.v4-journey-copy-stack{position:absolute;top:30%;left:var(--v2-gutter);z-index:6;width:min(35%,460px);min-height:300px}
.v4-journey-copy-layers{display:grid}.v4-journey-copy-layers>div{position:relative;grid-area:1/1;width:100%;will-change:transform,opacity}
.v4-journey-copy-layers>div[aria-hidden=true]{pointer-events:none;visibility:hidden}.v4-journey-copy-layers>div[aria-hidden=false]{visibility:visible}
.v4-journey-eyebrow{display:block;font-size:12px;letter-spacing:.15em;line-height:1.7;color:#c4d9d1}
.v4-journey-copy-stack h3{font:400 clamp(48px,5.3vw,88px)/1.05 Georgia,serif;letter-spacing:-.047em;margin:20px 0 24px;color:#f4f5ef;text-wrap:balance}
.v4-journey-copy-stack h3 em{display:block;color:var(--journey-accent);font-weight:400;transition:color 1s}
.v4-journey-copy-stack p{max-width:35ch;font-size:16px;line-height:1.8;color:#d3dfdb;margin:0 0 22px}
.v4-journey-link{display:inline-flex;gap:25px;align-items:center;min-height:44px;color:#f3f4e9;border-bottom:1px solid #d4e5de80;text-decoration:none;font-size:14px;transition:gap .3s}.v4-journey-link:hover{gap:38px}.v4-journey-link span{font-size:22px}
.v4-journey-depth{position:absolute;z-index:4;top:25%;left:49%;width:44%;height:49%;perspective:1100px;perspective-origin:50% 50%;transform-style:preserve-3d;pointer-events:none}
.v4-journey-plane{position:absolute;inset:0;margin:0;transform-origin:center;will-change:transform,opacity;backface-visibility:hidden;transform-style:preserve-3d}
.v4-journey-photo{height:calc(100% - 35px);position:relative;overflow:hidden;border-radius:3px;box-shadow:0 35px 65px #0007,0 0 0 1px #ddf5ed45,0 0 50px #9cd4c414;background:#0c2527}
.v4-journey-photo img,.v4-journey-photo picture{display:block;width:100%;height:100%;object-fit:cover}
.v4-journey-photo:after{content:'';position:absolute;inset:0;box-shadow:inset 0 0 0 1px #edfff32e;pointer-events:none}
.v4-journey-photo-glint{position:absolute;inset:0;background:linear-gradient(115deg,transparent 18%,#e4fbe013 42%,transparent 58%);mix-blend-mode:screen;pointer-events:none}
.v4-journey-plane figcaption{display:flex;justify-content:space-between;gap:18px;color:#cfdfd9;letter-spacing:.025em;font-size:12px;line-height:1.5;margin-top:14px}.v4-journey-plane:not([data-active=true]) figcaption{opacity:0}
.v4-journey-bottom{position:absolute;z-index:8;bottom:27px;left:var(--v2-gutter);right:var(--v2-gutter);display:flex;align-items:flex-end;justify-content:space-between;gap:40px}
.v4-journey-controls{padding-bottom:9px;min-width:0}.v4-journey-hint{display:block;color:#abc5bf;font-size:12px;letter-spacing:.035em;line-height:1.6;margin-bottom:18px}.v4-journey-hint>span{display:inline-block;margin-left:14px;font-size:19px}
.v4-journey-chapters{display:flex;border-top:1px solid #bddec632;gap:24px}
.v4-journey-chapters button{position:relative;display:flex;align-items:center;gap:9px;padding:17px 0 8px;background:none;border:0;color:#bbcfc8;min-height:48px;cursor:pointer;font:400 14px/1.4 var(--sans,Arial),sans-serif;transition:color .3s}
.v4-journey-chapters button>span{font-size:12px;color:#97b7b0}.v4-journey-chapters button:before{content:'';position:absolute;left:0;right:0;top:-1px;height:2px;background:#dcf4e9;transform:scaleX(0);transform-origin:left;transition:transform .55s}
.v4-journey-chapters button[aria-pressed=true]{color:#fff}.v4-journey-chapters button[aria-pressed=true]:before{transform:scaleX(1)}
.v4-journey a:focus-visible,.v4-journey button:focus-visible{outline:2px solid #d7f4e7;outline-offset:6px}
.v4-music--journey{margin:0;width:350px;max-width:38%;padding:14px 17px 12px;border-color:#cee8e02b;background:#102b2bb3;border-radius:15px}
.v4-music--journey .v4-music-play{height:40px;width:40px;flex-basis:40px;background:#d9eae2}.v4-music--journey .v4-music-heading{font-size:14px}
.v4-music--journey .v4-music-volume{margin-top:6px}.v4-music--journey .v4-music-credit{font-size:12px;margin-top:3px}.v4-music--journey .v4-music-credit>span{display:block;font-size:12px}
.v4-journey[data-static=true]{height:auto}
.v4-journey[data-static=true] .v4-journey-stage{position:relative;min-height:0;height:auto;padding:100px var(--v2-gutter) 45px;display:flex;flex-direction:column}
.v4-journey[data-static=true] .v4-journey-mast{position:relative;inset:auto}
.v4-journey[data-static=true] .v4-journey-copy-stack{position:relative;inset:auto;width:100%;min-height:0;margin-top:45px}
.v4-journey[data-static=true] .v4-journey-copy-layers>div{position:relative;display:none}
.v4-journey[data-static=true] .v4-journey-copy-layers>div[aria-hidden=false]{display:block}
.v4-journey[data-static=true] .v4-journey-copy-stack p{max-width:55ch}
.v4-journey[data-static=true] .v4-journey-depth{position:relative;inset:auto;width:100%;max-width:1000px;height:auto;aspect-ratio:1.5;margin:35px auto 10px}
.v4-journey[data-static=true] .v4-journey-bottom{position:relative;inset:auto;margin-top:30px}
.v4-journey[data-static=true] .v4-journey-chapters{flex-wrap:wrap}
.v4-journey[data-static=true] .v4-journey-chapters button{overflow-wrap:anywhere;max-width:100%}
.v4-journey[data-static=true] .v4-journey-copy-stack h3{overflow-wrap:anywhere}
.v4-journey[data-static=true] .v4-journey-particles{display:none}.v4-journey[data-static=true] .v4-journey-plane:not([data-active=true]){visibility:hidden}
@media(min-width:1600px){.v4-journey-copy-stack{top:32%}.v4-journey-depth{top:24%;height:48%}.v4-journey-bottom{bottom:40px}.v4-music--journey{width:370px}}
@media(min-width:960px) and (max-height:800px){.v4-journey-mast{top:92px}.v4-journey-copy-stack{top:25%;width:36%}.v4-journey-copy-stack h3{font-size:clamp(46px,4.5vw,70px);margin:12px 0 17px}.v4-journey-copy-stack p{font-size:16px;line-height:1.65;max-width:38ch;margin-bottom:8px}.v4-journey-depth{top:24%;height:43%}.v4-journey-mast h2{margin-top:6px}.v4-journey-bottom{bottom:20px}.v4-journey-hint{margin-bottom:9px}}
@media(max-width:1100px){.v4-journey-chapters{gap:17px}.v4-journey-plane figcaption span:last-child{display:none}.v4-journey-copy-stack h3{font-size:58px}}
@media(max-width:959px){
 .v4-journey,.v4-journey[data-static=true]{height:auto}.v4-journey-stage,.v4-journey[data-static=true] .v4-journey-stage{position:relative;height:auto;min-height:0;padding:85px var(--v2-gutter) 35px;display:flex;flex-direction:column}
 .v4-journey-mast{position:relative;inset:auto;align-items:flex-start}.v4-journey-mast h2{font-size:12px;letter-spacing:.09em;max-width:22ch}.v4-journey-skip{font-size:12px;gap:10px;max-width:13ch;line-height:1.5}
 .v4-journey-copy-stack{position:relative;top:auto;left:auto;width:100%;margin-top:44px;min-height:0}.v4-journey-copy-layers>div{position:relative;display:none}.v4-journey-copy-layers>div[aria-hidden=false]{display:block}
 .v4-journey-copy-stack h3{font-size:clamp(46px,8vw,72px);margin:14px 0 20px}.v4-journey-copy-stack h3 em{display:inline}.v4-journey-copy-stack h3 em:before{content:' '}.v4-journey-copy-stack p{max-width:48ch;min-height:5.4em;font-size:16px}.v4-journey-eyebrow{font-size:12px;letter-spacing:.11em}
 .v4-journey-depth{position:relative;top:auto;left:auto;width:100%;height:auto;aspect-ratio:1.45;margin:30px 0 10px;perspective:none}.v4-journey-plane{transform:none!important}.v4-journey-plane:not([data-active=true]){visibility:hidden}.v4-journey-photo{height:calc(100% - 34px)}
 .v4-journey-bottom{position:relative;inset:auto;display:flex;flex-wrap:wrap;gap:26px;margin-top:25px}.v4-journey-controls{width:100%}.v4-journey-hint{margin-bottom:12px}.v4-journey-chapters{justify-content:space-between;gap:12px}.v4-journey-chapters button{font-size:14px}
 .v4-music--journey{width:100%;max-width:440px}.v4-journey-word{top:38%;left:-15%;font-size:35vw}.v4-journey-orbits i{width:120vw;height:120vw;left:0}.v4-journey-particles{display:none}
}
@media(prefers-reduced-motion:reduce){.v4-journey *{transition:none!important}.v4-journey-link:hover{gap:25px}.v4-journey-backdrops img{transform:none}}
.v4-journey-mast>div{min-width:0}.v4-journey-mast h2,.v4-journey-copy-stack p,.v4-journey-link{overflow-wrap:anywhere;max-width:100%}.v4-journey-plane figcaption>span:first-child{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* An optical detail viewer: the existing photo is unchanged beneath a moving lens. */
.v4-details{background:var(--v4-ink,#14291f);color:#f4f3ec;padding:115px var(--v2-gutter);position:relative;isolation:isolate}
.v4-details-heading,.v4-details-toolbar,.v4-details-controls,.v4-details-caption{max-width:1440px;margin-left:auto;margin-right:auto}
.v4-details-heading{display:grid;grid-template-columns:1.5fr 1fr;gap:8%;align-items:end;margin-bottom:65px}
.v4-details-heading h2{font-family:Georgia,serif;font-size:clamp(48px,5.8vw,90px);font-weight:400;line-height:1.08;letter-spacing:-.035em;margin:22px 0 0;overflow-wrap:anywhere}
.v4-details-heading h2 em{display:block;font-weight:400;color:#b9caa8}
.v4-details-heading p{font-size:17px;line-height:1.85;color:#cbd8c9;max-width:39ch;margin:0 0 6px;overflow-wrap:anywhere}
.v4-details-toolbar{display:flex;justify-content:space-between;align-items:center;gap:25px;border-top:1px solid #d6e4d42b;padding:20px 0 30px}
.v4-details-modes{display:flex;gap:7px;flex-wrap:wrap}
.v4-details-modes button{border:1px solid #b5c9ae4d;border-radius:100px;background:transparent;color:#d5e0d0;padding:12px 19px;min-height:46px;font:400 14px/1.5 var(--sans,Arial),sans-serif;cursor:pointer;transition:background .3s,color .3s,border-color .3s}
.v4-details-modes button[aria-pressed=true]{background:#eef2e6;color:#173623;border-color:#eef2e6}
.v4-details-modes button span{margin-left:14px}.v4-details-preview-label{font-size:12px;line-height:1.6;letter-spacing:.06em;color:#aebfaa}
.v4-details-stage{position:relative;isolation:isolate;aspect-ratio:var(--detail-ratio,1.5);width:min(100%,calc(78svh * var(--detail-ratio,1.5)));max-width:1440px;margin:auto;background:#243e2d;clip-path:inset(0 var(--detail-inset,0%) round 4px);overflow:hidden;touch-action:pan-y}
.v4-details-photo{position:absolute;inset:0;width:100%;height:100%;display:block;object-fit:fill;pointer-events:none;user-select:none}
.v4-details-lens{position:absolute;z-index:2;left:50%;top:50%;width:28%;aspect-ratio:1;transform:translate(-50%,-50%);border-radius:50%;padding:0;border:2px solid #f1f6e8;box-shadow:0 0 0 7px #d9e8d427,0 18px 55px #07180cb3,inset 0 0 0 1px #fff8;overflow:hidden;cursor:grab;background:#173124;touch-action:none;opacity:0;visibility:hidden;transition:opacity .3s;user-select:none}
.v4-details-stage[data-enabled=true] .v4-details-lens{opacity:1;visibility:visible}.v4-details-lens:active{cursor:grabbing}
.v4-details-lens img{position:absolute;left:0;top:0;max-width:none;pointer-events:none;user-select:none;transform-origin:0 0}
.v4-details-reticle{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);color:#fff9;font:200 28px/1 Arial;pointer-events:none;text-shadow:0 1px 5px #07180c}
.v4-details-scale{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);color:#fff;background:#10251bc9;backdrop-filter:blur(8px);border:1px solid #ffffff42;border-radius:20px;padding:4px 10px;font:400 12px/1.3 var(--sans,Arial),sans-serif;pointer-events:none}
.v4-details-controls{display:flex;justify-content:space-between;align-items:center;gap:25px;padding:30px 0;border-bottom:1px solid #d6e4d42b}
.v4-details-control-label{display:block;color:#aebfaa;font-size:12px;letter-spacing:.09em;margin-bottom:13px}
.v4-details-points{display:flex;gap:27px;flex-wrap:wrap}
.v4-details-points button{border:0;background:none;padding:8px 0;color:#c5d4bd;font:400 16px/1.5 var(--sans,Arial),sans-serif;cursor:pointer;display:flex;gap:9px;align-items:center;min-height:44px;transition:color .3s}
.v4-details-points button span{width:7px;height:7px;border:1px solid #a5bea0;border-radius:50%;transition:box-shadow .3s,background .3s;flex-shrink:0}
.v4-details-points button[aria-pressed=true]{color:#fff}.v4-details-points button[aria-pressed=true] span{background:#d9ecc5;box-shadow:0 0 14px #deefc4b3}
.v4-details-zoom{display:flex;align-items:center;gap:13px;color:#cfdbca;font-size:14px;flex-wrap:wrap}
.v4-details-zoom input{width:125px;min-width:80px;height:30px;accent-color:#d4e3c4;cursor:pointer}.v4-details-zoom output{min-width:36px;font-variant-numeric:tabular-nums}
.v4-details-caption{display:flex;justify-content:space-between;align-items:center;gap:30px;padding-top:28px}
.v4-details-caption p{font-size:14px;line-height:1.7;color:#d0dccb;margin:0 0 8px;max-width:65ch;overflow-wrap:anywhere}.v4-details-caption>div>span{font-size:12px;color:#a6b99f;letter-spacing:.04em}
.v4-details-caption .v2-button{flex-shrink:0;max-width:45%;overflow-wrap:anywhere}
.v4-details button:focus-visible,.v4-details input:focus-visible{outline:2px solid #f4f6e9;outline-offset:5px}.v4-details-lens:focus-visible{outline-offset:-8px}
.v4-details button:disabled,.v4-details input:disabled{opacity:.45;cursor:default}.v4-details-error{position:absolute;inset:20%;display:grid;place-items:center;font-size:16px;line-height:1.7}
.v4-details-zoom-error{max-width:1440px;margin:22px auto 0;color:#d0dccb;font-size:16px;line-height:1.7}
@media(max-width:900px){.v4-details{padding-top:85px;padding-bottom:85px}.v4-details-heading{grid-template-columns:1fr;gap:28px;margin-bottom:40px}.v4-details-heading p{max-width:60ch}.v4-details-controls{align-items:flex-start;flex-direction:column;gap:20px}.v4-details-caption{align-items:flex-start;flex-direction:column}.v4-details-caption .v2-button{max-width:100%}.v4-details-preview-label{max-width:16ch;text-align:right}}
@media(max-width:600px){.v4-details{padding-top:65px;padding-bottom:65px}.v4-details-heading h2{font-size:clamp(42px,9vw,58px)}.v4-details-heading p{font-size:16px}.v4-details-toolbar{align-items:flex-start;gap:12px;flex-direction:column;padding-bottom:24px}.v4-details-preview-label{max-width:none;text-align:left}.v4-details-stage{width:100%}.v4-details-modes button{padding:10px 14px}.v4-details-points{gap:18px}.v4-details-points button{font-size:14px}.v4-details-controls{padding:20px 0}.v4-details-zoom{width:100%}.v4-details-zoom input{flex:1}.v4-details-scale{bottom:7px}.v4-details-caption{padding-top:22px}}
@media(prefers-reduced-motion:reduce){.v4-details *{transition:none!important}.v4-details-stage{clip-path:none!important}}
.v4-details[data-still=true] *{transition:none!important}.v4-details[data-still=true] .v4-details-stage{clip-path:none!important}

/* White photographic entrance. Viewport-sized vectors keep mobile rendering lightweight. */
.brand-loader{
 background:transparent;overflow:hidden;isolation:isolate;transition:none;touch-action:none;
 padding:20px;padding:max(16px,env(safe-area-inset-top)) max(16px,env(safe-area-inset-right)) max(16px,env(safe-area-inset-bottom)) max(16px,env(safe-area-inset-left));
}
.brand-loader[data-phase="leaving"]{opacity:1;visibility:visible;pointer-events:auto}
.brand-loader__reveal{position:absolute;inset:0;z-index:0;width:100%;height:100%;overflow:hidden;pointer-events:none}
.brand-loader__veil{fill:#fff}
.brand-loader__wave{fill:none;stroke:#fff}
.brand-loader__wave-halo{stroke-width:32;opacity:.16}
.brand-loader__wave-soft{stroke-width:14;opacity:.36}
.brand-loader__wave-core{stroke-width:3;opacity:.95}
.brand-loader__content{position:relative;z-index:1;transform-origin:center 42%}
.brand-loader__trace,.brand-loader__orbit{animation-duration:var(--intro-duration,650ms);animation-delay:0ms}
.brand-loader__status{font-size:14px}
.brand-loader[data-still="true"] .brand-loader__trace{animation:none;stroke-dashoffset:0}
.brand-loader[data-still="true"] .brand-loader__orbit{animation:none;transform:rotate(45deg)}
.brand-loader__flash{
 position:absolute;inset:0;z-index:4;pointer-events:none;opacity:0;
 background:radial-gradient(ellipse 210px 150px at var(--burst-x,57%) var(--burst-y,43%),#fff 0%,#ffffffdc 20%,#ffffff36 65%,transparent 100%);
}
.brand-loader[data-phase="leaving"][data-exit="wave"] .brand-loader__flash{animation:brand-loader-camera-flash 240ms ease-out both}
.brand-loader[data-phase="leaving"][data-exit="wave"] .brand-loader__content{animation:brand-loader-photo-release 250ms cubic-bezier(.2,.7,.2,1) both}
.brand-loader[data-phase="leaving"][data-exit="fade"] .brand-loader__reveal,
.brand-loader[data-phase="leaving"][data-exit="fade"] .brand-loader__content{animation:brand-loader-soft-exit 160ms ease-out both}
@keyframes brand-loader-camera-flash{0%{opacity:0}18%{opacity:.9}42%{opacity:.6}100%{opacity:0}}
@keyframes brand-loader-photo-release{0%{opacity:1;transform:scale(1)}40%{opacity:.8}100%{opacity:0;transform:scale(1.025)}}
@keyframes brand-loader-soft-exit{to{opacity:0}}
/* Keep the logo, wordmark and skip button inside short/landscape phone screens. */
@media(max-width:760px),(max-height:600px){
 .brand-loader__art{width:min(360px,calc(100vw - 48px),max(80px,calc((100vh - 150px)/1.4)));width:min(360px,calc(100vw - 48px),max(80px,calc((100svh - 150px)/1.4)))}
 .brand-loader__wordmark-crop{margin-top:16px}
 .brand-loader__status{margin:8px 0 2px;font-size:13px}
 .brand-loader__trace--glow{filter:drop-shadow(0 0 6px #fff);stroke-width:24px}
 .brand-loader__light-halo{filter:none;opacity:.6}
 .brand-loader__light-rays,.brand-loader__dot{filter:drop-shadow(0 0 5px #fff)}
}
@media(prefers-reduced-motion:reduce){
 .brand-loader__flash,.brand-loader__wave{display:none!important}
 .brand-loader[data-phase="leaving"] .brand-loader__reveal,
 .brand-loader[data-phase="leaving"] .brand-loader__content{animation:brand-loader-soft-exit 160ms ease-out both}
}

/* V6: quiet, photographic additions to the unchanged V4 foundation. */
.v6-site{--v6-ink:#17372b;--v6-moss:#667e61;--v6-paper:#f0f0e6;--v6-line:#29453325}
.v6-story,.v6-places,.v6-behind,.v6-inquiry{padding:110px clamp(24px,6vw,104px);scroll-margin-top:88px}
.v6-section-head{display:grid;grid-template-columns:1.2fr .8fr;align-items:end;gap:7vw;margin-bottom:66px}
.v6-section-head h2,.v6-behind h2,.v6-inquiry h2{font-family:var(--font-display,Georgia,serif);font-size:clamp(36px,4.7vw,74px);font-weight:400;line-height:1.04;letter-spacing:-.035em;max-width:850px;margin:22px 0 0;text-wrap:balance}
.v6-section-head p,.v6-behind p,.v6-inquiry__intro>p{font-size:clamp(16px,1.2vw,19px);line-height:1.75;max-width:530px;margin:0}
.v6-story{background:#e9eadf;color:var(--v6-ink)}
.v6-story__layout{display:grid;grid-template-columns:1.55fr .8fr;gap:7vw;align-items:start}
.v6-story__visual{position:sticky;top:115px;margin:0;align-self:start}
.v6-story__image{overflow:hidden;background:#304b34;aspect-ratio:1.24}
.v6-story__image picture,.v6-story__image img{display:block;width:100%;height:100%;object-fit:cover}
.v6-story__image img{transform:scale(var(--story-zoom,1));transition:transform 1.5s cubic-bezier(.2,.6,.2,1)}
.v6-story__visual figcaption{display:flex;justify-content:space-between;gap:20px;padding:17px 0;border-bottom:1px solid var(--v6-line);font-size:12px;letter-spacing:.04em}
.v6-story__steps{display:flex;gap:9px;padding:18px 0}
.v6-story__steps a{height:28px;display:block;width:45px;position:relative}
.v6-story__steps a:after{content:'';position:absolute;inset:12px 0;background:#15392e35;transition:background .4s}
.v6-story__steps a[aria-current=step]:after{background:#17372b}
.v6-story__chapters article{min-height:57vh;display:flex;flex-direction:column;justify-content:center;padding:40px 0;scroll-margin-top:150px}
.v6-story__chapters h3,.v6-place-result h3,.v6-behind__text h3{font-family:var(--font-display,Georgia,serif);font-size:clamp(30px,3vw,47px);font-weight:400;line-height:1.08;letter-spacing:-.02em;margin:18px 0 22px}
.v6-story__chapters p,.v6-place-result p{font-size:16px;line-height:1.85;margin:0 0 22px}
.v6-small{font-size:10px;font-weight:600;letter-spacing:.18em;line-height:1.5}
.v6-link{display:inline-flex;align-items:center;gap:20px;background:transparent;border:0;border-bottom:1px solid currentColor;border-radius:0;padding:12px 0;color:inherit;font:inherit;font-size:13px;text-decoration:none;cursor:pointer;width:fit-content;max-width:100%;text-align:left}
.v6-link span{transition:transform .3s}.v6-link:hover span{transform:translate(3px,-3px)}
.v6-camera-data{display:grid;gap:12px;border-top:1px solid var(--v6-line);margin:30px 0 0;padding-top:20px;font-size:12px;line-height:1.6}
.v6-camera-data div{display:grid;grid-template-columns:90px 1fr;gap:12px}.v6-camera-data dt{color:#586b5c}.v6-camera-data dd{margin:0}
.v6-places{background:#16382d;color:#eff2e6}
.v6-places .v2-eyebrow{color:#c0cfa6}.v6-places__layout{display:grid;grid-template-columns:1fr 1.2fr;gap:7vw}
.v6-atlas{position:relative;border:1px solid #dce5ce28;background:radial-gradient(ellipse at 40% 40%,#2b4b39,#15342a 80%);padding:26px;align-self:start;min-width:0}
.v6-atlas__caption{display:flex;justify-content:space-between;letter-spacing:.2em;font-size:10px;color:#c2ceb2}
.v6-atlas__map{position:relative;aspect-ratio:4/5;max-width:440px;width:100%;margin:6px auto}
.v6-atlas__map svg{width:100%;height:100%;display:block;fill:#78936c25;stroke:#adc39a88;stroke-width:1.2}
.v6-map-pin{position:absolute;transform:translate(-12px,-16px);min-width:32px;min-height:32px;background:none;color:#f4f6e8;border:0;padding:0;display:flex;align-items:center;gap:8px;cursor:pointer;text-align:left;font:inherit;font-size:12px}
.v6-map-pin i{width:24px;height:24px;flex-shrink:0;border:1px solid #d6e2c4;border-radius:50%;display:grid;place-items:center;background:#17362c}
.v6-map-pin i:after{content:'';width:6px;height:6px;border-radius:50%;background:#d6e2c4}
.v6-map-pin[aria-pressed=true] i{background:#e7efce;box-shadow:0 0 0 8px #cddcbe15,0 0 22px #dbe9b93b}.v6-map-pin[aria-pressed=true] i:after{background:#254433}
.v6-map-pin span{padding:6px 9px;background:#102a22c9;border-radius:2px;max-width:125px;overflow-wrap:anywhere}
.v6-atlas p{font-size:11px;line-height:1.7;margin:12px 0;max-width:330px;color:#c2ceba}.v6-atlas__credit{font-size:10px;color:#becbb8;text-underline-offset:4px}
.v6-choice-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
.v6-choice-row button{font:inherit;font-size:12px;color:inherit;background:transparent;border:1px solid currentColor;border-radius:40px;padding:12px 18px;cursor:pointer;transition:color .25s,background .25s;min-height:43px}
.v6-places .v6-choice-row button{border-color:#d6e2c445}.v6-places .v6-choice-row button[aria-pressed=true]{color:#18382c;background:#e4e9d5;border-color:#e4e9d5}
.v6-place-result{animation:v6-arrive .55s ease both;padding-top:30px}.v6-place-result h3{font-size:50px}
.v6-place-photos{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:32px 0 22px}
.v6-place-photos a{display:block;color:inherit;text-decoration:none;min-width:0;overflow:hidden}
.v6-place-photos picture{display:block;overflow:hidden;aspect-ratio:1.42}.v6-place-photos img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .8s cubic-bezier(.2,.7,.2,1)}
.v6-place-photos a:hover img{transform:scale(1.045)}.v6-place-photos a>span{display:flex;justify-content:space-between;gap:16px;font-size:12px;line-height:1.6;padding:13px 0}.v6-place-photos i{font-size:18px;font-style:normal}
.v6-behind{background:#efeee4;color:#253e31}
.v6-behind__head{max-width:980px;margin-bottom:55px}.v6-behind__head p{margin-top:28px;max-width:650px}
.v6-behind__layout{display:grid;grid-template-columns:1.35fr 1fr;gap:6vw;align-items:center}
.v6-behind__photo{background:#dddcd1;aspect-ratio:1.25;overflow:hidden;position:relative}
.v6-behind__photo img{display:block;width:100%;height:100%;object-fit:cover;animation:v6-photo .65s ease both}.v6-behind__photo[data-photo=camera] img{object-fit:contain;background:#d9d8ce}
.v6-behind__caption{position:absolute;left:0;right:0;bottom:0;padding:38px 24px 20px;background:linear-gradient(transparent,#132d27aa);color:white;font-size:9px;letter-spacing:.17em;pointer-events:none}
.v6-behind__content{display:flex;flex-direction:column;align-items:flex-start;gap:40px}.v6-behind .v6-choice-row button{border-color:#29453340}.v6-behind .v6-choice-row button[aria-pressed=true]{background:#214332;color:#f1f1e6;border-color:#214332}
.v6-behind__text{animation:v6-arrive .45s ease both;min-height:220px}.v6-behind__text p{font-size:16px;line-height:1.9}.v6-behind__text h3{margin-top:0}
.v6-inquiry{background:#e4e8db;color:#203d2e;display:grid;grid-template-columns:.85fr 1.15fr;gap:7vw;align-items:start}
.v6-inquiry__intro>p{margin-top:27px}.v6-inquiry__intro .v6-inquiry__notice{font-size:12px;line-height:1.8;border-top:1px solid #29453330;padding-top:24px;max-width:360px}
.v6-inquiry__card{background:#f7f7ef;padding:clamp(24px,3.5vw,50px);min-width:0;border:1px solid #cdd4bf;box-shadow:0 18px 50px #23392708}
.v6-inquiry__progress{display:flex;justify-content:space-between;gap:10px;list-style:none;margin:0 0 38px;padding:0;font-size:10px;line-height:1.5}
.v6-inquiry__progress li{color:#60715c;display:flex;align-items:center;gap:7px}.v6-inquiry__progress span{border:1px solid #aebca5;border-radius:50%;width:22px;height:22px;display:grid;place-items:center}
.v6-inquiry__progress [aria-current=step]{color:#163d2c;font-weight:600}.v6-inquiry__progress [aria-current=step] span,.v6-inquiry__progress [data-done=true] span{background:#244734;color:white;border-color:#244734}
.v6-inquiry__card h3{font-family:var(--font-display,Georgia,serif);font-size:clamp(28px,2.6vw,42px);font-weight:400;line-height:1.12;margin:0 0 28px}
.v6-inquiry__fields{display:grid;gap:20px;animation:v6-arrive .35s ease both}.v6-inquiry__fields>label,.v6-field-pair>label{display:flex;flex-direction:column;gap:8px;font-size:12px;font-weight:500}.v6-inquiry__fields label small{font-size:10px;font-weight:400;opacity:.75}
.v6-inquiry input:not([type=radio]):not([type=checkbox]),.v6-inquiry textarea{font:inherit;font-size:15px;font-weight:400;line-height:1.6;color:#17372b;border:1px solid #b8c5ae;border-radius:2px;background:#fffef8;padding:12px 14px;min-width:0;max-width:100%;width:100%;box-sizing:border-box}
.v6-inquiry textarea{resize:vertical}.v6-field-pair{display:grid;grid-template-columns:1fr 1fr;gap:18px}.v6-inquiry__options{border:0;padding:0;margin:0;display:grid;gap:12px}
.v6-inquiry__options label{display:flex;align-items:center;gap:15px;border:1px solid #bec9b5;padding:22px 20px;cursor:pointer;transition:background .25s,border-color .25s}.v6-inquiry__options [data-selected=true]{background:#e5ecd9;border-color:#2e513b}.v6-inquiry__options strong{display:block;font-size:15px;font-weight:500}.v6-inquiry__options small{display:block;margin-top:8px}.v6-inquiry__options input{accent-color:#274b35;flex:0 0 auto;width:18px;height:18px}.v6-inquiry__options label:focus-within{outline:2px solid #274b35;outline-offset:3px}.v6-inquiry__options label>span{min-width:0;overflow-wrap:anywhere}.v6-inquiry__options i{margin-left:auto;font-size:22px;font-style:normal}
.v6-solid-button{display:inline-flex;align-items:center;justify-content:center;padding:15px 22px;min-height:46px;font:inherit;font-size:13px;line-height:1.5;border:1px solid #22432f;border-radius:2px;background:#22432f;color:#fffff3;cursor:pointer;text-decoration:none;transition:background .25s;box-sizing:border-box;text-align:center}
.v6-solid-button:hover{background:#345f42}.v6-inquiry__actions{display:flex;justify-content:space-between;align-items:center;gap:14px;border-top:1px solid #29453325;padding-top:25px;margin-top:30px}
.v6-inquiry__send{display:flex;gap:15px;align-items:center;flex-wrap:wrap}.v6-small-copy{font-size:12px;line-height:1.75;color:#5b6d5b;margin:10px 0 0}.v6-form-error{background:#f6e6dd;color:#803923;padding:12px 16px;font-size:13px;line-height:1.6;margin:16px 0}
.v6-own-room{padding:22px;background:#f4f4eb;color:#21382c}.v6-own-room header h3{font:400 29px/1.15 Georgia,serif;margin:0 0 12px}.v6-own-room header p{font-size:13px;line-height:1.7;margin:0 0 18px}
.v6-room-upload{display:flex;align-items:center;gap:18px;flex-wrap:wrap;position:relative}.v6-room-file{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden}.v6-room-upload:has(input:focus-visible) label{outline:3px solid #a68140;outline-offset:4px}
.v6-room-canvas{position:relative;width:100%;margin-top:22px;overflow:hidden;background:#e0e1d8}.v6-room-backdrop{display:block;width:100%;height:100%;object-fit:contain;pointer-events:none;user-select:none}
.v6-room-art{position:absolute;transform:translate(-50%,-50%);padding:0;background:#263029;border:0;box-shadow:4px 7px 10px #0005;box-sizing:border-box;cursor:grab;touch-action:none;user-select:none;min-width:0;min-height:0}
.v6-room-art:active{cursor:grabbing}.v6-room-art img{display:block;width:100%;height:100%;object-fit:fill;pointer-events:none;user-select:none}.v6-room-controls{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}.v6-room-controls label{display:grid;gap:10px;font-size:11px}.v6-room-controls input{width:100%;accent-color:#2b5138}.v6-room-controls button{grid-column:1/-1}
.v6-editor-photos{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:24px 0}.v6-editor-photos img{width:100%;height:180px;object-fit:contain;background:#e5e6dc}.v6-editor-photos h3{font-size:16px}.v6-editor-location{border-top:1px solid #dce0d5;padding:26px 0;display:grid;gap:14px}.v6-editor-location small{font-size:12px;color:#556651}
.v6-site :is(a,button,input,textarea):focus-visible,.v6-own-room :is(button,input):focus-visible{outline:3px solid #b49555;outline-offset:5px}
/* Added destinations must remain reachable even on a short viewport. */
.v2-menu__content{justify-content:flex-start;overflow-y:auto;overscroll-behavior:contain;padding-top:95px;padding-bottom:32px}.v2-menu__content>nav{flex-shrink:0}.v2-menu__content>nav>a{font-size:clamp(24px,2.5vw,44px);padding-top:8px;padding-bottom:8px}.v2-menu__content>nav small{font-size:10px}.studio-room__tabs{flex-wrap:wrap}
@keyframes v6-arrive{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes v6-photo{from{opacity:.5;transform:scale(1.025)}to{opacity:1;transform:scale(1)}}
@media(min-width:1600px){.v6-story__layout,.v6-places__layout,.v6-behind__layout,.v6-section-head{max-width:1600px;margin-left:auto;margin-right:auto}.v6-story__visual{max-width:880px}}
@media(max-width:1050px){.v6-story__layout{grid-template-columns:1.2fr .9fr;gap:5vw}.v6-places__layout{gap:4vw}.v6-inquiry{gap:4vw}.v6-inquiry__progress{flex-wrap:wrap;gap:12px}.v6-behind__layout{gap:4vw}}
@media(max-width:850px){.v6-story,.v6-places,.v6-behind,.v6-inquiry{padding:75px 24px}.v6-section-head{grid-template-columns:1fr;gap:25px;margin-bottom:38px}.v6-story__layout{grid-template-columns:1fr;gap:12px}.v6-story__visual{position:relative;top:auto}.v6-story__image{aspect-ratio:1.5}.v6-story__steps{display:none}.v6-story__chapters{display:grid;gap:28px}.v6-story__chapters article{min-height:0;padding:22px 0;border-top:1px solid var(--v6-line)}.v6-story__chapters h3{font-size:34px}.v6-places__layout{grid-template-columns:1fr;gap:35px}.v6-atlas{padding:22px}.v6-atlas__map{max-width:340px}.v6-places__selection{min-width:0}.v6-behind__layout,.v6-inquiry{grid-template-columns:1fr;gap:35px}.v6-behind__photo{aspect-ratio:1.4}.v6-behind__content{gap:25px}.v6-behind__text{min-height:0}.v6-behind__head{margin-bottom:30px}.v6-inquiry__intro .v6-inquiry__notice{max-width:none}.v6-section-head h2,.v6-behind h2,.v6-inquiry h2{font-size:clamp(37px,7vw,60px)}.v6-editor-photos{grid-template-columns:1fr}.v6-editor-photos img{height:240px}}
@media(max-width:500px){.v6-story,.v6-places,.v6-behind,.v6-inquiry{padding:60px 20px}.v6-field-pair{grid-template-columns:1fr}.v6-inquiry__card{padding:23px 18px}.v6-inquiry__progress{display:grid;grid-template-columns:1fr 1fr}.v6-inquiry__options label{padding:18px 12px;gap:9px}.v6-place-photos{gap:12px}.v6-place-result h3{font-size:40px}.v6-choice-row button{padding:11px 13px}.v6-behind__caption{font-size:8px;padding:32px 15px 16px}.v6-room-controls{grid-template-columns:1fr}.v6-own-room{padding:16px}.v6-inquiry__actions{flex-wrap:wrap}.v6-atlas__map{max-width:280px}.v6-map-pin span{max-width:86px;font-size:10px}}
@media(prefers-reduced-motion:reduce){.v6-story__image img,.v6-place-photos img,.v6-behind__photo img{transform:none!important}.v6-story *,.v6-places *,.v6-behind *,.v6-inquiry *{animation:none!important;transition:none!important}}
html[data-v2-motion=paused] :is(.v6-story,.v6-places,.v6-behind,.v6-inquiry) *{animation:none!important;transition:none!important}
html[data-v2-motion=paused] .v6-story__image img{transform:none!important}
.studio-room [hidden]{display:none!important}
.v6-map-pin[data-edge=right]{flex-direction:row-reverse;transform:translate(calc(-100% + 12px),-16px)}
.v2-menu__content nav span{font-size:clamp(23px,2.45vw,40px)}
.v6-room-art:after{content:'';position:absolute;inset:0;box-shadow:inset 0 0 0 2px #263029;pointer-events:none}
/* Final V6: less interface chrome; useful controls remain in their context. */
.v2-menu-toggle{border:0;border-radius:0;background:none}
.v2-menu-toggle:hover{background:none}
.v3-landscapes>.v2-section-head{grid-template-columns:1fr}
.v4-details-controls{display:flex;justify-content:flex-end}
.v4-film-controls--fallback{justify-content:flex-end;pointer-events:none}
.v4-film-controls--fallback button{pointer-events:auto;min-height:46px}
.v4-music-credit summary{cursor:pointer;width:fit-content;font-size:12px;line-height:1.5;list-style-position:inside;color:inherit;padding:8px 0}
.v4-music-credit>div{padding:8px 0;line-height:1.8}
.v4-music-credit:not([open]){display:block;margin-top:12px}

/* A photographic menu, isolated from the former dark navigation overlay. */
.v6-menu{--menu-paper:#f3f2e9;--menu-ink:#243c30;--menu-muted:#5e7162;--menu-line:#29453329;position:fixed;inset:0;width:100%;max-width:none;height:100vh;height:100dvh;max-height:none;margin:0;padding:0;border:0;background:var(--menu-paper);color:var(--menu-ink);overflow-y:auto;overflow-x:hidden;overscroll-behavior:contain;font:16px/1.5 var(--sans,Arial),sans-serif;scrollbar-gutter:stable}
.v6-menu,.v6-menu *{box-sizing:border-box}
.v6-menu[open]{display:block;animation:v6-menu-enter .5s cubic-bezier(.2,.75,.2,1) both}
.v6-menu::backdrop{background:#17291fe8}
.v6-menu[data-leaving=true]{pointer-events:none;animation:v6-menu-leave .28s ease both}
.v6-menu a{color:inherit;text-decoration:none}
.v6-menu button{color:inherit;font:inherit;cursor:pointer}
.v6-menu :is(a,button):focus-visible{outline:2px solid currentColor;outline-offset:5px;border-radius:2px}
.v6-menu__top{position:sticky;top:0;z-index:2;display:flex;justify-content:space-between;align-items:center;gap:24px;min-height:100px;padding:20px clamp(24px,4vw,72px);padding-top:max(20px,env(safe-area-inset-top));background:var(--menu-paper)}
.v6-menu__brand{font-size:clamp(21px,2vw,30px);font-weight:400;letter-spacing:-.055em;line-height:1.15}
.v6-menu__brand em{font-family:Georgia,serif;font-weight:400}
.v6-menu__close{display:flex;align-items:center;justify-content:flex-end;gap:18px;flex-shrink:0;min-height:48px;padding:6px 0 6px 10px;border:0;background:none;font-size:13px!important}
.v6-menu__close svg{width:26px;height:26px;stroke:currentColor;stroke-width:1.4;transition:transform .35s ease}
.v6-menu__close:hover svg{transform:rotate(90deg)}
.v6-menu__layout{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.15fr);gap:clamp(36px,6.5vw,120px);align-items:stretch;max-width:1720px;min-height:calc(100dvh - 100px);padding:10px clamp(24px,4vw,72px) max(32px,env(safe-area-inset-bottom));margin:0 auto}
.v6-menu__navigation{grid-column:2;grid-row:1;display:flex;flex-direction:column;justify-content:center;min-width:0;padding:10px 0}
.v6-menu__primary{display:flex;flex-direction:column;padding-bottom:22px}
.v6-menu__primary>a{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:66px;padding:11px 0;animation:v6-menu-link .6s cubic-bezier(.2,.75,.2,1) both;animation-delay:calc(60ms + var(--menu-order)*55ms)}
.v6-menu__primary>a>span{font:400 clamp(30px,3.5vw,60px)/1.12 Georgia,serif;letter-spacing:-.04em;overflow-wrap:anywhere;transition:transform .35s ease,color .35s ease}
.v6-menu__primary svg{width:27px;height:27px;flex-shrink:0;stroke:currentColor;stroke-width:1.15;transition:transform .35s ease,opacity .35s ease;opacity:.35}
.v6-menu__primary a[aria-current]{color:#59734f}
.v6-menu__primary a:is(:hover,:focus-visible)>span{color:#59734f;transform:translateX(7px)}
.v6-menu__primary a:is(:hover,:focus-visible) svg{opacity:1;transform:translateX(5px)}
.v6-menu__groups{display:grid;grid-template-columns:1fr 1fr;gap:20px 36px;border-top:1px solid var(--menu-line);padding-top:26px}
.v6-menu__groups nav{display:flex;flex-direction:column;align-items:flex-start;min-width:0}
.v6-menu__groups h2{color:var(--menu-muted);font:500 10px/1.6 var(--sans,Arial),sans-serif;letter-spacing:.15em;text-transform:uppercase;margin:0 0 12px}
.v6-menu__groups a{display:flex;align-items:center;gap:12px;min-height:40px;padding:7px 0;font-size:14px;line-height:1.5;overflow-wrap:anywhere;text-underline-offset:5px}
.v6-menu__groups a svg{width:16px;height:16px;stroke:currentColor;stroke-width:1.3;opacity:0;flex-shrink:0;transform:translateX(-5px);transition:transform .3s,opacity .3s}
.v6-menu__groups a:is(:hover,:focus-visible) svg{opacity:1;transform:none}
.v6-menu__groups a[aria-current]{text-decoration:underline}
.v6-menu__account{display:flex;flex-wrap:wrap;align-items:center;gap:4px 28px;margin-top:24px;padding-top:20px;border-top:1px solid var(--menu-line)}
.v6-menu__account a,.v6-menu__account button{display:inline-flex;align-items:center;gap:10px;min-height:44px;font-size:12px;line-height:1.6;padding:6px 0;text-underline-offset:5px;overflow-wrap:anywhere}
.v6-menu__account svg{width:18px;height:18px;flex-shrink:0;stroke:currentColor;stroke-width:1.35}
.v6-menu__account button{border:0;background:none;color:var(--menu-muted);margin-left:auto}
.v6-menu__account :is(a,button):hover{text-decoration:underline}
.v6-menu__account button:disabled{opacity:.5;cursor:wait}
.v6-menu__feature{grid-column:1;grid-row:1;position:relative;isolation:isolate;display:flex;align-items:flex-end;min-height:480px;overflow:hidden;border-radius:3px;background:#203c2f;color:#fffef4!important;animation:v6-menu-feature .8s cubic-bezier(.2,.75,.2,1) both}
.v6-menu__image{position:absolute;inset:0;z-index:-2;opacity:0;transition:opacity .45s ease;pointer-events:none}
.v6-menu__image[data-active=true]{opacity:1}
.v6-menu__photo,.v6-menu__photo img{position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover;object-position:var(--menu-object-position,50% 50%);transition:transform 1.3s cubic-bezier(.2,.6,.2,1)}
.v6-menu__feature:after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,#10251d05 20%,#10251d38 48%,#10251de8 100%);pointer-events:none}
.v6-menu__feature:is(:hover,:focus-visible) .v6-menu__photo{transform:scale(1.035)}
.v6-menu__feature-copy{padding:clamp(25px,3.5vw,56px);width:100%}
.v6-menu__feature-copy p{font:400 clamp(37px,4vw,66px)/1.08 Georgia,serif;letter-spacing:-.045em;white-space:pre-line;overflow-wrap:anywhere;margin:0 0 30px;max-width:12ch;text-wrap:balance}
.v6-menu__feature-copy>span{display:flex;align-items:center;justify-content:space-between;gap:24px;font-size:13px;line-height:1.5;border-top:1px solid #e2eada66;padding-top:20px}
.v6-menu__feature-copy svg{width:25px;height:25px;flex-shrink:0;stroke:currentColor;stroke-width:1.2;transition:transform .35s}
.v6-menu__feature:is(:hover,:focus-visible) .v6-menu__feature-copy svg{transform:translateX(6px)}
@keyframes v6-menu-enter{from{opacity:0;transform:translateY(-14px)}to{opacity:1;transform:none}}
@keyframes v6-menu-leave{to{opacity:0;transform:translateY(-12px)}}
@keyframes v6-menu-link{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes v6-menu-feature{from{opacity:0;clip-path:inset(8% 0 0);transform:translateY(12px)}to{opacity:1;clip-path:inset(0);transform:none}}
@media(min-width:801px) and (max-height:700px){.v6-menu__top{min-height:80px;padding-block:12px}.v6-menu__layout{min-height:calc(100dvh - 80px);gap:5vw}.v6-menu__primary>a{min-height:55px;padding-block:8px}.v6-menu__primary>a>span{font-size:clamp(28px,3vw,44px)}.v6-menu__groups{padding-top:18px}.v6-menu__account{margin-top:18px;padding-top:12px}.v6-menu__feature{min-height:420px}}
@media(max-width:800px){.v6-menu__top{min-height:80px;padding:15px 24px;padding-top:max(15px,env(safe-area-inset-top))}.v6-menu__layout{grid-template-columns:minmax(0,1fr);gap:30px;min-height:calc(100dvh - 80px);padding:5px 24px max(24px,env(safe-area-inset-bottom))}.v6-menu__navigation{grid-column:1;grid-row:1;padding:0}.v6-menu__primary>a>span{font-size:clamp(30px,5.6vw,46px)}.v6-menu__primary>a{min-height:62px;padding:10px 0}.v6-menu__groups{gap:24px}.v6-menu__groups a{min-height:44px}.v6-menu__feature{grid-column:1;grid-row:2;min-height:230px}.v6-menu__feature-copy{padding:28px}.v6-menu__feature-copy p{font-size:37px;max-width:16ch;margin-bottom:22px}.v6-menu__feature-copy>span{padding-top:15px}.v6-menu__feature:after{background:linear-gradient(90deg,#10251dbb,#10251d28)}.v6-menu__account{gap:4px 24px}.v6-menu__account button{margin-left:0}}
@media(max-width:380px){.v6-menu__top{gap:16px;padding-inline:20px}.v6-menu__close{gap:10px;font-size:12px!important}.v6-menu__layout{padding-inline:20px}.v6-menu__primary>a{gap:16px}.v6-menu__primary>a>span{font-size:29px}.v6-menu__groups{column-gap:16px}.v6-menu__groups a{font-size:13px;gap:7px}}
@media(prefers-reduced-motion:reduce){.v6-menu,.v6-menu *{animation:none!important;transition:none!important}.v6-menu__feature,.v6-menu__photo{transform:none!important;clip-path:none!important}}
.v6-menu[data-still=true],.v6-menu[data-still=true] *{animation:none!important;transition:none!important}

.user-access{position:relative;display:flex;align-items:center;gap:14px;font:14px/1.4 var(--sans,Arial),sans-serif;color:inherit}
.user-access *,.auth-layout *,.auth-dialog *{box-sizing:border-box}
.user-access__dashboard{display:inline-flex;align-items:center;gap:8px;min-height:44px;color:inherit;text-decoration:none;font-size:13px;white-space:nowrap}
.user-access__dashboard span{opacity:.65}
.user-access__name{display:block;max-width:100px;overflow:hidden;text-overflow:ellipsis;font-weight:500}.user-access__initials{font-size:13px;letter-spacing:.02em}.v2-header__actions{flex-shrink:0}.v2-header .user-access__menu{color:#253f31}.v2-header .user-access__menu a{color:#294331}
.user-access__trigger{position:relative;display:grid;place-items:center;width:44px;height:44px;padding:10px;border:1px solid currentColor;border-radius:50%;background:transparent;color:inherit;cursor:pointer}
.user-access__trigger svg{width:22px;height:22px;stroke:currentColor;stroke-width:1.4}
.user-access__trigger:disabled{opacity:.45;cursor:wait}
.user-access__signed-in{position:absolute;bottom:0;right:0;width:10px;height:10px;background:#b8c594;border:2px solid #f8f6ed;border-radius:50%}
.user-access__menu{position:absolute;top:calc(100% + 15px);right:0;z-index:120;width:min(320px,calc(100vw - 32px));padding:12px;background:#faf8f0;border:1px solid #dbdfd1;border-radius:14px;color:#253f31;box-shadow:0 20px 70px #10261930;text-align:left;animation:user-menu-in .16s ease-out}
.user-access__identity{display:grid;gap:5px;padding:14px 12px 17px;border-bottom:1px solid #dce0d2;margin-bottom:7px;overflow-wrap:anywhere}
.user-access__identity>span{font-size:9px;font-weight:600;letter-spacing:.11em;color:#697862}
.user-access__identity strong{font:400 26px/1.15 Georgia,serif}
.user-access__identity small{font-size:12px;color:#657460}
.user-access__menu nav{display:flex;flex-direction:column;gap:2px}
.user-access__menu nav>a,.user-access__menu nav>button{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;min-height:44px;padding:11px 12px;border:0;border-radius:6px;background:transparent;color:#294331;font:14px/1.4 var(--sans,Arial),sans-serif;text-align:left;text-decoration:none;cursor:pointer}
.user-access__menu nav>a:hover,.user-access__menu nav>button:hover{background:#eaf0df}
.user-access__menu nav>a>span{font-size:16px;color:#829170}
.user-access__identity.user-access__identity--guest{padding:12px 10px 17px;border-bottom:0;margin-bottom:0}
.user-access__identity.user-access__identity--guest strong{font:500 18px/1.4 var(--sans,Arial),sans-serif}
.user-access__menu nav.user-access__guest-actions{gap:8px}
.user-access__menu nav>a.user-access__login{background:#294632;color:#fffdf4;font-weight:500}
.user-access__menu nav>a.user-access__login:hover{background:#1b3525}
.user-access__menu nav>a.user-access__login>span{color:#c3cda9}
.user-access__menu nav>a.user-access__register{justify-content:center;border:1px solid #cfd7c4}
.user-access__help{margin:4px 0 0;padding:0;text-align:center}
.user-access__help>a{display:inline-flex;align-items:center;min-height:44px;padding:8px;font:12px/1.5 var(--sans,Arial),sans-serif;text-underline-offset:4px;text-decoration-color:#9aa58b}
.user-access__help>a:hover{text-decoration-thickness:2px}
.user-access__menu nav>.user-access__group-start,.user-access__menu nav>.user-access__logout{border-top:1px solid #dce0d2;border-radius:0;margin-top:7px;padding-top:15px}
.user-access__menu nav>.user-access__logout{color:#6a6655}
.user-access__logout:disabled{opacity:.5;cursor:wait}
.user-access__error{padding:10px 12px;font-size:12px;line-height:1.6;color:#7a412d}
.user-access :focus-visible,.auth-layout :focus-visible,.auth-dialog :focus-visible{outline:3px solid #94a46b;outline-offset:3px}
.auth-dialog{position:fixed;inset:0;z-index:200;margin:auto;width:min(560px,calc(100vw - 32px));max-height:calc(100dvh - 40px);padding:0;border:1px solid #dce0d3;border-radius:18px;background:#faf8f0;color:#253f31;box-shadow:0 24px 120px #08201766;overflow:auto;overscroll-behavior:contain}
.auth-dialog::backdrop{background:#102a20b3;backdrop-filter:blur(6px)}
.auth-dialog__bar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 18px 8px 28px;color:#6a775f;font:11px/1.5 var(--sans,Arial),sans-serif;letter-spacing:.03em}
.auth-dialog__bar>button{width:44px;height:44px;border:0;background:transparent;color:#52624b;font:28px/1 Arial,sans-serif;cursor:pointer;border-radius:50%}
.auth-dialog__bar>button:hover{background:#edf0e3}
.auth-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);align-items:center;gap:clamp(30px,6vw,90px);width:100%;max-width:1120px;margin:48px auto;color:#253f31;font:15px/1.65 var(--sans,Arial),sans-serif}
.auth-intro{position:relative;min-height:520px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:30px 20px 100px 0}
.auth-eyebrow{display:block;font:600 10px/1.6 var(--sans,Arial),sans-serif;letter-spacing:.17em;color:#76805b}
.auth-intro h1{font-family:Georgia,serif;font-weight:400;font-size:clamp(42px,4.4vw,67px);line-height:1.05;letter-spacing:-.045em;margin:23px 0!important;max-width:490px}
.auth-intro>p{max-width:390px;color:#64725b!important;font-size:15px;line-height:1.85}
.auth-intro>a{display:inline-flex;align-items:center;gap:35px;margin-top:30px;padding:5px 0;color:#3c5636;font-size:13px;text-decoration:none;border-bottom:1px solid #9da68d}
.auth-intro__signature{position:absolute;bottom:0;left:0;font-size:21px;letter-spacing:-.045em;color:#526449}
.auth-intro__signature em{font-family:Georgia,serif}
.auth-intro__signature span{display:block;margin-top:8px;font-size:8px;letter-spacing:.2em;color:#859070}
.auth-card{min-width:0;padding:clamp(26px,3.4vw,44px);border:1px solid #dce1d3;border-radius:16px;background:#fffdf6;box-shadow:0 8px 45px #253e2406}
.auth-card h2{margin:10px 0 24px!important;font:400 clamp(27px,2.6vw,37px)/1.15 Georgia,serif!important;letter-spacing:-.035em}
.auth-card__intro{margin:0 0 24px!important;color:#68745f!important;font-size:14px;line-height:1.75}
.auth-form{display:flex;flex-direction:column;gap:21px}
.auth-field{display:grid;gap:8px;min-width:0}
.auth-field>label{font-size:12px;line-height:1.5;font-weight:500;color:#44573f}
.auth-field input{display:block;width:100%;min-width:0;min-height:50px;padding:12px 14px;border:1px solid #cfd7c4;border-radius:6px;background:#fffef9;color:#243e2f;font:16px/1.5 var(--sans,Arial),sans-serif;box-shadow:none}
.auth-field input:focus{border-color:#819763}
.auth-field input:disabled{background:#f1f1e7;color:#6c7864}
.auth-field>small{font-size:11px;line-height:1.7;color:#737c66}
.auth-password{position:relative}
.auth-password input{padding-right:95px}
.auth-password>button{position:absolute;top:3px;bottom:3px;right:3px;min-width:82px;padding:8px;border:0;background:transparent;border-radius:4px;color:#63714f;font:11px/1.4 var(--sans,Arial),sans-serif;cursor:pointer}
.auth-password>button:hover{background:#eff1e6}
.auth-form__options{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:11px}
.auth-form__options>a,.auth-card__footer a{color:#4f683f;text-underline-offset:4px}
.auth-checkbox{display:inline-flex;align-items:center;gap:8px;min-height:28px;color:#68735c;font-size:11px;cursor:pointer}
.auth-checkbox input{width:17px;height:17px;margin:0;accent-color:#37543b;cursor:pointer}
.auth-button{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:51px;width:100%;padding:14px 18px;border:1px solid #294632;border-radius:6px;background:#294632;color:#fffdf4!important;font:500 13px/1.5 var(--sans,Arial),sans-serif;text-decoration:none!important;text-align:left;cursor:pointer;transition:background .15s}
.auth-button:hover{background:#1b3525}
.auth-button:disabled{opacity:.6;cursor:wait}
.auth-button>span{font-size:18px;font-weight:400;color:#c3cda9}
.auth-card__footer{display:flex;flex-wrap:wrap;justify-content:center;gap:4px;margin-top:24px;padding-top:20px;border-top:1px solid #e1e4d7;text-align:center;font-size:12px;line-height:1.7;color:#79816c}
.auth-card__footer:empty{display:none}
.auth-card__footer .auth-standalone{flex-basis:100%;margin-top:8px;font-size:10px;color:#7a8369}
.auth-notice{padding:14px 15px;margin:0 0 22px;border:1px solid #cbd7b8;border-radius:6px;background:#eef3e4;color:#4c623d;font-size:13px;line-height:1.7}
.auth-notice--error{background:#fbf0e7;border-color:#e4cdb8;color:#7a412d}
.auth-mail-note{padding:13px 14px;border-left:2px solid #9eaa81;background:#f2f3e9;color:#73765a!important;font-size:11px;line-height:1.7;margin:0!important}
.auth-mail-note>strong{display:block;font-weight:500;color:#61694e}
.auth-form__description,.auth-result>p{margin:0!important;font-size:13px;line-height:1.8;color:#637059!important}
.auth-result{display:grid;gap:22px}
.auth-text-button{align-self:flex-start;min-height:35px;padding:0;border:0;border-bottom:1px solid #a5b094;background:transparent;color:#506b3f;font:12px/1.5 var(--sans,Arial),sans-serif;cursor:pointer}
.auth-field .auth-code{font-size:24px;letter-spacing:.35em;font-variant-numeric:tabular-nums}
.auth-layout--modal{display:block;margin:0}
.auth-layout--modal .auth-card{padding:14px 32px 32px;border:0;border-radius:0;background:transparent;box-shadow:none}
.auth-layout--modal .auth-card h2{font-size:32px!important;margin-bottom:15px!important}
@keyframes user-menu-in{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:900px){.user-access{gap:9px}.user-access__dashboard{font-size:11px}.auth-layout{gap:30px}.auth-intro{min-height:490px}.auth-intro h1{font-size:46px}.auth-card{padding:25px}}
@media(max-width:680px){.user-access{gap:7px}.user-access__trigger{width:40px;height:40px;padding:9px}.user-access__dashboard{font-size:10px;gap:3px;min-height:40px}.user-access__dashboard>span{display:none}.user-access__menu{position:fixed;top:80px;right:16px;max-height:calc(100dvh - 100px);overflow:auto}.auth-layout{grid-template-columns:1fr;gap:25px;margin:20px auto}.auth-intro{min-height:0;display:block;padding:0 0 8px}.auth-intro h1{font-size:40px;max-width:460px;margin:12px 0 15px!important}.auth-intro>p{font-size:13px;max-width:460px}.auth-intro>a{margin-top:16px;font-size:12px}.auth-intro__signature{display:none}.auth-card{padding:27px 23px}.auth-dialog{max-height:calc(100dvh - 24px);width:calc(100vw - 24px);border-radius:14px}.auth-dialog__bar{padding:7px 10px 4px 22px;font-size:10px}.auth-layout--modal{margin:0}.auth-layout--modal .auth-card{padding:10px 24px 27px}.auth-form__options{font-size:11px}.auth-card__footer{font-size:11px}}
@media(max-width:380px){.user-access__dashboard{font-size:9px}.auth-layout--modal .auth-card{padding:8px 18px 24px}.auth-form__options{gap:5px}}
@media(prefers-reduced-motion:reduce){.user-access__menu{animation:none}.auth-button{transition:none}.auth-dialog::backdrop{backdrop-filter:none}}
@media(max-width:1380px){.v2-header__links{display:none}}
@media(max-width:850px){.user-access__name{display:none}}
@media(max-width:620px){.v2-header{padding-inline:16px;gap:10px}.v2-brand>span:not(.v2-brand__portrait){display:none}.v2-header__actions{gap:8px}.v2-header__bag,.v2-menu-toggle{width:44px;min-width:44px;min-height:44px;justify-content:center;padding:0}.v2-menu-toggle>span{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}.user-access__dashboard{font-size:12px}.user-access__trigger{width:44px;height:44px}}

.member-area{max-width:1180px;margin:26px auto 0;font:15px/1.7 var(--sans,Arial),sans-serif;color:#253e2e}
.member-area *{box-sizing:border-box}
.member-area button,.member-area input{font:inherit}
.member-area :focus-visible{outline:3px solid #95a56b;outline-offset:4px}
.member-heading{max-width:820px;margin-bottom:30px}
.member-eyebrow{display:block;font:600 10px/1.6 var(--sans,Arial),sans-serif;letter-spacing:.17em;color:#7c8766}
.member-heading h1{font-size:clamp(38px,5vw,66px)!important;line-height:1.1!important;letter-spacing:-.045em!important;margin:15px 0 19px!important}
.member-heading h1 em{font-family:Georgia,serif;color:#647650}
.member-heading>p{font-size:14px;color:#6b7961!important}
.member-nav{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 30px;padding:0 0 20px;border-bottom:1px solid #d8dfcc}
.member-nav>a{display:inline-flex;align-items:center;min-height:42px;padding:10px 16px;border:1px solid transparent;border-radius:5px;color:#657357;font-size:12px;text-decoration:none}
.member-nav>a:hover{background:#edf0e4}
.member-nav>a[aria-current=page]{background:#294833;border-color:#294833;color:#fffdf4}
.member-account-strip{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;margin:4px 0 26px;padding:0 0 25px;border-bottom:1px solid #d9dfce}
.member-account-strip>div{display:grid;gap:4px;min-width:0}
.member-account-strip>div>span{font-size:9px;letter-spacing:.13em;color:#7f896c}
.member-account-strip strong{font-size:16px;font-weight:500;overflow-wrap:anywhere}
.member-badge{display:inline-flex;align-items:center;border:1px solid #d3ddc1;border-radius:30px;padding:6px 12px;color:#65774c;background:#eef3e3;font-size:10px;line-height:1.6;white-space:nowrap}
.member-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.member-destination{display:flex;flex-direction:column;min-width:0;min-height:230px;padding:28px 30px;border:1px solid #d9e0cb;border-radius:10px;background:#fffdf5;color:#2c472f;text-decoration:none;transition:background .18s,border-color .18s,transform .18s}
.member-destination:hover{background:#f4f6e9;border-color:#a9bc8a;transform:translateY(-2px)}
.member-destination__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:29px;color:#a0ad87}
.member-destination__top>small{font-size:9px;letter-spacing:.12em;color:#879475}
.member-destination__top>span{font-family:Georgia,serif;font-size:20px;line-height:1}
.member-destination h2{margin:0 0 12px!important;font:400 29px/1.2 Georgia,serif!important;letter-spacing:-.035em!important;color:#355034}
.member-destination p{max-width:360px;font-size:12px;line-height:1.8;color:#7b846c!important}
.member-destination__action{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-top:auto;padding-top:25px;font-size:11px;color:#657c4b}
.member-destination__action>span{font-size:23px;line-height:1;color:#839769}
.member-stack{display:grid;gap:24px}
.member-panel{min-width:0;padding:30px;border:1px solid #d9dfcc;border-radius:12px;background:#fffdf6;display:flex;flex-direction:column;gap:20px}
.member-panel h2{font:400 28px/1.2 Georgia,serif!important;letter-spacing:-.025em!important;margin:0!important;color:#344e32}
.member-panel h3{font-size:15px;font-weight:500;line-height:1.5;margin:0;color:#42563a}
.member-panel>p,.member-panel form>p{font-size:13px;color:#78836b!important;line-height:1.8}
.member-muted{font-size:12px!important;line-height:1.75;color:#7b866f!important}
.member-area>.member-muted{margin-top:25px}
.member-loading{font-size:13px;color:#778566;padding-block:40px}
.member-empty{max-width:750px;min-height:250px;justify-content:center;padding:38px}
.member-empty .member-button{align-self:flex-start}
.member-button{display:inline-flex;justify-content:center;align-items:center;gap:18px;min-height:47px;padding:12px 18px;border:1px solid #2c4932;border-radius:5px;background:#2c4932;color:#fffdf4!important;font:500 12px/1.6 var(--sans,Arial),sans-serif!important;text-decoration:none!important;cursor:pointer}
.member-button:hover{background:#1d3826}
.member-button:disabled{opacity:.5;cursor:wait}
.member-button>span{font-size:18px;line-height:1;color:#b5c59b}
.member-button--light{background:#f1f4e8;color:#586b42!important;border-color:#cfdbbc}
.member-button--light:hover{background:#e5ecd8}
.member-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.member-mfa-banner{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-bottom:30px;padding:23px 26px;border:1px solid #d3d6b7;border-radius:9px;background:#eeefdf}
.member-mfa-banner strong{font-size:15px;font-weight:500;color:#5a633f}
.member-mfa-banner p{max-width:690px;margin-top:6px!important;font-size:12px;line-height:1.75;color:#7c8164!important}
.member-mfa-banner>.member-button{flex-shrink:0}
.member-notice{padding:14px 16px;border:1px solid #cedbbb;background:#eef4e3;color:#536b3f;border-radius:6px;font-size:13px;line-height:1.7}
.member-notice--error{border-color:#e6cdb6;background:#fbf0e7;color:#7a4430}
.member-form{display:flex;flex-direction:column;gap:20px;width:100%}
.member-form--compact{max-width:490px}
.member-form>.member-button{align-self:flex-start}
.member-field{display:flex;flex-direction:column;gap:8px;min-width:0}
.member-field>label{font-size:12px;line-height:1.5;color:#526443}
.member-field input{display:block;width:100%;min-width:0;min-height:49px;padding:11px 13px;border:1px solid #cdd7be;border-radius:5px;background:#fffef9;color:#2e482e;font:16px/1.5 var(--sans,Arial),sans-serif}
.member-field input:focus{border-color:#839c61}
.member-field input:disabled{background:#f0f2e7;color:#879279}
.member-field small{font-size:11px;line-height:1.7;color:#828c74}
.member-password{position:relative}
.member-password>input{padding-right:97px}
.member-password>button{position:absolute;inset:3px 3px 3px auto;min-width:82px;padding:6px 10px;border:0;border-radius:4px;background:transparent;color:#6d7b59;font-size:11px;cursor:pointer}
.member-password>button:hover{background:#f0f2e5}
.member-address-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px}
.member-address{display:flex;flex-direction:column;gap:17px;min-width:0;margin:0;padding:22px;border:1px solid #dfe5d3;border-radius:7px}
.member-address>legend{padding:0 8px;color:#657851;font-size:13px}
.member-address__city{display:grid;grid-template-columns:minmax(80px,.7fr) minmax(0,1.3fr);gap:14px}
.member-mail-note{max-width:790px;padding:15px 18px;border-left:2px solid #a8b28e;background:#f2f3e7;color:#828568;font-size:12px;line-height:1.8}
.member-mail-note strong{display:block;color:#646f4b;font-weight:500}
.member-section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.member-invoices{display:grid}
.member-invoice{display:flex;align-items:center;gap:20px;padding:22px 0;border-bottom:1px solid #e0e4d6}
.member-invoice:last-child{border-bottom:0}
.member-invoice__type{display:grid;place-items:center;width:48px;height:59px;background:#edf2e3;border:1px solid #d5dfc6;border-radius:5px;font-size:10px;color:#6c8056;flex-shrink:0}
.member-invoice>div{min-width:0;flex:1}
.member-invoice h3{font-size:14px;font-weight:500;overflow-wrap:anywhere}
.member-invoice p{margin-top:6px!important;font-size:11px;color:#879278!important;line-height:1.7}
.member-text-link{color:#627d46;font-size:12px;text-underline-offset:5px}
.member-invoice .member-text-link{flex-shrink:0}
.member-security-confirmed{display:flex;align-items:center;gap:20px;padding:20px;background:#f0f5e6;border-radius:7px}
.member-security-confirmed>span{display:grid;place-items:center;width:43px;height:43px;flex-shrink:0;border:1px solid #c5d7b0;border-radius:50%;color:#77945a;font-size:21px}
.member-security-confirmed>div{flex:1}
.member-security-confirmed strong{font-size:14px;font-weight:500;color:#587542}
.member-security-confirmed p{font-size:12px;line-height:1.8;color:#829271!important;margin-top:6px!important}
.member-enrollment{display:flex;flex-direction:column;gap:30px}
.member-enrollment__step{display:grid;grid-template-columns:30px minmax(0,1fr);gap:18px}
.member-step-number{display:grid;place-items:center;width:30px;height:30px;border:1px solid #cbd8b8;border-radius:50%;background:#eff4e5;color:#6f8558;font-size:12px;line-height:1}
.member-enrollment__step h3{margin:2px 0 8px}
.member-enrollment__step p{font-size:12px;line-height:1.8;color:#7c896b!important;max-width:730px}
.member-enrollment__qr{display:flex;gap:25px;align-items:center;margin-top:22px}
.member-enrollment__qr>img{display:block;flex-shrink:0;width:220px;height:220px;border:1px solid #dfe7d2;border-radius:6px;background:#fffdf6}
.member-enrollment__qr>div{display:grid;gap:9px;min-width:0;max-width:440px}
.member-enrollment__qr label{font-size:12px;color:#6a7d52}
.member-enrollment__qr small{font-size:11px;color:#849471}
.member-secret{min-width:0;width:100%;padding:12px;border:1px solid #d3dec4;border-radius:5px;background:#f5f7ed;color:#3f5c36;font:13px/1.5 Consolas,monospace!important}
.member-backup-codes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 24px;max-width:470px;margin:18px 0 22px;padding:18px 22px;border:1px solid #d4ddc5;background:#f2f5e9;border-radius:6px;list-style:none}
.member-backup-codes code{font:14px/1.6 Consolas,monospace;color:#4c6940;letter-spacing:.03em;user-select:all}
.member-check{display:flex;gap:11px;align-items:flex-start;margin-top:20px;max-width:650px;color:#718259;font-size:12px;line-height:1.8;cursor:pointer}
.member-check input{width:18px;height:18px;flex-shrink:0;accent-color:#52703c;margin:2px 0 0}
.member-verify-form{border-top:1px solid #dce4cf;padding-top:25px;max-width:520px}
.member-totp{font-size:23px!important;letter-spacing:.3em;font-variant-numeric:tabular-nums}
.member-text-button{align-self:flex-start;min-height:32px;border:0;border-bottom:1px solid #abbc95;padding:0;background:transparent;color:#647e4b;font-size:12px;cursor:pointer}
.member-visually-hidden{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:900px){.member-area{margin-top:15px}.member-card-grid{gap:15px}.member-destination{padding:25px}.member-address-grid{gap:18px}.member-enrollment__qr{align-items:flex-start;flex-wrap:wrap}.member-security-confirmed{flex-wrap:wrap}.member-security-confirmed>.member-button{margin-left:63px}}
@media(max-width:680px){.member-area{margin-top:7px}.member-heading{margin-bottom:22px}.member-heading h1{font-size:39px!important}.member-heading>p{font-size:12px}.member-nav{gap:4px;padding-bottom:16px;margin-bottom:24px}.member-nav>a{padding:9px 11px;font-size:11px;min-height:40px}.member-account-strip{gap:12px}.member-account-strip strong{font-size:14px}.member-card-grid{grid-template-columns:1fr;gap:13px}.member-destination{min-height:206px;padding:24px}.member-destination__top{margin-bottom:22px}.member-destination h2{font-size:27px!important}.member-destination p{max-width:none}.member-panel{padding:24px 21px;gap:18px}.member-panel h2{font-size:26px!important}.member-panel>p,.member-panel form>p{font-size:12px}.member-stack{gap:18px}.member-address-grid{grid-template-columns:1fr}.member-address{padding:19px 16px}.member-mfa-banner{align-items:flex-start;flex-direction:column;gap:17px;padding:23px}.member-mfa-banner strong{font-size:14px}.member-button{font-size:11px!important;min-height:45px;padding:11px 15px}.member-invoice{gap:13px;align-items:flex-start;flex-wrap:wrap;padding:18px 0}.member-invoice .member-text-link{margin-left:61px;flex-basis:calc(100% - 61px)}.member-invoice>div{flex-basis:calc(100% - 61px)}.member-invoice h3{font-size:13px}.member-enrollment__step{grid-template-columns:24px minmax(0,1fr);gap:12px}.member-step-number{width:24px;height:24px;font-size:11px}.member-enrollment__qr{gap:16px}.member-enrollment__qr>img{width:200px;height:200px;max-width:100%;object-fit:contain}.member-enrollment__qr>div{width:100%;max-width:none}.member-secret{font-size:11px!important}.member-backup-codes{gap:9px 12px;padding:15px 12px}.member-backup-codes code{font-size:12px;letter-spacing:0}.member-security-confirmed{gap:13px;padding:17px}.member-security-confirmed>div{min-width:0;flex-basis:calc(100% - 56px)}.member-security-confirmed>.member-button{margin-left:56px}.member-form>.member-button{max-width:100%}.member-check{font-size:11px}}
@media(prefers-reduced-motion:reduce){.member-destination{transition:none}.member-destination:hover{transform:none}}

.studio-administration{max-width:1280px;margin-inline:auto}.studio-administration h3{font-size:1.35rem;font-weight:500;margin:1.4rem 0 .8rem}.studio-administration .studio-panel{overflow:hidden}.studio-administration .studio-file-list>div{gap:12px;overflow-wrap:anywhere}.studio-administration .studio-admin-nav{flex-wrap:wrap;gap:8px}.studio-administration .studio-admin-nav button,.studio-administration .studio-admin-nav a{min-height:44px}.studio-administration .studio-admin-nav button[aria-pressed=true]{background:#263c31;color:#fff}.studio-team-rights{border:1px solid #d0d6cd;padding:20px;margin:20px 0;display:grid;gap:14px}.studio-team-rights label{display:flex;align-items:center;gap:12px;min-height:32px}.studio-team-rights input{accent-color:#324b39;width:20px;height:20px}.studio-invitation-result{padding:24px;background:#eef2e9;border:1px solid #b8c8b4;margin:24px 0}.studio-administration :is(button,a,input,select,textarea):focus-visible{outline:3px solid #6c825d;outline-offset:4px}.studio-administration button:disabled{opacity:.5;cursor:wait}.studio-administration .studio-price-row input{width:100%;min-width:0}.studio-administration .studio-section-heading{gap:16px;flex-wrap:wrap}@media(max-width:650px){.studio-administration .studio-file-list>div{display:grid}.studio-administration .studio-price-row{grid-template-columns:1fr}.studio-administration .studio-admin-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.studio-administration .studio-admin-nav>*{text-align:center}.studio-invitation-result{padding:16px}}

.shopdesk{--sd-ink:#203b31;--sd-muted:#59675e;--sd-line:#dce3d9;--sd-paper:#fffefb;--sd-soft:#f3f5ee;color:var(--sd-ink);font-family:inherit;display:grid;gap:24px}.shopdesk *{box-sizing:border-box}.shopdesk :is(h2,h3,h4,p){margin:0}.shopdesk-title{display:flex;justify-content:space-between;align-items:center;gap:24px;padding:12px 0}.shopdesk-title h2{font-size:clamp(1.8rem,3vw,2.65rem);font-weight:500;margin:8px 0 10px;line-height:1.15}.shopdesk-title p,.shopdesk-muted,.shopdesk-period{color:var(--sd-muted);font-size:.9rem;line-height:1.65}.shopdesk-kicker{font-size:.65rem;letter-spacing:.18em;font-weight:700}.shopdesk-panel{border:1px solid var(--sd-line);background:var(--sd-paper);border-radius:18px;padding:26px;min-width:0}.studio-administration .shopdesk h3{font-family:inherit;font-size:1.12rem;font-weight:650;margin:0 0 8px}.shopdesk-button{border:1px solid var(--sd-ink);background:var(--sd-ink);color:#fffefb;border-radius:9px;min-height:44px;padding:11px 17px;font:inherit;font-size:.82rem;font-weight:600;cursor:pointer;text-align:center;transition:background .18s,box-shadow .18s;white-space:normal;display:inline-flex;align-items:center;justify-content:center;gap:8px}.shopdesk-button:hover{background:#345344;box-shadow:0 3px 9px #203b3112}.shopdesk-button--light{background:var(--sd-paper);border-color:var(--sd-line);color:var(--sd-ink)}.shopdesk-button--light:hover{background:#edf1e8}.shopdesk :is(button,a,input,select,summary):focus-visible,.shopdesk-dialog :is(button,a,input,select):focus-visible{outline:3px solid #66865a;outline-offset:3px}.shopdesk button:disabled,.shopdesk-dialog button:disabled{opacity:.5;cursor:not-allowed}.shopdesk-filters{display:flex;align-items:flex-end;justify-content:space-between;gap:20px}.shopdesk-segments{display:flex;gap:4px;padding:5px;border:1px solid var(--sd-line);border-radius:12px;background:var(--sd-paper);flex-wrap:wrap}.shopdesk-segments button{border:0;background:none;border-radius:8px;min-height:39px;padding:9px 16px;color:var(--sd-muted);font:inherit;font-size:.83rem;cursor:pointer}.shopdesk-segments button[aria-pressed=true]{background:var(--sd-ink);color:#fff}.shopdesk-field{display:grid;gap:7px;min-width:0;font-size:.76rem;font-weight:600;color:var(--sd-muted)}.shopdesk-field :is(input,select){min-height:44px;width:100%;max-width:100%;border:1px solid #cfd8ca;background:#fffefb;border-radius:8px;padding:10px 12px;font:inherit;font-size:.88rem;color:var(--sd-ink);min-width:0}.shopdesk-field input::placeholder{color:#737d73}.shopdesk-date-filter{display:flex;align-items:flex-end;gap:15px;flex-wrap:wrap}.shopdesk-date-filter .shopdesk-error{flex-basis:100%}.shopdesk-mode-note{background:#eaf0e5;border:1px solid #d5dfd0;border-radius:10px;padding:15px 18px;display:flex;gap:12px;align-items:flex-start;font-size:.83rem;line-height:1.6}.shopdesk-mode-note--test{background:#fff4dd;border-color:#e8d4ab}.shopdesk-mode-note>span{font-size:1.1rem}.shopdesk-period{margin-bottom:-10px}.shopdesk-metrics{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}.shopdesk-metric{display:flex;flex-direction:column;border:1px solid var(--sd-line);border-radius:14px;background:var(--sd-paper);padding:21px 18px;gap:10px;min-width:0}.shopdesk-metric>span{font-size:.76rem;font-weight:600;line-height:1.45;min-height:2.9em}.shopdesk-metric>strong{font-size:clamp(1.4rem,2.25vw,2rem);font-weight:550;letter-spacing:-.04em;overflow-wrap:anywhere;font-variant-numeric:tabular-nums}.shopdesk-metric>small{font-size:.7rem;line-height:1.55;color:var(--sd-muted);margin-top:auto}.shopdesk-balance{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px 22px;font-size:.77rem;color:var(--sd-muted);padding:0 5px}.shopdesk-balance span{display:flex;gap:12px;flex-wrap:wrap}.shopdesk-balance strong{color:var(--sd-ink);font-variant-numeric:tabular-nums}.shopdesk-charts{display:grid;grid-template-columns:1fr 1fr;gap:20px}.shopdesk-chart header p{color:var(--sd-muted);font-size:.77rem;line-height:1.5}.shopdesk-chart svg{width:100%;height:auto;display:block;margin-top:26px;overflow:visible}.shopdesk-chart rect{fill:#6c8c65}.shopdesk-chart-axis{display:flex;justify-content:space-between;gap:8px;flex-wrap:wrap;font-size:.62rem;color:var(--sd-muted)}.shopdesk-chart-empty{min-height:209px;display:flex;align-items:center;justify-content:center;text-align:center;flex-direction:column;gap:10px;color:var(--sd-muted)}.shopdesk-chart-empty>span{font-size:2rem;color:#9ca993}.shopdesk-chart-empty strong{font-size:.85rem;color:var(--sd-ink)}.shopdesk-chart-empty p{font-size:.73rem;line-height:1.6;max-width:300px}.shopdesk-definitions{padding:18px 22px;border:1px solid var(--sd-line);border-radius:12px;background:#f7f8f3;font-size:.8rem;line-height:1.65}.shopdesk-definitions summary,.shopdesk-chart-data summary{cursor:pointer;font-weight:600;min-height:30px}.shopdesk-definitions p{margin-top:12px;color:var(--sd-muted)}.shopdesk-definitions dl{display:grid;grid-template-columns:1fr 1fr;gap:14px 28px}.shopdesk-definitions dt{font-weight:650}.shopdesk-definitions dd{margin:3px 0 0;color:var(--sd-muted)}.shopdesk-chart-data{margin-top:18px;font-size:.75rem}.shopdesk-chart-data .shopdesk-table-scroll{max-height:230px}.shopdesk-chart-data p{margin-top:10px;line-height:1.6;color:var(--sd-muted)}.shopdesk-orders{display:grid;gap:18px;padding-top:12px}.shopdesk-section-head{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}.shopdesk-section-head h3{margin:0!important}.shopdesk-order-filters{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:13px;align-items:end}.shopdesk-search{display:flex;align-items:end;gap:8px}.shopdesk-search .shopdesk-field{flex:1}.shopdesk-badge{display:inline-flex;align-items:center;justify-content:center;padding:6px 9px;border-radius:6px;border:1px solid #dae1d6;background:#f1f4ed;color:#435843;font-size:.68rem;font-weight:650;line-height:1.35;max-width:100%}.shopdesk-badge--good{background:#e7f0e2;color:#345f34;border-color:#cbdcc3}.shopdesk-badge--attention{background:#fff1d8;color:#775b25;border-color:#e9d5ad}.shopdesk-table-scroll{overflow:auto;border:1px solid var(--sd-line);border-radius:12px;background:var(--sd-paper)}.shopdesk table{width:100%;border-collapse:collapse;text-align:left;font-size:.78rem}.shopdesk table th{font-weight:600}.shopdesk table thead{background:#f0f3eb;color:var(--sd-muted);font-size:.7rem}.shopdesk table th,.shopdesk table td{padding:16px 15px;border-bottom:1px solid #e4e8df;vertical-align:middle}.shopdesk table tr:last-child :is(td,th){border-bottom:0}.shopdesk table tbody tr:hover{background:#f9faf6}.shopdesk table :is(td,th)>small{display:block;color:var(--sd-muted);font-size:.68rem;font-weight:400;line-height:1.5;margin-top:5px}.shopdesk table td>strong{font-weight:550}.shopdesk-order-table{min-width:770px}.shopdesk-order-table a{color:var(--sd-ink);font-weight:700;display:inline-block;padding:6px 0;text-decoration:underline;text-decoration-color:#afbea7;text-underline-offset:4px}.shopdesk-numeric{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums}.shopdesk-pagination{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--sd-muted);font-size:.76rem}.shopdesk-pagination>.shopdesk-field{display:flex;align-items:center;gap:8px}.shopdesk-pagination select{width:78px}.shopdesk-pagination nav{display:flex;align-items:center;gap:15px}.shopdesk-pagination .shopdesk-button{min-height:38px;padding:9px 12px;font-size:.74rem}.shopdesk-empty{text-align:center;padding:42px 25px;display:grid;justify-items:center;gap:13px}.shopdesk-empty h4{font-size:1.35rem;font-weight:500}.shopdesk-empty p{max-width:560px;color:var(--sd-muted);font-size:.86rem;line-height:1.65}.shopdesk-loading{min-height:170px;display:grid;place-items:center;color:var(--sd-muted);font-size:.9rem}.shopdesk-error,.shopdesk-success,.shopdesk-warning{padding:15px 17px;border-radius:9px;font-size:.83rem;line-height:1.65}.shopdesk-error{background:#fff0ea;border:1px solid #e4b6a3;color:#8c3425}.shopdesk-success{background:#eaf2e2;border:1px solid #c7d9ba;color:#35512e}.shopdesk-warning{background:#fff5dd;border:1px solid #e4d4ab;color:#775b25}.shopdesk-order-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;flex-wrap:wrap}.shopdesk-order-heading h3{font-size:1.65rem!important;margin:8px 0!important;font-weight:550!important}.shopdesk-order-heading p{color:var(--sd-muted);font-size:.84rem}.shopdesk-order-heading__amount{display:grid;justify-items:end;gap:12px}.shopdesk-order-heading__amount>strong{font-size:2rem;font-weight:550;font-variant-numeric:tabular-nums}.shopdesk-status-strip{width:100%;border-top:1px solid var(--sd-line);padding-top:20px;display:flex;gap:35px;flex-wrap:wrap}.shopdesk-status-strip>div{display:grid;gap:8px;justify-items:start}.shopdesk-status-strip>div>span:first-child{font-size:.7rem;color:var(--sd-muted)}.shopdesk-detail-grid{display:grid;grid-template-columns:minmax(0,1.85fr) minmax(240px,1fr);gap:22px;align-items:start}.shopdesk-stack{display:grid;gap:22px;min-width:0}.shopdesk-stack>.shopdesk-panel{display:grid;gap:15px}.shopdesk-items{display:grid}.shopdesk-items article{display:flex;align-items:start;gap:15px;padding:20px 0;border-bottom:1px solid var(--sd-line);min-width:0}.shopdesk-items img{object-fit:cover;border-radius:7px;flex-shrink:0}.shopdesk-items article>div{flex:1;min-width:0}.shopdesk-items h4{font-size:.92rem;font-weight:650}.shopdesk-items p{font-size:.77rem;line-height:1.6;margin:6px 0;color:var(--sd-muted)}.shopdesk-items small{display:block;font-size:.69rem;line-height:1.5;color:var(--sd-muted);margin-top:5px}.shopdesk-items article>strong{font-size:.83rem;white-space:nowrap;font-variant-numeric:tabular-nums}.shopdesk-total{margin:0;display:grid;gap:11px;font-size:.86rem}.shopdesk-total>div{display:flex;justify-content:space-between;gap:12px}.shopdesk-total dd{margin:0;font-variant-numeric:tabular-nums}.shopdesk-total>div:last-child{font-weight:700;padding-top:14px;border-top:1px solid var(--sd-line)}.shopdesk-financials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:0}.shopdesk-financials>div{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:13px;background:var(--sd-soft);border-radius:8px}.shopdesk-financials dt{font-size:.74rem;color:var(--sd-muted)}.shopdesk-financials dd{margin:0;font-weight:650;font-size:.85rem;font-variant-numeric:tabular-nums}.shopdesk-financials__credit{grid-column:1/-1;background:#fff3da!important}.shopdesk-transaction-list{display:grid;gap:0}.shopdesk-transaction-list article{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;padding:18px 0;border-bottom:1px solid var(--sd-line)}.shopdesk-transaction-list article>div{display:grid;gap:5px;overflow-wrap:anywhere}.shopdesk-transaction-list article>div strong{font-size:.85rem}.shopdesk-transaction-list article>div :is(span,small){font-size:.72rem;line-height:1.5;color:var(--sd-muted)}.shopdesk-transaction-list article>strong{font-size:.85rem;white-space:nowrap;font-variant-numeric:tabular-nums}.shopdesk-action-row{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.shopdesk-text-button{color:var(--sd-ink);font:inherit;font-size:.8rem;font-weight:600;border:0;background:none;text-decoration:underline;text-underline-offset:4px;cursor:pointer;min-height:44px;padding:8px 0}.shopdesk-text-button--danger{color:#92533d}.shopdesk-inline-empty{padding:20px;background:#f6f7f2;border:1px dashed #dce3d4;border-radius:8px;color:var(--sd-muted);font-size:.83rem;line-height:1.65}.shopdesk-document-list{display:grid;gap:10px}.shopdesk-document-list>a{display:flex;gap:13px;align-items:center;padding:13px;background:var(--sd-soft);border-radius:9px;color:inherit;text-decoration:none;overflow-wrap:anywhere}.shopdesk-document-icon{border:1px solid #bdcbb4;border-radius:5px;font-size:.63rem;padding:11px 6px;flex-shrink:0}.shopdesk-document-list>a>span:nth-child(2){display:grid;gap:5px;flex:1;min-width:0}.shopdesk-document-list strong{font-size:.8rem}.shopdesk-document-list small{font-size:.7rem;color:var(--sd-muted)}.shopdesk-text-link{color:var(--sd-ink);font-size:.81rem;text-underline-offset:4px}.shopdesk address{font-size:.85rem;line-height:1.9;font-style:normal;overflow-wrap:anywhere;color:var(--sd-muted)}.shopdesk address strong{color:var(--sd-ink);font-weight:600}.shopdesk aside h4{font-size:.8rem;font-weight:650}.shopdesk aside p{font-size:.81rem;line-height:1.7;color:var(--sd-muted)}.shopdesk-status-actions{display:grid;justify-items:start;gap:7px}.shopdesk-timeline{list-style:none;margin:0;padding:0}.shopdesk-timeline li{display:grid;gap:7px;position:relative;border-left:1px solid #cdd8c5;padding:0 0 23px 19px;margin-left:4px}.shopdesk-timeline li:before{content:'';position:absolute;width:7px;height:7px;left:-4px;top:4px;background:#759167;border-radius:50%}.shopdesk-timeline li:last-child{padding-bottom:0;border-color:transparent}.shopdesk-timeline time,.shopdesk-timeline li>span{font-size:.68rem;color:var(--sd-muted);line-height:1.5}.shopdesk-timeline strong{font-size:.79rem;font-weight:600;line-height:1.6}.shopdesk-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.shopdesk-dialog{--sd-ink:#203b31;--sd-muted:#59675e;--sd-line:#dce3d9;--sd-paper:#fffefb;color:var(--sd-ink);background:#fffefb;border:1px solid #dce3d9;border-radius:20px;width:min(640px,calc(100vw - 28px));max-height:calc(100dvh - 40px);padding:0;box-shadow:0 24px 100px #15221c40}.shopdesk-dialog::backdrop{background:#15271ed6;backdrop-filter:blur(5px)}.shopdesk-dialog form{padding:30px;display:grid;gap:19px}.shopdesk-dialog header{position:relative;padding-right:36px}.shopdesk-dialog h2{font-family:inherit;font-size:1.65rem;font-weight:550;line-height:1.2;margin:10px 0 0}.shopdesk-dialog p{font-size:.83rem;line-height:1.65;margin:0}.shopdesk-dialog-close{position:absolute;right:-5px;top:-10px;background:none;border:0;width:44px;height:44px;cursor:pointer;font-size:1.8rem;color:var(--sd-muted)}.shopdesk-dialog-balance{display:flex;justify-content:space-between;gap:12px;background:#edf2e7;padding:17px;border-radius:10px;align-items:center;font-size:.8rem}.shopdesk-dialog-balance strong{font-size:1.25rem;font-variant-numeric:tabular-nums}.shopdesk-dialog-fields{margin:0;padding:0;border:0;display:grid;gap:18px;min-width:0}.shopdesk-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:17px}.shopdesk-payment-preview{padding:17px;background:#edf4e8;border:1px solid #d4e1ca;border-radius:9px;display:grid;gap:7px;font-size:.85rem}.shopdesk-payment-preview--credit{background:#fff4dc;border-color:#e5d2a7}.shopdesk-payment-preview small{font-size:.7rem;line-height:1.5;color:var(--sd-muted)}.shopdesk-check{display:flex;align-items:flex-start;gap:11px;font-size:.79rem;line-height:1.6;cursor:pointer}.shopdesk-check input{width:19px;height:19px;min-width:19px;accent-color:#47693b;margin:3px 0 0}.shopdesk-dialog footer{display:flex;justify-content:flex-end;gap:12px;flex-wrap:wrap}.shopdesk-dialog .shopdesk-muted{font-size:.72rem;color:var(--sd-muted);line-height:1.6}.shopdesk-dialog fieldset:disabled{opacity:.75}
.shopdesk-order-table tbody th{min-width:145px;max-width:220px;overflow-wrap:anywhere}.shopdesk-order-heading .shopdesk-kicker,.shopdesk-dialog .shopdesk-kicker{overflow-wrap:anywhere;line-height:1.8}.shopdesk-invoice-document{padding:15px;border:1px solid var(--sd-line);border-radius:9px;background:#f7f8f3}.shopdesk-invoice-document>a{display:flex;align-items:center;gap:13px;color:inherit;text-decoration:none;overflow-wrap:anywhere}.shopdesk-invoice-document>a>span:nth-child(2){flex:1;display:grid;gap:6px;min-width:0}.shopdesk-invoice-document form{display:grid;gap:15px;padding-top:18px;margin-top:18px;border-top:1px solid var(--sd-line)}.shopdesk-invoice-document form>p{font-size:.77rem;line-height:1.7;color:var(--sd-muted)}
@media(max-width:1100px){.shopdesk-metrics{grid-template-columns:repeat(3,minmax(0,1fr))}.shopdesk-metric:nth-last-child(-n+2){grid-column:auto}.shopdesk-order-filters{grid-template-columns:repeat(3,minmax(0,1fr))}.shopdesk-search{grid-column:1/-1}.shopdesk-detail-grid{grid-template-columns:minmax(0,1.5fr) minmax(240px,1fr)}.shopdesk-panel{padding:21px}.shopdesk-items article{flex-wrap:wrap}.shopdesk-items article>strong{margin-left:auto}.shopdesk-financials{grid-template-columns:1fr}.shopdesk-financials__credit{grid-column:auto}}
@media(max-width:760px){.shopdesk{gap:19px}.shopdesk-title{align-items:flex-start;flex-wrap:wrap}.shopdesk-title>.shopdesk-button{min-height:40px}.shopdesk-filters{align-items:stretch;flex-direction:column;gap:14px}.shopdesk-segments{width:max-content;max-width:100%}.shopdesk-filters>.shopdesk-field{max-width:300px}.shopdesk-metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.shopdesk-metric{padding:17px 14px}.shopdesk-metric:last-child{grid-column:1/-1}.shopdesk-metric>strong{font-size:1.75rem}.shopdesk-metric>span{min-height:auto}.shopdesk-charts,.shopdesk-detail-grid{grid-template-columns:1fr}.shopdesk-definitions dl{grid-template-columns:1fr}.shopdesk-order-filters{grid-template-columns:1fr 1fr}.shopdesk-order-filters>.shopdesk-field:last-child{grid-column:1/-1}.shopdesk-balance{display:grid;grid-template-columns:1fr}.shopdesk-balance span{justify-content:space-between}.shopdesk-pagination{justify-content:flex-start}.shopdesk-pagination nav{width:100%;justify-content:space-between;gap:8px}.shopdesk-status-strip{gap:20px}.shopdesk-dialog form{padding:24px}.shopdesk-dialog h2{font-size:1.4rem}.shopdesk-dialog-balance{align-items:start;flex-direction:column;gap:8px}}
@media(max-width:450px){.shopdesk-panel{padding:19px}.shopdesk-segments button{padding:9px 10px;font-size:.74rem}.shopdesk-title h2{font-size:1.9rem}.shopdesk-period span{display:block}.shopdesk-order-heading__amount{justify-items:start}.shopdesk-form-grid{grid-template-columns:1fr}.shopdesk-dialog form{padding:22px 18px}.shopdesk-dialog footer{flex-direction:column-reverse}.shopdesk-dialog footer>.shopdesk-button{width:100%}.shopdesk-items img{width:60px;height:60px}.shopdesk-items article{gap:11px}.shopdesk-date-filter>.shopdesk-field{flex:1;min-width:130px}.shopdesk-date-filter>.shopdesk-button{width:100%}}
.studio-administration .studio-heading--compact{margin:0 0 22px;padding:0}.studio-administration .studio-heading--compact h1{font-size:42px;line-height:1.12;margin:9px 0 12px}.studio-administration .studio-heading--compact p{font-size:14px;line-height:1.6}.studio-administration .studio-admin-nav{margin:0 0 19px;padding-bottom:16px;gap:7px}.studio-administration .studio-admin-nav :is(a,button){font-size:12px;min-height:40px;padding:8px 12px}.studio-administration .studio-admin-nav a{display:inline-flex;align-items:center;margin-left:0}.studio-administration .shopdesk-title{padding:0;gap:18px}.studio-administration .shopdesk-title h2{font-size:27px;line-height:1.18;margin:6px 0}.studio-administration .shopdesk-title p{font-size:13px;line-height:1.55}.studio-administration .shopdesk-title .shopdesk-kicker{font-size:9px}.studio-administration .shopdesk{gap:18px}.studio-administration .shopdesk-mode-note{padding:11px 15px}.studio-administration .shopdesk-period{font-size:12px}.studio-administration .shopdesk-metric{padding-block:17px}
@media(max-width:760px){.studio-administration .studio-heading--compact h1{font-size:34px}.studio-administration .studio-heading--compact{margin-bottom:18px}.studio-administration .studio-admin-nav{display:flex;flex-wrap:nowrap;overflow-x:auto;overscroll-behavior-inline:contain;padding:3px 3px 13px;margin-inline:-3px}.studio-administration .studio-admin-nav :is(a,button){flex-shrink:0;white-space:nowrap}.studio-administration .shopdesk-title h2{font-size:25px}.studio-administration .shopdesk-title{gap:13px}}
@media(prefers-reduced-motion:reduce){.shopdesk *,.shopdesk-dialog *{scroll-behavior:auto!important;transition:none!important;animation:none!important}}

.customer-dashboard,.customer-stack{display:grid;gap:25px}.customer-dashboard *{min-width:0}.customer-shortcuts{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:13px}.customer-shortcut{display:flex;justify-content:space-between;align-items:center;gap:14px;min-height:63px;padding:16px 21px;border:1px solid #ccd7bf;border-radius:9px;background:#f7f8ef;color:#3b5637;text-decoration:none;font-size:12px;transition:background .18s,border-color .18s}.customer-shortcut>span:last-child{font-size:23px;font-weight:400}.customer-shortcut:hover{background:#edf2e3;border-color:#99ac83}.customer-shortcut--featured{background:#294833;color:#fffdf6;border-color:#294833}.customer-shortcut--featured:hover{background:#1f3c29;border-color:#1f3c29}.customer-test-note{display:flex;gap:9px 20px;flex-wrap:wrap;padding:14px 18px;background:#f5efdf;border:1px solid #ddd3b7;border-radius:8px;color:#655a39;font-size:12px;line-height:1.7}.customer-test-note strong{font-weight:600}.customer-test-note span{color:#726747}.customer-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin:0}.customer-metrics>div{display:flex;flex-direction:column;gap:10px;padding:23px 21px;border:1px solid #d9dfcc;border-radius:11px;background:#fffdf6;min-width:0}.customer-metrics dt{font-size:11px;color:#68765b}.customer-metrics dd{margin:0;font-size:clamp(23px,2.5vw,33px);line-height:1.25;font-weight:500;letter-spacing:-.04em;font-variant-numeric:tabular-nums;color:#294b32}.customer-metrics small{font-size:10px;color:#818a73;line-height:1.65}.customer-dashboard-grid,.customer-detail-grid{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(270px,1fr);gap:22px;align-items:start}.customer-dashboard-grid .member-panel,.customer-detail-grid .member-panel{padding:26px}.customer-dashboard-grid .member-panel h2,.customer-detail-grid .member-panel h2{font-size:25px!important}.customer-side-stack{display:grid;gap:22px;min-width:0}.customer-order-list{display:grid;gap:0}.customer-order-preview{padding:23px 0;border-bottom:1px solid #dfe5d5;min-width:0}.customer-order-preview:first-child{padding-top:0}.customer-order-preview:last-child{padding-bottom:0;border-bottom:0}.customer-order-preview>header{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}.customer-order-number{display:inline-flex;gap:12px;align-items:center;font-size:14px;color:#304e34;text-decoration:none;font-weight:600;line-height:1.6}.customer-order-number:hover{text-decoration:underline;text-underline-offset:5px}.customer-order-number>span{font-size:19px;color:#7b9060}.customer-order-preview header p{display:flex;align-items:center;flex-wrap:wrap;gap:8px;font-size:11px;line-height:1.6;color:#7d886e!important;margin-top:4px!important}.customer-test-tag{display:inline-block;font-size:9px;background:#f4ead0;color:#7e6736;padding:2px 7px;border-radius:3px;line-height:1.6}.customer-order-price{display:grid;gap:3px;flex-shrink:0;text-align:right;font-variant-numeric:tabular-nums}.customer-order-price strong{font-size:16px;font-weight:500;line-height:1.6;color:#345135}.customer-order-price small{font-size:10px;line-height:1.6;color:#7e876f}.customer-order-motifs{font-size:12px;color:#6b7c5b!important;margin:15px 0 17px!important;overflow-wrap:anywhere}.customer-statuses{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:0}.customer-statuses>div{min-width:0}.customer-statuses dt{font-size:9px;letter-spacing:.04em;color:#899177;margin-bottom:7px}.customer-statuses dd{margin:0}.customer-status{display:inline-flex;align-items:center;min-height:26px;padding:4px 8px;border-radius:4px;background:#eaf0df;color:#577342;font-size:10px;line-height:1.6;white-space:normal}.customer-status--open{background:#f5ebd7;color:#876a36}.customer-status--muted{background:#edf0e6;color:#778067}.customer-empty{min-height:290px;text-align:left;justify-content:center;max-width:none}.customer-empty>p{max-width:600px}.customer-orders-panel>.customer-empty{border:0;background:transparent;padding:12px 0;min-height:290px}.customer-empty__symbol{display:grid;place-items:center;width:53px;height:53px;border-radius:50%;border:1px solid #cfdbbb;background:#eef3e4;color:#78915c;font-size:27px;margin-bottom:4px}.customer-empty-copy{font-size:12px;line-height:1.8;color:#7a856c!important}.customer-documents,.customer-downloads{display:grid;gap:0}.customer-document,.customer-download{display:flex;align-items:center;gap:13px;min-width:0;padding:17px 0;border-bottom:1px solid #e2e7d7;color:#365335;text-decoration:none}.customer-document:first-child,.customer-download:first-child{padding-top:0}.customer-document:last-child,.customer-download:last-child{padding-bottom:0;border-bottom:0}.customer-document>span:nth-child(2),.customer-download>span:nth-child(2){display:grid;gap:5px;min-width:0;flex:1}.customer-document strong,.customer-download strong{font-size:12px;font-weight:500;line-height:1.6;overflow-wrap:anywhere;color:#46613c}.customer-document small,.customer-download small{font-size:10px;line-height:1.6;color:#8a9479}.customer-document>span:last-child:not(.member-visually-hidden){color:#889d6d}.customer-document:hover strong,.customer-download:hover strong{text-decoration:underline;text-underline-offset:4px}.customer-document-icon{display:grid;place-items:center;flex-shrink:0;width:39px;height:47px;border:1px solid #d3dec3;border-radius:5px;background:#eef3e5;color:#7b9460;font-size:10px}.customer-download .customer-document-icon{font-size:23px;height:39px}.customer-download__label{font-size:10px;color:#6a8650}.customer-side-stack .customer-download{flex-wrap:wrap}.customer-side-stack .customer-download__label{margin-left:52px}.customer-invoice-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:22px;align-items:center;border-bottom:1px solid #e2e7d7;padding:20px 0}.customer-invoice-row:first-child{padding-top:0}.customer-invoice-row:last-child{padding-bottom:0;border-bottom:0}.customer-invoice-row>.customer-document{padding:0;border:0}.customer-filter-bar{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr);gap:15px;padding:22px;border:1px solid #d8dfc9;border-radius:10px;background:#f8f9f1}.customer-filter-bar label{display:grid;gap:8px;font-size:11px;color:#6f7e5c;min-width:0}.customer-filter-bar input,.customer-filter-bar select{width:100%;min-width:0;min-height:46px;border:1px solid #ccd6bd;border-radius:5px;padding:10px 12px;background:#fffef8;color:#355031;font:13px/1.5 var(--sans,Arial),sans-serif}.customer-filter-bar input::placeholder{color:#8d967e}.customer-pagination{display:flex;justify-content:center;align-items:center;gap:20px;font-size:12px;color:#7d896c}.customer-pagination button:disabled{cursor:default}.customer-back{justify-self:start}.customer-detail-heading{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;padding:3px 0 5px}.customer-detail-heading h2{font:400 clamp(29px,3.5vw,41px)/1.2 Georgia,serif!important;letter-spacing:-.035em;margin:9px 0 12px!important;color:#2f4f34}.customer-detail-heading p{font-size:12px;color:#7a866b!important}.customer-detail-heading>div:last-child{display:grid;gap:5px;text-align:right;font-variant-numeric:tabular-nums}.customer-detail-heading>div:last-child>span,.customer-detail-heading small{font-size:11px;color:#849271}.customer-detail-heading>div:last-child>strong{font-size:27px;font-weight:500;color:#375735;white-space:nowrap}.customer-progress{display:flex;list-style:none;padding:0 0 24px;margin:0;border-bottom:1px solid #dfe6d0;gap:0}.customer-progress>li{position:relative;display:flex;flex:1;flex-direction:column;gap:9px;align-items:flex-start;min-width:0;padding:0 10px 0 0;color:#88937b}.customer-progress>li:not(:last-child):after{content:"";position:absolute;left:39px;right:9px;top:15px;height:1px;background:#dce3cf}.customer-progress>li>span{position:relative;z-index:1;display:grid;place-items:center;width:31px;height:31px;border-radius:50%;border:1px solid #d1dabe;background:#f6f8ef;color:#8a9878;font-size:12px}.customer-progress>li>strong{font-size:11px;line-height:1.5;font-weight:500}.customer-progress>li>small{font-size:9px;color:#819267}.customer-progress>li.is-reached>span{background:#3c603c;border-color:#3c603c;color:#fffdf5}.customer-progress>li.is-reached>strong{color:#4d7041}.customer-line-items{display:grid}.customer-line-item{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;padding:20px 0;border-bottom:1px solid #e0e6d5}.customer-line-item:first-child{padding-top:0}.customer-line-item h3{font-size:15px;color:#3d5835}.customer-line-item p{font-size:12px;line-height:1.7;color:#7c876c!important;margin-top:6px!important}.customer-line-item small{display:block;font-size:10px;color:#8a947b;margin-top:6px}.customer-line-item>strong{font-size:14px;color:#4b633f;font-weight:500;font-variant-numeric:tabular-nums;white-space:nowrap}.customer-tax-note{max-width:420px}.customer-item-download{grid-column:1/-1}.customer-item-download>.customer-download{padding:15px;border:1px solid #d6e0c6;border-radius:7px;background:#f4f7eb}.customer-item-download>p{font-size:11px!important;color:#89957b!important}.customer-amounts{display:grid;gap:12px;margin:0}.customer-amounts>div{display:flex;justify-content:space-between;align-items:baseline;gap:20px;font-size:12px;color:#7c896c}.customer-amounts dd{margin:0;font-variant-numeric:tabular-nums;color:#4d6540;white-space:nowrap}.customer-amounts__total{padding-top:15px;border-top:1px solid #dbe4cc;font-size:16px!important;color:#3b5935!important}.customer-amounts__total dd{font-weight:600;color:#3b5935}.customer-detail-hint{font-size:10px!important;line-height:1.75!important;color:#88937a!important}.customer-credit{padding:16px;border:1px solid #c7d7b0;border-radius:7px;background:#eef4e4;color:#5c773f}.customer-credit strong{font-size:13px;font-weight:600}.customer-credit p{font-size:11px;line-height:1.8;color:#7a8865!important;margin-top:7px!important}.customer-transactions{display:grid;gap:0;padding-top:6px}.customer-transactions>h3{margin-bottom:5px}.customer-transactions>article{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;padding:17px 0;border-bottom:1px solid #e2e7d8}.customer-transactions>article:last-child{border:0;padding-bottom:0}.customer-transactions>article>div{min-width:0}.customer-transactions strong{font-size:12px;font-weight:500;color:#566b47}.customer-transactions p,.customer-transactions small{font-size:10px;line-height:1.7;color:#8a937b!important;overflow-wrap:anywhere}.customer-transactions b{font-size:13px;white-space:nowrap;font-weight:500;color:#5d7749}.customer-history{display:grid;list-style:none;margin:0;padding:0}.customer-history>li{position:relative;display:grid;gap:4px;padding:0 0 24px 25px;border-left:1px solid #d4e0c3;margin-left:5px}.customer-history>li:last-child{padding-bottom:0;border-left-color:transparent}.customer-history>li:before{content:"";position:absolute;width:9px;height:9px;border:2px solid #7c9860;background:#fffdf6;border-radius:50%;left:-5px;top:5px}.customer-history time{font-size:10px;color:#849374}.customer-history strong{font-size:12px;font-weight:500;color:#506c40;line-height:1.6}.customer-history span{font-size:11px;color:#7a8e65}.customer-detail-grid address{font-size:13px;line-height:1.8;font-style:normal;color:#657b50;white-space:pre-line;overflow-wrap:anywhere}.customer-contact{display:grid;gap:16px;margin:0}.customer-contact>div{display:grid;gap:4px}.customer-contact dt{font-size:10px;color:#91a17f}.customer-contact dd{margin:0;font-size:12px;color:#627b4c;overflow-wrap:anywhere}.customer-order-note{border-top:1px solid #dde7ce;padding-top:18px}.customer-order-note strong{font-size:11px;font-weight:500;color:#758b5e}.customer-order-note p{font-size:12px;line-height:1.8;color:#859572!important;margin-top:7px!important;white-space:pre-wrap;overflow-wrap:anywhere}.customer-document-warning{border-left:2px solid #c7ae77;padding:10px 12px;background:#f8f0df;font-size:11px!important;color:#8d784d!important}.customer-loading{display:flex;flex-direction:row;align-items:center;min-height:140px}.customer-loading p{font-size:12px;color:#7c8f66!important}.customer-loading__dot{flex-shrink:0;width:14px;height:14px;border:2px solid #d8e3cb;border-top-color:#7d9b61;border-radius:50%;animation:customer-loading .8s linear infinite}@keyframes customer-loading{to{transform:rotate(360deg)}}
@media(max-width:1050px){.customer-dashboard-grid,.customer-detail-grid{grid-template-columns:minmax(0,1.5fr) minmax(250px,1fr)}.customer-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.customer-statuses{gap:8px}.customer-status{font-size:9px;padding:4px 6px}.customer-dashboard-grid .member-panel,.customer-detail-grid .member-panel{padding:23px}.customer-filter-bar{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}.customer-filter-bar>label:first-child{grid-column:1/-1}}
@media(max-width:800px){.customer-dashboard-grid,.customer-detail-grid{grid-template-columns:1fr}.customer-side-stack{grid-template-columns:repeat(2,minmax(0,1fr))}.customer-detail-grid>.customer-side-stack>.member-panel:last-child{grid-column:1/-1}.customer-status{font-size:10px}.customer-shortcuts{grid-template-columns:repeat(2,minmax(0,1fr))}.customer-shortcut--featured{grid-column:1/-1}.customer-shortcut{min-height:56px}.customer-invoice-row{grid-template-columns:1fr;gap:12px}.customer-invoice-row>.member-text-link{margin-left:52px}}
@media(max-width:520px){.customer-dashboard,.customer-stack{gap:19px}.customer-shortcuts{gap:9px}.customer-shortcut{padding:13px 15px;font-size:11px}.customer-test-note{padding:13px 15px;font-size:11px}.customer-metrics{gap:10px}.customer-metrics>div{padding:19px 16px;gap:9px}.customer-metrics dd{font-size:27px}.customer-metrics dt{font-size:10px}.customer-metrics small{font-size:9px}.customer-side-stack{grid-template-columns:1fr}.customer-dashboard-grid .member-panel,.customer-detail-grid .member-panel{padding:23px 19px}.customer-dashboard-grid .member-panel h2,.customer-detail-grid .member-panel h2{font-size:24px!important}.customer-order-number{font-size:12px;gap:7px}.customer-order-number>span{font-size:16px}.customer-order-price strong{font-size:14px}.customer-order-price small{font-size:9px}.customer-order-preview header p{font-size:10px}.customer-order-motifs{font-size:11px;margin:13px 0!important}.customer-statuses{gap:12px 8px;grid-template-columns:repeat(2,minmax(0,1fr))}.customer-statuses>div:last-child{grid-column:1/-1}.customer-status{font-size:10px}.customer-statuses dt{font-size:9px;margin-bottom:4px}.customer-filter-bar{padding:17px;gap:13px;grid-template-columns:1fr}.customer-filter-bar input,.customer-filter-bar select{font-size:16px}.customer-order-preview{padding:22px 0}.customer-empty{min-height:280px}.customer-document strong,.customer-download strong{font-size:11px}.customer-document small,.customer-download small{font-size:9px}.customer-download{flex-wrap:wrap}.customer-download__label{margin-left:52px}.customer-detail-heading{flex-wrap:wrap;gap:17px}.customer-detail-heading>div:last-child{grid-template-columns:auto auto;gap:6px 15px;text-align:left;align-items:baseline}.customer-detail-heading>div:last-child strong{font-size:24px}.customer-detail-heading small{grid-column:1/-1}.customer-detail-heading h2{font-size:31px!important}.customer-progress>li>strong{font-size:10px}.customer-progress>li>small{font-size:8px}.customer-progress>li:not(:last-child):after{right:7px}.customer-progress{padding-bottom:20px}.customer-amounts>div{font-size:11px;gap:12px}.customer-amounts__total{font-size:15px!important}.customer-transactions b{font-size:12px}.customer-line-item{gap:12px}.customer-line-item h3{font-size:14px}.customer-line-item>strong{font-size:13px}}
@media(prefers-reduced-motion:reduce){.customer-shortcut{transition:none}.customer-loading__dot{animation:none}}
.customer-metrics dd small{display:block;margin-top:10px;font-weight:400;letter-spacing:normal}
.customer-metrics small,.customer-statuses dt,.customer-order-price small,.customer-document small,.customer-download small,.customer-filter-bar label,.customer-detail-heading small,.customer-detail-heading>div:last-child>span,.customer-progress>li>small,.customer-line-item small,.customer-history time,.customer-contact dt{color:#637252}
.customer-order-preview header p,.customer-empty-copy,.customer-order-motifs,.customer-detail-hint,.customer-transactions p,.customer-transactions small,.customer-loading p{color:#657454!important}
.customer-status--muted{color:#5f6e52}.customer-status--open{color:#79602f}.customer-progress>li>strong{color:#657454}.customer-contact dd{color:#516a42}

.upload-center{--uc-ink:#243b30;--uc-line:#dadfd6;--uc-soft:#f2f4ee;display:grid;gap:24px;color:var(--uc-ink);font-size:16px;line-height:1.6;margin:0 0 40px}.upload-center *{box-sizing:border-box}.upload-center button,.upload-center input,.upload-center select,.upload-center textarea{font:inherit;font-size:14px}.upload-center button{cursor:pointer}.upload-center button:disabled{cursor:not-allowed;opacity:.5}.upload-center button:focus-visible,.upload-center a:focus-visible,.upload-center input:focus-visible,.upload-center select:focus-visible,.upload-center textarea:focus-visible{outline:3px solid #648865;outline-offset:3px}.upload-center h2,.upload-center h3,.upload-center h4,.upload-center p{margin:0}.upload-center h2{font-size:clamp(26px,3vw,38px);line-height:1.15}.upload-center h3{font-size:21px;line-height:1.3}.upload-center h4{font-size:17px}.upload-center h2 em{font-weight:400}.upload-center p{color:#58675d}.upload-heading{display:flex;align-items:center;justify-content:space-between;gap:24px}.upload-heading p{margin-top:10px}.upload-heading__actions{display:flex;gap:10px;flex-wrap:wrap}.upload-heading .studio-button{white-space:nowrap}.upload-native-picker{position:absolute;width:1px;height:1px;clip-path:inset(100%);overflow:hidden}.upload-dropzone{display:grid;justify-items:center;gap:6px;min-height:170px;border:1px dashed #8d9f8c;background:linear-gradient(120deg,#f5f7f0,#e9efe4);border-radius:16px;color:var(--uc-ink);padding:24px;width:100%;transition:background .18s,outline .18s}.upload-dropzone[data-dragging=true]{outline:3px solid #648865;background:#dce8d6}.upload-dropzone svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:1.6}.upload-dropzone strong{font-size:19px}.upload-dropzone small{font-size:13px;color:#52624f}.upload-feedback,.upload-recovery{padding:16px 20px;border-radius:12px;background:#e8f1e2;border:1px solid #bacfb0}.upload-feedback--error{background:#fff1ea;border-color:#d5ac94;color:#873e28}.upload-recovery button{margin:10px 10px 0 0}.upload-tabs{display:flex;gap:8px;border-bottom:1px solid var(--uc-line);padding:0 0 16px;align-items:center;flex-wrap:wrap}.upload-center button:not(.studio-button):not(.upload-dropzone):not(.upload-image-select){border:1px solid var(--uc-line);background:#fff;color:var(--uc-ink);padding:9px 13px;border-radius:8px;line-height:1.4}.upload-center button[aria-pressed=true]:not(.upload-image-select){background:var(--uc-ink);color:white;border-color:var(--uc-ink)}.upload-tabs span{margin-left:6px;opacity:.7}.upload-tabs a{margin-left:auto;font-size:14px;text-decoration:underline;text-underline-offset:4px}.upload-workspace{display:grid;grid-template-columns:minmax(210px,270px) minmax(0,1fr);gap:22px;align-items:start}.upload-entry-list,.upload-editor{background:#fffdf9;border:1px solid var(--uc-line);border-radius:14px;min-width:0}.upload-entry-list{padding:18px;max-height:820px;overflow:auto}.upload-entry-list>div:first-child{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:16px}.upload-entry-list>p{font-size:14px}.upload-entry-row{display:flex;gap:8px;margin-top:8px;align-items:center}.upload-entry-row input{width:18px;height:18px;flex:none;accent-color:var(--uc-ink)}.upload-center .upload-entry-row button{flex:1;min-width:0;text-align:left;padding:12px;background:transparent}.upload-entry-row button strong{display:block;overflow-wrap:anywhere}.upload-entry-row span{display:block;font-size:12px;opacity:.8;margin-top:4px}.upload-center .upload-entry-row button[aria-current=true]{background:var(--uc-soft);border-color:#8f9e8b}.upload-editor{padding:28px}.upload-editor__heading{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:25px}.upload-editor__heading h3{margin-top:5px;overflow-wrap:anywhere}.upload-state{flex-shrink:0;padding:4px 9px;border-radius:20px;background:#eef1e8;font-size:12px}.upload-field{display:grid;gap:7px;margin-bottom:16px}.upload-field>span{font-size:14px;font-weight:600}.upload-field input,.upload-field select,.upload-field textarea,.upload-library input{width:100%;min-width:0;background:white;border:1px solid #bac5b7;border-radius:7px;padding:12px;color:#243b30}.upload-field textarea{resize:vertical;min-height:72px}.upload-field input,.upload-field select{min-height:44px}.upload-two{display:grid;grid-template-columns:1fr 1fr;gap:16px}.upload-center .upload-hint{font-size:13px;margin:0 0 18px;line-height:1.7}.upload-chosen{border:1px solid var(--uc-line);border-radius:10px;margin:0 0 20px;padding:16px}.upload-chosen legend{font-size:14px;font-weight:600;padding:0 8px}.upload-chosen>div{display:flex;align-items:center;gap:8px;margin:8px 0;flex-wrap:wrap}.upload-chosen img{width:58px;height:48px;object-fit:cover;border-radius:5px}.upload-chosen span{flex:1;min-width:100px;font-size:13px;overflow-wrap:anywhere}.upload-chosen small{display:block;color:#5f7160}.upload-savebar{display:flex;flex-wrap:wrap;gap:10px;border-top:1px solid var(--uc-line);padding-top:20px;margin-bottom:14px}.upload-savebar .studio-button{padding:12px 16px}.upload-empty{min-height:330px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:18px}.upload-empty>span{font-size:40px}.upload-bulk{display:grid;gap:10px;border-top:1px solid var(--uc-line);padding-top:20px;margin-top:20px}.upload-bulk .upload-field{margin:0}.upload-queue{background:white;border:1px solid var(--uc-line);border-radius:14px;padding:20px}.upload-queue header{display:flex;gap:12px;justify-content:space-between;align-items:center;margin-bottom:12px}.upload-queue h3 span{font:400 14px sans-serif;margin-left:8px}.upload-queue article{display:flex;align-items:center;gap:16px;padding:14px 0;border-top:1px solid var(--uc-line)}.upload-queue img{width:70px;height:58px;object-fit:cover;border-radius:6px}.upload-queue article>div{flex:1;min-width:0}.upload-queue strong{display:block;overflow-wrap:anywhere;font-size:14px}.upload-queue p{font-size:13px}.upload-queue progress{width:100%;height:6px;accent-color:#638759;display:block;margin-top:8px}.upload-library{border-top:1px solid var(--uc-line);padding-top:25px}.upload-library>header{display:flex;align-items:center;gap:18px;margin-bottom:22px;flex-wrap:wrap}.upload-library>header>div{margin-right:auto}.upload-library>header p{font-size:13px}.upload-library form{display:flex;gap:8px}.upload-media-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.upload-media-grid article{border:1px solid var(--uc-line);border-radius:12px;overflow:hidden;background:white}.upload-media-grid article[data-selected=true]{box-shadow:0 0 0 2px #5c7755}.upload-image-select{display:block;position:relative;width:100%;border:0;padding:0;background:#edf0e8}.upload-image-select img{display:block;width:100%;height:160px;object-fit:cover}.upload-image-select span{position:absolute;bottom:0;left:0;right:0;padding:7px;background:#172a24d9;color:white;font-size:12px}.upload-media-grid article>div{padding:12px 14px}.upload-media-grid strong{display:block;font-size:14px;overflow-wrap:anywhere}.upload-media-grid small{display:block;font-size:12px;color:#61705e;margin-top:4px}.upload-media-grid footer{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:0 14px 14px}.upload-media-grid footer a,.upload-center .upload-media-grid footer button{font-size:12px}.upload-library-empty{border:1px dashed var(--uc-line);border-radius:12px;padding:35px;text-align:center}.upload-library-empty p{margin-top:8px}.upload-pagination{display:flex;justify-content:center;align-items:center;gap:20px;margin-top:24px}.upload-preview{position:fixed;inset:0;width:min(1000px,94vw);max-height:90dvh;margin:auto;border:1px solid #bec7b8;border-radius:16px;padding:26px;background:#fcfbf7;color:var(--uc-ink);overflow:auto}.upload-preview::backdrop{background:#10251fe6;backdrop-filter:blur(5px)}.upload-preview header{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:25px}.upload-preview header>span{font-size:12px;letter-spacing:.1em}.upload-preview>div{display:flex;gap:14px;overflow:auto;margin:20px 0}.upload-preview img{max-width:100%;max-height:55vh;object-fit:contain}.upload-preview>p{white-space:pre-wrap}.upload-preview dl>div{display:flex;gap:20px}.upload-preview .upload-hint{margin-top:20px}
@media(max-width:1100px){.upload-media-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.upload-heading{align-items:flex-start;flex-direction:column}.upload-workspace{grid-template-columns:230px minmax(0,1fr)}.upload-editor{padding:20px}.upload-two{grid-template-columns:1fr;gap:0}}
@media(max-width:760px){.upload-center{gap:20px}.upload-workspace{grid-template-columns:1fr}.upload-entry-list{max-height:300px}.upload-media-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.upload-media-grid img{height:145px}.upload-heading__actions{width:100%}.upload-heading__actions>button{flex:1}.upload-tabs a{margin-left:0}.upload-dropzone{padding:20px 14px}.upload-dropzone span{font-size:13px}.upload-queue{padding:14px}.upload-queue article{flex-wrap:wrap}.upload-queue article>div{min-width:150px}.upload-editor__heading{flex-direction:column;gap:10px}.upload-library form{width:100%}.upload-library form label{flex:1}.upload-preview{padding:18px}.upload-savebar>button{flex:1}.upload-center .studio-button{font-size:14px}.upload-entry-list,.upload-editor{border-radius:12px}.upload-editor{padding:18px}}
.upload-editor-fields{border:0;margin:0;padding:0;min-width:0}.upload-file-symbol{display:grid;place-items:center;width:70px;height:58px;background:#edf1e7;border-radius:6px;font-size:30px;flex:none}.managed-product-images{display:flex;gap:10px;flex-wrap:wrap;padding:15px 0}.managed-product-images button{border:2px solid transparent;border-radius:8px;overflow:hidden;padding:0;background:#e7eadf}.managed-product-images button[aria-pressed=true]{border-color:#55754b}.managed-product-images img{display:block;width:80px;height:65px;object-fit:cover}
@media(prefers-reduced-motion:reduce){.upload-center *{transition:none!important;scroll-behavior:auto!important}}

.billing-center{--bill-ink:#243c30;--bill-line:#dce3d8;color:var(--bill-ink);font-size:14px;line-height:1.55}.billing-heading{display:flex;justify-content:space-between;gap:24px;align-items:center;padding:12px 0 28px}.billing-heading h3{font-family:Georgia,serif;font-size:clamp(26px,3vw,40px);font-weight:400;margin:8px 0}.billing-heading p,.billing-setup p{margin:4px 0;color:#5b6a5e}.billing-eyebrow{font-size:10px;letter-spacing:.18em;font-weight:700}.billing-pill,.billing-badge{display:inline-block;border-radius:30px;background:#e9eee4;padding:6px 11px;font-size:11px;white-space:nowrap}.billing-nav{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 24px;border-bottom:1px solid var(--bill-line);padding-bottom:16px}.billing-center button,.billing-center a.billing-primary,.billing-center a.billing-secondary,.billing-nav a{border:1px solid var(--bill-line);border-radius:9px;padding:10px 14px;background:#f9faf6;color:var(--bill-ink);font:inherit;text-decoration:none;cursor:pointer;transition:background .18s,box-shadow .18s;display:inline-block}.billing-center button:hover,.billing-nav a:hover{background:#e8eee2}.billing-center button:disabled{opacity:.5;cursor:not-allowed}.billing-center :focus-visible{outline:3px solid #719970;outline-offset:3px}.billing-center button.billing-primary,.billing-center a.billing-primary,.billing-nav [aria-current=page]{background:var(--bill-ink);color:#fff;border-color:var(--bill-ink)}.billing-panel{background:#fffefa;border:1px solid var(--bill-line);border-radius:16px;padding:26px;margin-bottom:20px;min-width:0}.billing-panel h4{font-size:18px;font-weight:600;margin:0 0 17px}.billing-panel p{color:#526657}.billing-alert,.billing-notice,.billing-setup{padding:18px 22px;border-radius:12px;margin-bottom:20px;white-space:pre-line}.billing-alert{background:#fff0e7;border:1px solid #e8c3ad;color:#813f29}.billing-notice{background:#e8f1df}.billing-setup{background:#eef1e7;display:flex;gap:20px;align-items:center;justify-content:space-between}.billing-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.billing-metrics article{background:#fffefa;border:1px solid var(--bill-line);padding:24px;border-radius:13px;display:grid;gap:10px}.billing-metrics strong{font-size:28px;font-weight:500;font-variant-numeric:tabular-nums}.billing-help{font-size:12px;color:#617061;margin:14px 0 22px}.billing-filters{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:12px;margin-bottom:22px}.billing-field{display:grid;gap:6px;align-content:start;font-size:12px;min-width:0;margin-bottom:14px}.billing-field>span{font-weight:600}.billing-center input:not([type=checkbox]),.billing-center select,.billing-center textarea{border:1px solid #cfd9cb;background:white;border-radius:8px;padding:11px 12px;font:inherit;color:#243c30;min-width:0;width:100%;box-sizing:border-box}.billing-center textarea{resize:vertical;min-height:76px}.billing-center input[type=checkbox]{width:17px;height:17px;accent-color:#31543a;flex-shrink:0}.billing-center fieldset{border:0;padding:0;margin:0 0 25px;min-width:0}.billing-center fieldset[disabled]{opacity:.85}.billing-center legend{font-size:15px;font-weight:600;margin-bottom:20px;padding-top:14px}.billing-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 20px}.billing-check{display:flex;align-items:flex-start;gap:10px;font-size:12px;margin:13px 0 22px}.billing-table-scroll{overflow-x:auto}.billing-table{width:100%;border-collapse:collapse;text-align:left}.billing-table th{font-size:11px;letter-spacing:.05em;color:#667c6b;padding:12px 14px;border-bottom:1px solid var(--bill-line)}.billing-table td{padding:18px 14px;border-bottom:1px solid #e7ece2;font-size:13px}.billing-table small,.billing-customers small,.billing-dispatch small{display:block;color:#647764;font-size:11px;margin-top:5px}.billing-table strong{font-weight:600}.billing-pagination{display:flex;gap:10px;align-items:center;margin-top:20px}.billing-pagination span{margin-right:auto;font-size:12px}.billing-empty{padding:45px 16px;text-align:center}.billing-workspace{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}.billing-document-heading{display:flex;justify-content:space-between;align-items:center;gap:15px;border-bottom:1px solid var(--bill-line);padding-bottom:22px;margin-bottom:18px}.billing-document-heading h4{margin:5px 0 0;font-size:25px;overflow-wrap:anywhere}.billing-line{background:#f4f6ef;border:1px solid #e2e8da;border-radius:12px;padding:17px;margin-bottom:18px}.billing-line-title{display:flex;justify-content:space-between;align-items:center;margin-bottom:13px}.billing-line-title button{font-size:11px;padding:5px 9px}.billing-line-fields{display:grid;grid-template-columns:repeat(3,1fr);gap:0 12px}.billing-totals{margin:0 0 22px}.billing-totals div{display:flex;gap:15px;justify-content:space-between;border-bottom:1px solid #e7ebdf;padding:12px 0}.billing-totals dt{font-size:12px}.billing-totals dd{margin:0;font-weight:600;font-variant-numeric:tabular-nums}.billing-side .billing-primary,.billing-side .billing-secondary{width:100%;box-sizing:border-box;text-align:center;margin:7px 0}.billing-validation{font-size:12px;background:#f4f2e8;padding:16px;border-radius:9px;margin:18px 0}.billing-validation ul{padding-left:18px}.billing-validation li{margin:7px 0}.billing-history{list-style:none;padding:0;margin:0}.billing-history li{position:relative;border-left:1px solid #cbd9c2;padding:0 0 23px 22px;display:grid;gap:4px}.billing-history li:before{content:'';position:absolute;width:7px;height:7px;background:#739066;border-radius:100%;left:-4px;top:7px}.billing-history span,.billing-history small{font-size:11px;color:#677660}.billing-history strong{font-size:13px}.billing-subform{border-top:1px solid var(--bill-line);padding-top:20px;margin-top:18px}.billing-subform button{margin:5px 5px 0 0}.billing-dispatch{padding:12px 0;border-bottom:1px solid var(--bill-line);font-size:12px;overflow-wrap:anywhere}.billing-refresh{margin-top:10px}.billing-customers{display:grid;gap:12px}.billing-customers>div{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:15px;background:#f4f6ee;border-radius:10px}.billing-logo{display:flex;align-items:center;gap:24px}.billing-logo img{width:74px;height:111px;object-fit:contain;background:white}.billing-logo p{font-size:12px}.billing-sources{margin-top:25px;border-top:1px solid var(--bill-line);padding-top:20px;font-size:12px}.billing-sources summary{cursor:pointer;font-weight:600}.billing-center a{color:#315840}.billing-center button{touch-action:manipulation}@media(max-width:1100px){.billing-workspace{grid-template-columns:minmax(0,1fr) 300px;gap:16px}.billing-filters{grid-template-columns:repeat(3,1fr)}.billing-metrics{grid-template-columns:repeat(2,1fr)}.billing-panel{padding:20px}.billing-line-fields{grid-template-columns:repeat(2,1fr)}}@media(max-width:780px){.billing-workspace{grid-template-columns:1fr}.billing-heading{align-items:flex-start;flex-direction:column;gap:12px}.billing-form-grid,.billing-filters{grid-template-columns:repeat(2,minmax(0,1fr))}.billing-setup{display:block}.billing-setup button{margin-top:12px}.billing-heading h3{font-size:30px}.billing-metrics strong{font-size:24px}.billing-metrics article{padding:18px}.billing-panel{padding:18px}.billing-customers>div{align-items:flex-start;flex-direction:column}}@media(max-width:440px){.billing-form-grid,.billing-filters{grid-template-columns:1fr}.billing-metrics{gap:8px}.billing-metrics article{padding:14px}.billing-metrics strong{font-size:22px}.billing-nav{gap:6px}.billing-nav button,.billing-nav a{font-size:12px;padding:9px}.billing-document-heading{align-items:flex-start;flex-direction:column}}@media(prefers-reduced-motion:reduce){.billing-center *{transition:none!important}}
.billing-center .billing-field-error{color:#813f29;font-size:12px;line-height:1.5;font-weight:500;overflow-wrap:anywhere}.billing-center [aria-invalid=true]{border-color:#a14a30!important;box-shadow:0 0 0 1px #a14a30}.billing-contact-save{margin:0 0 20px}.billing-catalog{border:1px solid var(--bill-line);border-radius:12px;padding:18px;margin:16px 0;background:#f0f4ec;min-width:0}.billing-catalog h5{font-size:16px;margin:0 0 14px}.billing-catalog button{margin:5px 8px 5px 0}.billing-catalog p,.billing-rounding-note{overflow-wrap:anywhere}.billing-rounding-note{display:block;color:#813f29;margin-top:8px}.billing-customers>div>span{min-width:0;overflow-wrap:anywhere}.billing-customers{margin-top:16px}@media(max-width:440px){.billing-center .billing-line-fields{grid-template-columns:minmax(0,1fr)}.billing-catalog{padding:13px}.billing-catalog button,.billing-contact-save button{width:100%;margin-right:0}.billing-catalog input:not([type=checkbox]),.billing-catalog select,.billing-catalog textarea{font-size:16px}.billing-center .billing-field-error{font-size:13px}}

.gallery-discovery{background:#f5f6ef;border:1px solid #dce2d3;border-radius:18px;padding:27px 30px;margin:18px 0 36px;color:#2d4432}.gallery-discovery-heading{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom:20px}.gallery-discovery-heading p{font-family:Georgia,serif;font-size:23px;margin:6px 0}.gallery-result-count{font-size:13px;white-space:nowrap;padding:8px 13px;border-radius:30px;background:#e5ebdc}.gallery-filter-group{border:0;padding:0;margin:0}.gallery-filter-group legend{font-size:12px;font-weight:600;margin-bottom:12px}.gallery-filter-group>div{display:flex;flex-wrap:wrap;gap:8px}.gallery-filter-choice{display:flex;align-items:center;gap:8px;background:#fffefa;border:1px solid #d5dfcd;border-radius:9px;padding:10px 13px;font-size:13px;cursor:pointer;transition:background .2s,border-color .2s;min-height:42px;box-sizing:border-box}.gallery-filter-choice input{appearance:none;width:15px;height:15px;border:1px solid #829879;border-radius:4px;margin:0;background:#fff;display:grid;place-items:center}.gallery-filter-choice input:checked{background:#345537;border-color:#345537}.gallery-filter-choice input:checked:after{content:'✓';font-size:11px;color:white}.gallery-filter-choice[data-active=true]{background:#e3ebd9;border-color:#839f72}.gallery-filter-choice:focus-within{outline:3px solid #779666;outline-offset:3px}.gallery-filter-choice small{font-size:10px;opacity:.65;min-width:14px;text-align:center}.gallery-filter-details{border-top:1px solid #dce4d2;margin-top:18px;padding-top:14px}.gallery-filter-details summary{font-size:12px;font-weight:600;cursor:pointer;padding:5px 0}.gallery-filter-details summary span{margin-left:10px;font-weight:400}.gallery-filter-details .gallery-filter-group{padding-top:15px}.gallery-filter-explanation{display:flex;justify-content:space-between;gap:24px;align-items:center;margin-top:20px}.gallery-filter-explanation p{font-size:11px;color:#65775d;max-width:510px;margin:0}.gallery-filter-explanation button,.gallery-selected button{border:0;background:transparent;color:#365736;padding:8px;cursor:pointer;font:inherit;font-size:12px}.gallery-filter-explanation button{text-decoration:underline;white-space:nowrap}.gallery-selected{display:flex;gap:8px;flex-wrap:wrap;margin-top:15px}.gallery-selected button{background:#dce7d0;border-radius:20px;padding:7px 12px}.gallery-selected span{margin-left:8px}.gallery-load-more{text-align:center;margin:30px 0 60px}.gallery-load-more p{font-size:12px;color:#687763}.taxonomy-selector{margin:18px 0}.taxonomy-selector fieldset{border:1px solid #dce2d4;border-radius:10px;margin:14px 0;padding:14px}.taxonomy-selector legend{font-size:12px;font-weight:600;padding:0 6px}.taxonomy-selector fieldset>div{display:flex;flex-wrap:wrap;gap:7px}.taxonomy-selector label{display:flex;gap:7px;align-items:center;border:1px solid #d7e1cf;border-radius:7px;padding:8px 10px;font-size:12px;background:#fafbf7;cursor:pointer;min-height:38px;box-sizing:border-box}.taxonomy-selector label[data-active=true]{background:#e3ecd9;border-color:#8da17c}.taxonomy-selector input{accent-color:#31553a}.taxonomy-selector label:focus-within{outline:2px solid #668f57;outline-offset:2px}.taxonomy-manager{border:1px solid #dae3d3;background:#fffefa;border-radius:15px;padding:28px;margin:25px 0}.taxonomy-manager>header{display:flex;justify-content:space-between;align-items:center;gap:25px}.taxonomy-manager h3{font-family:Georgia,serif;font-size:28px;font-weight:400;margin:8px 0}.taxonomy-manager p{font-size:13px;color:#62735d}.taxonomy-group-nav{display:flex;gap:8px;flex-wrap:wrap;margin:25px 0}.taxonomy-manager button:not(.studio-button){font:inherit;font-size:12px;padding:10px 13px;border:1px solid #d2deca;border-radius:8px;background:#f3f7ec;color:#2d4932;cursor:pointer}.taxonomy-manager button:disabled{opacity:.5;cursor:not-allowed}.taxonomy-group-nav [aria-pressed=true]{background:#294933!important;color:#fff!important}.taxonomy-manager-grid{display:grid;grid-template-columns:minmax(250px,.85fr) minmax(0,1.3fr);gap:25px;align-items:start}.taxonomy-list{display:grid;gap:8px}.taxonomy-list>button{display:flex;justify-content:space-between;align-items:center;text-align:left;gap:16px;background:white!important;padding:14px!important}.taxonomy-list [aria-current=true]{background:#e6eedb!important;border-color:#7d996b!important}.taxonomy-list small{display:block;font-size:10px;margin-top:4px;color:#6c7c64}.taxonomy-list>button>span:last-child{font-size:10px;white-space:nowrap}.taxonomy-edit{background:#f3f6ed;padding:23px;border-radius:12px;min-height:250px}.taxonomy-edit fieldset{border:0;padding:0;margin:0}.taxonomy-edit legend{font-size:16px;font-weight:600;margin-bottom:18px}.taxonomy-management-actions{border-top:1px solid #d5dfca;margin-top:25px;padding-top:18px}.taxonomy-management-actions h4{font-size:14px;margin:18px 0 8px}.taxonomy-empty{padding:28px 12px}.taxonomy-existing{border-top:1px solid #dce3d4;margin-top:32px;padding-top:22px}.taxonomy-manager :focus-visible{outline:3px solid #789965;outline-offset:3px}.gallery-discovery button:focus-visible{outline:3px solid #789965;outline-offset:3px}@media(max-width:800px){.gallery-discovery{padding:22px 18px}.gallery-discovery-heading{align-items:flex-start}.gallery-discovery-heading p{font-size:21px}.gallery-filter-explanation{align-items:flex-start;flex-direction:column;gap:8px}.taxonomy-manager{padding:20px 16px}.taxonomy-manager>header{align-items:flex-start;flex-direction:column;gap:12px}.taxonomy-manager-grid{grid-template-columns:1fr}.taxonomy-list{max-height:330px;overflow:auto}.taxonomy-edit{padding:19px}.gallery-filter-choice{font-size:12px;padding:10px}.gallery-result-count{font-size:11px}}@media(prefers-reduced-motion:reduce){.gallery-filter-choice{transition:none}}
.gallery-topic-links nav{display:flex;flex-wrap:wrap;gap:8px 22px;padding-top:12px}.gallery-topic-links a{color:#375b3c;font-size:12px;text-underline-offset:4px;line-height:1.6;min-height:30px;display:inline-flex;align-items:center;gap:6px}.gallery-topic-links a:focus-visible,.gallery-discovery summary:focus-visible{outline:3px solid #789965;outline-offset:4px;border-radius:3px}.upload-category-management{scroll-margin-top:115px;margin:22px 0}.upload-category-management>summary{padding:16px 20px;border:1px solid #dae3d3;border-radius:12px;background:#f3f7ec;cursor:pointer;font-size:14px;font-weight:600;color:#304e35}.upload-category-management>summary:focus-visible{outline:3px solid #789965;outline-offset:3px}.upload-category-management[open]>.taxonomy-manager{margin-top:15px}

/* Smartphone-only layer. Larger tablets and the desktop retain their original rules. */
.mobile-navigation{display:none}
@media(max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 html{scroll-padding-top:84px;scroll-behavior:auto}
 html[data-mobile-navigation=true] body{padding-bottom:calc(82px + env(safe-area-inset-bottom,0px))}
 body{overflow-wrap:break-word}
 :is(input,textarea,select){font-size:max(16px,1rem)!important;scroll-margin-block:100px}
 :is(button,a,input,select,textarea){-webkit-tap-highlight-color:transparent;touch-action:manipulation}
 :is(button,a):focus-visible{outline:2px solid #52705a;outline-offset:4px}
 :is(.studio-main,.member-area,.studio-administration,.auth-layout) :is(button,.studio-button,.member-button){min-height:44px}
 .mobile-navigation{position:fixed;z-index:100;left:0;right:0;bottom:0;display:flex;align-items:stretch;justify-content:space-evenly;gap:2px;padding:7px max(8px,env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom,0px)) max(8px,env(safe-area-inset-left));border-top:1px solid #233d2e22;background:#fafaf6;color:#243c30;font:500 .66rem/1.3 var(--sans,Arial),sans-serif;box-shadow:0 -3px 18px #142c2406}
 .mobile-navigation a{flex:1;min-width:0;min-height:53px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;padding:4px 2px;border-radius:12px;color:#65746b;text-decoration:none;position:relative;transition:color .18s,background .18s;overflow-wrap:anywhere;text-align:center}
 .mobile-navigation svg{width:21px;height:21px;stroke:currentColor;stroke-width:1.6;flex-shrink:0}
 .mobile-navigation a[aria-current=page]{color:#193e2b;background:#eaf0e5}
 .mobile-navigation[data-keyboard=true],body:has(.brand-loader) .mobile-navigation{display:none}
 .v2-header{min-height:70px;padding:10px max(16px,env(safe-area-inset-right)) 10px max(16px,env(safe-area-inset-left));padding-top:max(10px,env(safe-area-inset-top));gap:10px}
 .v2-header__links,.v2-header__bag,.user-access__dashboard{display:none!important}
 .v2-brand{min-width:0;gap:9px;font-size:19px;line-height:1.05}
 .v2-brand>span:last-child{display:flex;flex-direction:column}
 .v2-brand__portrait{width:36px;height:42px;flex:none}
 .v2-header__actions{gap:8px}
 .v2-menu-toggle{min-width:44px;min-height:44px;padding:9px;border:0;gap:0}
 .v2-menu-toggle>span{display:none}
 .v2-menu-toggle svg{width:25px;height:25px}
 .user-access__trigger{width:44px;height:44px;background:#ffffff0d}
 .user-access__menu{position:fixed;left:12px;right:12px;top:max(76px,calc(env(safe-area-inset-top) + 65px));width:auto;max-height:calc(100dvh - 170px);overflow:auto;border-radius:18px;padding:12px;box-shadow:0 12px 35px #142c2420}
 .user-access__menu nav a,.user-access__menu nav button{min-height:47px;font-size:15px}
 .user-access__identity strong{font-size:25px}
 .v6-menu{height:100dvh;scrollbar-gutter:auto}
 .v6-menu[open]{animation:mobile-panel-in .22s ease-out both}
 .v6-menu__top{min-height:72px;padding:12px 20px;padding-top:max(12px,env(safe-area-inset-top))}
 .v6-menu__layout{display:block;min-height:0;padding:4px 24px calc(24px + env(safe-area-inset-bottom))}
 .v6-menu__feature{display:none}
 .v6-menu__primary{padding:6px 0 20px}
 .v6-menu__primary>a{min-height:58px;animation:none;border-bottom:1px solid #243c3012}
 .v6-menu__primary>a>span{font-size:30px;transform:none!important;transition:none}
 .v6-menu__groups{gap:18px;padding-top:22px}
 .v6-menu__groups a{font-size:15px;min-height:44px}
 .v6-menu__account{gap:10px 24px;margin-top:18px}
 .v6-menu__account a,.v6-menu__account button{font-size:14px;min-height:44px}
 .v6-menu__close svg,.v6-menu__primary svg{transform:none!important}
 .auth-dialog{inset:0;width:100%;max-width:none;height:100dvh;max-height:100dvh;margin:0;padding:0;border:0;border-radius:0;overflow-y:auto;overscroll-behavior:contain}
 .auth-dialog__bar{position:sticky;top:0;background:#faf8f0;z-index:3;padding-top:max(12px,env(safe-area-inset-top))}
 .auth-dialog__bar button{width:44px;height:44px;flex-shrink:0}
 .auth-dialog .auth-layout{padding:22px 20px calc(30px + env(safe-area-inset-bottom));min-height:0}
 .auth-layout,.studio-main{padding-inline:18px;min-width:0}
 .studio-main{padding-top:98px}
 .studio-panel{padding:23px 19px;border-radius:16px}
 .studio-notice-wrap{top:max(76px,calc(env(safe-area-inset-top) + 70px));left:12px;right:12px;max-width:none}
 .studio-notice{max-height:35dvh;overflow:auto;font-size:14px}
 .studio-notice button{min-width:44px;min-height:44px;flex-shrink:0}
 .v2-footer{padding:28px 20px;gap:14px;font-size:12px}
 .v2-footer nav{flex-wrap:wrap;gap:8px 20px}
 .v2-footer a{min-height:44px;display:inline-flex;align-items:center}
 .studio-administration>.studio-admin-nav,.member-area>.member-nav{display:none}
 .studio-administration:has(.shopdesk)>.studio-heading{margin-bottom:4px}
 .studio-administration:has(.shopdesk)>.studio-heading>p{display:none}
 .studio-administration:has(.shopdesk) .shopdesk-title{position:relative;min-height:44px}
 .studio-administration:has(.shopdesk) .shopdesk-title>div{max-width:72%}
 .studio-administration:has(.shopdesk) .shopdesk-title>div>p,.studio-administration:has(.shopdesk) .shopdesk-title>div>.shopdesk-kicker{display:none}
 .studio-administration:has(.shopdesk) .shopdesk-title h2{font-size:20px}
 .studio-administration:has(.mobile-dashboard-overview) .shopdesk-title>.shopdesk-button{position:absolute;right:0;top:0;font-size:0;padding:10px;min-width:44px}
 .studio-administration:has(.mobile-dashboard-overview) .shopdesk-title>.shopdesk-button:after{content:'↻';font-size:20px}
 .member-heading>p{margin-top:12px}
 .member-account-strip{display:none}
 /* Short, non-blocking mobile motion. Nothing waits for a scroll timeline. */
 .v2-site{--v2-gutter:20px;font-size:1rem;line-height:1.6}
 .v2-site h2{font-size:clamp(32px,9vw,42px);line-height:1.12;letter-spacing:-.045em}
 .v2-site h3{line-height:1.2}
 .v2-site [data-v2-reveal]{opacity:1;transform:none!important;filter:none!important;transition:none}
 .v2-site [data-v2-reveal].mobile-reveal{animation:mobile-content-in .24s ease-out both}
 .v2-site [data-v2-parallax]{transform:none!important;--v2-image-shift:0px!important}
 .v2-hero{min-height:calc(100svh - 72px);height:auto}
 .v2-hero__content{min-height:calc(100svh - 72px);padding:130px 22px 38px;justify-content:flex-end}
 .v2-hero h1{font-size:clamp(46px,13vw,66px);line-height:1.02;max-width:11ch}
 .v2-hero__bottom{margin-top:26px;gap:26px}
 .v2-hero__bottom>p{max-width:34ch;font-size:16px;line-height:1.6}
 .v2-hero__actions{gap:12px;align-items:flex-start;flex-direction:column}
 .v2-hero__foot{display:none}
 .v2-button{min-height:48px;padding:14px 19px;font-size:14px}
 .v2-text-link{min-height:44px;display:inline-flex;align-items:center}
 .v3-reel-layer img{transform:none!important}
 .v3-landscapes{padding:54px 20px}
 .v3-flight-scene,.v3-flight-stage{height:auto;min-height:0;position:relative;padding:0}
 .v3-flight-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:30px;transform:none}
 .v3-flight-card{opacity:1!important;transform:none!important}
 .v3-flight-card__surface{transform:none!important}
 .v3-flight-card__image{height:auto;aspect-ratio:4/3}
 .v3-flight-card__caption{padding:14px 0 0}
 .v3-flight-card__caption h3{font-size:25px}
 .v3-flight-card__caption p{font-size:15px;line-height:1.6}
 .v2-nature__end{padding-top:34px;gap:22px}
 .v3-statement-scene,.v3-statement-stage{position:relative;min-height:0;height:auto}
 .v3-statement-copy{padding:68px 24px}
 .v3-statement-words{font-size:clamp(26px,7vw,34px)!important;line-height:1.38!important}
 .v3-statement [data-word]{opacity:1!important}
 .v2-about{padding:54px 20px;gap:28px}
 .v2-about__portrait{max-height:450px;border-radius:3px}
 .v2-about__copy{padding:0}
 .v2-about__facts{gap:10px;margin-block:22px}
 .v3-people__inner{padding:54px 20px}
 .v3-services{gap:16px}
 .v3-service{padding:25px 23px;box-shadow:none;backdrop-filter:none}
 .v4-details{padding:54px 20px}
 .v4-details-heading{gap:20px}
 .v4-details-toolbar,.v4-details-controls,.v4-details-caption{flex-wrap:wrap;gap:16px}
 .v4-details-modes{display:flex;flex-wrap:wrap}
 .v4-details-modes button{min-height:44px;padding:10px 13px}
 .v4-details-lens{touch-action:none}
 .v4-details-preview-label{display:none}
 .v4-details-stage{border-radius:3px}
 .v4-journey{height:auto!important;min-height:0!important}
 .v4-journey-orbits,.v4-journey-particles,.v4-journey-atmosphere,.v4-journey-photo-glint{display:none}
 .v4-journey-backdrops{filter:none!important}
 .v4-journey-stage{position:relative!important;min-height:0!important;height:auto!important;padding:42px 20px}
 .v4-journey-copy-stack h3{font-size:38px}
 .v4-journey-chapters{gap:6px;display:flex;flex-wrap:wrap}
 .v4-journey-chapters button{min-height:46px;padding:10px 12px;font-size:13px}
 .v4-journey-chapters button>span{display:none}
 .v4-film--cinematic .v4-film-stage{min-height:0;height:auto;padding-bottom:72px}
 .v4-film-copy{padding:48px 22px!important}
 .v4-film-copy h2{font-size:38px}
 .v4-film-copy p{font-size:16px}
 .v4-film-controls{bottom:18px;right:20px;left:auto}
 .v4-film-controls button{min-height:46px;box-shadow:none;backdrop-filter:none}
 .v4-film-credit{font-size:11px;padding:12px 20px;line-height:1.6}
 .v4-film--editorial{padding:36px 0}
 .v4-film--editorial .v4-film-stage{margin-inline:20px;min-height:220px}
 .v2-process{padding:54px 20px}
 .v2-process ol{gap:25px}
 .v2-process li{padding:22px 0;border-bottom:1px solid #243c3022}
 .v2-process li>span{font-size:14px}
 .v2-contact{min-height:0}
 .v2-contact__content{padding:70px 22px;min-height:0}
 .v2-contact__actions{gap:12px;align-items:flex-start}
 .v2-contact__actions>a{min-height:44px}
 .customer-voices__card{animation:none!important;transform:none!important;box-shadow:none}
 .customer-voices__pause{display:none}
 .brand-loader__content{max-width:100%;padding:24px}
 .brand-loader__flash,.brand-loader__wave{display:none}
 .brand-loader__trace,.brand-loader__orbit{filter:none!important}
}
@keyframes mobile-panel-in{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@keyframes mobile-content-in{from{opacity:.7;translate:0 7px}to{opacity:1;translate:0 0}}
@media(max-width:959px) and (max-height:500px) and (pointer:coarse) and (prefers-reduced-motion:reduce){
 .mobile-navigation *,.v6-menu,.v6-menu *,.v2-site *,.auth-dialog,.mobile-gallery-sheet,.mobile-settings-page,.v2-collection{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
@media(max-width:700px) and (prefers-reduced-motion:reduce){
 .mobile-navigation *,.v6-menu,.v6-menu *,.v2-site *,.auth-dialog{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
@media(max-width:700px) and (max-height:500px){
 .mobile-navigation{position:static;padding-bottom:10px}
 html[data-mobile-navigation=true] body{padding-bottom:0}
 .v2-hero__content{padding-top:100px}
 .user-access__menu{max-height:calc(100dvh - 100px)}
}

/* New controls are mobile-only. Existing desktop composition is intentionally untouched. */
.studio-motif__mobile-back{display:none!important}

@media(max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 .gallery-discovery--desktop{display:none}
 .v2-collection{animation:mobile-gallery-in .2s ease-out both}
 .v2-collection .collection-heading{display:block;margin:12px 0 24px}
 .v2-collection .collection-heading h1{font-size:clamp(36px,10vw,52px);line-height:1.08;max-width:100%;overflow-wrap:anywhere;margin-bottom:0}
 .v2-collection .collection-heading>p{font-size:15px;line-height:1.6;max-width:34em;margin-top:16px;padding:0}
 .v2-collection .collection-search{display:flex;flex-wrap:wrap;gap:10px;margin:24px 0 14px}
 .v2-collection .collection-search>label{flex:1 1 100%;max-width:none;gap:10px;background:#fffdf8;border:1px solid #d8ddd2;border-radius:12px;padding:0 12px}
 .v2-collection .collection-search input{font-size:16px;min-height:48px;padding:10px 0}
 .v2-collection .collection-saved{border:0;border-radius:8px;padding:5px 3px;font-size:14px;min-height:44px;gap:9px}
 .v2-collection .collection-saved[aria-pressed=true]{background:#e5ecdf;padding-inline:10px}
 .mobile-gallery-filters{margin:0 0 22px;color:#253e2e}
 .mobile-gallery-filters button{font:inherit;cursor:pointer;touch-action:manipulation}
 .mobile-gallery-filters__row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
 .mobile-gallery-filters__quick{display:flex;gap:7px;flex-wrap:wrap;min-width:0;flex:1 1 190px}
 .mobile-gallery-filters__quick button{border:1px solid #d7ded1;background:transparent;border-radius:24px;min-height:44px;padding:9px 12px;font-size:14px;line-height:1.35;overflow-wrap:anywhere;color:#40573b;max-width:100%}
 .mobile-gallery-filters__quick button[aria-pressed=true]{background:#244833;color:#fff;border-color:#244833}
 .mobile-gallery-filters__open{display:flex;align-items:center;justify-content:center;gap:7px;min-height:46px;border:1px solid #c9d5c3;border-radius:10px;background:#fffdf7;color:#244833;padding:10px 12px;font-size:14px;flex:0 0 auto}
 .mobile-gallery-filters__open svg{height:19px;width:19px;stroke:currentColor;stroke-width:1.5}
 .mobile-gallery-filters__open span{display:grid;place-items:center;min-width:21px;height:21px;border-radius:50%;background:#294d37;color:white;font-size:12px}
 .mobile-gallery-filters__summary{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-top:12px;min-height:44px;font-size:14px;color:#5d6c57}
 .mobile-gallery-filters__summary button{border:0;background:none;color:#315338;text-decoration:underline;text-underline-offset:4px;min-height:44px;padding:8px 0;font-size:14px}
 .mobile-gallery-filters__selected{display:flex;flex-wrap:wrap;gap:6px;margin-top:2px}
 .mobile-gallery-filters__selected button{display:flex;align-items:center;gap:9px;border:0;background:#e4ecdc;border-radius:24px;padding:9px 12px;color:#31513a;min-height:44px;max-width:100%;font-size:13px;overflow-wrap:anywhere;text-align:left}
 .mobile-gallery-filters__selected button span{font-size:20px;line-height:1}
 .mobile-gallery-sheet{position:fixed;inset:auto 0 0;width:100%;max-width:100%;height:min(88dvh,820px);max-height:100dvh;margin:0;border:0;border-radius:22px 22px 0 0;padding:0;background:#faf9f3;color:#253e2e;overflow:hidden;box-shadow:none;font:16px/1.5 var(--sans,Arial),sans-serif}
 .mobile-gallery-sheet[open]{display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:auto minmax(0,1fr) auto;animation:mobile-gallery-sheet-in .22s ease-out}
 .mobile-gallery-sheet>header,.mobile-gallery-sheet__body,.mobile-gallery-sheet>footer{min-width:0;max-width:100%;box-sizing:border-box}
 .mobile-gallery-sheet>footer{flex-wrap:wrap}
 .mobile-gallery-sheet>footer button{white-space:normal;overflow-wrap:anywhere}
 .mobile-gallery-sheet::backdrop{background:#1022188c;backdrop-filter:none}
 .mobile-gallery-sheet>header{display:flex;justify-content:space-between;gap:12px;align-items:center;padding:22px max(18px,env(safe-area-inset-right)) 18px max(18px,env(safe-area-inset-left));border-bottom:1px solid #dce2d5}
 .mobile-gallery-sheet>header>div{min-width:0}
 .mobile-gallery-sheet>header span:not(button span){font:600 10px/1.5 var(--sans,Arial),sans-serif;letter-spacing:.13em;color:#70805f}
 .mobile-gallery-sheet>header h2{font:400 26px/1.2 Georgia,serif;margin:5px 0 0;letter-spacing:-.02em}
 .mobile-gallery-sheet__close{display:flex;align-items:center;gap:7px;flex-shrink:0;min-height:44px;border:0;background:none;padding:9px 0 9px 8px;color:#36583c;font-size:13px}
 .mobile-gallery-sheet__close span{font-size:24px;line-height:1}
 .mobile-gallery-sheet__body{overflow-y:auto;overscroll-behavior:contain;min-height:0;padding:20px max(18px,env(safe-area-inset-right)) 26px max(18px,env(safe-area-inset-left));scroll-padding:18px}
 .mobile-gallery-sheet__body>p{font-size:14px;line-height:1.6;color:#65725d;margin:0 0 22px}
 .mobile-gallery-sheet fieldset{margin:24px 0 0;padding:0;border:0;min-width:0}
 .mobile-gallery-sheet legend{margin-bottom:12px;font-size:17px;font-weight:600}
 .mobile-gallery-sheet fieldset>div{display:grid;grid-template-columns:1fr;gap:7px}
 .mobile-gallery-sheet label{display:flex;align-items:center;gap:12px;padding:12px 14px;min-height:52px;background:#fffdf8;border:1px solid #dce2d5;border-radius:10px;cursor:pointer;font-size:15px;min-width:0}
 .mobile-gallery-sheet label[data-active=true]{border-color:#7f9970;background:#eaf0e3}
 .mobile-gallery-sheet label>span{min-width:0;overflow-wrap:anywhere;flex:1}
 .mobile-gallery-sheet label small{font-size:13px;color:#66755b;flex-shrink:0}
 .mobile-gallery-sheet input{width:21px;height:21px;accent-color:#31553b;flex-shrink:0;margin:0}
 .mobile-gallery-sheet__body>.mobile-gallery-sheet__hint{font-size:13px;margin:24px 0 0}
 .mobile-gallery-sheet>footer{display:flex;gap:12px;align-items:center;padding:14px max(18px,env(safe-area-inset-right)) max(16px,env(safe-area-inset-bottom)) max(18px,env(safe-area-inset-left));background:#faf9f3;border-top:1px solid #dce2d5}
 .mobile-gallery-sheet>footer .studio-button{flex:1 1 11em;min-width:0;max-width:100%;padding:12px;font-size:15px;min-height:50px;text-align:center}
 .mobile-gallery-sheet__reset{border:0;background:none;color:#45633c;text-decoration:underline;text-underline-offset:4px;min-height:48px;padding:8px 0;font-size:14px}
 .mobile-gallery-filters :focus-visible,.mobile-gallery-sheet :focus-visible{outline:3px solid #7b965f;outline-offset:3px}
 .v2-collection .collection-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:26px 12px;align-items:start}
 .v2-collection .collection-item{animation:none;transform:none;opacity:1}
 .v2-collection .collection-item[data-photo-format=panorama]{grid-column:1/-1}
 .v2-collection .collection-card{min-height:44px;touch-action:manipulation}
 .v2-collection .collection-card__image{aspect-ratio:4/3;border-radius:8px;background:#e5e7de}
 .v2-collection .collection-card__image>img{object-fit:contain;transform:none!important;transition:none}
 .v2-collection .collection-card__image>span{display:none}
 .v2-collection .collection-card__caption{padding-top:12px;gap:8px;align-items:flex-start}
 .v2-collection .collection-card__caption>span{gap:4px;min-width:0}
 .v2-collection .collection-card__caption>svg{display:none}
 .v2-collection .collection-card__caption strong{font-size:15px;line-height:1.4;overflow-wrap:anywhere;font-weight:500}
 .v2-collection .collection-card__caption small{font-size:12px;line-height:1.4;overflow-wrap:anywhere}
 .v2-collection .collection-card__price{font-size:13px;line-height:1.5;margin-top:4px;color:#4b6644}
 .v2-collection .collection-heart{width:44px;height:44px;top:5px;right:5px;background:#fafbf5f5;border:0;backdrop-filter:none;transform:none;transition:background .15s}
 .v2-collection .collection-heart svg{width:19px;height:19px}
 .v2-collection .collection-empty{border:0;border-radius:12px;padding:28px 16px}
 .v2-collection .collection-empty h2{font-size:28px}
 .v2-collection .collection-empty p{font-size:15px}
 .v2-collection .collection-skeleton{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
 .v2-collection .collection-skeleton span{animation:none;background:#e5e9df;aspect-ratio:4/3}
 .v2-collection .gallery-load-more{margin:26px 0 36px}
 .v2-collection .gallery-load-more .studio-button{min-height:50px;width:100%}
 .v2-collection .collection-footer{margin-top:35px;padding-top:18px;gap:8px 20px;font-size:14px}
 .v2-collection .collection-footer a{min-height:44px;display:inline-flex;align-items:center}
 .v2-collection .collection-footer span{font-size:12px;flex-basis:100%;order:3}
 .studio-motif{width:100%;height:100dvh;max-width:100%;max-height:100dvh;inset:0;margin:0;border-radius:0;box-shadow:none;scroll-padding-top:90px;scroll-padding-bottom:24px}
 .studio-motif[open]{animation:mobile-gallery-in .18s ease-out}
 .studio-motif::backdrop{backdrop-filter:none;background:#19271d99}
 .studio-motif .studio-motif__top{padding:max(10px,env(safe-area-inset-top)) max(16px,env(safe-area-inset-right)) 10px max(16px,env(safe-area-inset-left));gap:12px;min-height:66px;background:#faf9f3;backdrop-filter:none}
 .studio-motif .studio-motif__top>div{flex:1;order:2;min-width:0;align-items:flex-end;text-align:right}
 .studio-motif .studio-motif__top>div>span{display:none}
 .studio-motif .studio-motif__top strong{font-size:13px;line-height:1.4;overflow-wrap:anywhere}
 .studio-motif .studio-motif__top>.studio-motif__close{width:auto;min-width:88px;min-height:46px;order:1;padding:8px 0;justify-content:flex-start;gap:0;font-size:14px}
 .studio-motif .studio-motif__top>.studio-motif__close>span:not(.studio-motif__mobile-back),.studio-motif .studio-motif__top>.studio-motif__close>svg{display:none}
 .studio-motif .studio-motif__close .studio-motif__mobile-back{display:inline!important;white-space:nowrap}
 .studio-motif .studio-motif__sheet{display:flex;flex-direction:column;min-height:0;gap:0}
 .studio-motif .studio-motif__visual{position:static;top:auto;width:100%;padding:16px max(16px,env(safe-area-inset-right)) 10px max(16px,env(safe-area-inset-left));gap:8px;background:#edf0e6}
 .studio-motif .v3-motif-preview__tabs{gap:0;display:grid;grid-template-columns:1fr 1fr;border:0;background:#e2e8db;border-radius:10px;padding:4px;margin-bottom:18px}
 .studio-motif .v3-motif-preview__tabs button{min-height:46px;margin:0;padding:10px 12px;font-size:15px;border-radius:7px;color:#4d6245}
 .studio-motif .v3-motif-preview__tabs button:after{display:none}
 .studio-motif .v3-motif-preview__tabs button[aria-selected=true]{background:#fffdf8;color:#294632}
 .studio-motif .v3-motif-photo{min-height:130px;touch-action:manipulation}
 .studio-motif .v3-motif-photo img{max-width:100%;max-height:55svh;object-fit:contain;box-shadow:none;border-radius:3px}
 .studio-motif .studio-motif__image-tools{justify-content:flex-end}
 .studio-motif .studio-motif__image-tools button{font-size:14px;min-height:46px;padding:8px 0}
 .studio-motif .studio-motif__details{padding:24px max(18px,env(safe-area-inset-right)) max(30px,env(safe-area-inset-bottom)) max(18px,env(safe-area-inset-left));gap:18px;background:#faf9f3}
 .studio-motif .studio-motif__details h2{font-size:32px;line-height:1.15;overflow-wrap:anywhere}
 .studio-motif .studio-motif__details>.studio-eyebrow{font-size:10px;letter-spacing:.11em}
 .studio-motif .studio-motif__details .studio-field{max-width:none}
 .studio-motif .studio-motif__details input[type=number]{max-width:140px;font-size:16px;min-height:50px}
 .studio-motif .studio-motif__details select{font-size:16px;min-height:50px}
 .studio-motif .studio-variants{gap:9px;scroll-margin-top:85px}
 .studio-motif .studio-variants legend{font-size:16px;margin-bottom:10px}
 .studio-motif .studio-variants label{padding:14px 12px;min-height:72px;gap:10px;border-radius:10px}
 .studio-motif .studio-variants input{width:20px;height:20px;flex-shrink:0}
 .studio-motif .studio-variants strong{font-size:15px;line-height:1.4}
 .studio-motif .studio-variants small{font-size:12px;line-height:1.5;color:#65715d}
 .studio-motif .studio-variants label b{font-size:14px}
 .studio-motif .studio-motif__details>.studio-button{min-height:52px;font-size:16px;border-radius:10px;text-align:center;white-space:normal}
 .studio-motif .studio-motif__details>.studio-text-link{display:flex;align-items:center;justify-content:center;min-height:44px;font-size:15px}
 .studio-motif .studio-motif__details .studio-motif__description{font-size:16px;line-height:1.7;padding-top:20px;overflow-wrap:anywhere}
 .studio-motif .studio-motif__details .studio-small{font-size:13px!important;line-height:1.6}
 .studio-motif .managed-product-images{display:flex;flex-wrap:wrap;padding:8px 0;gap:8px}
 .studio-motif .managed-product-images button{min-width:58px;min-height:58px;touch-action:manipulation}
 .studio-motif .managed-product-images img{width:62px;height:58px;object-fit:contain}
 .studio-motif .studio-room__tabs{display:flex;flex-wrap:wrap;gap:4px}
 .studio-motif .studio-room__tabs button{font-size:13px;min-height:44px;padding:9px 10px;flex:1;white-space:normal}
 .studio-motif .studio-room__note{font-size:13px!important;line-height:1.6}
 .studio-motif .v6-own-room{padding:14px 0}
 .studio-motif .v6-own-room input{font-size:16px;min-height:44px}
 .studio-motif .v6-own-room button{min-height:44px}
 .v2-zoom{height:100dvh;max-height:100dvh;width:100%;max-width:100%;padding:0}
 .v2-zoom[open]{animation:mobile-gallery-in .18s ease-out}
 .v2-zoom header{padding:max(12px,env(safe-area-inset-top)) max(16px,env(safe-area-inset-right)) 12px max(16px,env(safe-area-inset-left));gap:10px}
 .v2-zoom header>div{flex-basis:100%;min-width:0}
 .v2-zoom header strong{font-size:16px;overflow-wrap:anywhere}
 .v2-zoom header button{min-height:46px;font-size:14px;flex:1;white-space:normal}
 .v2-zoom__canvas{padding:12px;overscroll-behavior:contain}
 .v2-zoom>p{font-size:12px;line-height:1.5;padding:12px 16px max(16px,env(safe-area-inset-bottom))}
 @keyframes mobile-gallery-in{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
 @keyframes mobile-gallery-sheet-in{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:none}}
}

@media (max-width:389px){
 .v2-collection .collection-grid,.v2-collection .collection-skeleton{grid-template-columns:minmax(0,1fr)}
 .v2-collection .collection-item .collection-card__image{aspect-ratio:3/2}
 .v2-collection .collection-card__caption strong{font-size:17px}
 .v2-collection .collection-card__price{font-size:14px}
 .mobile-gallery-sheet>header{align-items:flex-start}
 .mobile-gallery-sheet>header h2{font-size:24px}
}

@media (max-width:700px) and (max-height:500px){
 .mobile-gallery-sheet{height:100dvh;border-radius:0}
 .mobile-gallery-sheet>header{padding-block:10px}
 .mobile-gallery-sheet>header>div>span{display:none}
 .mobile-gallery-sheet>header h2{font-size:23px;margin:0}
 .mobile-gallery-sheet>footer{padding-top:8px;padding-bottom:max(8px,env(safe-area-inset-bottom))}
 .studio-motif .v3-motif-photo img{max-height:75svh}
}

@media (max-width:700px) and (prefers-reduced-motion:reduce){
 .v2-collection,.v2-collection *,.mobile-gallery-filters *,.mobile-gallery-sheet,.mobile-gallery-sheet *,.studio-motif,.studio-motif *,.v2-zoom,.v2-zoom *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

/* Existing desktop forms retain their layout; mobile forms share the same state and APIs. */
.settings-mobile-only{display:none}
.studio-mail-settings,.studio-backup-settings{display:contents}
@media(max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 .mobile-settings-page{display:grid;gap:22px;min-width:0}
 .mobile-settings-intro{display:grid;gap:8px}
 .mobile-settings-intro h1,.mobile-settings-intro h2{font:500 28px/1.15 var(--sans,Arial),sans-serif!important;letter-spacing:-.04em;margin:0}
 .mobile-settings-intro p{font-size:15px!important;color:#65736a!important}
 .mobile-settings-list{display:grid;border-top:1px solid #dce2d9;min-width:0}
 .mobile-settings-list>a{display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:82px;padding:17px 2px;text-decoration:none!important;border-bottom:1px solid #dce2d9;color:#263d30;min-width:0}
 .mobile-settings-list>a>span:first-child{display:grid;gap:5px;min-width:0}
 .mobile-settings-list strong{font-size:16px;line-height:1.35;font-weight:600}
 .mobile-settings-list small{font-size:14px;line-height:1.5;color:#65736a;overflow-wrap:anywhere}
 .mobile-settings-list>a>span:last-child{font-size:28px;font-weight:300;color:#647863;flex:none}
 .mobile-settings-list>a:active{background:#edf1e8}
 .mobile-settings-back{display:inline-flex;align-items:center;gap:9px;min-height:48px;justify-self:start;text-decoration:none!important;font-size:15px!important;font-weight:550;color:#31503b}
 .mobile-settings-save-hint{font-size:14px!important;line-height:1.6!important;color:#62705f!important}
 .member-area[data-mobile-settings]>.member-nav{display:none}
 .member-area[data-mobile-settings]>.member-heading{margin-bottom:24px}
 .member-area[data-mobile-settings]>.member-heading p{display:none}
 .member-area[data-mobile-settings] .member-panel{padding:21px 18px;gap:18px;box-shadow:none;border-color:#dce2d7;border-radius:13px;background:#fffefa}
 .member-area[data-mobile-settings] .member-panel h2{font-size:25px!important}
 .member-area[data-mobile-settings] .member-panel>p,.member-area[data-mobile-settings] .member-panel form>p{font-size:15px!important;color:#586852!important;overflow-wrap:anywhere}
 .member-area[data-mobile-settings] .member-field>label{font-size:15px!important;color:#334c3c}
 .member-area[data-mobile-settings] input,.member-area[data-mobile-settings] select,.member-area[data-mobile-settings] textarea{font-size:16px;min-width:0;max-width:100%;scroll-margin-block:105px 140px}
 .member-area[data-mobile-settings] .member-actions{display:grid;grid-template-columns:minmax(0,1fr);gap:12px}
 .member-area[data-mobile-settings] .member-button{min-height:48px;white-space:normal;font-size:15px;line-height:1.45;text-align:center}
 .member-area[data-mobile-settings] .member-address-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:16px}
 .member-area[data-mobile-settings] .member-password{min-width:0}
 .member-area[data-mobile-settings] .member-password input{width:100%}
 .member-area[data-mobile-settings] .member-password button{min-height:46px;min-width:68px;font-size:13px}
 .mobile-address-group{border-bottom:1px solid #dce2d7;min-width:0}
 .mobile-address-group summary{min-height:50px;padding:12px 0;cursor:pointer;font-size:16px;font-weight:600;color:#344f3b}
 .mobile-address-group .member-address{margin:10px 0 20px;padding:0;border:0;min-width:0}
 .mobile-address-group .member-address>legend{display:none}
 .member-area[data-mobile-settings] .member-section-head{align-items:flex-start;flex-direction:column;gap:12px}
 .member-area[data-mobile-settings] .member-enrollment__step{grid-template-columns:minmax(0,1fr);gap:8px}
 .member-area[data-mobile-settings] .member-enrollment__qr{display:grid;grid-template-columns:minmax(0,1fr);gap:18px;min-width:0}
 .member-area[data-mobile-settings] .member-enrollment__qr img{max-width:100%;height:auto}
 .member-area[data-mobile-settings] .member-enrollment__qr>div{min-width:0}
 .member-area[data-mobile-settings] .member-backup-codes{grid-template-columns:minmax(0,1fr);font-size:15px}
 .member-area[data-mobile-settings] .member-check{min-height:48px;align-items:flex-start;font-size:15px}
 .studio-administration[data-mobile-setting]>.studio-heading,.studio-administration[data-mobile-setting]>.studio-section-heading{display:none}
 .studio-administration[data-mobile-setting]>.studio-panel{padding:20px 18px;box-shadow:none;gap:20px;overflow-wrap:anywhere}
 .studio-administration[data-mobile-setting]>.studio-panel h3{margin:0 0 12px;font-size:23px;line-height:1.25;letter-spacing:-.025em}
 .studio-administration[data-mobile-setting]>.studio-panel p{font-size:15px;line-height:1.65}
 .studio-administration[data-mobile-setting] .studio-field>span{font-size:15px}
 .studio-administration[data-mobile-setting] .studio-button{white-space:normal;min-height:48px}
 .studio-administration[data-mobile-setting] input,.studio-administration[data-mobile-setting] textarea,.studio-administration[data-mobile-setting] select{font-size:16px;scroll-margin-block:105px 140px}
 .studio-mobile-disclosure{margin-top:24px;border-top:1px solid #dce2d7}
 .studio-mobile-disclosure>summary{padding:17px 0;min-height:52px;font-size:16px;font-weight:550;cursor:pointer}
 .studio-mobile-disclosure .studio-price-row{grid-template-columns:minmax(0,1fr);gap:14px;padding:24px 0}
 .studio-administration .studio-file-list>div{grid-template-columns:minmax(0,1fr);gap:8px}
 .studio-administration[data-mobile-setting] .settings-mobile-only{display:block}
 .studio-administration[data-mobile-setting] .studio-mail-settings,.studio-administration[data-mobile-setting] .studio-backup-settings{display:grid;gap:16px}
 .studio-administration[data-mobile-setting]:not([data-mobile-setting=email]) .studio-mail-settings,
 .studio-administration[data-mobile-setting]:not([data-mobile-setting=lieferung]) .studio-delivery-settings,
 .studio-administration[data-mobile-setting]:not([data-mobile-setting=sicherung]) .studio-backup-settings{display:none}
 .studio-administration[data-mobile-setting] .studio-mail-settings hr,.studio-administration[data-mobile-setting] .studio-backup-settings hr{display:none}
 .upload-center[data-mobile-panel]{gap:20px;font-size:16px;min-width:0}
 .upload-center[data-mobile-panel] .upload-heading,.upload-center[data-mobile-panel] .upload-dropzone{display:none}
 .upload-mobile-nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:3px;scroll-margin-top:82px;padding:4px;background:#edf1e8;border-radius:12px;min-width:0}
 .upload-center .upload-mobile-nav>button{padding:11px 2px!important;border:0!important;background:transparent!important;border-radius:9px!important;min-height:48px;font-size:12px!important;font-weight:550;white-space:normal;overflow-wrap:anywhere}
 .upload-center .upload-mobile-nav>button[aria-current=page]{background:#fffef9!important;box-shadow:0 2px 6px #233c2510;color:#203e29!important}
 .upload-mobile-count{margin-left:3px;color:#567646}
 .upload-mobile-sources{display:grid;gap:13px;padding:23px 18px;border:1px solid #d5dfce;border-radius:13px;background:#fffefa;min-width:0}
 .upload-mobile-sources h3{font-size:23px}
 .upload-mobile-sources p{font-size:15px;line-height:1.6}
 .upload-mobile-sources small{font-size:13px;color:#64725c;line-height:1.65}
 .upload-center[data-mobile-panel] button{min-height:46px;touch-action:manipulation}
 .upload-center[data-mobile-panel] input,.upload-center[data-mobile-panel] textarea,.upload-center[data-mobile-panel] select{font-size:16px;scroll-margin-block:110px 145px;max-width:100%}
 .upload-center[data-mobile-panel] .upload-workspace{display:contents}
 .upload-center[data-mobile-panel] .upload-entry-list{max-height:none;border:0;padding:0;background:transparent;overflow:visible}
 .upload-center[data-mobile-panel] .upload-entry-list>div:first-child{gap:14px;margin-bottom:19px}
 .upload-center[data-mobile-panel] .upload-entry-row{padding:10px 0;margin:0;border-top:1px solid #dce2d7;gap:12px}
 .upload-center[data-mobile-panel] .upload-entry-row>input{min-width:24px;width:24px;height:24px;margin:10px 0}
 .upload-center[data-mobile-panel] .upload-entry-row>button{border:0;background:transparent;text-align:left;padding:10px 2px!important;min-height:58px}
 .upload-center[data-mobile-panel] .upload-entry-row strong{font-size:16px}
 .upload-center[data-mobile-panel] .upload-entry-row span{font-size:14px}
 .upload-center[data-mobile-panel] .upload-editor{padding:19px 16px;box-shadow:none}
 .upload-center[data-mobile-panel] .upload-editor__heading{gap:12px;margin-bottom:22px}
 .upload-center[data-mobile-panel] .upload-field>span{font-size:15px}
 .upload-center[data-mobile-panel] .upload-hint{font-size:14px;line-height:1.6}
 .upload-center[data-mobile-panel] .upload-chosen{padding:12px 8px;min-width:0}
 .upload-center[data-mobile-panel] .upload-chosen>div{gap:8px;border-top:1px solid #e0e5da;padding-top:12px}
 .upload-center[data-mobile-panel] .upload-chosen img{width:64px;height:60px;object-fit:contain}
 .upload-center[data-mobile-panel] .upload-chosen span{min-width:130px;font-size:14px}
 .upload-center[data-mobile-panel] .upload-chosen>div>button{flex:1;min-width:46px}
 .upload-center[data-mobile-panel] .upload-savebar{display:grid;grid-template-columns:minmax(0,1fr);gap:10px}
 .upload-center[data-mobile-panel] .upload-savebar button{min-height:48px;font-size:15px;white-space:normal}
 .upload-center[data-mobile-panel] .upload-library{border:0;padding:0}
 .upload-center[data-mobile-panel] .upload-library>header{display:grid;grid-template-columns:minmax(0,1fr);gap:14px;margin-top:18px}
 .upload-center[data-mobile-panel] .upload-library form{min-width:0}
 .upload-center[data-mobile-panel] .upload-library form label{min-width:0}
 .upload-center[data-mobile-panel] .upload-media-grid{gap:12px;grid-template-columns:repeat(2,minmax(0,1fr))}
 .upload-center[data-mobile-panel] .upload-media-grid article{box-shadow:none;border-radius:10px}
 .upload-center[data-mobile-panel] .upload-image-select{position:static}
 .upload-center[data-mobile-panel] .upload-image-select img{height:auto;aspect-ratio:1;object-fit:contain;background:#f0f2e9}
 .upload-center[data-mobile-panel] .upload-image-select span{position:static;display:block;min-height:48px;line-height:1.45;align-content:center}
 .upload-center[data-mobile-panel] .upload-media-grid article>div{padding:12px 10px}
 .upload-center[data-mobile-panel] .upload-media-grid footer{display:grid;grid-template-columns:minmax(0,1fr);padding:0 9px 12px;gap:6px}
 .upload-center[data-mobile-panel] .upload-media-grid footer a{display:flex;align-items:center;justify-content:center;min-height:46px}
 .upload-center[data-mobile-panel] .upload-media-grid footer button{font-size:13px!important;padding:9px 6px!important}
 .upload-center[data-mobile-panel] .upload-queue article{display:grid;grid-template-columns:50px minmax(0,1fr);gap:12px;align-items:start}
 .upload-center[data-mobile-panel] .upload-queue article>button{grid-column:1/-1;width:100%}
 .upload-center[data-mobile-panel] .upload-queue article>div{min-width:0}
 .upload-center[data-mobile-panel] .upload-queue img,.upload-center[data-mobile-panel] .upload-file-symbol{width:50px;height:50px}
 .upload-center[data-mobile-panel] .upload-queue p{font-size:14px}
 .upload-center[data-mobile-panel] .upload-queue progress{height:9px;margin-top:12px}
 .upload-center[data-mobile-panel] .upload-category-management>summary{font-size:18px;line-height:1.4;min-height:48px;padding:12px 0}
 .upload-center[data-mobile-panel]:not([data-mobile-panel=hochladen]) .upload-mobile-sources,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=hochladen]) .upload-queue,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=eintraege]) .upload-entry-list,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=eintraege]) .upload-tabs,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=entwurf]) .upload-editor,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=bibliothek]) .upload-library,
 .upload-center[data-mobile-panel]:not([data-mobile-panel=kategorien]) .upload-category-management{display:none}
 .upload-center[data-mobile-panel] .upload-preview{position:fixed;inset:0;width:100%;max-width:100%;height:100dvh;max-height:100dvh;border:0;border-radius:0;padding:max(20px,env(safe-area-inset-top)) 18px max(25px,env(safe-area-inset-bottom));margin:0;overscroll-behavior:contain}
 .upload-center[data-mobile-panel] .upload-preview header{gap:10px;align-items:flex-start;position:sticky;top:0;background:#fcfbf7;padding:8px 0 15px;z-index:1}
 .upload-center[data-mobile-panel] .upload-preview header>span{font-size:10px;overflow-wrap:anywhere}
 .upload-center[data-mobile-panel] .upload-preview header button{min-height:46px;white-space:nowrap;font-size:14px}
 .upload-center[data-mobile-panel] .upload-preview>div{display:grid;grid-template-columns:minmax(0,1fr);gap:18px;overflow:visible}
 .upload-center[data-mobile-panel] .upload-preview img{display:block;max-height:65dvh;width:100%;height:auto;object-fit:contain}
 .upload-center[data-mobile-panel] .upload-preview dl>div{justify-content:space-between;font-size:14px}
 @media(prefers-reduced-motion:no-preference){.mobile-settings-page,.upload-center[data-mobile-panel] .upload-editor,.upload-center[data-mobile-panel] .upload-library{animation:mobile-settings-enter .16s ease-out both}}
 @keyframes mobile-settings-enter{from{opacity:.8;transform:translateY(5px)}to{opacity:1;transform:none}}
}

/* Additional smartphone views are absent from the unchanged desktop layout. */
.mobile-dashboard-actions,.mobile-dashboard-overview,.mobile-dashboard-chart,.mobile-customer-summary,.mobile-billing-back,.mobile-billing-sections{display:none!important}

@media(max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 .shopdesk,.customer-dashboard,.customer-stack,.billing-center{min-width:0;max-width:100%;overflow-wrap:anywhere}
 .shopdesk,.customer-dashboard,.customer-stack{gap:22px}
 .shopdesk :is(button,a,input,select,textarea),.customer-stack :is(button,a,input,select,textarea),.billing-center :is(button,a,input,select,textarea){touch-action:manipulation}
 .shopdesk :is(button,a),.customer-stack :is(button,a),.billing-center :is(button,a){-webkit-tap-highlight-color:transparent}
 .shopdesk :is(input,select,textarea),.shopdesk-dialog :is(input:not([type=checkbox]),select,textarea),.customer-filter-bar :is(input,select),.billing-center :is(input:not([type=checkbox]),select,textarea){min-height:48px;font-size:16px;line-height:1.4;max-width:100%;scroll-margin-block:100px}
 .shopdesk-button,.shopdesk-text-button,.shopdesk-text-link,.billing-center button,.billing-nav a,.customer-back,.customer-order-number,.customer-document,.customer-download{min-height:46px}
 .shopdesk-text-link,.customer-back{display:inline-flex;align-items:center}
 .shopdesk-panel,.customer-dashboard-grid .member-panel,.customer-detail-grid .member-panel,.billing-panel{padding:20px 17px;border-radius:14px;box-shadow:none}
 .shopdesk-title,.studio-administration .shopdesk-title{gap:14px;align-items:start}
 .studio-administration .shopdesk-title h2,.shopdesk-title h2{font-size:27px;line-height:1.2}
 .shopdesk-title p,.studio-administration .shopdesk-title p{font-size:14px;line-height:1.65}
 .shopdesk-title>.shopdesk-button{min-height:44px;font-size:13px}
 .mobile-dashboard-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;order:2}
 .mobile-dashboard-actions a{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:58px;padding:12px 14px;border-radius:10px;background:#edf1e8;color:#2a4635;text-decoration:none;font-size:13px;line-height:1.45}
 .mobile-dashboard-actions a:first-child{background:#294733;color:#fffdf6}
 .mobile-dashboard-actions a:active{background:#dce5d3;transform:translateY(1px)}
 .mobile-dashboard-actions a:first-child:active{background:#203b2b}
 .mobile-dashboard-actions span{font-size:21px;flex-shrink:0}
 .shopdesk-title{order:0}
 .shopdesk-filters,.shopdesk-date-filter,.shopdesk-mode-note{order:3}
 .shopdesk-filters{gap:12px}
 .shopdesk-segments{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:100%;border:0;padding:0;gap:5px;background:transparent}
 .shopdesk-segments button{min-height:44px;font-size:13px;padding:9px 8px;border-radius:8px;background:#edf1e8}
 .shopdesk-segments button:last-child{grid-column:1/-1;min-height:44px;background:transparent;border-bottom:1px solid #dce3d9;border-radius:0}
 .shopdesk-filters>.shopdesk-field{max-width:none}
 .shopdesk-mode-note{padding:12px 14px;font-size:12px;line-height:1.6}
 .shopdesk-mode-note p{font-size:12px}
 .mobile-dashboard-overview{display:grid!important;gap:16px;order:1}
 .mobile-dashboard-attention{margin:0;font-size:15px;line-height:1.6;color:#344c39}
 .mobile-dashboard-primary{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
 .mobile-dashboard-primary article{display:grid;align-content:start;gap:9px;padding:18px 15px;background:#fffef9;border-radius:12px;border:1px solid #dce3d6}
 .mobile-dashboard-primary article:first-child{grid-column:1/-1;grid-template-columns:minmax(0,1fr) auto;align-items:center;background:#294733;color:#fffdf7;border-color:#294733}
 .mobile-dashboard-primary article:first-child small{grid-column:1/-1;color:#d4dfcb}
 .mobile-dashboard-primary article>span{font-size:12px;line-height:1.5}
 .mobile-dashboard-primary article>strong{font-size:clamp(22px,6vw,28px);line-height:1.2;letter-spacing:-.03em;font-weight:550;font-variant-numeric:tabular-nums}
 .mobile-dashboard-primary article>small{font-size:11px;line-height:1.6;color:#5c6c57}
 .mobile-dashboard-extra{font-size:13px;border-bottom:1px solid #d9e1d1;padding-bottom:8px}
 .mobile-dashboard-extra summary{min-height:44px;display:flex;align-items:center;cursor:pointer;justify-content:space-between;gap:12px}
 .mobile-dashboard-extra summary:after{content:'＋';font-size:19px}
 .mobile-dashboard-extra[open] summary:after{content:'−'}
 .mobile-dashboard-extra dl{margin:8px 0}
 .mobile-dashboard-extra dl>div{display:flex;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid #e4e8de}
 .mobile-dashboard-extra dt small{display:block;margin-top:5px;font-size:11px;line-height:1.5;color:#61715b}
 .mobile-dashboard-extra dd{margin:0;font-variant-numeric:tabular-nums;white-space:nowrap;font-weight:600}
 .shopdesk-metrics,.shopdesk-balance{display:none}
 .shopdesk-period{order:4;font-size:12px;line-height:1.6;margin:0}
 .shopdesk-orders{order:5;scroll-margin-top:90px;min-width:0}
 .shopdesk-charts{order:6;gap:16px}
 .shopdesk-definitions{order:7;font-size:13px}
 .shopdesk-definitions summary{padding-block:13px;min-height:44px}
 .shopdesk-orders .shopdesk-section-head{align-items:center;gap:10px}
 .shopdesk-orders h3,.shopdesk-chart h3{font-size:21px}
 .shopdesk-order-filters{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
 .shopdesk-search{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:8px}
 .shopdesk-search .shopdesk-button{height:48px;min-width:66px;padding-inline:10px}
 .shopdesk-field>span{font-size:12px;line-height:1.5}
 .shopdesk-orders-scroll{overflow:visible;border:0;background:transparent;box-shadow:none}
 .shopdesk-order-table,.shopdesk-order-table tbody{display:block;width:100%;min-width:0}
 .shopdesk-order-table thead{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
 .shopdesk-order-table tbody tr{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:7px 13px;border-bottom:1px solid #d6dfd0;padding:19px 0;background:transparent}
 .shopdesk-order-table tbody :is(th,td){padding:0;border:0;min-width:0;max-width:none;background:transparent;white-space:normal;font-size:13px;text-align:left}
 .shopdesk-order-table tbody th{grid-column:1;grid-row:1;align-self:center}
 .shopdesk-order-table tbody th a{display:flex;align-items:center;gap:8px;min-height:44px;max-width:100%;font-size:15px;line-height:1.45;overflow-wrap:anywhere}
 .shopdesk-order-table tbody th>small{font-size:11px;margin:0 0 4px}
 .shopdesk-cell-total{grid-column:2;grid-row:1;text-align:right!important;align-self:center;font-weight:650;font-size:16px!important;font-variant-numeric:tabular-nums}
 .shopdesk-cell-customer{grid-column:1;grid-row:2}
 .shopdesk-cell-customer>small{display:none}
 .shopdesk-cell-date{grid-column:2;grid-row:2;text-align:right!important;font-size:11px!important;color:#65745f;align-self:center}
 .shopdesk-cell-status,.shopdesk-cell-payment{grid-column:1/-1;display:flex;justify-content:space-between;gap:12px;align-items:center}
 .shopdesk-cell-status:before,.shopdesk-cell-payment:before{content:attr(data-label);font-size:11px;color:#62745b}
 .shopdesk-badge{font-size:11px;line-height:1.4;max-width:100%;white-space:normal}
 .shopdesk-pagination{gap:12px;display:flex;flex-wrap:wrap;font-size:12px}
 .shopdesk-pagination p{margin-right:auto}
 .shopdesk-pagination>.shopdesk-field{max-width:115px}
 .shopdesk-pagination nav{display:grid;grid-template-columns:1fr 1fr;width:100%;gap:10px}
 .shopdesk-pagination nav>span{grid-column:1/-1;grid-row:1;text-align:center;font-size:12px}
 .shopdesk-pagination nav>button{min-width:0;font-size:13px;padding-inline:12px}
 .shopdesk-chart>svg,.shopdesk-chart-axis{display:none}
 .shopdesk-chart header p,.shopdesk-chart-empty p{font-size:12px;line-height:1.6}
 .mobile-dashboard-chart{display:grid!important;gap:14px;margin-top:17px}
 .mobile-dashboard-chart-total{font-size:13px;margin:0;color:#64715b;line-height:1.6}
 .mobile-dashboard-chart-total strong{color:#294733}
 .mobile-dashboard-bars{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:3px;align-items:end}
 .mobile-dashboard-bars button{border:0;background:transparent;padding:4px 1px;display:grid;gap:8px;min-width:0;min-height:148px;align-content:end;color:#566d4a}
 .mobile-dashboard-bars button small{font-size:10px;line-height:1.4}
 .mobile-dashboard-bar-track{display:flex;align-items:end;justify-content:center;height:111px;width:100%;border-radius:6px;overflow:hidden;background:#f0f3eb}
 .mobile-dashboard-bar-track i{display:block;width:72%;min-height:3px;background:#a7b89a;border-radius:4px 4px 0 0;transition:background .16s}
 .mobile-dashboard-bars [aria-pressed=true] i{background:#315a3a}
 .mobile-dashboard-bars [aria-pressed=true] small{color:#24472c;font-weight:700}
 .mobile-dashboard-chart-value{margin:0;min-height:58px;padding:13px 14px;background:#edf2e6;border-radius:8px;font-size:11px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:7px}
 .mobile-dashboard-chart-value strong{font-size:14px;color:#294733}
 .shopdesk-chart-data summary{min-height:44px;padding-block:13px;cursor:pointer;font-size:12px}
 .shopdesk-chart-data .shopdesk-table-scroll{overflow:visible}
 .shopdesk-chart-data table{width:100%;min-width:0;font-size:12px}
 .shopdesk-chart-data :is(th,td){padding:11px 5px}
 .shopdesk-chart-data p{font-size:11px;line-height:1.6}
 .shopdesk-order-heading{gap:18px}
 .shopdesk-order-heading h3{font-size:25px}
 .shopdesk-order-heading>div:first-child{min-width:0}
 .shopdesk-order-heading__amount{justify-items:start}
 .shopdesk-status-strip{display:grid;grid-template-columns:1fr;width:100%;gap:11px}
 .shopdesk-status-strip>div{display:flex;align-items:center;justify-content:space-between;gap:12px}
 .shopdesk-items article{display:grid;grid-template-columns:56px minmax(0,1fr);gap:12px}
 .shopdesk-items img{width:56px;height:56px;object-fit:cover}
 .shopdesk-items article>strong{grid-column:2;margin:0;font-size:15px}
 .shopdesk-items article>div{min-width:0}
 .shopdesk-items article:not(:has(>img)){grid-template-columns:minmax(0,1fr)}
 .shopdesk-items article:not(:has(>img))>strong{grid-column:1}
 .shopdesk-items h4{font-size:15px;line-height:1.5}
 .shopdesk-items small,.shopdesk-items p,.shopdesk-muted{font-size:12px;line-height:1.65}
 .shopdesk-detail-grid .shopdesk-section-head{align-items:start;flex-direction:column;gap:13px}
 .shopdesk-detail-grid .shopdesk-section-head>.shopdesk-button{width:100%}
 .shopdesk-financials{font-size:13px}
 .shopdesk-transaction-list article{flex-wrap:wrap;gap:10px}
 .shopdesk-transaction-list :is(span,small){font-size:12px;overflow-wrap:anywhere}
 .shopdesk-action-row,.shopdesk-status-actions{display:grid;grid-template-columns:1fr;gap:9px}
 .shopdesk-timeline :is(time,li>span){font-size:11px}
 .shopdesk-timeline strong{font-size:13px}
 .shopdesk-dialog{width:100%;max-width:100%;height:100dvh;height:var(--payment-viewport-height,100dvh);max-height:var(--payment-viewport-height,100dvh);margin:0;border:0;border-radius:0;box-shadow:none;overflow:auto;overscroll-behavior:contain;scroll-padding-bottom:28px}
 .shopdesk-dialog::backdrop{backdrop-filter:none;background:#183120b3}
 .shopdesk-dialog form{padding:calc(20px + env(safe-area-inset-top)) max(20px,env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) max(20px,env(safe-area-inset-left));gap:20px}
 .shopdesk-dialog h2{font-size:27px;line-height:1.2;margin-top:13px}
 .shopdesk-dialog p,.shopdesk-check{font-size:14px;line-height:1.65}
 .shopdesk-dialog-close{top:0;right:0;width:44px;height:44px}
 .shopdesk-form-grid{grid-template-columns:1fr;gap:17px}
 .shopdesk-dialog footer{display:flex;flex-direction:column-reverse;gap:10px;position:static}
 .shopdesk-dialog footer>.shopdesk-button{width:100%;min-height:52px;font-size:14px}
 .shopdesk-dialog .shopdesk-muted,.shopdesk-payment-preview small{font-size:12px}
 .shopdesk-check input{min-width:22px;min-height:22px;width:22px;height:22px}

 .mobile-customer-summary{display:grid!important;gap:14px;padding-bottom:21px;border-bottom:1px solid #d9e2cd;order:-3}
 .mobile-customer-summary>span{font-size:10px;letter-spacing:.16em;color:#698257}
 .mobile-customer-summary h2{font:400 29px/1.18 Georgia,serif!important;letter-spacing:-.025em;color:#294733;margin:0!important}
 .mobile-customer-summary p{font-size:14px!important;line-height:1.7;color:#556a49!important;margin:0!important}
 .mobile-customer-summary nav{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:3px}
 .mobile-customer-summary nav a{min-height:50px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 15px;background:#eaf0df;border-radius:9px;color:#304f32;text-decoration:none;font-size:14px}
 .mobile-customer-summary nav a:first-child{color:#fffdf7;background:#294733}
 .customer-shortcuts{order:4;grid-template-columns:1fr;gap:0;border-top:1px solid #d9e2cd}
 .customer-shortcut,.customer-shortcut--featured{min-height:54px;background:none;color:#365633;border:0;border-bottom:1px solid #d9e2cd;border-radius:0;padding:12px 2px;font-size:14px}
 .customer-test-note{font-size:12px;line-height:1.65;padding:13px 14px;order:-2}
 .customer-metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;order:-1}
 .customer-metrics>div{padding:16px 14px;gap:9px;border-radius:10px}
 .customer-metrics dt{font-size:12px;color:#5d7451}
 .customer-metrics dd{font-size:25px}
 .customer-metrics small{font-size:11px;display:block;line-height:1.55;margin-top:6px;color:#617657}
 .customer-dashboard-grid,.customer-detail-grid{grid-template-columns:1fr;gap:20px}
 .customer-dashboard-grid .member-panel h2,.customer-detail-grid .member-panel h2{font-size:23px!important;line-height:1.25}
 .customer-dashboard-grid .member-section-head{display:flex;flex-wrap:wrap;gap:10px}
 .customer-order-preview{padding:21px 0}
 .customer-order-preview>header{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:9px;align-items:start}
 .customer-order-number{font-size:14px;line-height:1.5;gap:7px;align-items:center}
 .customer-order-price{max-width:125px;align-self:center;white-space:normal}
 .customer-order-price strong{font-size:16px}
 .customer-order-price small{font-size:11px}
 .customer-order-preview header p{font-size:11px;gap:6px}
 .customer-order-motifs{font-size:13px;line-height:1.6;margin-block:12px!important;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
 .customer-order-preview .customer-statuses{grid-template-columns:1fr;gap:9px}
 .customer-order-preview .customer-statuses>div{display:flex;justify-content:space-between;align-items:center;gap:10px}
 .customer-order-preview .customer-statuses>div:nth-child(3){display:none}
 .customer-order-preview .customer-statuses dt{margin:0;font-size:11px}
 .customer-status{font-size:11px;line-height:1.5;padding:5px 8px}
 .customer-filter-bar{grid-template-columns:1fr 1fr;padding:17px 14px;gap:13px 9px}
 .customer-filter-bar label:first-child{grid-column:1/-1}
 .customer-filter-bar label{font-size:12px;line-height:1.5}
 .customer-pagination{display:grid;grid-template-columns:1fr 1fr;gap:10px}
 .customer-pagination>span{grid-column:1/-1;grid-row:1;text-align:center;font-size:13px}
 .customer-pagination .member-button{padding-inline:12px;min-height:48px}
 .customer-empty{min-height:230px}
 .customer-document strong,.customer-download strong{font-size:14px;line-height:1.5}
 .customer-document small,.customer-download small{font-size:11px;line-height:1.6}
 .customer-document,.customer-download{gap:12px;flex-wrap:wrap;padding-block:17px}
 .customer-document-icon{width:35px;height:43px}
 .customer-download__label{font-size:12px}
 .customer-invoice-row{grid-template-columns:1fr;gap:12px;align-items:start}
 .customer-invoice-row>span{font-size:13px;color:#526e42}
 .customer-detail-heading{flex-direction:column;gap:18px}
 .customer-detail-heading>div:last-child{text-align:left}
 .customer-detail-heading h2{font-size:29px!important}
 .customer-detail-heading p{font-size:13px}
 .customer-detail-grid .customer-stack{gap:20px}
 .customer-statuses{grid-template-columns:1fr;gap:11px;margin-top:18px}
 .customer-statuses>div{display:flex;align-items:center;justify-content:space-between;gap:10px}
 .customer-statuses dt{font-size:12px;margin:0}
 .customer-progress{flex-direction:column;padding-bottom:19px;gap:14px}
 .customer-progress>li{display:grid;grid-template-columns:31px 1fr;align-items:center;gap:5px 12px}
 .customer-progress>li:not(:last-child):after{width:1px;height:14px;left:15px;top:33px;right:auto}
 .customer-progress>li>strong{font-size:13px}
 .customer-progress>li>small{grid-column:2;font-size:11px}
 .customer-line-item{grid-template-columns:1fr;gap:9px}
 .customer-line-item h3{font-size:16px}
 .customer-line-item p,.customer-line-item small{font-size:12px;line-height:1.7}
 .customer-amounts>div{font-size:13px;gap:15px}
 .customer-detail-hint,.customer-credit p,.customer-item-download>p{font-size:12px!important;line-height:1.7!important}
 .customer-transactions :is(p,small){font-size:12px!important}
 .customer-transactions>article{flex-wrap:wrap}
 .customer-history time,.customer-history span{font-size:12px}
 .customer-history strong{font-size:14px}
 .customer-contact dt{font-size:12px}
 .customer-contact dd,.customer-detail-grid address{font-size:14px;line-height:1.7}
 .customer-order-note strong,.customer-order-note p{font-size:13px}
 .customer-empty-copy,.customer-document-warning{font-size:13px!important}

 .billing-center{font-size:14px;line-height:1.65}
 .billing-heading{padding:12px 0 20px;gap:12px}
 .billing-heading h3{font-size:29px;line-height:1.2}
 .billing-heading p{font-size:14px}
 .billing-pill,.billing-badge{white-space:normal;font-size:11px;line-height:1.5}
 .billing-nav{display:grid;grid-template-columns:1fr 1fr;gap:8px}
 .billing-nav :is(button,a){font-size:12px;padding:12px 9px;display:flex;align-items:center;justify-content:center;text-align:center;min-height:48px;line-height:1.5}
 .billing-nav>button:nth-child(2){grid-column:1/-1;grid-row:1;background:#294733;color:#fffdf7;border-color:#294733;font-size:14px}
 .billing-nav>a{grid-column:1/-1;border:0;background:transparent;justify-self:start}
 .billing-center[data-mobile-view=document] .billing-nav,.billing-center[data-mobile-view=settings] .billing-nav{display:none}
 .mobile-billing-back{display:inline-flex!important;align-items:center;min-height:46px;margin:0 0 10px;border:0!important;background:transparent!important;padding:9px 0!important;font-size:13px!important}
 .billing-setup,.billing-alert,.billing-notice{padding:16px;line-height:1.65;font-size:13px}
 .billing-metrics{grid-template-columns:1fr 1fr;gap:9px}
 .billing-metrics article{padding:16px 13px;border-radius:10px;gap:9px}
 .billing-metrics article small{font-size:12px;line-height:1.5}
 .billing-metrics article strong{font-size:23px;line-height:1.25}
 .billing-metrics article:first-child{background:#294733;color:#fffdf7;border-color:#294733}
 .billing-help{font-size:12px;line-height:1.7}
 .billing-filters{grid-template-columns:1fr 1fr;gap:3px 10px}
 .billing-filters .billing-field:first-child{grid-column:1/-1}
 .billing-field{font-size:13px;gap:7px;margin-bottom:17px}
 .billing-document-list{overflow:visible}
 .billing-document-list .billing-table,.billing-document-list tbody{display:block;min-width:0;width:100%}
 .billing-document-list thead{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%);white-space:nowrap}
 .billing-document-list tr{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:9px 10px;padding:18px 0;border-bottom:1px solid #dbe4d3}
 .billing-document-list td{padding:0;border:0;min-width:0;font-size:13px}
 .billing-cell-document{grid-column:1;grid-row:1}
 .billing-cell-document>strong{font-size:15px;line-height:1.4}
 .billing-cell-document>small{font-size:11px;line-height:1.55}
 .billing-cell-total{grid-column:2;grid-row:1;text-align:right;font-weight:650;font-size:16px!important}
 .billing-cell-customer{grid-column:1;grid-row:2;align-self:center}
 .billing-cell-date{grid-column:2;grid-row:2;text-align:right;font-size:11px!important;color:#617157;align-self:center}
 .billing-cell-status{grid-column:1;grid-row:3}
 .billing-cell-status small{font-size:11px}
 .billing-cell-open{grid-column:2;grid-row:3;align-self:center}
 .billing-cell-open>button{font-size:13px;padding:10px 13px;min-height:46px}
 .billing-pagination{display:grid;grid-template-columns:1fr 1fr;gap:10px}
 .billing-pagination span{grid-column:1/-1;text-align:center;margin:0;font-size:13px}
 .billing-pagination button{font-size:13px}
 .billing-workspace,.billing-form-grid{grid-template-columns:1fr;gap:0}
 .billing-document-heading{align-items:start;gap:13px}
 .billing-document-heading h4{font-size:24px;line-height:1.3}
 .billing-center legend{font-size:17px;line-height:1.4}
 .billing-line{padding:15px 12px}
 .billing-line-title>button{min-height:44px;font-size:12px}
 .billing-line-fields{grid-template-columns:1fr 1fr;gap:0 9px}
 .billing-line-fields>.billing-field:last-child{grid-column:1/-1}
 .billing-line-fields .billing-field{font-size:12px}
 .billing-check{font-size:13px;line-height:1.65;gap:11px}
 .billing-center input[type=checkbox]{width:22px;height:22px;margin-top:3px}
 .billing-center .billing-primary,.billing-center .billing-secondary{min-height:50px;max-width:100%;font-size:14px;line-height:1.5}
 .billing-center form>.billing-primary{width:100%}
 .billing-totals dt{font-size:13px}
 .billing-side .billing-panel{padding:20px 17px}
 .billing-subform{padding-top:22px}
 .billing-subform>button{display:block;width:100%;margin:10px 0 0;min-height:50px}
 .billing-customers>div{padding:15px;gap:13px;align-items:stretch}
 .billing-customers button{width:100%;min-height:46px;font-size:13px}
 .billing-customers small,.billing-history span,.billing-history small{font-size:12px}
 .billing-history strong{font-size:14px}
 .mobile-billing-sections{display:grid!important;grid-template-columns:1fr;gap:5px;margin:0 0 24px;border-bottom:1px solid #d8e2cf;padding-bottom:17px}
 .mobile-billing-sections button{display:flex;justify-content:space-between;align-items:center;min-height:49px;text-align:left;border:0;border-radius:8px;background:transparent;font-size:13px;padding:12px 13px}
 .mobile-billing-sections button:after{content:'›';font-size:20px}
 .mobile-billing-sections button[aria-current=page]{background:#e7eedf;font-weight:650;color:#28482f}
 .billing-center[data-settings-section=unternehmen] [data-setting-group]:not([data-setting-group=unternehmen]),.billing-center[data-settings-section=rechnungen] [data-setting-group]:not([data-setting-group=rechnungen]),.billing-center[data-settings-section=zahlung] [data-setting-group]:not([data-setting-group=zahlung]){display:none}
 .billing-sources summary{min-height:44px;padding-block:10px}
 .shopdesk :focus-visible,.shopdesk-dialog :focus-visible,.billing-center :focus-visible,.customer-stack :focus-visible{outline:3px solid #799b61;outline-offset:3px}
}

@media(max-width:700px) and (prefers-reduced-motion:reduce){
 .mobile-dashboard-actions a,.mobile-dashboard-bar-track i,.shopdesk *,.customer-dashboard *,.customer-stack *,.billing-center *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}

/* Independent smartphone motion. No hidden pre-animation state or layout rules. */
@media(max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 .mobile-intro-veil{position:fixed;inset:0;z-index:210;background:#fafaf6;pointer-events:none;animation:phone-veil 240ms ease-out forwards}
 .v2-site .v3-services{animation:none!important}
 .v2-site [data-v2-reveal].mobile-reveal{animation:none}
 .v2-collection{animation:none}
 .v4-music-wave i{animation:none!important}
 :is(.v2-button,.collection-card,.v2-menu-toggle,.user-access__trigger,.mobile-navigation a){transition:scale 150ms ease-out}
 :is(.v2-button,.collection-card,.v2-menu-toggle,.user-access__trigger,.mobile-navigation a):active{scale:.985}
 html[data-v2-motion=paused] :is(.mobile-intro-veil,.v2-site,.v2-collection,.mobile-navigation,.v2-header),html[data-v2-motion=paused] :is(.v2-site,.v2-collection,.mobile-navigation,.v2-header) *{animation:none!important;transition:none!important;scale:none!important}
 html[data-v2-motion=paused] .mobile-intro-veil{opacity:0}
}
@keyframes phone-veil{from{opacity:.6}to{opacity:0;visibility:hidden}}
@media(max-width:700px) and (prefers-reduced-motion:reduce), (max-width:959px) and (max-height:500px) and (pointer:coarse) and (prefers-reduced-motion:reduce){
 .mobile-intro-veil{display:none}
 :is(.v2-site,.v2-collection,.mobile-navigation,.v2-header),:is(.v2-site,.v2-collection,.mobile-navigation,.v2-header) *{animation:none!important;transition:none!important;scale:none!important}
}

/* One mobile controller owns the motion; default dialog content always stays visible. */
@media (max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 .v6-menu[open],.v6-menu[data-leaving=true],.studio-motif[open],.v2-zoom[open],.mobile-gallery-sheet[open]{animation:none}
 .v6-menu[data-mobile-overlay],.studio-motif[data-mobile-overlay],.v2-zoom[data-mobile-overlay],.mobile-gallery-sheet[data-mobile-overlay]{will-change:opacity,transform}
 :is(.v6-menu,.studio-motif,.v2-zoom,.mobile-gallery-sheet)[data-mobile-overlay=opening]::backdrop{animation:mobile-overlay-backdrop-in 220ms ease-out}
 :is(.v6-menu,.studio-motif,.v2-zoom,.mobile-gallery-sheet)[data-mobile-overlay=closing]::backdrop{animation:mobile-overlay-backdrop-out 180ms ease-in forwards}
 @keyframes mobile-overlay-backdrop-in{from{opacity:0}to{opacity:1}}
 @keyframes mobile-overlay-backdrop-out{from{opacity:1}to{opacity:0}}
}
@media (max-width:700px) and (prefers-reduced-motion:reduce), (max-width:959px) and (max-height:500px) and (pointer:coarse) and (prefers-reduced-motion:reduce){
 :is(.v6-menu,.studio-motif,.v2-zoom,.mobile-gallery-sheet)::backdrop{animation:none!important}
}
@media (max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse){
 [data-v2-motion=paused] :is(.v6-menu,.studio-motif,.v2-zoom,.mobile-gallery-sheet)::backdrop{animation:none!important}
}

/* Functional smartphone motion only. Keep forms mounted and immediately usable.
   No delay, layout animation, success state, or JavaScript lifecycle is added. */
@media (max-width:700px), (max-width:959px) and (max-height:500px) and (pointer:coarse) {
  /* Replace the older translated settings entrance, including its retained fill. */
  .mobile-settings-page,
  .upload-center[data-mobile-panel] .upload-editor,
  .upload-center[data-mobile-panel] .upload-library {
    animation: none;
  }

  /* A touch does not inherit the desktop card's hover lift. */
  .member-area .member-destination:hover,
  .mobile-dashboard-actions a:active {
    transform: none;
  }

  @media (prefers-reduced-motion:no-preference) {
    /* One short fade per functional view; controls never start transparent. */
    :root:not([data-v2-motion="paused"]) :is(
      .mobile-settings-page,
      .shopdesk,
      .member-area > .customer-stack,
      .member-area > .member-card-grid,
      .member-area > .member-panel,
      .billing-center > .billing-panel:not(form),
      .billing-workspace,
      .studio-administration[data-mobile-setting] > .studio-panel,
      .upload-center[data-mobile-panel] .upload-editor,
      .upload-center[data-mobile-panel] .upload-library,
      .shopdesk-date-filter,
      .billing-subform,
      .billing-center [data-setting-group],
      .shopdesk-invoice-document > form
    ) {
      animation: mobile-functional-enter 160ms ease-out;
    }

    /* Native disclosures retain their normal open/close and keyboard behavior. */
    :root:not([data-v2-motion="paused"]) :is(
      .mobile-address-group,
      .mobile-dashboard-extra,
      .shopdesk-definitions,
      .shopdesk-chart-data,
      .studio-mobile-disclosure,
      .billing-sources
    )[open] > :not(summary) {
      animation: mobile-functional-enter 160ms ease-out;
    }

    :root:not([data-v2-motion="paused"]) :is(
      .member-area, .shopdesk, .shopdesk-dialog, .billing-center,
      .studio-administration, .upload-center
    ) :is(
      button:not(:disabled), .member-destination, .customer-shortcut,
      .mobile-dashboard-actions a, .mobile-settings-list a,
      .mobile-settings-back, .member-button
    ) {
      transition: opacity 150ms ease-out;
    }

    :root:not([data-v2-motion="paused"]) :is(
      .member-area, .shopdesk, .shopdesk-dialog, .billing-center,
      .studio-administration, .upload-center
    ) :is(
      button:not(:disabled), .member-destination, .customer-shortcut,
      .mobile-dashboard-actions a, .mobile-settings-list a,
      .mobile-settings-back, .member-button
    ):active {
      opacity: .86;
    }
  }

  /* Cancel instead of freezing mid-effect when the global pause is selected. */
  :root[data-v2-motion="paused"] :is(
    .member-area, .shopdesk, .shopdesk-dialog, .billing-center,
    .studio-administration, .upload-center
  ),
  :root[data-v2-motion="paused"] :is(
    .member-area, .shopdesk, .shopdesk-dialog, .billing-center,
    .studio-administration, .upload-center
  ) * {
    animation: none !important;
    transition: none !important;
  }

  @media (prefers-reduced-motion:reduce) {
    :is(.member-area, .shopdesk, .shopdesk-dialog, .billing-center,
      .studio-administration, .upload-center),
    :is(.member-area, .shopdesk, .shopdesk-dialog, .billing-center,
      .studio-administration, .upload-center) * {
      animation: none !important;
      transition: none !important;
    }
  }

  @keyframes mobile-functional-enter {
    from { opacity: .94; }
    to { opacity: 1; }
  }
}

.promotions-admin{--action-green:#29463b;--action-paper:#f5f4ee;color:#263a31}.promotion-heading,.promotion-editor-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin:22px 0 30px}.promotion-heading h2,.promotion-editor-head h2{font-family:Georgia,serif;font-size:clamp(28px,3.4vw,44px);font-weight:400;margin:10px 0}.promotion-eyebrow{font:600 10px/1.5 sans-serif;letter-spacing:.15em;color:#59715a}.promotion-toolbar,.promotion-two{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:end;margin:18px 0}.promotion-toolbar label,.promotion-editor label{display:flex;flex-direction:column;gap:8px;font-size:13px;font-weight:600}.promotion-editor input:not([type=checkbox]),.promotion-editor select,.promotion-editor textarea,.promotion-toolbar input,.promotion-toolbar select{width:100%;min-height:46px;border:1px solid #cbd2c7;border-radius:8px;background:#fff;padding:11px;font:400 15px/1.5 sans-serif;color:#253b30;box-sizing:border-box}.promotion-editor label small{font-size:11px;font-weight:400;line-height:1.5}.promotion-editor fieldset{padding:0;border:0;min-width:0}.promotion-panel{background:#fff;border:1px solid #dce1d6;border-radius:16px;padding:28px;margin:18px 0}.promotion-panel h3{font:500 21px/1.3 Georgia,serif;margin:0 0 20px}.promotion-panel p,.promotion-note{font-size:13px;line-height:1.7}.promotion-panel>label{margin:18px 0}.promotion-check{display:flex!important;flex-direction:row!important;align-items:flex-start;gap:10px!important;line-height:1.6}.promotion-check input{width:18px;height:18px;flex:0 0 18px;accent-color:#29463b}.promotion-variants,.promotion-selection{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin:20px 0}.promotion-selection strong{margin-right:auto}.promotions-admin button:not(.studio-button),.promotion-card summary{font:500 12px/1.4 sans-serif;border:1px solid #becab9;background:#f6f7f2;color:#29463b;border-radius:7px;padding:10px 14px;cursor:pointer;min-height:42px}.promotions-admin button:disabled{opacity:.48;cursor:not-allowed}.promotions-admin :focus-visible,.promotion-card :focus-visible{outline:3px solid #70855c;outline-offset:3px}.promotion-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.promotion-list-card{border:1px solid #d7dfd1;padding:24px;border-radius:14px;background:#fff}.promotion-list-card header{display:flex;gap:16px;justify-content:space-between}.promotion-list-card h3{font:500 23px/1.3 Georgia,serif;margin:12px 0 4px}.promotion-list-card p,.promotion-list-card small{font-size:12px;line-height:1.65}.promotion-list-card header>strong{font:500 32px/1 Georgia,serif;white-space:nowrap}.promotion-status{display:inline-block;font-size:10px;letter-spacing:.06em;padding:5px 9px;border-radius:20px;background:#eef0e8}.status-active{background:#d8ead9;color:#244833}.status-paused{background:#f6eacb}.status-expired{background:#eaeaea}.promotion-list-card dl{font-size:12px;margin:18px 0}.promotion-list-card dl>div{display:grid;grid-template-columns:80px 1fr;gap:10px;margin:8px 0}.promotion-list-card dt{color:#687466}.promotion-list-card dd{margin:0}.promotion-list-card footer{display:flex;gap:7px;flex-wrap:wrap;border-top:1px solid #e3e7de;padding-top:17px}.promotion-products{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;max-height:540px;overflow:auto;border-block:1px solid #e4e7de;padding-block:12px}.promotion-products article{border:1px solid #dee5d8;border-radius:9px;padding:12px}.promotion-product-choice{display:grid!important;grid-template-columns:18px 64px 1fr;align-items:center}.promotion-product-choice input{accent-color:#29463b;width:18px;height:18px}.promotion-product-choice img{width:64px;height:70px;object-fit:cover;border-radius:5px}.promotion-product-choice span{display:flex;flex-direction:column;gap:5px}.promotion-product-choice strong{font-size:13px}.promotion-product-choice small{font-size:10px!important}.promotion-products details{font-size:11px;margin-top:10px}.promotion-products summary{cursor:pointer;padding:8px}.promotion-summary{padding:18px 20px;background:#eef3e8;border-left:3px solid #6b8353;border-radius:0 8px 8px 0}.promotion-note{background:#f3f4ef;border-radius:10px;padding:18px;color:#57624f}.promotion-warning{background:#fbf2da;color:#655120;padding:18px;border-radius:10px;line-height:1.6}.promotion-message{padding:15px;background:#e6f0e1;border-radius:8px}.promotion-publish{border-color:#aebfa3}.promotion-publish .promotion-check{margin:22px 0}.promotion-publish>small{display:block;margin-top:10px}.promotion-preview-choices{display:flex;flex-wrap:wrap;gap:12px;max-height:200px;overflow:auto}.promotion-preview-order{display:flex;gap:8px;align-items:center;margin:8px 0}.promotion-preview-order span{flex:1}.promotion-preview-frame{border:1px solid #d9ded3;padding:12px;background:#fafaf6;border-radius:14px}.promotion-preview-frame.mobile{max-width:390px;margin:auto}.home-promotions{padding:50px clamp(20px,5vw,90px);background:#f5f4ee;display:grid;gap:24px}.promotion-card{display:grid;grid-template-columns:1.08fr 1fr;background:#e9eddf;border:1px solid #d8dfca;border-radius:18px;overflow:hidden;color:#294035}.promotion-copy{padding:clamp(24px,4vw,58px)}.promotion-copy h2{font:400 clamp(27px,3vw,43px)/1.13 Georgia,serif;margin:15px 0 20px;max-width:17ch}.promotion-benefit{font:500 clamp(27px,3vw,42px)/1.1 Georgia,serif}.promotion-copy p{font-size:14px;line-height:1.7;margin:15px 0}.promotion-copy .promotion-condition{font-size:12px;line-height:1.65;max-width:58ch}.promotion-copy details{font-size:12px;margin:12px 0}.promotion-copy .studio-button{display:inline-flex;margin:12px 0;gap:22px;background:#29463b;color:#fff;padding:14px 20px;border-radius:7px;text-decoration:none}.promotion-copy>small{display:block;font-size:10px;line-height:1.6}.promotion-images{position:relative;display:grid;grid-template-columns:1fr 1fr;grid-auto-rows:minmax(130px,1fr);gap:6px;padding:20px}.promotion-images figure{position:relative;margin:0;min-width:0;overflow:hidden;border-radius:8px;min-height:130px}.promotion-images img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}.promotion-images figcaption{position:absolute;inset:auto 0 0;padding:24px 12px 10px;background:linear-gradient(transparent,rgba(0,0,0,.7));color:white;font-size:10px}.promotion-more{position:absolute;right:32px;top:32px;padding:8px 12px;background:#f6f5ef;color:#294035;border-radius:22px;font-size:11px}.promotion-empty-image{padding:35px;grid-column:1/-1;align-self:center;font:400 22px/1.5 Georgia,serif}.promotion-empty{text-align:center;padding:45px;background:#f4f5ef;border-radius:16px}.promotion-preview-frame.mobile .promotion-card{grid-template-columns:1fr}.promotion-preview-frame.mobile .promotion-copy{padding:22px}.promotion-preview-frame.mobile .promotion-copy h2{font-size:28px}.promotion-preview-frame.mobile .promotion-images{grid-auto-rows:125px}.promotion-price{display:block;font-size:12px;line-height:1.7;color:#35533e}.promotion-price strong{font-size:16px}.promotion-price small{display:block}.promotion-filter-banner{padding:18px 22px;background:#e9efdf;border-radius:12px;margin:20px 0}.promotion-filter-banner a{display:inline-block;margin-top:8px}.promotion-refund{font-size:12px;line-height:1.6;padding:15px;background:#edf2e8;border-radius:8px}
@media(prefers-reduced-motion:no-preference){.promotion-card{animation:promotion-enter .35s ease-out}@keyframes promotion-enter{from{opacity:0;transform:translateY(7px)}to{opacity:1;transform:none}}}
@media(max-width:700px){.promotion-heading,.promotion-editor-head{display:block}.promotion-heading>.studio-button{margin-top:16px;width:100%}.promotion-toolbar,.promotion-two,.promotion-list,.promotion-products{grid-template-columns:1fr}.promotion-panel{padding:19px 15px}.promotion-toolbar input,.promotion-editor input:not([type=checkbox]),.promotion-editor select,.promotion-editor textarea{font-size:16px}.promotion-card{grid-template-columns:1fr}.promotion-copy{padding:25px}.promotion-images{grid-auto-rows:145px;padding:12px}.promotion-list-card{padding:20px}.promotion-selection{gap:8px}.promotion-selection strong{width:100%}.promotions-admin button:not(.studio-button){min-height:44px}.promotion-preview-frame{padding:4px}.home-promotions{padding:28px 16px}.promotion-preview-order{font-size:12px}.promotion-list-card dl>div{grid-template-columns:70px 1fr}.promotion-copy .studio-button{min-height:46px}.promotion-product-choice{grid-template-columns:18px 54px 1fr}.promotion-product-choice img{width:54px;height:65px}}

.legal-body{margin:0;background:#f3f2eb;color:#183329;font-family:Arial,sans-serif;line-height:1.75}.legal-body *{box-sizing:border-box}.legal-body a{color:inherit;text-underline-offset:4px}.legal-header{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px max(24px,5vw);border-bottom:1px solid #18332926}.legal-brand{font:27px Georgia,serif;text-decoration:none}.legal-header nav,.legal-footer nav{display:flex;gap:15px 24px;flex-wrap:wrap;align-items:center}.legal-header nav a{font-size:14px}.legal-main{max-width:960px;padding:55px 28px 90px;margin:auto}.legal-main h1{font:400 clamp(36px,6vw,64px)/1.12 Georgia,serif;margin:14px 0 28px;overflow-wrap:anywhere}.legal-eyebrow{font-size:12px;letter-spacing:.15em}.legal-intro{font-size:21px;line-height:1.6}.legal-review{border-left:3px solid #9a7443;padding:15px 20px;background:#e9e3d5;font-size:14px;margin-bottom:28px}.legal-index{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 22px;padding:22px 0;border-block:1px solid #18332926}.legal-section{padding:22px 0 12px;scroll-margin-top:24px}.legal-section h2{font:400 27px/1.35 Georgia,serif}.legal-section p{max-width:78ch;overflow-wrap:anywhere}.legal-footer{background:#173127;color:#f4f3eb;padding:35px max(24px,5vw)}.legal-footer p{font-size:12px;margin:24px 0 10px}.legal-withdraw-link{padding:9px 14px;border:1px solid currentColor;border-radius:6px;text-decoration:none;font-weight:600}.legal-form{max-width:680px}.legal-form label{display:grid;gap:6px;margin:18px 0}.legal-form input:not([type=radio]):not([type=checkbox]),.legal-form textarea{font:inherit;width:100%;border:1px solid #708274;background:#fff;padding:10px 12px;border-radius:5px;min-height:48px}.legal-form fieldset{border:1px solid #a4b1a5;border-radius:6px;padding:8px 18px;margin:24px 0}.legal-form label.legal-check{display:flex;align-items:flex-start;gap:12px}.legal-check input{width:20px;height:20px;flex-shrink:0;margin-top:5px;accent-color:#1b4030}.legal-button,.legal-secondary{display:inline-block;min-height:48px;padding:12px 22px;font:600 16px/1.5 Arial,sans-serif;border-radius:5px;border:1px solid #214b38;cursor:pointer;text-decoration:none!important}.legal-button{background:#214b38;color:#fff!important}.legal-secondary{background:transparent;color:#214b38;margin:12px}.legal-actions{display:flex;align-items:center;flex-wrap:wrap;gap:18px}.legal-error{padding:16px;border:1px solid #934e32;background:#f7ebe4;color:#69321f}.legal-review-data{background:#e8ece4;padding:24px;border-radius:8px}.legal-review-data dt{font-size:13px;margin-top:12px;font-weight:700}.legal-review-data dd{margin:0;white-space:pre-wrap;overflow-wrap:anywhere}.legal-declaration{white-space:pre-wrap}.legal-body :focus-visible{outline:3px solid #a77d33;outline-offset:4px}.legal-skip{position:absolute;left:15px;top:-100px;background:white;padding:12px;z-index:100}.legal-skip:focus{top:10px}.v2-footer .legal-footer-links{flex-basis:100%;display:flex;flex-wrap:wrap;gap:12px 22px;padding-top:22px;border-top:1px solid #31504026;line-height:1.7}.v2-footer{flex-wrap:wrap}.legal-inline{font-size:13px;line-height:1.65;max-width:72ch}.legal-inline a{text-decoration:underline;text-underline-offset:3px}.legal-checkout-info{padding:15px;background:#edf0e7;border:1px solid #b8c4b4;margin:20px 0}.legal-checkout-info a{color:inherit;text-decoration:underline}.legal-checkout-info p{margin:8px 0}
@media(max-width:700px){.legal-header{display:block;padding:18px 22px}.legal-header nav{margin-top:16px;gap:10px 18px}.legal-main{padding:35px 22px 55px}.legal-index{grid-template-columns:1fr}.legal-section h2{font-size:25px}.legal-footer nav{gap:14px}.legal-review-data{padding:16px}.legal-secondary{margin-left:0}.v2-footer .legal-footer-links{gap:14px 18px}.legal-button{max-width:100%;overflow-wrap:anywhere}}
@media print{.legal-header,.legal-footer,.legal-index,.legal-skip,.legal-actions{display:none}.legal-body{background:white;color:black}.legal-main{max-width:none;padding:0}.legal-main h1{font-size:26pt}.legal-section{break-inside:avoid-page;padding:8px 0}.legal-section h2{font-size:16pt}.legal-review{border:1px solid #555;background:none}.legal-form button{display:none}}

.drone-service{background:var(--v2-paper,#f7f5ed);color:var(--v2-ink,#24392e);padding:clamp(60px,7vw,112px) clamp(24px,6vw,104px);scroll-margin-top:100px}
.drone-service__inner{max-width:1340px;margin-inline:auto;display:grid;grid-template-columns:minmax(0,1.03fr) minmax(0,1fr);gap:clamp(32px,5vw,80px);align-items:center}
.drone-service__image{margin:0;min-width:0}
.drone-service__image img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;border-radius:3px;background:#d7cbb4}
.drone-service__image figcaption{font-size:11px;line-height:1.6;letter-spacing:.025em;color:#5c695c;margin-top:12px}
.drone-service__copy{min-width:0}
.drone-service__copy>.v2-eyebrow{color:#526448;margin-bottom:18px}
.drone-service__copy h2{font-size:clamp(32px,3.6vw,54px);line-height:1.09;font-weight:400;letter-spacing:-.045em;margin:0 0 22px}
.drone-service__intro{font-size:clamp(15px,1.15vw,17px);line-height:1.75;max-width:56ch;margin:0}
.drone-service__formats{list-style:none;padding:0;display:flex;gap:8px;flex-wrap:wrap;margin:22px 0 14px}
.drone-service__formats li{font-size:12px;line-height:1.5;padding:7px 11px;border:1px solid #cbd1c2;border-radius:20px}
.drone-service__scope{font-size:13px;line-height:1.65;color:#536052;margin:0 0 20px;white-space:pre-line}
.drone-service__booking{border-top:1px solid #cbd1c2;padding-top:20px;display:flex;align-items:flex-start;flex-direction:column;gap:7px}
.drone-service__booking>strong{font-size:17px;font-weight:500}
.drone-service__booking>span{font-size:12px;line-height:1.6;color:#536052}
.drone-service__booking .v2-button{margin-top:14px;min-height:48px;max-width:100%;white-space:normal;text-align:left}
.drone-service__booking .v2-button>svg{flex-shrink:0}
.drone-service__all{display:inline-flex;align-items:center;gap:16px;min-height:44px;font-size:13px;color:inherit;text-underline-offset:4px}
.drone-service__booking button{font:inherit;color:inherit;text-decoration:underline;text-underline-offset:4px;background:transparent;border:0;padding:8px 0;cursor:pointer}
.drone-service__conditions{font-size:11px;line-height:1.65;color:#536052;margin:14px 0 0;max-width:64ch}
.drone-service__conditions a{color:inherit;text-underline-offset:3px}
.drone-service a:focus-visible,.drone-service button:focus-visible{outline:2px solid #425a35;outline-offset:4px}
@media(max-width:760px){.drone-service{padding:48px 20px;scroll-margin-top:86px}.drone-service__inner{grid-template-columns:minmax(0,1fr);gap:26px}.drone-service__image img{aspect-ratio:4/3;object-position:50% 50%}.drone-service__image figcaption{font-size:10px;margin-top:8px}.drone-service__copy>.v2-eyebrow{font-size:10px;letter-spacing:.12em;margin-bottom:13px}.drone-service__copy h2{font-size:clamp(30px,8.2vw,42px);margin-bottom:17px}.drone-service__intro{font-size:15px;line-height:1.65}.drone-service__formats{gap:6px;margin-top:18px}.drone-service__formats li{font-size:11px;padding:6px 9px}.drone-service__scope{font-size:12px}.drone-service__booking{padding-top:16px}.drone-service__booking .v2-button{width:100%;justify-content:space-between;padding:15px 16px}.drone-service__conditions{font-size:11px}}
@media(prefers-reduced-motion:reduce){.drone-service [data-v2-reveal]{opacity:1!important;transform:none!important;transition:none!important;animation:none!important}}

.service-space{width:100%;max-width:1180px;margin:0 auto 48px;color:#26382d;min-width:0}.service-heading{padding:26px 0 34px;max-width:760px}.service-heading h1{font:400 clamp(36px,5vw,64px)/1.07 Georgia,serif;letter-spacing:-.035em;margin:16px 0}.service-heading h1 em{font-weight:400;color:#697b55}.service-heading>p{font-size:17px;line-height:1.7;max-width:650px}.service-space p{line-height:1.65}.service-space h2,.service-space h3,.service-space h4{font-weight:500;line-height:1.3;overflow-wrap:anywhere}.service-catalog,.service-request-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.service-card,.service-panel{border:1px solid #dfe4da;background:#fffdf8;border-radius:20px;padding:26px;min-width:0}.service-panel{margin-bottom:20px}.service-card{display:flex;flex-direction:column;gap:8px}.service-card h2,.service-card h3,.service-card p{margin:4px 0}.service-card__bottom{display:flex;flex-direction:column;align-items:flex-start;gap:12px;margin-top:auto;padding-top:18px}.service-card__bottom strong{font-size:19px}.service-badge{display:inline-block;width:fit-content;max-width:100%;padding:6px 11px;border-radius:30px;background:#edf1e7;color:#466039;font-size:12px;line-height:1.5;overflow-wrap:anywhere}.service-muted,.service-space small{color:#677362;line-height:1.5}.service-note{padding:16px 18px;background:#f0f2ea;border-left:3px solid #9bab7d;border-radius:0 12px 12px 0;margin:20px 0}.service-alert,.service-success{padding:14px 18px;border-radius:12px;background:#faf0df;line-height:1.65}.service-success{background:#eaf1e5}.service-alert button{margin-left:12px}.service-inquiry-layout{display:grid;grid-template-columns:minmax(220px,.72fr) minmax(0,1.4fr);gap:24px;align-items:start}.service-inquiry-layout aside{position:sticky;top:110px}.service-inquiry-layout aside h2{font:400 30px/1.2 Georgia,serif}.service-space fieldset{padding:0;margin:0;border:0;min-width:0}.service-space label{display:flex;flex-direction:column;gap:8px;font-size:14px;line-height:1.5;margin-bottom:19px;font-weight:500}.service-space input:not([type=checkbox]),.service-space textarea,.service-space select{box-sizing:border-box;display:block;width:100%;min-width:0;max-width:100%;font:inherit;font-weight:400;color:inherit;border:1px solid #cdd6c6;border-radius:9px;background:#fff;min-height:46px;padding:11px 12px}.service-space textarea{resize:vertical}.service-space input:focus-visible,.service-space select:focus-visible,.service-space textarea:focus-visible,.service-space button:focus-visible,.service-space a:focus-visible,.service-space summary:focus-visible{outline:3px solid #7b915d;outline-offset:3px}.service-space button,.service-space .studio-button{font:inherit;min-height:44px;cursor:pointer;white-space:normal;text-align:center}.service-space button:not(.studio-button){border:1px solid #cdd6c6;border-radius:9px;padding:10px 15px;background:#fffdf8;color:inherit}.service-space button:disabled{opacity:.5;cursor:not-allowed}.service-space a{color:inherit;text-underline-offset:4px;overflow-wrap:anywhere}.service-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 18px}.service-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin:16px 0}.service-progress{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));padding:0;margin:0 0 28px;list-style:none;gap:10px}.service-progress li{display:flex;align-items:center;gap:8px;font-size:12px;color:#75806c}.service-progress span{flex-shrink:0;display:grid;place-items:center;width:26px;height:26px;border:1px solid #dce3d4;border-radius:50%}.service-progress [aria-current=step]{color:#2f492b;font-weight:600}.service-progress [aria-current=step] span{background:#2f492b;color:white}.service-space .service-check{display:flex;flex-direction:row;align-items:flex-start;gap:12px;font-weight:400;margin:18px 0;flex-wrap:wrap}.service-check input{width:20px;height:20px;flex-shrink:0;margin:2px 0 0;accent-color:#405832}.service-check{--service-check-space:32px}.service-mail,.service-old-offer,.service-history{margin-top:20px;border-top:1px solid #dde3d5;padding-top:15px}.service-mail summary,.service-old-offer summary,.service-history summary{cursor:pointer;min-height:44px;line-height:1.5;padding:10px 0}.service-signin{padding:18px;background:#f0f2ea;border-radius:12px;margin:18px 0}.service-signin h3{margin-top:0}.service-section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:18px}.service-section-head h2,.service-section-head h3{margin:0}.service-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px 24px;margin:20px 0}.service-facts div{min-width:0}.service-facts dt{font-size:12px;color:#64745d;margin-bottom:4px}.service-facts dd{margin:0;overflow-wrap:anywhere;white-space:pre-wrap}.service-prewrap{white-space:pre-wrap;overflow-wrap:anywhere}.service-line-summary{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;padding:17px 0;border-bottom:1px solid #e0e5da}.service-line-summary>div{min-width:0}.service-line-summary strong{display:block;white-space:pre-wrap;overflow-wrap:anywhere}.service-line-summary small{display:block;margin-top:6px}.service-line-summary>span{white-space:nowrap}.service-totals{margin:24px 0 30px}.service-totals div{display:flex;gap:20px;justify-content:space-between;padding:8px 0}.service-totals dd{margin:0;white-space:nowrap}.service-totals div:nth-child(3),.service-totals div:last-child{font-weight:600;border-top:1px solid #dbe3d2;padding-top:14px}.service-offer-current{margin-top:26px;border:1px solid #bdcda8;border-radius:16px;padding:22px}.service-history ol{list-style:none;padding:0;margin:0}.service-history li{border-left:1px solid #c7d5bb;padding:4px 0 18px 16px}.service-history time{font-size:12px;color:#68755f;display:block}.service-history strong{font-size:14px}.service-tabs{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:24px}.service-tabs button[aria-pressed=true]{background:#e8eedf;border-color:#8a9f74}.service-tabs a{margin-left:auto}.service-offer-line{padding:20px;margin:16px 0;border:1px solid #dce3d5;border-radius:12px}.service-back{margin-bottom:18px}.service-admin{margin-bottom:0}.service-admin .service-space{margin-bottom:0}.service-customer{margin-top:28px}
@media(max-width:700px){.service-space{margin-bottom:28px}.service-heading{padding:8px 0 20px}.service-heading h1{font-size:39px}.service-heading>p{font-size:15px}.service-catalog,.service-request-list,.service-inquiry-layout{grid-template-columns:1fr;gap:14px}.service-card,.service-panel{padding:19px;border-radius:16px}.service-inquiry-layout aside{position:static}.service-inquiry-layout aside h2{font-size:26px}.service-inquiry-layout aside>p{font-size:14px}.service-grid{grid-template-columns:1fr}.service-progress{gap:6px}.service-progress li{font-size:11px;flex-direction:column;align-items:flex-start}.service-section-head{gap:12px}.service-facts{gap:14px;grid-template-columns:1fr 1fr;font-size:14px}.service-deliverables{grid-template-columns:1fr}.service-line-summary{display:block}.service-line-summary>span{display:block;margin-top:9px}.service-totals{font-size:14px}.service-totals div{gap:12px}.service-offer-current{padding:15px;margin-left:-4px;margin-right:-4px}.service-offer-line{padding:14px}.service-actions{align-items:stretch}.service-actions>*{flex:1 1 180px}.service-actions a{text-align:center;padding:11px}.service-tabs a{margin-left:0;width:100%;padding:8px 0}.service-space .service-check{font-size:14px}.service-space input:not([type=checkbox]),.service-space textarea,.service-space select{font-size:16px}}
@media(prefers-reduced-motion:reduce){.service-space *{scroll-behavior:auto}}

.service-space .service-additional{margin:20px 0;padding:16px;border:1px solid #c8d0c4;min-width:0}.service-additional legend{padding:0 6px;font-weight:600}.service-additional .service-check{align-items:flex-start}.service-additional input[type=checkbox]{flex:0 0 auto;min-width:18px;min-height:18px}.service-additional label:focus-within{outline:2px solid #274b35;outline-offset:3px}
