* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  --accent: #22d3ee;
  --accent-light: #0e7fa8;
  --accent-rgb: 34, 211, 238;
  --dark: #0a1526;
  --dark2: #141e30;
  --ink: #0b1526;
  --muted: #5a6b82;
  --line: #e4eaf1;
  --soft: #f6f8fb;
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.coral {
  --accent: #f59180;
  --accent-light: #ad4639;
  --accent-rgb: 245, 145, 128;
  --soft: #faf8f7;
  --dark: #14202f;
  --dark2: #202d3d;
}
::selection {
  background: var(--accent);
  color: var(--dark);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(48px, 5.5vw, 74px);
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 3.7vw, 48px);
  font-weight: 600;
}
h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}
p {
  color: var(--muted);
}
img,
video {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 5px;
}
.container {
  width: min(1160px, calc(100% - 112px));
  margin: auto;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-light);
  margin-bottom: 17px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 53px;
  padding: 16px 23px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: #071522;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(var(--accent-rgb), 0.2);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent-light);
  text-underline-offset: 5px;
  line-height: 1.4;
  min-height: 35px;
}
.textlink:hover {
  text-decoration: underline;
}
.textlink svg {
  width: 18px;
  height: 18px;
}
.nav-shell {
  background: #ffffffed;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(14px);
}
.navigation {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.06em;
}
.brand > span:last-child {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.brand small {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-light);
}
.brand-mark i {
  width: 4px;
  height: 21px;
  display: block;
  background: currentColor;
  border-radius: 1px;
}
.brand-mark i:nth-child(2) {
  height: 30px;
}
.brand-mark i:nth-child(3) {
  height: 14px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navlinks > a:not(.btn) {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.navlinks > a:hover:not(.btn) {
  color: var(--accent-light);
}
.navigation .btn {
  min-height: 45px;
  font-size: 14px;
  padding: 12px 18px;
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}
.hero .intro {
  max-width: 425px;
  margin: 25px 0 30px;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.coral .hero {
  background: #fff;
}
.coral .hero-copy {
  max-width: 550px;
}
.coral .hero h1 {
  font-size: clamp(48px, 5.9vw, 77px);
}
.promise-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}
.promise-strip .container {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.promise-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
.promise-strip svg {
  color: var(--accent-light);
  width: 20px;
  height: 20px;
}
.promise-strip .strip-location {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.section {
  padding: 88px 0;
}
.comparison-section {
  background: var(--soft);
}
.comparison-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 65px;
  align-items: center;
}
.comparison-copy h2 {
  margin-bottom: 21px;
}
.comparison-copy p {
  max-width: 365px;
  font-size: 17px;
}
.comparison-copy .textlink {
  margin-top: 24px;
}
.comparison-box {
  min-width: 0;
}
.comparison-frame {
  --reveal: 50%;
  position: relative;
  aspect-ratio: 1206/904;
  width: 100%;
  background: #172230;
  overflow: hidden;
  border: 1px solid #ccd7e3;
  border-radius: 7px;
  isolation: isolate;
}
.comparison-frame .comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-layer {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  overflow: hidden;
}
.before-layer img {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 290.0442478%;
  top: -95.0221239%;
  left: 0;
  object-fit: fill;
}
.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  background: var(--accent);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 2;
}
.comparison-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 15px #0a152645;
}
.comparison-knob svg {
  width: 24px;
  height: 24px;
}
.comparison-tag {
  position: absolute;
  top: 18px;
  padding: 6px 11px;
  background: #0a1526d9;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  border: 1px solid #ffffff30;
  border-radius: 3px;
  z-index: 3;
  pointer-events: none;
  line-height: 1.4;
}
.comparison-tag.before {
  left: 18px;
}
.comparison-tag.after {
  right: 18px;
}
.reveal-range {
  position: absolute;
  z-index: 5;
  inset: 0 auto 0-23px;
  width: calc(100% + 46px);
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
  appearance: none;
  background: transparent;
}
.reveal-range::-webkit-slider-thumb {
  appearance: none;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 0;
}
.reveal-range::-moz-range-thumb {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 0;
}
.reveal-range::-moz-range-track {
  background: transparent;
  border: 0;
}
.comparison-frame:focus-within {
  outline: 3px solid var(--accent-light);
  outline-offset: 5px;
}
.comparison-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.compare-buttons {
  display: flex;
  gap: 5px;
}
.compare-buttons button {
  border: 1px solid transparent;
  background: transparent;
  padding: 7px 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--muted);
  border-radius: 4px;
  min-height: 38px;
}
.compare-buttons button[aria-pressed="true"] {
  background: white;
  border-color: #d3dce8;
  color: var(--ink);
}
.comparison-help {
  font-size: 12px;
  color: var(--muted);
}
.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.project-caption strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: var(--ink);
}
.gallery-section {
  background: #fff;
}
.contact-section {
  padding: 70px 0;
  background: var(--dark);
  color: white;
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}
.contact-layout h2 {
  font-size: 48px;
  max-width: 650px;
}
.contact-layout p {
  color: #afc0d6;
  margin-top: 20px;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.contact-buttons .btn {
  white-space: nowrap;
  font-size: 17px;
  padding: 18px 26px;
}
.contact-buttons .textlink {
  color: #afc0d6;
  font-size: 14px;
}
.site-footer {
  background: #07111f;
  color: white;
  padding: 45px 0 28px;
}
.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}
.site-footer .brand {
  font-size: 27px;
}
.site-footer .brand-mark {
  color: var(--accent);
}
.footer-top p {
  font-size: 13px;
  max-width: 310px;
  color: #8fa2bb;
  margin-top: 16px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid #253345;
  margin-top: 34px;
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #7f94ae;
  letter-spacing: 0.04em;
}
.footer-bottom a {
  font-family: "Space Grotesk", sans-serif;
  color: #c7d3e3;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom svg {
  width: 17px;
  height: 17px;
}
.mobile-call {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: absolute;
  left: 12px;
  top: -100px;
  background: white;
  color: #0a1526;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.coral .section {
  padding: 70px 0;
}
.coral .comparison-layout {
  grid-template-columns: 1.28fr 1fr;
  gap: 60px;
}
.coral .comparison-copy {
  order: 2;
}
.coral .comparison-box {
  order: 1;
}
.coral .comparison-section {
  background: var(--dark);
  color: white;
}
.coral .comparison-copy p {
  color: #afc0d6;
}
.coral .comparison-copy .eyebrow,
.coral .comparison-copy .textlink {
  color: var(--accent);
}
.coral .project-caption {
  border-color: #374454;
  color: #afc0d6;
}
.coral .project-caption strong {
  color: white;
}
.coral .comparison-help,
.coral .compare-buttons button {
  color: #b1c0d3;
}
.coral .compare-buttons button[aria-pressed="true"] {
  color: var(--dark);
}
.coral .contact-section {
  background: var(--soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.coral .contact-layout p,
.coral .contact-buttons .textlink {
  color: var(--muted);
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 64px);
  }
  .navigation {
    gap: 20px;
  }
  .navlinks {
    gap: 19px;
  }
  .brand > span:last-child {
    display: block;
  }
  .brand small {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .hero h1,
  .coral .hero h1 {
    font-size: 59px;
  }
  .comparison-layout {
    gap: 38px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .section {
    padding: 74px 0;
  }
  .contact-layout h2 {
    font-size: 42px;
  }
  .contact-buttons .btn {
    font-size: 15px;
  }
  .footer-nav {
    gap: 19px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .navigation {
    min-height: 76px;
    gap: 12px;
  }
  .brand {
    font-size: 25px;
  }
  .brand > span:last-child {
    display: flex;
    gap: 7px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.04em;
  }
  .brand-mark {
    gap: 3px;
  }
  .brand-mark i {
    width: 3px;
    height: 18px;
  }
  .brand-mark i:nth-child(2) {
    height: 26px;
  }
  .brand-mark i:nth-child(3) {
    height: 12px;
  }
  .navlinks {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary svg {
    width: 23px;
    height: 23px;
  }
  .mobile-menu > div {
    position: absolute;
    right: 0;
    top: 53px;
    width: 250px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 25px #07111f15;
    padding: 15px;
    color: var(--ink);
  }
  .mobile-menu > div > a:not(.btn) {
    padding: 11px 8px;
    font-size: 15px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero h1,
  .coral .hero h1 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.11em;
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.25);
    border-radius: 100px;
    background: rgba(var(--accent-rgb), 0.05);
    margin-bottom: 23px;
  }
  .hero .intro {
    font-size: 16px;
    line-height: 1.7;
    margin: 21px auto 26px;
    max-width: 365px;
  }
  .hero-actions {
    justify-content: center;
    gap: 13px;
  }
  .hero-actions .btn {
    width: 100%;
    border-radius: 12px;
    padding: 17px;
  }
  .hero-actions .textlink {
    font-size: 14px;
  }
  .coral .hero-copy {
    max-width: none;
  }
  .promise-strip .container {
    padding: 19px 0;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .promise-strip span {
    font-size: 12px;
    gap: 6px;
  }
  .promise-strip svg {
    width: 15px;
    height: 15px;
  }
  .promise-strip .strip-location {
    display: none;
  }
  .section,
  .coral .section {
    padding: 55px 0;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 35px;
    letter-spacing: -0.045em;
  }
  h3 {
    font-size: 23px;
  }
  .comparison-layout,
  .coral .comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: stretch;
  }
  .comparison-copy,
  .coral .comparison-copy {
    order: 0;
  }
  .coral .comparison-box {
    order: 1;
  }
  .comparison-copy h2 {
    margin-bottom: 19px;
  }
  .comparison-copy p {
    font-size: 16px;
    max-width: none;
  }
  .comparison-copy .textlink {
    margin-top: 17px;
  }
  .comparison-frame {
    border-radius: 16px;
  }
  .comparison-tag {
    font-size: 10px;
    top: 12px;
    padding: 5px 8px;
  }
  .comparison-tag.before {
    left: 12px;
  }
  .comparison-tag.after {
    right: 12px;
  }
  .comparison-controls {
    display: block;
    margin-top: 13px;
  }
  .compare-buttons {
    justify-content: center;
    gap: 7px;
  }
  .compare-buttons button {
    padding: 9px 12px;
    font-size: 14px;
    min-height: 42px;
  }
  .comparison-help {
    text-align: center;
    margin-top: 7px;
    font-size: 12px;
  }
  .project-caption {
    font-size: 12px;
    gap: 15px;
  }
  .project-caption span:last-child {
    text-align: right;
  }
  .contact-section {
    padding: 50px 0;
  }
  .contact-layout {
    display: block;
  }
  .contact-layout h2 {
    font-size: 38px;
  }
  .contact-layout p {
    font-size: 16px;
  }
  .contact-buttons {
    margin-top: 27px;
    align-items: stretch;
  }
  .contact-buttons .btn {
    font-size: 17px;
    border-radius: 12px;
    padding: 17px;
  }
  .contact-buttons .textlink {
    justify-content: center;
    font-size: 14px;
  }
  .site-footer {
    padding: 36px 0 115px;
  }
  .footer-top {
    display: block;
  }
  .footer-nav {
    margin-top: 29px;
    gap: 22px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    margin-top: 28px;
    display: block;
    font-size: 9px;
  }
  .footer-bottom a {
    margin-top: 18px;
    font-size: 14px;
  }
  .mobile-call {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: #ffffffed;
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 20px;
    padding-bottom: max(11px, env(safe-area-inset-bottom));
  }
  .mobile-call > span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    line-height: 1.45;
  }
  .mobile-call small {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    color: var(--muted);
  }
  .mobile-call .btn {
    padding: 12px 20px;
    min-height: 45px;
    font-size: 14px;
    border-radius: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
body.family {
  --accent: #f59180;
  --accent-light: #a54235;
  --accent-rgb: 245, 145, 128;
  --soft: #faf6f3;
  --line: #e7e1dd;
  --muted: #5d6570;
  --ink: #14202f;
  --dark: #14202f;
  --dark2: #202d3d;
}
.family h1 em,
.family h2 em {
  font-style: normal;
  color: var(--accent-light);
}
.family .container {
  max-width: 1160px;
}
.family .section {
  padding: 82px 0;
}
.family .hero-copy {
  min-width: 0;
}
.family .hero h1 {
  font-size: clamp(49px, 5.65vw, 74px);
  letter-spacing: -0.045em;
}
.family .hero .intro {
  margin: 24px 0 27px;
  max-width: 425px;
  font-size: 17px;
}
.family .hero-actions {
  gap: 16px;
}
.family .hero-actions .btn {
  padding: 16px 20px;
}
.family .hero-actions .textlink {
  font-size: 14px;
}
.family .btn {
  border-radius: 5px;
}
.family .eyebrow {
  letter-spacing: 0.12em;
}
.photo-open {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  background: #e8e2da;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  text-align: inherit;
  cursor: zoom-in;
  color: white;
}
.photo-open img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.expand-photo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #14202fd9;
  border: 1px solid #ffffff50;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.expand-photo svg {
  width: 16px;
  height: 16px;
}
.photo-open:hover .expand-photo {
  background: var(--accent);
  color: var(--dark);
}
.photo-open:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 4px;
}
.family .comparison-frame {
  aspect-ratio: 1206/904;
}
.family .comparison-frame .before-layer img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.family .comparison-frame .comparison-after {
  object-fit: contain;
}
.family .comparison-copy {
  min-width: 0;
}
.family .comparison-copy .eyebrow {
  font-size: 11px;
}
.family .comparison-section {
  border-top: 1px solid #ffffff0f;
  border-bottom: 1px solid #ffffff0f;
}
.family .comparison-controls button {
  min-height: 44px;
}
.family .comparison-frame:focus-within {
  outline-color: var(--accent);
}
.family .comparison-layout {
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
}
.family .comparison-copy h2 {
  font-size: 44px;
}
.family .comparison-copy p {
  font-size: 16px;
}
.family .project-caption {
  font-size: 12px;
}
.family .comparison-copy h2 em {
  color: inherit;
}
.project-photo figcaption,
.project-video figcaption {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  line-height: 1.35;
  padding-top: 13px;
  color: var(--ink);
}
.project-photo figcaption small,
.project-video figcaption small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}
.portrait-video {
  width: 100%;
  aspect-ratio: 480/854;
  background: #14202f;
  border-radius: 7px;
  overflow: hidden;
}
.family .portrait-video video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 480/854;
  object-fit: contain;
  max-width: 100%;
}
.family .gallery-section {
  background: white;
}
.family .contact-section {
  background: #f8e4dc;
  border-color: #efcec3;
}
.family .contact-layout h2 {
  font-size: 44px;
}
.family .contact-layout .eyebrow {
  color: var(--accent-light);
}
.family .contact-buttons .btn {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.family .site-footer {
  background: var(--dark);
}
.photo-dialog {
  background: #14202f;
  color: white;
  padding: 18px;
  border: 1px solid #536072;
  border-radius: 12px;
  width: fit-content;
  max-width: 94vw;
  max-height: 94dvh;
}
.photo-dialog::backdrop {
  background: #0a1526db;
  backdrop-filter: blur(5px);
}
.photo-dialog img {
  display: block;
  width: auto;
  max-width: min(86vw, 1200px);
  height: auto;
  max-height: 72dvh;
  object-fit: contain;
  margin: auto;
  border-radius: 4px;
}
.photo-dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}
.photo-close {
  background: #263547;
  border: 1px solid #566171;
  color: white;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 5px;
}
.photo-dialog-caption {
  font-size: 13px;
  color: #c1ccda;
  max-width: 740px;
  margin-top: 13px;
}
.photo-close:focus-visible {
  outline-color: var(--accent);
}
.area-compact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.area-compact h2 {
  font-size: 41px;
}
.area-compact p {
  max-width: 415px;
}
.area-compact .textlink {
  margin-top: 18px;
}
body.easygoing {
  --accent: #ef8b79;
  --accent-light: #9c3f32;
  --accent-rgb: 239, 139, 121;
  --soft: #fcf5f0;
}
.easygoing .nav-shell {
  background: #fcf5f0;
}
.easygoing .hero {
  background: var(--soft);
}
.compact-hero {
  padding-top: 50px;
  padding-bottom: 26px;
}
.easygoing .hero-copy {
  max-width: 870px;
  text-align: center;
  margin: auto;
}
.easygoing .hero h1 {
  font-size: clamp(46px, 5.2vw, 68px);
}
.easygoing .hero .intro {
  max-width: 510px;
  margin: 20px auto 24px;
  font-size: 16px;
}
.easygoing .hero-actions {
  justify-content: center;
}
.hero-photo-band {
  display: grid;
  grid-template-columns: 0.749fr 1.21673fr 0.75fr;
  gap: 16px;
  align-items: start;
  max-width: 795px;
  margin: 33px auto 0;
}
.hero-photo-band > .photo-open:nth-child(1) {
  transform: rotate(-2deg);
  margin-top: 10px;
}
.hero-photo-band > .photo-open:nth-child(3) {
  transform: rotate(2deg);
  margin-top: 10px;
}
.hero-photo-band .photo-open {
  box-shadow: 0 8px 25px #14202f0c;
}
.compact-signoff {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 795px;
  margin: 24px auto 0;
  gap: 20px;
}
.compact-signoff > span {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: var(--muted);
}
.compact-signoff .textlink {
  font-size: 13px;
}
.easygoing .promise-strip {
  background: #fff;
  border-top-color: #eaddd4;
}
.easygoing .section {
  padding: 62px 0;
}
.compact-services {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 85px;
  align-items: start;
}
.compact-services h2 {
  font-size: 44px;
}
.section-intro {
  font-size: 16px;
  max-width: 315px;
  margin-top: 20px;
}
.compact-services > .container {
  max-width: none;
}
.compact-services > div > .textlink {
  margin-top: 21px;
}
.service-accordions {
  border-top: 1px solid var(--line);
}
.service-accordions details {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.service-accordions summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  line-height: 1.25;
}
.service-accordions summary::-webkit-details-marker {
  display: none;
}
.service-accordions summary small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.accordion-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  background: var(--soft);
  color: var(--accent-light);
  border-radius: 6px;
}
.accordion-icon svg {
  width: 24px;
  height: 24px;
}
.accordion-plus {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--accent-light);
}
.service-accordions details[open] .accordion-plus {
  transform: rotate(45deg);
}
.service-accordions details p {
  padding: 0 15px 15px 61px;
  font-size: 14px;
}
.easygoing .comparison-section {
  background: #f8dfd5;
  color: var(--ink);
}
.easygoing .comparison-layout {
  grid-template-columns: 0.9fr 1.15fr;
  gap: 65px;
}
.easygoing .comparison-copy {
  order: 0;
}
.easygoing .comparison-box {
  order: 1;
}
.easygoing .comparison-copy h2 {
  font-size: 43px;
}
.easygoing .comparison-copy .eyebrow,
.easygoing .comparison-copy .textlink {
  color: var(--accent-light);
}
.easygoing .comparison-copy p {
  color: #535c67;
}
.easygoing .project-caption {
  border-color: #d8bcb0;
  color: #535c67;
}
.easygoing .project-caption strong {
  color: var(--ink);
}
.easygoing .comparison-help,
.easygoing .compare-buttons button {
  color: #535c67;
}
.easygoing .comparison-frame {
  border-color: #d2b0a1;
}
.easygoing .comparison-frame:focus-within {
  outline-color: var(--accent-light);
}
.easygoing-work {
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.56206fr;
  gap: 38px;
  align-items: start;
}
.easygoing-work-copy h2 {
  font-size: 40px;
}
.easygoing-work-copy > p:not(.eyebrow) {
  font-size: 15px;
  margin-top: 20px;
  max-width: 270px;
}
.easygoing-work-copy > .textlink {
  margin-top: 22px;
}
.easygoing-work-photos {
  display: grid;
  gap: 23px;
}
.easygoing .project-photo figcaption,
.easygoing .project-video figcaption {
  font-size: 15px;
}
.easygoing .project-video figcaption small {
  font-size: 11px;
}
.easygoing .area-compact {
  border-top: 1px solid var(--line);
  background: var(--soft);
}
.easygoing .contact-section {
  background: var(--dark);
  color: white;
  border: 0;
}
.easygoing .contact-section .eyebrow {
  color: var(--accent);
}
.easygoing .contact-layout p,
.easygoing .contact-buttons .textlink {
  color: #bcc9d9;
}
.easygoing .contact-buttons .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.easygoing .site-footer {
  border-top: 1px solid #ffffff20;
}
@media (max-width: 1100px) and (min-width: 761px) {
  .family .hero h1 {
    font-size: 60px;
  }
  .family .hero-actions .btn {
    font-size: 14px;
  }
  .family .hero .intro {
    font-size: 16px;
  }
  .family .comparison-layout {
    gap: 35px;
  }
  .family .comparison-copy h2 {
    font-size: 38px;
  }
  .compact-services {
    gap: 40px;
  }
  .easygoing-work {
    gap: 25px;
    grid-template-columns: 0.9fr 1fr 0.56206fr;
  }
  .easygoing-work-copy h2 {
    font-size: 34px;
  }
  .family .contact-layout h2 {
    font-size: 38px;
  }
}
@media (max-width: 760px) {
  .family .section {
    padding: 53px 0;
  }
  .family .hero h1 {
    font-size: 50px;
    line-height: 1.06;
  }
  .family .hero .intro {
    margin: 20px auto 23px;
    font-size: 16px;
  }
  .family .hero-actions {
    gap: 10px;
  }
  .family .hero-copy {
    text-align: center;
  }
  .family .hero-actions .btn {
    border-radius: 12px;
    min-height: 54px;
    padding: 16px 12px;
    font-size: 15px;
  }
  .family .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 21px;
  }
  .photo-open {
    border-radius: 14px;
  }
  .family .comparison-layout {
    display: flex;
    gap: 25px;
  }
  .family .comparison-copy {
    order: 0;
  }
  .family .comparison-copy h2 {
    font-size: 35px;
  }
  .family .comparison-copy p {
    font-size: 15px;
  }
  .family .project-caption {
    font-size: 11px;
  }
  .project-photo figcaption,
  .project-video figcaption {
    font-size: 15px;
  }
  .project-photo figcaption small,
  .project-video figcaption small {
    font-size: 11px;
  }
  .portrait-video {
    border-radius: 13px;
  }
  .family .portrait-video video {
    height: 100%;
    width: 100%;
  }
  .family .contact-layout h2 {
    font-size: 37px;
  }
  .family .contact-section {
    padding: 47px 0;
  }
  .family .contact-layout p {
    font-size: 15px;
  }
  .family .mobile-call .btn {
    border-radius: 9px;
  }
  .family .brand small {
    letter-spacing: 0.025em;
  }
  .family .comparison-controls button {
    font-size: 13px;
    padding: 8px 13px;
  }
  .family .footer-bottom {
    font-size: 9px;
  }
  .area-compact .container {
    display: block;
  }
  .area-compact h2 {
    font-size: 35px;
    margin-bottom: 21px;
  }
  .area-compact p {
    font-size: 15px;
  }
  .area-compact .textlink {
    font-size: 14px;
  }
  .compact-hero {
    padding-top: 32px;
    padding-bottom: 24px;
  }
  .easygoing .hero h1 {
    font-size: 46px;
  }
  .easygoing .hero .intro {
    font-size: 15px;
  }
  .hero-photo-band {
    gap: 9px;
    margin-top: 29px;
    grid-template-columns: 0.749fr 1.21673fr 0.75fr;
  }
  .hero-photo-band .photo-open {
    border-radius: 8px;
  }
  .hero-photo-band .expand-photo {
    display: none;
  }
  .hero-photo-band > .photo-open:nth-child(1),
  .hero-photo-band > .photo-open:nth-child(3) {
    margin-top: 5px;
  }
  .compact-signoff {
    margin-top: 23px;
    gap: 10px;
  }
  .compact-signoff > span {
    font-size: 8px;
    letter-spacing: 0.015em;
  }
  .compact-signoff .textlink {
    font-size: 11px;
    gap: 5px;
  }
  .compact-signoff .textlink svg {
    width: 14px;
    height: 14px;
  }
  .compact-services {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .compact-services h2 {
    font-size: 35px;
  }
  .section-intro {
    font-size: 15px;
    max-width: none;
    margin-top: 17px;
  }
  .compact-services > div > .textlink {
    margin-top: 15px;
  }
  .service-accordions summary {
    font-size: 21px;
    gap: 14px;
    padding: 14px 0;
  }
  .service-accordions summary small {
    font-size: 11px;
    line-height: 1.5;
  }
  .accordion-icon {
    width: 37px;
    height: 37px;
    border-radius: 8px;
  }
  .accordion-icon svg {
    width: 22px;
    height: 22px;
  }
  .service-accordions details p {
    padding-left: 51px;
    padding-right: 4px;
    font-size: 14px;
  }
  .accordion-plus {
    width: 16px;
    height: 16px;
  }
  .easygoing .comparison-layout {
    gap: 25px;
  }
  .easygoing .comparison-copy h2 {
    font-size: 35px;
  }
  .easygoing-work {
    grid-template-columns: 1fr 1fr;
    gap: 25px 18px;
  }
  .easygoing-work-copy {
    grid-column: 1/-1;
  }
  .easygoing-work-copy h2 {
    font-size: 35px;
  }
  .easygoing-work-copy > p:not(.eyebrow) {
    max-width: none;
    font-size: 15px;
    margin-top: 16px;
  }
  .easygoing-work-copy > .textlink {
    margin-top: 13px;
  }
  .easygoing-work-photos {
    gap: 23px;
  }
  .easygoing .project-photo figcaption,
  .easygoing .project-video figcaption {
    font-size: 14px;
  }
  .easygoing .project-video figcaption small {
    font-size: 10px;
  }
  .photo-dialog {
    padding: 13px;
  }
  .photo-dialog img {
    max-width: 85vw;
  }
  .photo-dialog-top {
    font-size: 12px;
  }
  .photo-dialog-caption {
    font-size: 12px;
  }
  .photo-close {
    font-size: 13px;
    min-height: 44px;
  }
  .expand-photo {
    width: 26px;
    height: 26px;
    right: 8px;
    bottom: 8px;
  }
}
@media (max-width: 360px) {
  .family .container {
    width: calc(100% - 32px);
  }
  .family .hero h1 {
    font-size: 43px;
  }
  .family .hero-actions .btn {
    font-size: 14px;
  }
  .family .promise-strip span {
    font-size: 10px;
  }
  .family .promise-strip svg {
    width: 13px;
    height: 13px;
  }
  .family .promise-strip .container {
    gap: 5px;
  }
  .compact-signoff > span {
    font-size: 7px;
  }
  .family .mobile-call {
    padding-left: 16px;
    padding-right: 16px;
  }
  .family .brand small {
    font-size: 7px;
  }
  .family .comparison-controls button {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .expand-photo {
    transition: none;
  }
}
body.photo-viewing {
  overflow: hidden;
}
.contact-section a:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--accent);
}

.area-copy > p:not(.eyebrow) {
  margin-top: 20px;
}
.area-guide {
  margin: 0;
  color: var(--ink, #14202f);
}
.area-guide svg {
  display: block;
  width: 100%;
  height: auto;
  background: #edf0e8;
  border: 1px solid #cdd8c8;
  border-radius: 8px;
  overflow: hidden;
}
.privacy-page {
  padding: 40px 0 64px;
}
.privacy-page main {
  max-width: 720px;
  margin: 50px auto 0;
}
.privacy-page h1 {
  font-size: clamp(34px, 6vw, 52px);
  margin-bottom: 24px;
}
.privacy-page h2 {
  font-size: 24px;
  margin: 32px 0 12px;
}
.privacy-page p {
  line-height: 1.8;
  margin: 12px 0;
}
.privacy-page main a {
  color: #9c3f32;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.privacy-page footer {
  margin: 48px auto 0;
  max-width: 720px;
  border-top: 1px solid #14202f33;
  padding-top: 24px;
}

/* Mobile keeps the published Easygoing gallery, including its media order. */
.work-media {
  display: contents;
}
.work-mobile-copy {
  display: inline;
}
.work-desktop-copy {
  display: none;
}

@media (min-width: 761px) {
  .work-mobile-copy {
    display: none;
  }
  .work-desktop-copy {
    display: inline;
  }
  .easygoing .easygoing-work {
    max-width: 1160px;
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
  }
  .easygoing-work-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: 340px;
  }
  .easygoing-work-copy h2 {
    font-size: 36px;
  }
  .easygoing-work-copy > p:not(.eyebrow) {
    max-width: 300px;
  }
  .work-media {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 12px 24px;
    min-width: 0;
  }
  .work-media .project-video {
    grid-column: 1;
    grid-row: 1 / 5;
    display: grid;
    grid-template-rows: subgrid;
    min-height: 0;
  }
  .work-media .portrait-video {
    grid-row: 1 / 4;
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    position: relative;
  }
  .work-media .portrait-video video {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .work-media .project-video > figcaption {
    grid-row: 4;
  }
  .work-media .easygoing-work-photos {
    grid-column: 2;
    grid-row: 1 / 5;
    display: grid;
    grid-template-rows: subgrid;
    gap: inherit;
  }
  .work-media .project-photo {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    min-width: 0;
  }
  .work-media .photo-open {
    align-self: start;
  }
  .easygoing .work-media figcaption {
    padding-top: 0;
    font-size: 16px;
    line-height: 1.3;
  }
  .easygoing .work-media figcaption small {
    font-size: 11px;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .easygoing .easygoing-work {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 40px;
  }
  .easygoing-work-copy h2 {
    font-size: 32px;
  }
}
.area-guide {
  width: 75%;
  justify-self: center;
  align-self: center;
  margin-inline: auto;
}
.area-guide figcaption {
  margin-top: 7px;
  text-align: center;
}
.area-guide .map-credit {
  display: inline-flex;
  align-items: center;
  padding: 3px 0;
  color: #40513c;
  font-size: 11px;
  line-height: 18px;
  min-height: 24px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 760px) {
  .area-guide {
    margin: 28px auto 0;
  }
  .area-guide svg {
    border-radius: 14px;
  }
}
