:root {
  --page-width: 1200px;
  --page-padding: 24px;
  --ink: #545454;
  --paper: #ffffff;
  --line: #e8e5e1;
  --muted: #787878;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* Branded loading screen shared by every page. */
html.is-loading { overflow: hidden; }
html.is-loading body::before,
html.is-loading body::after {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
}
html.is-loading body::before {
  inset: 0;
  background: #fff;
  content: "";
  opacity: 1;
}
html.is-loading body::after {
  top: 50%;
  left: 50%;
  width: min(260px, calc(100vw - 64px));
  padding-bottom: 16px;
  border-bottom: 1px solid #aaa39e;
  color: #282828;
  content: "Pamela Creative Studio";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.4;
  text-align: center;
  opacity: 1;
  transform: translate(-50%, -50%);
  animation: loading-mark 1.15s ease-in-out infinite alternate;
}
html.is-loading.is-ready body::before { opacity: 0; }
html.is-loading.is-ready body::after { opacity: 0; transform: translate(-50%, calc(-50% - 10px)); }

@keyframes loading-mark {
  from { border-bottom-color: #dedad7; }
  to { border-bottom-color: #5f5a56; }
}

@media (prefers-reduced-motion: reduce) {
  html.is-loading body::before,
  html.is-loading body::after { transition-duration: 1ms; }
  html.is-loading body::after { animation: none; }
}

/* Give every clickable portfolio image the same subtle hover zoom. */
main a img,
main button img {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
main a:hover img,
main a:focus-visible img,
main button:hover img,
main button:focus-visible img {
  transform: scale(1.022);
}

.page-shell { width: min(100%, var(--page-width)); margin: auto; padding: 0 var(--page-padding); }
.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; }

/* Shared header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.site-header__inner { min-height: 116px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.site-brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; color: #111; font-size: 25px; font-weight: 800; letter-spacing: -.02em; }
.site-brand img { width: 29px; height: 29px; }
.site-brand--active { color: #282828; }
.menu-toggle { display: none; padding: 7px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle svg { display: block; width: 25px; height: 25px; }
.site-nav ul { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; display: block; padding: 7px 0; color: #666; font-size: 12px; line-height: 1.15; text-decoration: none; white-space: nowrap; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: #262626; }
.site-nav a[aria-current="page"]::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 1px; background: currentColor; content: ""; }

/* Homepage */
.portfolio { padding-top: clamp(54px, 7vw, 88px); padding-bottom: clamp(78px, 10vw, 126px); }
.portfolio-intro,
.project-intro { width: min(100%, 760px); margin: 0 auto clamp(42px, 5vw, 64px); text-align: center; }
.section-kicker { margin: 0 0 12px; color: #8a8581; font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.portfolio-intro h1,
.project-intro h1 { margin: 0; color: #2f2f2f; font-size: clamp(28px, 4vw, 46px); line-height: 1.24; letter-spacing: -.025em; }
.portfolio-intro > p:last-child,
.project-intro > p:last-of-type { margin: 20px auto 0; color: #6f6a66; font-size: 16px; line-height: 1.9; }
.section-title { margin: 0 0 32px; color: #4e4a47; font-size: 18px; font-weight: 650; text-align: center; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 296px); justify-content: center; gap: clamp(28px, 4.25vw, 52px) clamp(22px, 4.2vw, 50px); }
.portfolio-card { display: block; width: 296px; text-decoration: none; }
.portfolio-card img { width: 296px; height: 296px; aspect-ratio: 1 / 1; object-fit: cover; background: #f2f0ee; box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform 220ms ease, box-shadow 220ms ease; }
.portfolio-card span { display: block; margin-top: 16px; color: var(--ink); font-size: clamp(15px, 1.55vw, 18px); line-height: 1.42; text-align: center; }
.portfolio-card:hover img, .portfolio-card:focus-visible img { box-shadow: 0 14px 30px rgba(25,25,25,.16); transform: scale(1.022); }
.portfolio-card:focus-visible { outline: 2px solid #565656; outline-offset: 5px; }
.portfolio-local-note { width: min(100%, 760px); margin: clamp(72px, 9vw, 112px) auto 0; padding: 0 clamp(8px, 2vw, 24px); text-align: center; }
.portfolio-local-note p { margin: 0; color: #77716d; font-size: 12px; font-weight: 400; line-height: 2; letter-spacing: .035em; }
.portfolio-mobile-break { display: none; }
.page-seo-note { width:min(100%, 760px); margin:clamp(72px,9vw,112px) auto 0; padding:0 clamp(8px,2vw,24px); text-align:center; }
.page-seo-note p { margin:0; color:#77716d; font-size:12px; font-weight:400; line-height:2; letter-spacing:.035em; }
.page-note-mobile-break { display:none; }

/* Project detail pages */
.project-gallery,
.project-videos,
.social-gallery,
.products,
.about-page { padding-right: 30px; padding-left: 30px; }
.project-gallery { padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(78px, 10vw, 126px); }
.project-intro--print { width: min(100%, 760px); margin-bottom: 30px; }
.service-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.service-tags li { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: #67615d; font-size: 14px; line-height: 1.4; }
.gallery-hint { width:min(100%, 775px); margin:0 auto 18px; color:#8a8581; font-size:13px; line-height:1.6; text-align:center; }
.project-gallery--characters .gallery-hint { width:min(100%, 620px); }
.project-gallery--packaging .gallery-hint { width:min(100%, 640px); }
.project-gallery--print .gallery-hint { width:min(100%, 630px); }
.products > .gallery-hint { margin-bottom:22px; }
.project-gallery__content { display: flex; width: min(100%, 775px); flex-direction: column; gap: 40px; margin: auto; }
.project-gallery--characters .project-gallery__content { width: min(100%, 620px); }
.project-gallery__content img { display: block; width: 100%; height: auto; }
.project-gallery__content video { display: block; width: 100%; height: auto; background: #000; }
.project-gallery--wide .project-gallery__content { max-width: 1000px; }
.project-gallery--wide .project-gallery__content video { max-width: 640px; margin: auto; }
.project-gallery--natural .project-gallery__content { width: 100%; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.project-gallery--natural .project-gallery__content img { width: auto; height: auto; max-width: 100%; }
.project-gallery--natural .project-gallery__content .project-image--print-03 { width: min(550px, 100%); height: auto; aspect-ratio: 550 / 367; }
.project-gallery--natural .project-gallery__content .project-image--print-04 { width: min(723px, 100%); height: auto; aspect-ratio: 723 / 511; }
.project-gallery--print .project-gallery__content { display: flex; width: min(100%, 630px); flex-direction: column; gap: 40px; }
.project-gallery--print .project-gallery__content img { width: 100%; height: auto; }
.project-gallery--packaging .project-gallery__content { display: flex; width: min(100%, 640px); flex-direction: column; gap: 40px; }
.project-gallery--packaging .project-gallery__content img,
.project-gallery--packaging .project-gallery__content video { width: 100%; height: auto; }
.project-gallery--web .project-gallery__content { width: min(100%, 576px); gap: 40px; }
.project-link { display: block; overflow: visible; }
.project-link img { transition: transform 220ms ease, box-shadow 220ms ease; }
.project-link:hover img,
.project-link:focus-visible img { transform: scale(1.022); box-shadow: 0 14px 30px rgba(25,25,25,.16); }

/* Video detail pages */
.project-videos { padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(78px, 10vw, 126px); }
.project-videos video { display: block; height: auto; max-width: 100%; background: #000; }
.project-videos__stack, .project-videos__production { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.project-videos__stack video { width: min(576px, 100%); }
.project-videos__production > video { width: min(576px, 100%); }
.project-videos__row { display: flex; width: min(576px, 100%); justify-content: center; gap: 30px; }
.project-videos__row video { width: calc((100% - 30px) / 2); }
.project-videos__stack .video-preview,
.project-videos__production > .video-preview { width: min(576px, 100%); }
.project-videos__row .video-preview { width: calc((100% - 30px) / 2); }
.video-preview img { display: block; width: 100%; height: auto; }
.project-gallery--packaging .video-preview { width: 100%; }
.product-modal__dialog.video-modal__dialog { width: min(100%, 900px); height: auto; max-height: calc(100vh - 60px); overflow: visible; background: #000; }
.video-modal__dialog .product-modal__close { position: absolute; top: 8px; right: 8px; float: none; margin: 0; }
.video-modal__content video { display: block; width: 100%; height: auto; max-height: calc(100vh - 60px); background: #000; }
.social-gallery { padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(78px, 10vw, 126px); }
.social-gallery img, .about-page img { display: block; height: auto; max-width: 100%; }
.social-gallery__squares { display: grid; grid-template-columns: repeat(3, 232px); justify-content: center; gap: 40px 30px; }
.social-gallery__squares img { width: 232px; }
.social-gallery__wide { display: flex; width: min(100%, 756px); flex-direction: column; align-items: center; gap: 40px; margin: 40px auto 0; }
.social-gallery__wide img { width: 100%; }
.about-page { display: flex; flex-direction: column; align-items: center; gap: 64px; padding-top: clamp(48px, 6vw, 76px); padding-bottom: clamp(78px, 10vw, 126px); }
.about-page__banner { width: 100%; }
.about-page__portrait { width: 276px; }
.about-page { display:block; padding-top:70px; }
.about-page__title { margin:0 0 46px; color:#ddd; font-size:clamp(56px,10vw,132px); font-weight:700; letter-spacing:-.06em; line-height:.78; }
.about-page__title span { display:block; margin-left:28%; color:#cfcfcf; }
.about-page__intro { display:grid; grid-template-columns:276px minmax(0,1fr); gap:52px; max-width:920px; margin:auto; }
.about-page__intro h2 { margin:28px 0; font-size:32px; line-height:1.42; }
.about-page__intro p,.about-page__skills p { color:#626262; font-size:18px; line-height:1.6; letter-spacing:.06em; }
.about-page__skills { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:56px 100px; max-width:920px; margin:70px auto 0; }
.about-page__skills h3 { margin:0 0 10px; font-size:27px; }.about-page__skills p { margin:0; }
.about-page { max-width:840px; }
.about-page__title { font-size:clamp(40px, 7vw, 92px); margin-bottom:32px; }
.about-page__intro { grid-template-columns:193px minmax(0,1fr); gap:36px; max-width:644px; }
.about-page__portrait { width:193px; }
.about-page__intro h2 { margin:20px 0; font-size:22px; }
.about-page__intro p,.about-page__skills p { font-size:13px; }
.about-page__skills { max-width:644px; gap:40px 70px; margin-top:49px; }
.about-page__skills h3 { font-size:19px; margin-bottom:7px; }
.about-flipbook { max-width:644px; margin:78px auto 0; }
.about-flipbook__header { margin-bottom:26px; text-align:center; }
.about-flipbook__header > p { margin:0 0 8px; color:#a58b79; font-size:11px; font-weight:700; letter-spacing:.14em; }
.about-flipbook__header h2 { margin:0; color:#333; font-size:clamp(24px,4vw,34px); line-height:1.25; }
.about-flipbook__header span { display:block; margin-top:9px; color:#85807c; font-size:13px; line-height:1.6; }
.flipbook-stage { position:relative; width:min(100%, 500px); aspect-ratio:3 / 4; margin:auto; outline:none; perspective:1600px; touch-action:pan-y; user-select:none; }
.flipbook-stage:focus-visible { outline:2px solid #8e7463; outline-offset:8px; }
.flipbook-page { position:absolute; inset:0; margin:0; opacity:0; overflow:hidden; border-radius:3px 10px 10px 3px; background:#f1efed; box-shadow:0 24px 54px rgba(45,35,29,.18), inset 10px 0 18px rgba(60,43,31,.06); transform:rotateY(22deg) translateX(7%); transform-origin:left center; transition:opacity 360ms ease, transform 520ms cubic-bezier(.22,1,.36,1), box-shadow 520ms ease; pointer-events:none; backface-visibility:hidden; }
.flipbook-page::after { position:absolute; inset:0 auto 0 0; width:5%; background:linear-gradient(90deg,rgba(35,23,15,.18),rgba(255,255,255,.1),transparent); content:""; pointer-events:none; }
.flipbook-page.is-before { transform:rotateY(-22deg) translateX(-7%); transform-origin:right center; }
.flipbook-page.is-active { z-index:2; opacity:1; transform:rotateY(0) translateX(0); pointer-events:auto; }
.flipbook-page img { width:100%; height:100%; object-fit:contain; pointer-events:none; }
.flipbook-controls { display:flex; align-items:center; justify-content:center; gap:22px; margin-top:22px; }
.flipbook-controls button { display:grid; width:42px; height:42px; place-items:center; padding:0; border:1px solid #d8d2cd; border-radius:50%; background:#fff; color:#514b47; font:inherit; font-size:18px; cursor:pointer; transition:border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease; }
.flipbook-controls button:hover,.flipbook-controls button:focus-visible { border-color:#8e7463; background:#8e7463; color:#fff; transform:translateY(-1px); }
.flipbook-controls button:disabled { opacity:.35; cursor:not-allowed; transform:none; }
.flipbook-controls p { min-width:46px; margin:0; color:#77716d; font-size:12px; font-variant-numeric:tabular-nums; text-align:center; }
@media (max-width: 700px) {
  .products { padding-top:40px; }
  .products__grid { grid-template-columns:minmax(0, 252px); justify-content:center; gap:40px; }
  .product-card img { width:100%; }
  .product-modal { padding:0; }
  .product-modal__dialog { width:100%; max-width:none; }
  .product-modal__close { position:fixed; top:8px; right:8px; margin:0; }
}
@media screen and (max-width: 767px) {
  .products .products__grid { grid-template-columns:1fr !important; justify-items:center; }
  .products .product-card { width:min(252px, 100%); }
}
@media (max-width: 960px) { .social-gallery__squares { grid-template-columns: repeat(2, minmax(0, 232px)); } .social-gallery__squares img { width: 100%; } .social-gallery__wide { width: min(100%, 494px); } }
.short-video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 226px)); justify-content: center; column-gap: 30px; row-gap: 40px; }
.short-video-grid video { width: 100%; }
.products { padding-top:clamp(48px,6vw,76px); padding-bottom:clamp(78px,10vw,126px); }.products__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:40px 30px; }.product-card { border:0; padding:0; background:none; cursor:pointer; overflow:hidden; }.product-card img { width:100%; aspect-ratio:1/1; object-fit:cover; transition:transform .22s ease,box-shadow .22s ease; }.product-card:hover img { transform:scale(1.025); box-shadow:0 14px 30px rgba(0,0,0,.16); }.product-modal[hidden]{display:none}.product-modal{position:fixed;inset:0;z-index:50;padding:30px;background:rgba(0,0,0,.55)}.product-modal__dialog{position:relative;width:min(100%,900px);height:100%;margin:auto;overflow:auto;background:#fff}.product-modal__close{position:sticky;top:12px;float:right;z-index:2;margin:12px;border:0;border-radius:50%;width:38px;height:38px;background:#222;color:#fff;font-size:28px;line-height:1;cursor:pointer}.product-modal__content{display:flex;clear:both;flex-direction:column;gap:0}.product-modal__content img{display:block;width:100%;height:auto}@media(max-width:700px){.products__grid{grid-template-columns:1fr;gap:40px}.product-modal{padding:30px}}
.products__grid { grid-template-columns:repeat(3, 252px); justify-content:center; }
.product-card img { transition:transform 220ms ease, box-shadow 220ms ease; }
.product-card { display:block; overflow:visible; }
.product-card:hover img { transform:scale(1.022); box-shadow:0 14px 30px rgba(25,25,25,.16); }
.product-modal__dialog { width:min(100%, 630px); }
.product-modal__dialog { height:auto; max-height:calc(100vh - 60px); }
@media (max-width: 640px) { .short-video-grid { grid-template-columns: minmax(0, 226px); } }

/* Shared footer */
.site-footer { border-top: 1px solid var(--line); }
.site-footer__inner { min-height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: #737373; font-size: 13px; text-align: center; }
.site-footer a { text-underline-offset: 3px; }
.site-footer strong { color: #111; font-weight: 800; }
.project-detail-trigger { display:block; width:100%; padding:0; border:0; background:none; cursor:pointer; }.project-detail-trigger img { transition:transform 220ms ease,box-shadow 220ms ease; }.project-detail-trigger:hover img { transform:scale(1.022); box-shadow:0 14px 30px rgba(25,25,25,.16); }
.back-to-top { position:fixed; right:24px; bottom:28px; z-index:40; width:44px; height:44px; border:0; border-radius:50%; background:#222; color:#fff; font-size:24px; cursor:pointer; opacity:0; pointer-events:none; transform:translateY(10px); transition:opacity .2s ease,transform .2s ease; }.back-to-top.is-visible { opacity:.92; pointer-events:auto; transform:translateY(0); }

/* Floating questionnaire shortcut */
.solution-shortcut {
  position: fixed;
  bottom: 12px;
  left: 16px;
  z-index: 39;
  display: block;
  width: 184px;
  height: 184px;
  color: #312c2a;
  text-decoration: none;
  filter: drop-shadow(0 8px 14px rgba(35, 29, 26, .15));
  transform-origin: left bottom;
  transition: transform .22s ease, filter .22s ease;
}
.solution-shortcut img { display:block; width:100%; height:100%; object-fit:contain; }
.solution-shortcut span {
  position:absolute;
  top:8%;
  right:16%;
  left:16%;
  color:#383230;
  font-size:15px;
  font-weight:800;
  line-height:1.42;
  letter-spacing:.08em;
  text-align:center;
  pointer-events:none;
}
.solution-shortcut:hover,
.solution-shortcut:focus-visible { filter:drop-shadow(0 12px 18px rgba(35,29,26,.22)); transform:scale(1.045); }
.solution-shortcut:focus-visible { outline:2px solid #8e7463; outline-offset:3px; }

/* Guided solution questionnaire */
.solution-page { width:min(100%, 900px); padding:clamp(50px,7vw,88px) 30px clamp(80px,10vw,126px); }
.solution-hero { max-width:760px; margin:0 auto 42px; text-align:center; }
.solution-hero__eyebrow { margin:0 0 13px; color:#9a7f6d; font-size:12px; font-weight:700; letter-spacing:.17em; }
.solution-hero h1 { margin:0; color:#252525; font-size:clamp(32px,5vw,54px); line-height:1.15; letter-spacing:-.035em; }
.solution-hero > p:last-child { max-width:650px; margin:20px auto 0; color:#74706d; font-size:16px; line-height:1.9; }
.solution-progress { position:relative; max-width:720px; margin:0 auto 32px; }
.solution-progress__bar { position:absolute; top:18px; right:6%; left:6%; height:2px; overflow:hidden; background:#e8e1dc; }
.solution-progress__bar span { display:block; width:0; height:100%; background:#8e7463; transition:width .35s ease; }
.solution-progress ol { position:relative; display:grid; grid-template-columns:repeat(6,1fr); margin:0; padding:0; list-style:none; }
.solution-progress li { display:flex; flex-direction:column; align-items:center; gap:7px; color:#aaa19b; font-size:11px; }
.solution-progress li span { display:grid; width:36px; height:36px; place-items:center; border:1px solid #ded7d1; border-radius:50%; background:#fff; font-size:12px; font-weight:700; transition:.25s ease; }
.solution-progress li.is-current span,.solution-progress li.is-complete span { border-color:#8e7463; background:#8e7463; color:#fff; }
.solution-progress li.is-current small { color:#4f4945; font-weight:700; }
.solution-progress__text { margin:15px 0 0; color:#8d8580; font-size:12px; text-align:center; }
.solution-form,.solution-success { max-width:760px; margin:auto; padding:clamp(28px,5vw,54px); border:1px solid #e7e1dc; border-radius:3px; background:#fff; box-shadow:0 20px 54px rgba(69,52,41,.08); }
.solution-step fieldset { min-width:0; margin:0; padding:0; border:0; }
.solution-step legend { display:block; width:100%; padding:0; color:#2f2c2a; font-size:clamp(23px,3vw,31px); font-weight:700; line-height:1.35; }
.solution-step legend span { display:block; margin-bottom:6px; color:#a58b79; font-size:12px; letter-spacing:.12em; text-transform:uppercase; }
.solution-step__question { margin:14px 0 25px; color:#77706b; font-size:15px; line-height:1.7; }
.solution-step__note { margin:24px 0 0; padding:14px 16px; background:#f7f4f1; color:#80766f; font-size:13px; line-height:1.7; }
.solution-options { display:grid; gap:12px; }
.solution-options--two { grid-template-columns:repeat(2,minmax(0,1fr)); }
.solution-options--inline { grid-template-columns:repeat(4,minmax(0,1fr)); }
.solution-options label { position:relative; display:flex; min-height:52px; align-items:center; gap:11px; padding:13px 15px; border:1px solid #ded9d4; border-radius:2px; color:#57514d; cursor:pointer; transition:border-color .18s ease,background .18s ease,box-shadow .18s ease; }
.solution-options label:hover { border-color:#a88f7e; background:#faf8f6; }
.solution-options label:has(input:checked) { border-color:#8e7463; background:#f3ede9; box-shadow:inset 0 0 0 1px #8e7463; color:#372f2a; }
.solution-options input { width:18px; height:18px; flex:0 0 auto; margin:0; accent-color:#826b5b; }
.solution-options span { line-height:1.45; }
.solution-fields { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.solution-fields label,.solution-other-field { display:flex; flex-direction:column; gap:9px; color:#504b47; font-size:13px; font-weight:650; }
.solution-fields__wide { grid-column:1 / -1; }
.solution-fields input,.solution-fields textarea,.solution-other-field input { width:100%; border:1px solid #dcd6d1; border-radius:2px; background:#fff; color:#393634; font:inherit; font-size:16px; outline:none; transition:border-color .18s ease,box-shadow .18s ease; }
.solution-fields input,.solution-other-field input { height:48px; padding:0 13px; }
.solution-fields textarea { min-height:100px; padding:12px 13px; resize:vertical; }
.solution-fields input:focus,.solution-fields textarea:focus,.solution-other-field input:focus { border-color:#8e7463; box-shadow:0 0 0 3px rgba(142,116,99,.12); }
.solution-subgroup { margin-top:27px; }
.solution-subgroup > p { margin:0 0 12px; color:#504b47; font-size:13px; font-weight:650; }
.solution-other-field { margin-top:16px; }
.solution-other-field input:disabled { background:#f2f0ee; cursor:not-allowed; }
.solution-options.has-error { padding:8px; outline:1px solid #b45454; outline-offset:2px; }
.solution-step__error,.solution-form__status.is-error { color:#a33d3d; }
.solution-step__error { margin:13px 0 0; font-size:13px; }
.solution-actions { display:flex; justify-content:flex-end; gap:12px; margin-top:38px; padding-top:25px; border-top:1px solid #ece7e3; }
.solution-button { min-width:130px; min-height:47px; padding:11px 23px; border:1px solid #2f2c2a; border-radius:2px; background:#2f2c2a; color:#fff; font:inherit; font-size:14px; font-weight:700; cursor:pointer; transition:background .18s ease,color .18s ease,transform .18s ease; }
.solution-button:hover { transform:translateY(-1px); background:#171615; }
.solution-button:disabled { opacity:.55; cursor:wait; transform:none; }
.solution-button--secondary { margin-right:auto; border-color:#cfc7c1; background:#fff; color:#625a55; }
.solution-button--secondary:hover { background:#f5f2ef; color:#332f2c; }
.solution-form__status { min-height:20px; margin:15px 0 0; color:#77706b; font-size:13px; text-align:right; }
.solution-honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; opacity:0!important; }
.solution-success { text-align:center; }
.solution-success > span { display:grid; width:62px; height:62px; margin:0 auto 20px; place-items:center; border-radius:50%; background:#8e7463; color:#fff; font-size:30px; }
.solution-success h2 { margin:0; color:#2f2c2a; font-size:30px; }
.solution-success p { margin:14px 0 27px; color:#77706b; line-height:1.7; }
.solution-success .solution-button { margin:auto; }

/* Service pricing */
.pricing-page { padding-top:clamp(48px,6vw,76px); padding-bottom:clamp(78px,10vw,126px); }
.pricing-hero { max-width:760px; margin:0 auto clamp(42px,6vw,70px); text-align:center; }
.pricing-hero__eyebrow { margin:0 0 12px; color:#a58b79; font-size:12px; font-weight:700; letter-spacing:.14em; }
.pricing-hero h1 { margin:0; color:#252525; font-size:clamp(34px,5vw,54px); line-height:1.15; letter-spacing:-.035em; }
.pricing-hero p:last-of-type { margin:18px auto 0; color:#74706d; font-size:16px; line-height:1.8; }
.pricing-quick-links { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:28px; }
.pricing-quick-links--top { margin:0 0 clamp(42px,6vw,70px); }
.pricing-quick-links a { display:inline-flex; min-height:42px; align-items:center; justify-content:center; padding:9px 17px; border:1px solid #d8d0ca; border-radius:999px; background:#fff; color:#5f5752; font-size:14px; font-weight:650; text-decoration:none; transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease; }
.pricing-quick-links a:hover,.pricing-quick-links a:focus-visible { border-color:#8e7463; background:#8e7463; color:#fff; transform:translateY(-1px); }
#individual-items > .pricing-quick-links { margin-bottom:clamp(36px,5vw,54px); }
.pricing-section { scroll-margin-top:138px; }
.pricing-section + .pricing-section { margin-top:clamp(68px,9vw,108px); }
.pricing-section__header { margin-bottom:30px; }
.pricing-section__header h2 { margin:0; color:#2f2c2a; font-size:clamp(27px,4vw,38px); letter-spacing:-.025em; }
.pricing-section__header p { margin:10px 0 0; color:#80766f; font-size:15px; line-height:1.7; }
.pricing-grid { display:grid; gap:22px; }
.pricing-grid--packages { grid-template-columns:repeat(3,minmax(0,1fr)); align-items:start; }
.pricing-grid--items { grid-template-columns:repeat(2,minmax(0,1fr)); }
.pricing-card { position:relative; min-width:0; padding:clamp(24px,3vw,32px); border:1px solid #e4ddd7; border-radius:3px; background:#fff; box-shadow:0 16px 40px rgba(69,52,41,.07); }
.pricing-card--recommended { border-color:#b59d8c; }
.pricing-card__badge { display:inline-block; margin:-2px 0 18px; padding:6px 10px; border-radius:999px; background:#8e7463; color:#fff; font-size:12px; font-weight:700; letter-spacing:.04em; }
.pricing-card h3 { margin:0; color:#33302e; font-size:clamp(20px,2.3vw,25px); line-height:1.35; }
.pricing-card__price { margin:9px 0 18px; color:#8e7463; font-size:clamp(23px,2.8vw,31px); font-weight:800; line-height:1.25; letter-spacing:-.025em; overflow-wrap:anywhere; }
.pricing-card__intro { margin:0 0 18px; color:#69625e; font-size:15px; line-height:1.75; }
.pricing-card ul { margin:0; padding-left:1.2em; color:#77706b; font-size:14px; line-height:1.8; }
.pricing-card__note { margin:17px 0 0; padding-top:15px; border-top:1px solid #eee9e5; color:#8a817b; font-size:13px; line-height:1.75; }
.pricing-category { scroll-margin-top:138px; }
.pricing-category + .pricing-category { margin-top:54px; }
.pricing-category h3 { margin:0 0 20px; color:#4b4541; font-size:clamp(21px,3vw,28px); }
.pricing-category__note { margin:22px 0 0; padding:16px 18px; border-left:3px solid #b59d8c; background:#f8f5f2; color:#80766f; font-size:13px; line-height:1.8; }
.pricing-footer-note { margin-top:clamp(64px,8vw,96px); padding:clamp(26px,4vw,40px); border-radius:3px; background:#f7f4f1; text-align:center; }
.pricing-footer-note p { max-width:820px; margin:0 auto 12px; color:#716965; font-size:14px; line-height:1.85; }
.pricing-footer-note p:last-of-type { margin-bottom:26px; }
.pricing-cta { display:inline-flex; min-height:50px; align-items:center; justify-content:center; padding:12px 25px; border:1px solid #2f2c2a; border-radius:2px; background:#2f2c2a; color:#fff; font-size:15px; font-weight:700; text-decoration:none; transition:background .18s ease,transform .18s ease; }
.pricing-cta:hover,.pricing-cta:focus-visible { background:#171615; transform:translateY(-1px); }

@media (max-width: 1080px) {
  .site-nav ul { gap: 12px; }
  .site-nav a { font-size: 11px; }
}

@media (max-width: 820px) {
  .site-header__inner { min-height: 67px; flex-direction: row; justify-content: space-between; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 10px var(--page-padding) 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 20px; }
  .site-nav a { padding: 10px 0; font-size: 13px; white-space: normal; }
  .site-nav a::after { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 296px); }
  .portfolio-card { width: 296px; }
  .pricing-grid--packages { grid-template-columns:1fr; }
}

@media (max-width: 620px) {
  .solution-shortcut { bottom:8px; left:8px; width:142px; height:142px; }
  .solution-shortcut span { top:7%; font-size:12px; }
  .solution-page { padding-right:20px; padding-left:20px; }
  .solution-hero { margin-bottom:32px; }
  .solution-progress li small { display:none; }
  .solution-progress__bar { right:8%; left:8%; }
  .solution-form,.solution-success { padding:27px 20px; }
  .solution-options--two,.solution-options--inline,.solution-fields { grid-template-columns:1fr; }
  .solution-fields__wide { grid-column:auto; }
  .solution-actions { flex-wrap:wrap; }
  .solution-button { flex:1 1 120px; }
  .solution-button--secondary { margin-right:0; }
}

@media (max-width: 700px) {
  .page-shell { padding-right: 24px; padding-left: 24px; }
  .project-gallery,
  .project-videos,
  .social-gallery,
  .products,
  .about-page { padding-right: 30px; padding-left: 30px; }
  .social-gallery__squares { grid-template-columns: minmax(0, 232px); }
  .about-page__intro { display: block; width: 100%; max-width: none; }
  .about-page__portrait { display: none; }
  .about-page__skills { grid-template-columns: 1fr; width: 100%; max-width: none; gap: 40px; }
  .about-flipbook { width:100%; margin-top:62px; }
  .about-flipbook__header { margin-bottom:22px; }
  .flipbook-stage { width:min(100%, 430px); }
  .site-brand { font-size: 15px; }
  .site-nav ul { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: minmax(0, 296px); gap: 39px; }
  .portfolio-card, .portfolio-card img { width: min(296px, 100%); }
  .portfolio-card img { height: auto; aspect-ratio: 1 / 1; }
  .portfolio-card span { margin-top: 13px; font-size: 17px; }
  .portfolio-local-note { padding-right: 0; padding-left: 0; }
  .portfolio-local-note p { letter-spacing: 0; }
  .portfolio-mobile-break { display: block; }
  .page-seo-note { padding-right:0; padding-left:0; }
  .page-seo-note p { letter-spacing:0; }
  .page-note-mobile-break { display:block; }
  .site-footer__inner { min-height: 118px; }
  .pricing-page { padding-right:20px; padding-left:20px; }
  .pricing-section,.pricing-category { scroll-margin-top:86px; }
  .pricing-grid--items { grid-template-columns:1fr; }
  .pricing-quick-links { gap:8px; }
  .pricing-quick-links a { min-width:0; padding-right:14px; padding-left:14px; font-size:13px; }
  .pricing-card { padding:24px 20px; }
  .pricing-card__price { font-size:24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .solution-shortcut { transition:none; }
  .portfolio-card img { transition: none; }
  main a:hover img,
  main a:focus-visible img,
  main button:hover img,
  main button:focus-visible img {
    transform: none;
  }
  .flipbook-page,
  .flipbook-controls button { transition:none; }
}

/* Footer contact links */
.site-footer { background:#fff; border-top:1px solid #e6e6e6; }
.site-footer__inner { padding-top:36px; padding-bottom:36px; gap:18px; color:#555; }
.site-footer strong { color:#333; }
.site-footer__contacts { display:flex; flex-direction:column; gap:3px; max-width:100%; text-align:left; }
.site-footer__contact { display:flex; align-items:center; gap:12px; min-height:44px; padding:9px 12px; border-radius:6px; color:#444; text-decoration:none; transition:color .18s ease,background .18s ease; }
.site-footer__contact svg { width:21px; height:21px; flex:0 0 21px; color:#555; }
.site-footer__contact span { overflow-wrap:anywhere; }
.site-footer__contact:hover { color:#222; background:#f3f3f3; }
.site-footer__contact:focus-visible { outline:2px solid #666; outline-offset:3px; color:#222; background:#f3f3f3; }
