@font-face{
  font-family:"Salmod";
  src:url("../fonts/salmod-light.woff") format("woff");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Salmond";
  src:url("../fonts/salmond-semibold.woff") format("woff");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#000;
  --text:#f3f3f3;
  --muted:#c2c2c2;
  --line:#1f1f1f;
  --tone-a:#070705;
  --tone-b:#0a0d0a;
  --tone-c:#0c0a08;
  --tone-d:#0a0a0f;
  --tone-e:#0b0b0b;
  --header-bg:#000;
  --button-text:#fff;
  --primary-button-bg:#fff;
  --primary-button-text:#000;
  --body-font:"Salmod", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --heading-font:"Salmond", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --logo-width:320px;
  --home-special-logo-width:420px;
  --base-font-size:18px;
  --cursor-size:75px;
  --header-height:90px;
  --home-special-logo-offset-px:0px;
  --home-special-hero-height-px:700px;
  --home-special-hero-text-top-px:76px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--body-font);
  background:var(--bg);
  color:var(--text);
  font-size:var(--base-font-size);
  line-height:var(--body-line-height);
  font-weight:var(--body-font-weight);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
.wrap{max-width:1200px;margin:0 auto;padding:0 16px}

.section-separator{
  width:100%;
  grid-column:1 / -1;
  line-height:0;
  overflow:hidden;
}
.bucket-shell{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.hero{background:var(--tone-a)}
.buckets{background:var(--tone-b)}
.quote-row{background:var(--tone-c)}
.rows{background:transparent}
.service-row:nth-child(odd){background:var(--tone-d)}
.service-row:nth-child(even){background:var(--tone-b)}
.site-footer{background:var(--tone-e)}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:var(--header-bg);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.bar{
  display:grid;
  grid-template-columns:52px 1fr 52px;
  align-items:center;
  height:var(--header-height);
  min-height:var(--header-height);
}

.iconbtn{
  width:46px;
  height:46px;
  border:1px solid #fff;
  background:transparent;
  color:var(--text);
  display:grid;
  place-items:center;
  border-radius:6px;
}

.burger{width:20px;height:14px;position:relative}
.burger:before,.burger:after,.burger i{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:var(--text);
  border-radius:2px;
}
.burger:before{top:0}
.burger i{top:6px}
.burger:after{bottom:0}

.logo{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:visible;
}

.logo .logo-primary{
  width:100%;
  max-width:var(--logo-width);
  max-height:96px;
  padding:13px;
  object-fit:contain;
  opacity:1;
  transform:translateY(0);
  transition:opacity .28s ease, transform .28s ease;
}
.logo .logo-home-special{
  display:none;
}
body.home-special-logo-enabled .logo .logo-home-special{
  display:block;
  position:absolute;
  left:50%;
  top:100%;
  width:var(--home-special-logo-width);
  max-width:90vw;
  max-height:none;
  height:auto;
  transform:translate(-50%, -44px);
  object-fit:contain;
  z-index:2;
  opacity:1;
  transition:opacity .28s ease, transform .28s ease;
}
body.home-special-logo-enabled:not(.home-logo-compact) .logo .logo-primary{
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
}
body.home-special-logo-enabled.home-logo-compact .logo .logo-home-special{
  opacity:0;
  transform:translate(-50%, -30px);
  pointer-events:none;
}

@media (max-width:900px){
  body.home-special-logo-enabled .logo .logo-home-special{
    transform:translate(-50%, -36px);
  }
  body.home-special-logo-enabled.home-logo-compact .logo .logo-home-special{
    transform:translate(-50%, -24px);
  }
}

.drawer{position:fixed;inset:0;pointer-events:none;z-index:60}
.drawer .backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:0;
  transition:opacity .25s ease;
}
.drawer nav{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:min(340px,88vw);
  background:#000;
  border-right:1px solid rgba(255,255,255,.10);
  transform:translateX(-102%);
  transition:transform .28s cubic-bezier(.2,.8,.2,1);
  padding:18px 14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.drawer.open{pointer-events:auto}
.drawer.open .backdrop{opacity:1}
.drawer.open nav{transform:translateX(0)}

.menuitems{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:10px;
}

.menuitems a{
  display:block;
  font-family:var(--heading-font);
  font-weight:var(--menu-font-weight);
  color:#fff;
  padding:14px 12px;
  border-radius:12px;
  line-height:1.45;
  font-size:var(--menu-font-size);
}
.menuitems a:hover{background:#0e0e0e}

.menucta{
  margin-top:auto;
  padding:10px;
  border-top:1px solid rgba(255,255,255,.10);
}
.menucta a{
  display:flex;
  align-items:center;
  justify-content:center;
  height:46px;
  border-radius:999px;
  background:#fff;
  color:#000;
  font-family:var(--heading-font);
  font-weight:var(--button-font-weight);
  font-size:var(--button-font-size);
}

.hero{
  height:calc((100svh - var(--header-height)) * (var(--hero-visible-height, 100) / 100));
  min-height:calc((100svh - var(--header-height)) * (var(--hero-visible-height, 100) / 100));
  max-height:none;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
}
body.home-special-logo-enabled .hero{
  height:var(--home-special-hero-height-px);
  min-height:var(--home-special-hero-height-px);
}
.hero video,.hero .fallback{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--hero-video-focus-x, 50%) calc(var(--hero-video-anchor-y, 50%) + (var(--hero-video-focus-y, 50%) - 50%));
  filter:contrast(1.05) saturate(1.05);
  transform:translate(var(--hero-video-offset-x, 0px), var(--hero-video-offset-y, 0px)) scale(var(--hero-video-scale, 1));
  transform-origin:var(--hero-video-focus-x, 50%) calc(var(--hero-video-anchor-y, 50%) + (var(--hero-video-focus-y, 50%) - 50%));
}
.hero-video-embed{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-video-embed iframe{
  position:absolute;
  top:var(--hero-video-embed-top, 50%);
  left:50%;
  width:177.78vh;
  min-width:100%;
  height:56.25vw;
  min-height:100%;
  transform:translate(calc(-50% + var(--hero-video-offset-x, 0px)),calc(var(--hero-video-embed-translate-base, -50%) + var(--hero-video-offset-y, 0px))) scale(var(--hero-video-scale, 1));
  transform-origin:var(--hero-video-focus-x, 50%) calc(var(--hero-video-anchor-y, 50%) + (var(--hero-video-focus-y, 50%) - 50%));
  border:0;
  pointer-events:none;
}
.hero .fallback{
  background:center/cover no-repeat;
  display:none;
}
.hero .fallback.is-visible{display:block}
.hero .veil{
  position:absolute;
  inset:0;
  background:#000;
  opacity:calc(var(--hero-overlay-strength, 60) / 100);
}
.hero .content{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:var(--hero-content-horizontal, flex-start);
  align-items:var(--hero-content-vertical, flex-end);
  text-align:var(--hero-content-text-align, left);
  padding:26px 16px 76px;
}
body.home-special-logo-enabled:not(.home-logo-compact) .hero .content{
  align-items:flex-start;
  padding-top:var(--home-special-hero-text-top-px);
}
.hero h1{
  margin:0;
  font-family:var(--heading-font);
  font-size:clamp(26px,3.2vw,var(--hero-title-size));
  font-weight:var(--hero-title-weight);
  letter-spacing:.02em;
}
.hero p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:62ch;
  line-height:var(--body-line-height);
  font-size:var(--hero-body-size);
  font-weight:var(--hero-body-weight);
}
.hero .cta{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  width:100%;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 34px;
  min-height:56px;
  border-radius:9px;
  border:0;
  background:url("../wood-001.avif") center/cover no-repeat;
  color:var(--button-text);
  text-shadow:0 1px 0 #000;
  font-family:var(--heading-font);
  font-weight:var(--button-font-weight);
  font-size:var(--button-font-size);
  letter-spacing:.02em;
  box-shadow:inset 0 1px 2px rgba(255,255,255,.25), inset 0 -2px 4px rgba(0,0,0,.45), 0 10px 24px rgba(0,0,0,.45);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn.primary{
  background:var(--primary-button-bg);
  color:var(--primary-button-text);
  border:1px solid var(--primary-button-bg);
  text-shadow:none;
}
.button-style-img-bg .menucta a{
  background:url("../wood-001.avif") center/cover no-repeat;
  color:var(--button-text);
  border:1px solid rgba(255,255,255,.14);
  text-shadow:0 1px 0 #000;
  box-shadow:inset 0 1px 2px rgba(255,255,255,.25), inset 0 -2px 4px rgba(0,0,0,.45), 0 10px 24px rgba(0,0,0,.45);
}
.button-style-white-embossed .btn,
.button-style-white-embossed .menucta a{
  background:#f6f6f6;
  color:#0a0a0a;
  border:1px solid #d8d8d8;
  text-shadow:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), inset 0 -2px 4px rgba(0,0,0,.18), 0 8px 18px rgba(0,0,0,.25);
}
.button-style-outline-only .btn,
.button-style-outline-only .menucta a{
  background:rgba(0,0,0,.35);
  color:var(--text);
  border:1px solid var(--muted);
  text-shadow:none;
  box-shadow:none;
}
.button-style-outline-only .btn.primary{
  background:rgba(0,0,0,.35);
  color:var(--text);
  border:1px solid var(--muted);
}

.buckets{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.bucket{
  position:relative;
  aspect-ratio:1/1;
  overflow:hidden;
  display:block;
  isolation:isolate;
  border-right:1px solid rgba(255,255,255,.10);
}
.bucket:last-child{border-right:0}
.bucket .img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  transition:transform 4200ms cubic-bezier(.14,.8,.12,1);
  will-change:transform;
}
.bucket:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 34%, rgba(0,0,0,.45) 62%, rgba(0,0,0,.78) 82%, rgba(0,0,0,.92) 100%);
  opacity:0;
  transition:opacity 900ms ease;
  z-index:2;
}
.bucket .shade{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.80));
  z-index:1;
}
.bucket .inner{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px 18px 74px;
  z-index:3;
}
.bucket h2{
  margin:0;
  font-family:var(--heading-font);
  font-size:clamp(20px,2.4vw,var(--section-title-size));
  font-weight:var(--section-title-weight);
}
.bucket p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:38ch;
  line-height:var(--body-line-height);
  font-size:var(--body-text-size);
  font-weight:var(--body-text-weight);
}
.bucket .links{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
.buckets.buckets-style-border-box{
  gap:15px;
  border-top:0;
  border-bottom:0;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
.buckets.buckets-style-border-box .bucket{
  border:1px solid var(--muted);
  aspect-ratio:3/4;
  display:flex;
  flex-direction:column;
  background:#080808;
}
.buckets.buckets-style-border-box .bucket .img{
  position:relative;
  inset:auto;
  width:100%;
  height:66%;
  min-height:0;
  aspect-ratio:auto;
  transform:none;
  background-position:center;
}
.buckets.buckets-style-border-box .bucket:after,
.buckets.buckets-style-border-box .bucket .shade{
  display:none;
}
.buckets.buckets-style-border-box .bucket .inner{
  position:relative;
  inset:auto;
  padding:16px 12px 14px;
  justify-content:center;
  align-items:center;
  text-align:center;
  flex:1 1 auto;
  background:rgba(0,0,0,.68);
}
.buckets.buckets-style-border-box .bucket h2{
  margin:0;
  color:#c68d54;
  font-size:clamp(21px,2.1vw,30px);
  line-height:1.1;
}
.buckets.buckets-style-border-box .bucket p{
  margin:8px 0 0;
  max-width:24ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.35;
}
.buckets.buckets-style-border-box .bucket .links{
  display:none;
}
.buckets.buckets-style-polaroid{
  gap:34px;
  align-items:start;
  max-width:1180px;
  margin:0 auto;
  padding:58px 24px 68px;
  border-top:0;
  border-bottom:0;
  background:
    radial-gradient(ellipse at 18% 45%, rgba(198,141,84,.16), transparent 58%),
    radial-gradient(ellipse at 82% 26%, rgba(255,255,255,.08), transparent 52%);
}
.buckets.buckets-style-polaroid .bucket{
  aspect-ratio:auto;
  overflow:visible;
  border:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:var(--text);
  text-align:center;
}
.buckets.buckets-style-polaroid .polaroid-card{
  width:min(100%, 330px);
  padding:18px 18px 64px;
  position:relative;
  background:linear-gradient(168deg, #fefefe 0%, #faf8f5 42%, #f1ebe2 100%);
  box-shadow:
    0 1px 3px rgba(0,0,0,.16),
    0 6px 12px rgba(0,0,0,.16),
    0 18px 38px rgba(0,0,0,.24),
    inset 0 0 54px rgba(0,0,0,.025);
  transition:transform .5s cubic-bezier(.25,.8,.25,1), box-shadow .5s ease;
}
.buckets.buckets-style-polaroid .bucket-shell:nth-child(1) .polaroid-card{transform:rotate(-2deg)}
.buckets.buckets-style-polaroid .bucket-shell:nth-child(2) .polaroid-card{transform:rotate(1.5deg)}
.buckets.buckets-style-polaroid .bucket-shell:nth-child(3) .polaroid-card{transform:rotate(-1deg)}
.buckets.buckets-style-polaroid .polaroid-card:before{
  content:"";
  position:absolute;
  top:-14px;
  left:50%;
  width:80px;
  height:26px;
  transform:translateX(-50%) rotate(-2deg);
  z-index:5;
  opacity:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.12) 2px, rgba(255,255,255,.12) 4px),
    rgba(255,255,240,.58);
  border:1px solid rgba(200,190,170,.24);
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    inset 0 0 8px rgba(255,255,255,.18);
  backdrop-filter:blur(1px);
}
.buckets.buckets-style-polaroid .bucket .img{
  position:relative;
  inset:auto;
  width:100%;
  aspect-ratio:1/1;
  background-size:cover;
  background-position:center;
  transform:none;
  overflow:hidden;
  transition:filter .4s ease, transform .6s ease;
  filter:saturate(.86) contrast(1.05) brightness(1.02);
}
.buckets.buckets-style-polaroid .bucket .img:after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.18) 100%);
  pointer-events:none;
}
.buckets.buckets-style-polaroid .bucket .img:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  opacity:0;
  transition:opacity .5s ease;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(0,0,0,.42), transparent 35%),
    linear-gradient(to left, rgba(0,0,0,.42), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,.32), transparent 30%),
    linear-gradient(to top, rgba(0,0,0,.32), transparent 30%),
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,.24) 100%);
}
.buckets.buckets-style-polaroid .bucket:after,
.buckets.buckets-style-polaroid .bucket .shade{
  display:none;
}
.buckets.buckets-style-polaroid .bucket h2{
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  min-height:64px;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f2a25;
  font-family:"Permanent Marker", var(--heading-font);
  font-size:clamp(21px,2.2vw,30px);
  line-height:1;
  text-align:center;
  letter-spacing:.02em;
}
.buckets.buckets-style-polaroid .bucket .inner{
  position:relative;
  inset:auto;
  width:min(100%, 330px);
  padding:22px 4px 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}
.buckets.buckets-style-polaroid .bucket p{
  margin:0;
  max-width:31ch;
  color:rgba(255,255,255,.84);
  font-size:18px;
  line-height:1.42;
}
.buckets.buckets-style-polaroid .bucket .links{
  justify-content:center;
}
.pill{
  display:inline-flex;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  font-family:var(--heading-font);
  font-weight:var(--button-font-weight);
  font-size:var(--button-font-size);
}
@media (hover:hover){
  .bucket:hover .img{transform:scale(1.22)}
  .bucket:hover:after{opacity:1}
  .buckets.buckets-style-border-box .bucket:hover .img{transform:none}
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(1) .bucket:hover .polaroid-card{
    transform:rotate(-4deg) translateY(-10px) scale(1.03);
  }
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(2) .bucket:hover .polaroid-card{
    transform:rotate(3deg) translateY(-10px) scale(1.03);
  }
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(3) .bucket:hover .polaroid-card{
    transform:rotate(-2.5deg) translateY(-10px) scale(1.03);
  }
  .buckets.buckets-style-polaroid .bucket:hover .polaroid-card{
    box-shadow:
      0 2px 6px rgba(0,0,0,.16),
      0 10px 20px rgba(0,0,0,.2),
      0 26px 52px rgba(0,0,0,.3);
  }
  .buckets.buckets-style-polaroid .bucket:hover .img{
    transform:none;
    filter:saturate(1) contrast(1.08) brightness(1.04);
  }
  .buckets.buckets-style-polaroid .bucket:hover .img:before{opacity:1}
}

.quote-row{
  padding:60px 0 40px;
  background:var(--tone-c);
}
.philo-quote{
  position:relative;
  margin:0 auto;
  padding:34px 18px;
  border:0;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(6px);
}
.philo-quote p{
  margin:0;
  font-family:var(--heading-font);
  font-weight:var(--quote-text-weight);
  font-size:clamp(22px,2.8vw,var(--quote-text-size));
  line-height:1.32;
  letter-spacing:.01em;
  text-align:center;
}
.philo-quote .qmark{
  position:absolute;
  font-family:var(--heading-font);
  font-weight:600;
  font-size:190px;
  line-height:1;
  color:rgba(255,255,255,.08);
  user-select:none;
  pointer-events:none;
}
.philo-quote .qmark.left{left:-18px;top:0}
.philo-quote .qmark.right{right:-14px;bottom:-110px}

.rows{border-bottom:1px solid rgba(255,255,255,.10)}
.service-row{
  display:grid;
  grid-template-columns:1fr 2fr;
  align-items:stretch;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
.service-row.alt{grid-template-columns:2fr 1fr}
.service-row.alt .sr-img{order:2}
.service-row.alt .sr-content{order:1}
.sr-img{
  width:100%;
  aspect-ratio:1/1;
  background:#000 center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.sr-img-frame{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  background:#000 center/cover no-repeat;
  border:10px solid #050505;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.sr-img-frame:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 34%, rgba(0,0,0,.45) 62%, rgba(0,0,0,.78) 82%, rgba(0,0,0,.92) 100%);
  opacity:0;
  transition:opacity 900ms ease;
  z-index:3;
}
.sr-img-frame:hover:after,
.sr-img-frame:focus-visible:after{
  opacity:1;
}
.sr-img-fade-layer{
  position:absolute;
  inset:0;
  background:center/cover no-repeat;
  opacity:0;
  transform:scale(1);
  transition:opacity 1.2s ease, transform 3s linear 1.2s;
  will-change:opacity, transform;
}
.sr-img-frame.has-fading{
  background-image:none !important;
}
.sr-img-frame.has-fading .sr-img-fade-layer{
  z-index:1;
}
.sr-img-frame.has-fading .sr-img-fade-layer.is-active{
  opacity:1;
  transform:scale(1.08);
}
.sr-content{
  position:relative;
  padding:34px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
}
.sr-content:before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--content-bg-image) center/cover no-repeat;
  opacity:.45;
  z-index:0;
}
.service-row.alt .sr-content:before{opacity:.65}
.sr-content > *{
  position:relative;
  z-index:1;
  max-width:72ch;
}
.sr-content h3{
  margin:0 0 12px;
  font-family:var(--heading-font);
  font-size:clamp(22px,2.6vw,var(--section-title-size));
  font-weight:var(--section-title-weight);
  letter-spacing:.01em;
}
.sr-content p{
  margin:0;
  color:var(--muted);
  line-height:var(--body-line-height);
  font-size:var(--body-text-size);
  font-weight:var(--body-text-weight);
}
.service-row.align-left .sr-content{text-align:left;align-items:flex-start}
.service-row.align-center .sr-content{text-align:center;align-items:center}
.service-row.align-right .sr-content{text-align:right;align-items:flex-end}
.service-row.style-tilted{
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  padding:42px 24px;
  background:#000;
  align-items:center;
}
.service-row.style-tilted.alt{
  grid-template-columns:.9fr 1.1fr;
}
.service-row.style-tilted .sr-img{
  aspect-ratio:auto;
  min-height:460px;
  padding:30px;
  background:transparent;
  align-items:center;
  align-self:stretch;
}
.service-row.style-tilted .sr-img-frame{
  max-width:516px;
  width:90%;
  height:90%;
  min-width:280px;
  min-height:0;
  border:var(--tilted-photo-border-width) solid #fff;
  border-radius:var(--tilted-photo-border-radius);
  transform:rotate(-5deg);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}
.service-row.style-tilted.alt .sr-img-frame{
  transform:rotate(5deg);
}
.service-row.style-tilted .sr-content{
  background:transparent;
  padding:24px 8px;
}
.service-row.style-tilted .sr-content:before{
  display:none;
}
#inquiry.service-row.style-tilted{
  align-items:stretch;
}
#inquiry.service-row.style-tilted .sr-img{
  align-self:stretch;
  min-height:0;
}
#inquiry.service-row.style-tilted .sr-img-frame{
  width:auto;
  height:95%;
  min-height:0;
  max-width:100%;
  aspect-ratio:4 / 5;
}
.service-row.style-polaroid{
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  padding:54px 28px;
  align-items:center;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(198,141,84,.14), transparent 58%),
    radial-gradient(ellipse at 84% 26%, rgba(255,255,255,.07), transparent 52%),
    #000;
}
.service-row.style-polaroid.alt{
  grid-template-columns:.95fr 1.05fr;
}
.service-row.style-polaroid .sr-img{
  aspect-ratio:auto;
  min-height:460px;
  padding:36px;
  background:transparent;
  align-self:center;
  align-items:center;
}
.service-row.style-polaroid .sr-img-frame{
  box-sizing:content-box;
  width:360px;
  max-width:74%;
  height:auto;
  aspect-ratio:1 / 1;
  align-self:center;
  border:18px solid #fbf8f2;
  border-bottom-width:86px;
  border-radius:0;
  overflow:visible;
  background-color:#222;
  filter:saturate(.86) contrast(1.05) brightness(1.02);
  box-shadow:
    0 1px 3px rgba(0,0,0,.16),
    0 8px 16px rgba(0,0,0,.16),
    0 22px 46px rgba(0,0,0,.28),
    inset 0 0 54px rgba(0,0,0,.025);
  transition:filter .4s ease, box-shadow .5s ease;
}
.service-row.style-polaroid.service-index-1 .sr-img-frame{transform:rotate(-3deg)}
.service-row.style-polaroid.service-index-2 .sr-img-frame{transform:rotate(2deg)}
.service-row.style-polaroid.service-index-3 .sr-img-frame{transform:rotate(-1.4deg)}
.service-row.style-polaroid.service-index-4 .sr-img-frame{transform:rotate(3.2deg)}
.service-row.style-polaroid.service-index-6 .sr-img-frame{transform:rotate(-2.2deg)}
.service-row.style-polaroid .sr-img-frame:before{
  content:"";
  position:absolute;
  top:-31px;
  left:50%;
  width:92px;
  height:28px;
  transform:translateX(-50%) rotate(-2deg);
  z-index:5;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.12) 2px, rgba(255,255,255,.12) 4px),
    rgba(255,255,240,.58);
  border:1px solid rgba(200,190,170,.24);
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    inset 0 0 8px rgba(255,255,255,.18);
  backdrop-filter:blur(1px);
  pointer-events:none;
}
.service-row.style-polaroid .sr-polaroid-tape{
  content:"";
  position:absolute;
  z-index:5;
  pointer-events:none;
}
.service-row.style-polaroid .sr-polaroid-tape-bottom{
  right:-42px;
  bottom:-101px;
  width:78px;
  height:24px;
  transform:rotate(-35deg);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.12) 2px, rgba(255,255,255,.12) 4px),
    rgba(255,255,240,.58);
  border:1px solid rgba(200,190,170,.24);
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    inset 0 0 8px rgba(255,255,255,.18);
  backdrop-filter:blur(1px);
}
.service-row.style-polaroid.service-index-2 .sr-polaroid-tape-bottom,
.service-row.style-polaroid.service-index-6 .sr-polaroid-tape-bottom{
  right:auto;
  left:-42px;
  transform:rotate(35deg);
}
.service-row.style-polaroid.service-index-3 .sr-polaroid-tape-bottom,
.service-row.style-polaroid.service-index-4 .sr-polaroid-tape-bottom{
  right:-42px;
  left:auto;
  transform:rotate(-35deg);
}
.service-row.style-polaroid.service-index-1 .sr-img-frame:before{
  top:-30px;
  left:50%;
  transform:translateX(-50%) rotate(-2deg);
}
.service-row.style-polaroid.service-index-2 .sr-img-frame:before{
  top:-25px;
  left:auto;
  right:-18px;
  width:78px;
  height:24px;
  transform:rotate(38deg);
}
.service-row.style-polaroid.service-index-3 .sr-img-frame:before{
  top:-18px;
  left:-30px;
  width:78px;
  height:24px;
  transform:rotate(-35deg);
}
.service-row.style-polaroid.service-index-4 .sr-img-frame:before{
  top:-24px;
  left:24px;
  width:86px;
  height:25px;
  transform:rotate(-12deg);
}
.service-row.style-polaroid.service-index-6 .sr-img-frame:before{
  top:-26px;
  left:auto;
  right:18px;
  width:84px;
  height:25px;
  transform:rotate(12deg);
}
.service-row.style-polaroid .sr-img-frame:hover,
.service-row.style-polaroid .sr-img-frame:focus-visible{
  filter:saturate(1) contrast(1.08) brightness(1.04);
  box-shadow:
    0 2px 6px rgba(0,0,0,.16),
    0 12px 22px rgba(0,0,0,.2),
    0 30px 58px rgba(0,0,0,.34);
}
.service-row.style-polaroid .sr-img-frame:after{
  opacity:0;
  transition:opacity 900ms ease;
  background:
    linear-gradient(to right, rgba(0,0,0,.42), transparent 35%),
    linear-gradient(to left, rgba(0,0,0,.42), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,.32), transparent 30%),
    linear-gradient(to top, rgba(0,0,0,.32), transparent 30%),
    radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,.24) 100%);
}
.service-row.style-polaroid .sr-img-frame:hover:after,
.service-row.style-polaroid .sr-img-frame:focus-visible:after{
  opacity:1;
}
.service-row.style-polaroid .sr-polaroid-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:-84px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f2a25;
  font-family:"Permanent Marker", var(--heading-font);
  font-size:28px;
  line-height:1;
  letter-spacing:.02em;
  text-align:center;
  white-space:nowrap !important;
  word-break:normal;
  overflow-wrap:normal;
  z-index:4;
  overflow:visible;
}
.service-row.style-polaroid .sr-content{
  background:transparent;
  padding:24px 8px;
}
.service-row.style-polaroid .sr-content:before{
  display:none;
}
.service-row.style-polaroid .sr-content h3{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  width:fit-content;
  max-width:min(100%, 24ch);
  min-height:46px;
  margin:0 0 18px;
  padding:10px 22px 9px;
  color:#2f2a25;
  font-family:"Permanent Marker", var(--heading-font);
  font-size:clamp(22px,2.2vw,30px);
  line-height:1;
  text-align:center;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.12) 2px, rgba(255,255,255,.12) 4px),
    rgba(255,255,240,.62);
  border:1px solid rgba(200,190,170,.24);
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    inset 0 0 10px rgba(255,255,255,.2);
  backdrop-filter:blur(1px);
  transform:rotate(-1.5deg);
}
.service-row.style-polaroid.alt .sr-content h3,
.service-row.style-polaroid.align-right .sr-content h3{
  align-self:flex-end;
  transform:rotate(1.5deg);
}
.service-row.style-polaroid.align-center .sr-content h3{
  align-self:center;
  transform:rotate(-1deg);
}
#inquiry.service-row.style-polaroid{
  align-items:center;
}
#inquiry.service-row.style-polaroid .sr-img{
  min-height:460px;
  align-self:center;
}
#inquiry.service-row.style-polaroid .sr-img-frame{
  width:360px;
  height:auto;
  max-width:74%;
  aspect-ratio:1 / 1;
}

.sr-text p,
.gallery-intro p{
  margin:0 0 14px;
}
.sr-text ul,
.sr-text ol,
.gallery-intro ul,
.gallery-intro ol{
  margin:0 0 14px 22px;
}
.sr-text a,
.gallery-intro a{
  text-decoration:underline;
}

.editor-polaroid{
  box-sizing:content-box;
  position:relative;
  width:360px;
  max-width:74%;
  aspect-ratio:1 / 1;
  margin:32px auto;
  border:18px solid #fbf8f2;
  border-bottom-width:86px;
  background:#222;
  box-shadow:
    0 1px 3px rgba(0,0,0,.16),
    0 8px 16px rgba(0,0,0,.16),
    0 22px 46px rgba(0,0,0,.28),
    inset 0 0 54px rgba(0,0,0,.025);
  transform:rotate(-2deg);
}
.editor-polaroid img.polaroid{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  margin:0;
  filter:saturate(.86) contrast(1.05) brightness(1.02);
}
.editor-polaroid img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  margin:0;
  max-width:none;
}
.editor-polaroid:before,
.editor-polaroid-tape{
  content:"";
  position:absolute;
  z-index:5;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.12) 2px, rgba(255,255,255,.12) 4px),
    rgba(255,255,240,.58);
  border:1px solid rgba(200,190,170,.24);
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    inset 0 0 8px rgba(255,255,255,.18);
  backdrop-filter:blur(1px);
}
.editor-polaroid:before{
  top:-31px;
  left:50%;
  width:92px;
  height:28px;
  transform:translateX(-50%) rotate(-2deg);
}
.editor-polaroid-tape-bottom{
  right:-42px;
  bottom:-101px;
  width:78px;
  height:24px;
  transform:rotate(-35deg);
}
.editor-polaroid-caption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:calc(-96px - var(--polaroid-caption-shift, 0px));
  height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f2a25;
  font-family:"Permanent Marker", var(--heading-font);
  font-size:28px;
  line-height:1;
  letter-spacing:.02em;
  text-align:center;
  white-space:nowrap !important;
  word-break:normal;
  overflow-wrap:normal;
  z-index:4;
  overflow:visible;
}

.inquiry-panel{
  width:100%;
  margin-top:24px;
  max-width:100%;
  padding:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.32);
  backdrop-filter:blur(6px);
}
.inquiry-form{
  display:flex;
  flex-direction:column;
  gap:16px;
  width:100%;
}
.inquiry-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  width:100%;
}
.inquiry-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  width:100%;
}
.inquiry-form span{
  font-size:14px;
  font-weight:600;
  color:var(--muted);
}
.inquiry-form input,
.inquiry-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 14px;
  font:inherit;
}
.inquiry-message-field{
  grid-column:1 / -1;
}
.inquiry-message{
  margin-bottom:16px;
  padding:12px 14px;
  border-radius:8px;
  font-size:14px;
}
.inquiry-message-success{
  background:rgba(29, 120, 75, .22);
  border:1px solid rgba(73, 176, 118, .35);
}
.inquiry-message-error{
  background:rgba(150, 40, 40, .22);
  border:1px solid rgba(210, 85, 85, .35);
}
.honeypot-field{
  position:absolute !important;
  left:-999em !important;
}

.bio-row,
.reviews-section{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}
.bio-row{
  padding:42px 16px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:var(--tone-d);
}
.bio-row-inner{
  display:grid;
  grid-template-columns:minmax(180px,280px) minmax(0,1fr);
  gap:28px;
  align-items:center;
}
.bio-headshot-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 0;
  min-height:100%;
}
.bio-headshot{
  width:100%;
  max-width:220px;
  aspect-ratio:4 / 5;
  border-radius:var(--tilted-photo-border-radius);
  border:var(--tilted-photo-border-width) solid #fff;
  background:center/cover no-repeat;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
  transform:rotate(-4deg);
}
.bio-copy h3,
.reviews-head h3{
  margin:0 0 12px;
  font-family:var(--heading-font);
  font-size:clamp(22px,2.6vw,var(--section-title-size));
  font-weight:var(--section-title-weight);
}
.bio-copy .sr-text{max-width:72ch}

.reviews-section{
  padding:42px 0 48px;
  border-bottom:1px solid rgba(255,255,255,.1);
  background:var(--tone-b);
}
.reviews-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:22px;
}
.reviews-carousel{
  --review-columns:3;
  position:relative;
}
.reviews-viewport{
  overflow:hidden;
}
.reviews-track{
  display:flex;
  gap:20px;
  transition:transform .35s ease;
}
.review-card,
.review-panel-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:24px;
  backdrop-filter:blur(6px);
  border-radius:20px;
}
.review-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:0 0 calc((100% - (20px * (var(--review-columns) - 1))) / var(--review-columns));
  min-width:0;
}
.review-stars{
  margin-bottom:8px;
  color:#f1d27b;
  letter-spacing:.12em;
  font-size:18px;
}
.review-comment{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  display:inline;
}
.review-comment-wrap{
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.review-comment.is-expanded{
  display:inline;
}
.review-read-more{
  display:inline;
  position:static;
  margin-left:0;
  margin:0;
  padding:0;
  border:0;
  background:none;
  color:var(--muted);
  font:inherit;
  font-size:12px;
  text-decoration:underline;
  text-transform:none;
  cursor:pointer;
}
.review-read-more[hidden]{
  display:none !important;
}
.review-comment-full{
  display:block;
}
.review-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:18px;
  font-size:14px;
}
.review-meta strong{
  font-weight:700;
}
.review-source-line{
  font-style:italic;
}
.review-source-line a{
  text-decoration:underline;
}
.review-strip-arrow{
  display:none;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:52px;
  height:52px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:32px;
  cursor:pointer;
}
.reviews-carousel.has-review-controls .review-strip-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
}
.review-strip-prev{left:-12px}
.review-strip-next{right:-12px}
.reviews-mobile-actions{
  display:none;
  margin-top:20px;
}
.reviews-panel,
.reviews-form-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}
.reviews-panel{
  background:#020202;
  overflow:auto;
}
.reviews-panel-bar{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 22px;
  background:rgba(0,0,0,.92);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.reviews-panel-list{
  max-width:920px;
  margin:0 auto;
  padding:22px 16px 44px;
  display:grid;
  gap:16px;
}
.reviews-form-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}
.reviews-form-dialog{
  position:relative;
  width:min(720px, calc(100vw - 32px));
  margin:7vh auto 0;
  padding:28px;
  background:#090909;
  border:1px solid rgba(255,255,255,.14);
}
.reviews-form-dialog h3{
  margin:0 0 16px;
  font-family:var(--heading-font);
  font-size:clamp(24px,3vw,34px);
}
.review-form-shell{position:relative}
.review-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.review-form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.review-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.review-form span{
  font-size:14px;
  font-weight:600;
  color:var(--muted);
}
.review-form input,
.review-form select,
.review-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 14px;
  font:inherit;
}
.review-form-comments{
  grid-column:1 / -1;
}
.review-form-rating{
  grid-column:1 / -1;
}
.review-stars-input{
  display:flex;
  align-items:center;
  gap:4px;
}
.review-star-input{
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  color:#666b72;
  transition:color .15s ease, transform .15s ease;
}
.review-star-input.is-active,
.review-star-input.is-hover{
  color:#f1b500;
}
.review-star-input:hover{
  transform:scale(1.08);
}
.review-message{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:8px;
}
.review-message-success{
  background:rgba(29, 120, 75, .22);
  border:1px solid rgba(73, 176, 118, .35);
}
.review-success-actions{
  margin-bottom:18px;
}
.review-success-actions p{
  margin:0 0 10px;
}
.review-success-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-section{
  width:100%;
  padding:32px 0 48px;
  background:var(--tone-b);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.gallery-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:20px;
}
.gallery-head-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.gallery-head h3{
  margin:0 0 10px;
  font-family:var(--heading-font);
  font-size:clamp(22px,2.6vw,var(--section-title-size));
  font-weight:var(--section-title-weight);
}
.gallery-fullscreen-exit[hidden]{
  display:none !important;
}
.gallery-controls{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px 20px;
  margin:0 auto 20px;
}
.gallery-views,
.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 auto 20px;
}
.gallery-view,
.gallery-filter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-family:var(--heading-font);
  font-size:var(--button-font-size);
  font-weight:var(--button-font-weight);
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
}
.gallery-view.is-active,
.gallery-filter.is-active,
.gallery-view:hover,
.gallery-filter:hover{
  background:#fff;
  border-color:#fff;
  color:#000;
}
.gallery-grid{
  width:100%;
  column-gap:var(--gallery-gap);
  padding:0;
}
.gallery-track{
  position:relative;
  padding:0 16px;
}
.gallery-style-masonry .gallery-grid{
  column-count:var(--gallery-masonry-columns);
}
.gallery-style-masonry .gallery-card{
  break-inside:avoid;
  margin-bottom:var(--gallery-gap);
}
.gallery-style-grid .gallery-card{
  aspect-ratio:1 / 1;
}
.gallery-style-grid .gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(max(160px, calc(320px * var(--gallery-scale))), 1fr));
  gap:var(--gallery-gap);
}
.gallery-style-strip .gallery-grid{
  display:flex;
  flex-wrap:nowrap;
  overflow-x:auto;
  overflow-y:hidden;
  gap:var(--gallery-gap);
  align-items:center;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.gallery-style-strip .gallery-grid::-webkit-scrollbar{display:none}
.gallery-card{
  width:100%;
  display:block;
  border:0;
  background:transparent;
  padding:0;
  margin:0 0 var(--gallery-gap);
  cursor:pointer;
  overflow:hidden;
}
.gallery-card.is-hidden{
  display:none !important;
}
.gallery-style-grid .gallery-card,
.gallery-style-strip .gallery-card{
  margin:0;
}
.gallery-card img{
  width:100%;
  height:auto;
  display:block;
  transition:transform .2s ease;
}
.gallery-style-grid .gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.gallery-style-strip .gallery-card{
  flex:0 0 auto;
  width:auto;
  height:calc(220px * var(--gallery-scale));
}
.gallery-style-strip .gallery-card img{
  height:100%;
  width:auto;
  max-width:none;
}
.gallery-card:hover img{
  transform:scale(1.03);
}
.gallery-empty{
  color:var(--muted);
  padding:0 16px;
}
.gallery-strip-edge{
  display:none;
  pointer-events:auto;
}
.gallery-style-strip{
  position:relative;
}
.gallery-style-strip .gallery-strip-edge{
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border-radius:999px;
  border:0;
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:32px;
  z-index:4;
  cursor:pointer;
}
.gallery-style-strip .gallery-strip-left{
  left:8px;
}
.gallery-style-strip .gallery-strip-right{
  right:8px;
}
.gallery-modal[hidden]{
  display:none;
}
.gallery-modal{
  position:fixed;
  inset:0;
  z-index:99999;
}
.gallery-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.86);
}
.gallery-modal-dialog{
  position:relative;
  z-index:1;
  width:min(92vw, 1400px);
  height:min(90vh, 900px);
  margin:4vh auto;
  display:grid;
  grid-template-columns:72px 1fr 72px;
  align-items:center;
  overflow-y:auto;
}
.gallery-modal-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
}
.gallery-modal-image{
  max-width:100%;
  max-height:min(96svh, 96vh);
  object-fit:contain;
}
.gallery-nav,
.gallery-close{
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  width:54px;
  height:54px;
  border-radius:999px;
  font-size:32px;
  cursor:pointer;
}
.gallery-prev,
.gallery-next{
  position:sticky;
  top:50%;
}
.gallery-close{
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.gallery-modal-meta{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(0,0,0,.62);
  color:#fff;
  text-align:center;
}
.gallery-modal-category{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.75);
  margin-bottom:6px;
}
.gallery-modal-description{
  font-size:18px;
  line-height:1.5;
}

.phone-modal[hidden]{
  display:none;
}
.phone-modal{
  position:fixed;
  inset:0;
  z-index:99998;
}
.phone-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}
.phone-modal-dialog{
  position:relative;
  z-index:1;
  width:min(92vw, 420px);
  margin:18vh auto 0;
  padding:28px 24px 24px;
  border-radius:20px;
  background:#0d0d0d;
  border:1px solid rgba(255,255,255,.14);
  text-align:center;
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.phone-modal-close{
  position:absolute;
  top:12px;
  right:12px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
.phone-modal-title{
  font-family:var(--heading-font);
  font-size:clamp(24px,3vw,32px);
  font-weight:var(--section-title-weight);
}
.phone-modal-number{
  margin-top:12px;
  font-family:var(--heading-font);
  font-size:clamp(22px,3vw,30px);
  font-weight:var(--button-font-weight);
  letter-spacing:.03em;
}

.site-footer{
  position:relative;
  border-top:1px solid rgba(255,255,255,.10);
  color:#f3f3f3;
}
.footerbg{
  position:absolute;
  inset:0;
  background:center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
}
.footerinner{
  position:relative;
  padding:48px 40px 26px;
}
.footer-row{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:flex-start;
  width:100%;
  gap:24px;
}
.footer-left{justify-self:start;max-width:520px}
.footer-center{justify-self:center;display:flex;align-items:center;margin-top:2px}
.footer-right{justify-self:end}
.footertitle{
  font-family:var(--heading-font);
  font-weight:var(--section-title-weight);
  font-size:var(--section-title-size);
  margin:0;
}
.footertext{margin:0;color:rgba(255,255,255,.80);line-height:var(--body-line-height);font-size:var(--body-text-size);font-weight:var(--body-text-weight)}
.footersocial{
  display:flex;
  gap:16px;
  margin-top:14px;
}
.footersocial a{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  font-size:16px;
  opacity:.9;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.footersocial a:hover,
.footersocial a:focus-visible{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.7);
  color:#fff;
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 10px 20px rgba(0,0,0,.24);
}
.footer-inquiry{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--heading-font);
  font-weight:var(--button-font-weight);
  font-size:var(--button-font-size);
  border:1px solid #fff;
  border-radius:999px;
  padding:14px 22px;
}
.footer-inquiry:hover{
  background:#fff;
  color:#000;
}
.footerlinks{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  font-family:var(--heading-font);
  font-weight:var(--menu-font-weight);
}
.footerlinks a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:4px 0;
  border-bottom:1px solid transparent;
  transition:transform .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}
.footerlinks a:hover,
.footerlinks a:focus-visible{
  color:#fff;
  opacity:1;
  border-color:rgba(255,255,255,.45);
  transform:translateX(4px);
}
.fineprint{
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  justify-content:center;
  gap:6px;
  font-size:14px;
  opacity:.75;
}

.page-content{
  padding:48px 16px;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1;transform:translateY(0)}

body.cursor-effects-enabled,
body.cursor-effects-enabled *{
  cursor:none;
}

body.gallery-open,
body.gallery-open *{
  cursor:auto !important;
}

body.gallery-open #saw-cursor,
body.gallery-open #sawdust{
  display:none !important;
}

@media (hover:none), (pointer:coarse){
  body.cursor-effects-enabled,
  body.cursor-effects-enabled *{
    cursor:auto !important;
  }
  #saw-cursor,
  #sawdust{
    display:none !important;
  }
}

body.gallery-open{
  overflow:hidden;
}

.gallery-section:fullscreen,
.gallery-section:-webkit-full-screen{
  padding:24px 0 32px;
  height:100svh;
  overflow-y:auto;
}

.gallery-section:fullscreen .gallery-track,
.gallery-section:-webkit-full-screen .gallery-track{
  height:auto;
  min-height:calc(100svh - 120px);
}

.gallery-section:fullscreen .gallery-head,
.gallery-section:-webkit-full-screen .gallery-head{
  display:none;
}

.gallery-section:fullscreen .gallery-filters,
.gallery-section:-webkit-full-screen .gallery-filters{
  position:sticky;
  top:0;
  z-index:5;
  padding-top:8px;
  padding-bottom:16px;
  background:linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.78) 70%, rgba(0,0,0,0));
}

.gallery-section:fullscreen.gallery-style-strip .gallery-grid,
.gallery-section:-webkit-full-screen.gallery-style-strip .gallery-grid{
  min-height:calc(100svh - 120px);
  align-items:center;
}

.gallery-section:fullscreen.gallery-style-strip .gallery-card,
.gallery-section:-webkit-full-screen.gallery-style-strip .gallery-card{
  height:calc(100svh - 180px);
  max-height:none;
}

.gallery-section:fullscreen.gallery-style-strip .gallery-card img,
.gallery-section:-webkit-full-screen.gallery-style-strip .gallery-card img{
  height:100%;
}

#saw-cursor{
  position:fixed;
  top:0;
  left:0;
  width:var(--cursor-size);
  height:var(--cursor-size);
  background:center/contain no-repeat;
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:9999;
  filter:drop-shadow(0 0 6px rgba(0,0,0,0.95)) drop-shadow(0 0 12px rgba(0,0,0,0.85)) drop-shadow(0 0 28px rgba(255,255,255,0.35)) drop-shadow(0 0 28px rgba(255,255,255,0.15));
}
#saw-cursor.spin{
  animation-name:var(--cursor-spin-animation-name, waxpoetic-sawspin-ccw);
  animation-duration:var(--cursor-spin-duration, .5s);
  animation-timing-function:linear;
  animation-iteration-count:infinite;
  animation-play-state:var(--cursor-spin-play-state, running);
}
@keyframes waxpoetic-sawspin-ccw{to{transform:translate(-50%,-50%) rotate(-360deg)}}
@keyframes waxpoetic-sawspin-cw{to{transform:translate(-50%,-50%) rotate(360deg)}}

#content{
  padding-top:calc(var(--header-height) + var(--home-special-logo-offset-px));
}

main [id]{
  scroll-margin-top:calc(var(--header-height) + 18px);
}

#sawdust{
  position:fixed;
  top:0;
  left:0;
  width:0;
  height:0;
  pointer-events:none;
  z-index:9998;
}
.sawdust-particle{
  position:absolute;
  width:6px;
  height:3px;
  background:rgba(255,230,160,.95);
  border-radius:999px;
  box-shadow:0 0 10px rgba(255,200,120,.7);
  animation:sawdust-fly .75s linear forwards;
}
@keyframes sawdust-fly{
  to{
    transform:translate(var(--dx, -140px), var(--dy, -90px)) scale(var(--sc, .2)) rotate(var(--rot, -35deg));
    opacity:0;
  }
}

header .iconbtn, header .iconbtn *,
.drawer, .drawer *,
.site-footer, .site-footer *{
  cursor:auto !important;
}

.phonebtn i{font-size:22px;line-height:1}

@media (max-width:900px){
  :root{--header-height:82px}
  body{font-size:20px}
  .buckets{grid-template-columns:1fr}
  .bucket{border-right:0;border-top:1px solid rgba(255,255,255,.10)}
  .bucket:first-child{border-top:0}
  .buckets.buckets-style-border-box .bucket{border:1px solid var(--muted)}
  .buckets.buckets-style-border-box .bucket:first-child{border-top:1px solid var(--muted)}
  .buckets.buckets-style-polaroid{
    grid-template-columns:1fr;
    gap:40px;
    padding:42px 18px 52px;
  }
  .buckets.buckets-style-polaroid .bucket,
  .buckets.buckets-style-polaroid .bucket:first-child{
    border-top:0;
  }
  .buckets.buckets-style-polaroid .polaroid-card,
  .buckets.buckets-style-polaroid .bucket .inner{
    width:78%;
    max-width:420px;
  }
  .buckets.buckets-style-polaroid .polaroid-card:before{
    opacity:1;
  }
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(1) .polaroid-card:before{
    top:-13px;
    left:50%;
    transform:translateX(-50%) rotate(-2deg);
  }
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(2) .polaroid-card:before{
    top:-11px;
    left:auto;
    right:-12px;
    width:72px;
    height:23px;
    transform:rotate(38deg);
  }
  .buckets.buckets-style-polaroid .bucket-shell:nth-child(3) .polaroid-card:before{
    top:18px;
    left:-16px;
    width:72px;
    height:23px;
    transform:rotate(-35deg);
  }
  .buckets.buckets-style-polaroid .bucket h2{
    font-size:clamp(22px,7vw,30px);
  }
  .buckets.buckets-style-polaroid .bucket p{
    font-size:18px;
  }
  .bucket h2{font-size:clamp(22px,6vw,30px)}
  .bucket p{font-size:20px}
  .buckets.buckets-style-polaroid .bucket p{font-size:18px}
  .hero{min-height:calc((100svh - var(--header-height)) * (var(--hero-visible-height, 100) / 100))}
  .hero h1{font-size:clamp(28px,7vw,40px)}
  .hero p{font-size:20px}
  .service-row,.service-row.alt{grid-template-columns:1fr}
  .service-row.style-tilted,
  .service-row.style-tilted.alt,
  .service-row.style-polaroid,
  .service-row.style-polaroid.alt{grid-template-columns:1fr;padding:24px 16px}
  .service-row.alt .sr-img,.service-row.alt .sr-content{order:0}
  .service-row.style-tilted .sr-img{min-height:320px;padding:16px}
  .service-row.style-polaroid .sr-img{min-height:340px;padding:24px 18px}
  .service-row.style-polaroid .sr-img-frame,
  #inquiry.service-row.style-polaroid .sr-img-frame{width:min(78%, 420px)}
  .editor-polaroid{width:min(78%, 420px);max-width:none}
  .sr-content{padding:30px 16px}
  .sr-content h3{font-size:clamp(24px,6.5vw,34px)}
  .sr-content p{font-size:20px}
  .inquiry-grid{grid-template-columns:1fr}
  .bio-row-inner{display:block}
  .bio-headshot-wrap{
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:154px;
    padding:0;
    margin:0 16px 12px 0;
  }
  .bio-headshot{
    width:122px;
    max-width:none;
    aspect-ratio:1 / 1.15;
    transform:rotate(-3deg);
  }
  .reviews-head{flex-direction:column;align-items:flex-start}
  .reviews-track{display:grid;grid-template-columns:1fr;transform:none !important}
  .review-card:nth-child(n+4){display:none}
  .review-card{flex-basis:auto}
  .review-strip-arrow{display:none !important}
  .reviews-mobile-actions{display:block}
  .review-form-grid{grid-template-columns:1fr}
  .reviews-form-dialog{margin:2vh auto 0;max-height:96vh;overflow:auto;padding:22px}
  .gallery-head{flex-direction:column;align-items:flex-start}
  .gallery-head-actions{justify-content:flex-start}
  .gallery-fullscreen-toggle{display:none}
  .gallery-style-masonry .gallery-grid{column-count:max(1, min(3, var(--gallery-masonry-columns)))}
  .gallery-style-grid .gallery-grid{grid-template-columns:repeat(auto-fit, minmax(max(140px, calc(240px * var(--gallery-scale))), 1fr))}
  .gallery-modal-dialog{grid-template-columns:1fr;height:auto;min-height:70vh}
  .gallery-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:2}
  .gallery-prev{left:12px}
  .gallery-next{right:12px}
  .quote-row{padding:88px 0}
  .philo-quote p{font-size:clamp(24px,6.2vw,34px)}
  .philo-quote .qmark{font-size:220px}
  .footer-row{grid-template-columns:1fr;text-align:center}
  .footer-left,.footer-right{justify-self:center}
  .footerlinks{align-items:center}
  .footersocial{justify-content:center}
  .footertext{font-size:20px}
  .fineprint{font-size:15px}
}
