:root {
  --ink: #17363d;
  --ink-deep: #10292f;
  --muted: #5b7075;
  --teal: #126d72;
  --teal-dark: #0b555a;
  --pale: #e8f1f1;
  --wash: #f4f8f8;
  --sky: #eef7fb;
  --paper: #ffffff;
  --line: #cad9da;
  --dark-line: #365159;
  --shadow: 0 24px 70px rgba(16, 42, 47, 0.14);
  --teal-light: #8ac7c9;
  --muted-on-dark: #bfd0d3;
  --pale-teal: #daf2f1;
  --focus-ring: #ffbf47;
  --star: #e6a51c;
  --gutter: max(1.5rem, calc((100vw - 1160px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 0.4rem;
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.35;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: var(--ink-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.1rem);
}

.primary-nav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-toggle-icon {
  position: relative;
  display: block;
  width: 1.2rem;
  height: 0.65rem;
}

.menu-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: top 160ms ease, transform 160ms ease;
}

.menu-toggle-icon span:first-child {
  top: 0;
}

.menu-toggle-icon span:last-child {
  top: calc(100% - 2px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span {
  top: calc(50% - 1px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  min-height: 670px;
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
  overflow: hidden;
  background: var(--sky);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -35vw;
  width: 70vw;
  aspect-ratio: 1;
  border: clamp(55px, 8vw, 130px) solid rgba(18, 109, 114, 0.12);
  border-radius: 50%;
}

.eyebrow,
.section-label {
  margin: 0 0 1.1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-role {
  margin-bottom: 1.6rem;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 750;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  color: var(--paper);
  background: var(--teal-dark);
}

.button-primary:hover {
  background: var(--ink-deep);
}

.button-secondary:hover {
  background: var(--paper);
}

.studio-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-top: 5px solid var(--teal);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.studio-card-label {
  display: inline-block;
  margin-bottom: 2.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--pale-teal);
  font-size: 0.78rem;
  font-weight: 750;
}

.studio-card-place {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.2;
}

.studio-address {
  font-style: normal;
  color: var(--muted);
}

.studio-card dl {
  margin: 2rem 0 0;
}

.studio-card dl div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.studio-card dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.studio-card dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.review-link {
  display: block;
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #ccd3d4;
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.review-link:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 26px rgba(16, 42, 47, 0.1);
  transform: translateY(-2px);
}

.review-heading,
.review-summary,
.review-provider {
  display: flex;
  align-items: center;
}

.review-heading {
  justify-content: space-between;
  gap: 1rem;
}

.review-provider {
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
}

.google-mark {
  color: transparent;
  background: conic-gradient(
    from -42deg,
    #4285f4 0 25%,
    #34a853 25% 43%,
    #fbbc05 43% 64%,
    #ea4335 64% 82%,
    #4285f4 82% 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.review-external {
  width: 1.35rem;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: stroke 160ms ease;
}

.review-link:hover .review-external {
  stroke: var(--teal-dark);
}

.review-summary {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
}

.review-summary strong {
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.review-summary > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.preview-section {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.about {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.about-heading {
  margin-bottom: 2.5rem;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.about-copy {
  max-width: 760px;
}

.about-portrait {
  width: 100%;
  max-width: 260px;
  margin: 0;
  border-left: 0.5rem solid var(--teal);
  background: var(--paper);
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.about-portrait figcaption {
  padding: 0.9rem 1rem 1rem;
  border: 1px solid var(--line);
  border-left: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-copy p:first-child {
  margin-bottom: 1.8rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.48;
}

.services {
  width: 100%;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  color: var(--paper);
  background: var(--ink-deep);
}

.services .section-label {
  color: var(--teal-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 0.5rem;
  color: var(--muted-on-dark);
}

.service-list {
  margin-top: 4rem;
  border-top: 1px solid var(--dark-line);
}

.service-list details {
  border-bottom: 1px solid var(--dark-line);
}

.service-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
}

.service-list summary::-webkit-details-marker {
  display: none;
}

.service-list summary strong {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
}

.summary-action {
  justify-self: end;
  color: var(--teal-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.service-list details[open] .summary-action {
  transform: rotate(45deg);
}

.service-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding: 0 4rem 2.8rem 0;
}

.service-content p {
  color: var(--muted-on-dark);
}

.service-content p.service-lead {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.48;
}

.path {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.path-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.path-intro > p:last-child {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.05rem;
}

.path-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.25rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}

.path-list li + li {
  padding-top: 2rem;
}

.path-list li > span {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.path-list h3 {
  margin-bottom: 0.55rem;
}

.path-list p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.studio-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  background: var(--pale);
}

.studio-copy {
  max-width: 520px;
}

.studio-lead {
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.studio-details {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--teal);
}

.studio-details > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1.35fr);
  gap: 1rem;
}

.studio-details span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.studio-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.studio-location {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
}

.studio-slider {
  min-width: 0;
}

.slider-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border-radius: 1rem;
  background: var(--ink-deep);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
}

.studio-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
}

.studio-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 65%;
}

.studio-slide {
  aspect-ratio: 3 / 2;
}

.studio-slide::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(16, 41, 47, 0.72));
}

.studio-slide figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  width: fit-content;
  max-width: calc(100% - 3rem);
  color: var(--paper);
  font-size: 0.9rem;
  line-height: 1.4;
}

.slider-controls {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.1rem;
}

.slider-pagination {
  display: flex;
  gap: 0.25rem;
}

.slider-pagination button {
  position: relative;
  width: clamp(1.6rem, 4vw, 3rem);
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider-pagination button::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  transition: background 160ms ease;
}

.slider-pagination button[aria-current="true"]::after,
.slider-pagination button:hover::after {
  background: var(--teal-dark);
}

.slider-button {
  display: grid;
  width: 2.75rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--paper);
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.slider-button:hover {
  color: var(--paper);
  background: var(--teal-dark);
}

.slider-status {
  margin-right: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  background: var(--sky);
}

.contact-intro {
  align-self: center;
}

.contact-intro h2 {
  max-width: 620px;
}

.contact-intro > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-height: 190px;
  padding: 1.6rem;
  border-top: 3px solid var(--teal);
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(16, 42, 47, 0.08);
}

.contact-card:first-child {
  grid-column: 1 / -1;
}

.contact-card > span:first-child {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.contact-card-phone {
  min-height: 220px;
  border-top-color: var(--teal-light);
  color: var(--paper);
  background: var(--ink-deep);
}

.contact-card-phone > span:first-child {
  color: var(--teal-light);
}

.contact-phone-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
}

.contact-phone-icon {
  display: grid;
  flex: 0 0 auto;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  font-family: inherit;
  font-size: 1.25rem;
  transition: color 160ms ease, background 160ms ease;
}

.contact-phone-icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-phone-link:hover .contact-phone-icon,
.contact-phone-link:focus-visible .contact-phone-icon {
  color: var(--ink-deep);
  background: var(--teal-light);
}

.contact-card-phone p {
  color: var(--muted-on-dark);
}

.contact-card address,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.contact-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-footer {
  padding: clamp(4.5rem, 8vw, 6.5rem) var(--gutter) 1.5rem;
  color: var(--paper);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: 4rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--paper);
  text-decoration: none;
}

.footer-brand .brand-mark {
  border-color: var(--teal-light);
  color: var(--paper);
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  line-height: 1.3;
}

.footer-brand small {
  color: var(--muted-on-dark);
  font-size: 0.78rem;
}

.footer-about p {
  max-width: 350px;
  margin: 1.5rem 0 0;
  color: var(--muted-on-dark);
  font-size: 0.92rem;
}

.footer-title {
  margin: 0 0 1.35rem;
  color: var(--teal-light);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: block;
}

.footer-nav ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact a {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2em;
}

.footer-nav a::before {
  content: "›";
  margin-right: 0.55rem;
  color: var(--teal-light);
}

.footer-contact address {
  margin-bottom: 1rem;
  color: var(--muted-on-dark);
  font-size: 0.9rem;
  font-style: normal;
}

.footer-contact address strong {
  color: var(--paper);
}

.footer-contact p,
.footer-legal p {
  margin: 0.55rem 0 0;
  color: var(--muted-on-dark);
  font-size: 0.82rem;
}

.legal-links {
  display: grid;
  gap: 0.55rem;
}

.legal-links span::before {
  content: "›";
  margin-right: 0.55rem;
  color: var(--teal-light);
}

.footer-legal p {
  max-width: 220px;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--dark-line);
  color: var(--muted-on-dark);
  font-size: 0.76rem;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .hero,
  .about-body,
  .section-heading,
  .path,
  .studio-showcase,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    right: -40vw;
    bottom: -15vw;
    width: 125vw;
  }

  .hero-copy {
    max-width: 650px;
  }

  .studio-card {
    width: min(100%, 520px);
  }

  .about-portrait {
    width: min(100%, 260px);
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-right: 0;
  }

  .path-intro {
    position: static;
  }

  .studio-copy {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    padding-block: 0.8rem;
  }

  .brand {
    min-width: 0;
    gap: 0.6rem;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 2.2rem;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    padding: 0;
    place-items: center;
    justify-self: end;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .primary-nav {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 0.35rem;
  }

  .js .primary-nav {
    display: none;
  }

  .js .site-header.menu-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 0.8rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .about-portrait figcaption {
    font-size: 0.78rem;
  }

  .service-list summary {
    gap: 0.8rem;
  }

  .service-list summary strong {
    font-size: 1.35rem;
  }

  .path-list li {
    grid-template-columns: 2.5rem 1fr;
  }

  .studio-details > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .studio-slide {
    aspect-ratio: 4 / 3;
  }

  .studio-slide figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
    font-size: 0.88rem;
  }

  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-card:first-child {
    grid-column: auto;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-card-phone {
    min-height: 190px;
  }

  .contact-phone-link {
    gap: 0.75rem;
    font-size: 1.75rem;
  }

  .contact-phone-icon {
    width: 2.5rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .summary-action {
    transition: none;
  }

  .menu-toggle-icon span {
    transition: none;
  }

  .contact-phone-icon {
    transition: none;
  }

  .slider-button {
    transition: none;
  }
}
