:root {
  --bg: #fffaf4;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #514641;
  --text-soft: #7a6b64;
  --line: rgba(161, 127, 112, 0.18);
  --coral: #e4977f;
  --coral-deep: #cf7f65;
  --teal: #54bcbb;
  --sand: #d6b18d;
  --shadow: 0 20px 50px rgba(167, 124, 102, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(130, 210, 207, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(228, 151, 127, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 52%, #fff7f0 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.84);
  border-bottom: 1px solid rgba(161, 127, 112, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 86px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a:not(.button-nav) {
  color: var(--text-soft);
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a:not(.button-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.05rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:not(.button-nav):hover,
.site-nav a:not(.button-nav):focus-visible,
.site-nav a:not(.button-nav).is-active {
  color: var(--coral-deep);
}

.site-nav a:not(.button-nav):hover::after,
.site-nav a:not(.button-nav):focus-visible::after,
.site-nav a:not(.button-nav).is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: absolute;
  left: 50%;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span:not(.sr-only):nth-child(1) {
  transform: translate(-50%, -6px);
}

.nav-toggle span:not(.sr-only):nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:not(.sr-only):nth-child(3) {
  transform: translate(-50%, 6px);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f5;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  box-shadow: 0 18px 35px rgba(207, 127, 101, 0.25);
}

.button-secondary {
  border-color: rgba(84, 188, 187, 0.24);
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal);
}

.button-nav {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  border-color: transparent;
  color: #fffdfa;
  box-shadow: 0 18px 35px rgba(207, 127, 101, 0.25);
  text-align: center;
}

.button-row,
.service-actions,
.hero-highlights,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row.centered,
.centered-action {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--coral-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 11ch;
}

h2,
.page-title {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
  max-width: 12ch;
}

.centered-title {
  margin-inline: auto;
  text-align: center;
}

h3 {
  font-size: 1.9rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero {
  padding-top: 3.25rem;
}

.hero-grid,
.faq-layout,
.split-feature,
.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.hero-grid {
  align-items: start;
}

.hero-copy {
  align-self: start;
  padding-top: 0;
  text-align: center;
  justify-items: center;
}

.split-feature-wide {
  align-items: stretch;
}

.about-hero-layout {
  align-items: stretch;
}

.about-hero-copy {
  height: 100%;
  align-content: center;
}

.about-hero-layout .feature-media {
  min-height: 100%;
}

.split-feature-top {
  align-items: start;
}

.split-feature-top .section-heading {
  align-self: start;
  margin-bottom: 0;
}

.split-feature-top .feature-media {
  align-self: start;
  min-height: 300px;
}

.split-feature-top .feature-media img {
  object-position: center top;
}

.home-intro-layout {
  align-items: center;
}

.home-intro-layout.split-feature-top .section-heading,
.home-intro-layout.split-feature-top .feature-media {
  align-self: center;
}

.home-intro-layout.split-feature-top .section-heading {
  margin-bottom: 0;
}

.home-intro-copy {
  text-align: left;
  justify-items: start;
  align-self: center;
}

.home-intro-copy h2 {
  text-align: center;
  justify-self: center;
  max-width: 16ch;
}

.home-intro-copy p {
  text-align: center;
}

.home-intro-copy .button-row {
  justify-self: center;
}

.home-intro-layout .feature-media {
  align-self: center;
}

.home-services-heading h2 {
  max-width: 18ch;
}

.mobile-only {
  display: none;
}

.hero-text {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
}

.hero-highlights span,
.quote-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(130, 210, 207, 0.2);
  color: var(--text);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card-main {
  inset: 0 3.5rem 3.5rem 0;
  overflow: hidden;
  border: 1px solid rgba(84, 188, 187, 0.14);
}

.hero-card-main img,
.hero-card-secondary img,
.feature-media img,
.service-art img,
.gallery-item img,
.studio-grid img,
.review-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-secondary {
  right: 0;
  top: 1.2rem;
  width: 220px;
  height: 290px;
  overflow: hidden;
  border: 6px solid rgba(255, 248, 242, 0.92);
}

.hero-card-accent {
  right: 0;
  top: 18rem;
  width: 240px;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(84, 188, 187, 0.9), rgba(130, 210, 207, 0.78));
  color: #fefbf7;
}

.hero-card-accent p,
.hero-card-accent strong {
  color: inherit;
}

.hero-card-accent strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-card-stats {
  left: 1rem;
  bottom: 0;
  width: 190px;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(242, 199, 182, 0.64));
  border: 1px solid rgba(228, 151, 127, 0.18);
}

.stat-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--coral-deep);
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.section-heading.narrow {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-heading.narrow p,
.section-heading.narrow h2,
.section-heading.narrow .page-title {
  max-width: 20ch;
}

.section-heading.narrow p:last-child {
  max-width: 60ch;
}

.feature-media,
.about-card,
.about-copy,
.service-card,
.review-card,
.trust-card,
.socials-panel,
.final-cta-panel,
.faq-list details,
.studio-grid img,
.review-image-card {
  background: var(--surface);
  border: 1px solid rgba(161, 127, 112, 0.12);
  box-shadow: var(--shadow);
}

.feature-media,
.review-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
}

.page-hero {
  padding-top: 2.75rem;
  padding-bottom: 2rem;
}

.about-card,
.service-card,
.review-card,
.trust-card,
.socials-panel,
.final-cta-panel {
  border-radius: var(--radius-lg);
}

.about-card,
.about-copy,
.service-card,
.review-card,
.trust-card,
.socials-panel,
.final-cta-panel,
.faq-list details {
  padding: 1.1rem;
}

.about-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  align-self: center;
}

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

.studio-grid img:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.studio-grid img {
  border-radius: var(--radius-md);
}

.studio-grid-compact {
  max-width: 500px;
}

.services-grid,
.trust-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.review-card,
.trust-card {
  display: grid;
  gap: 0.75rem;
}

.trust-card {
  justify-items: center;
  text-align: center;
}

.service-card {
  text-align: center;
  justify-items: center;
}

.service-art {
  height: 235px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 6px);
}

.service-note {
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 199, 182, 0.7));
}

.service-note-inner {
  display: grid;
  gap: 1rem;
}

.text-link {
  color: var(--coral-deep);
  font-weight: 700;
}

.service-actions {
  justify-content: center;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(161, 127, 112, 0.12);
  box-shadow: var(--shadow);
  margin: 0;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(81, 70, 65, 0.02), rgba(81, 70, 65, 0.46));
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: #fffdfa;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.compact-gallery {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.compact-gallery .gallery-item {
  cursor: default;
}

.full-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 0.7rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(31, 25, 23, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1200px);
  height: min(88vh, 900px);
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transition: opacity 220ms ease;
}

.lightbox-image.is-fading {
  opacity: 0;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.centered-action {
  display: flex;
  margin-top: 1.35rem;
}

.socials-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(84, 188, 187, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 246, 238, 0.86));
}

.social-copy {
  max-width: 60ch;
}

.social-side {
  display: grid;
  gap: 0.8rem;
}

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

.social-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  padding-inline: 0.7rem;
  background: linear-gradient(135deg, rgba(84, 188, 187, 0.18), rgba(228, 151, 127, 0.18));
  color: var(--coral-deep);
  font-weight: 700;
}

.trust-label {
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 58px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 1rem;
}

.stars {
  color: var(--sand);
  letter-spacing: 0.14em;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--coral-deep);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding-top: 0.9rem;
}

.faq-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 360ms ease, opacity 280ms ease;
}

.final-cta-panel {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(84, 188, 187, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 199, 182, 0.7));
}

.final-cta-panel h2 {
  margin-bottom: 1rem;
  max-width: 20ch;
}

.final-cta-panel .button-row {
  margin-top: 1rem;
}

.faq-intro {
  margin-bottom: 0.35rem;
}

.faq-page-hero {
  padding-bottom: 0.75rem;
}

.faq-list-section {
  padding-top: 0.5rem;
}

.reviews-intro {
  margin-bottom: 0.35rem;
}

.reviews-page-hero {
  padding-bottom: 0.75rem;
}

.gallery-intro {
  margin-bottom: 0.35rem;
}

.gallery-page-hero {
  padding-bottom: 0.15rem;
}

.gallery-grid-section {
  padding-top: 0.5rem;
}

.services-intro {
  margin-bottom: 0.35rem;
}

.services-page-hero {
  padding-bottom: 0.75rem;
}

.services-grid-section {
  padding-top: 0.5rem;
}

.about-trust-section {
  padding-bottom: 2.4rem;
}

.about-details-section {
  padding-top: 2rem;
  padding-bottom: 0.35rem;
}

.about-map-section {
  padding-top: 1.2rem;
}

.about-cta-section {
  padding-top: 0.05rem;
}

.findus-page-hero {
  padding-bottom: 0.5rem;
}

.findus-content-section {
  padding-top: 0.8rem;
}

.getintouch-cta-section {
  padding-top: 0.1rem;
}

.getintouch-main-section {
  padding-bottom: 0.35rem;
}

.findus-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.findus-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 199, 182, 0.7));
  border: 1px solid rgba(228, 151, 127, 0.16);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  min-height: 330px;
}

.findus-card h2 {
  max-width: none;
  font-size: 2.35rem;
}

.follow-grid {
  display: grid;
  gap: 0.75rem;
}

.follow-inline {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
}

.follow-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: auto;
  height: auto;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.follow-card:hover,
.follow-card:focus-visible {
  transform: translateY(-3px);
}

.follow-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.follow-card span {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
}

.site-footer {
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(161, 127, 112, 0.12);
}

.footer-grid {
  display: flex;
  justify-content: center;
  font-size: 0.92rem;
}

.footer-grid h3 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
}

.footer-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(161, 127, 112, 0.12);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.footer-stack p {
  color: var(--coral-deep);
}

.footer-grid > :last-child {
  text-align: center;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms ease, transform 1000ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .faq-layout,
  .split-feature,
  .about-layout,
  .findus-layout,
  .socials-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .social-actions {
    justify-content: flex-start;
  }

  .footer-grid > :last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.2rem 0;
  }

  .gallery-page-hero {
    padding-bottom: 0.1rem;
  }

  .gallery-grid-section {
    padding-top: 0.35rem;
  }

  .faq-page-hero {
    padding-bottom: 0.1rem;
  }

  .faq-list-section {
    padding-top: 0.35rem;
  }

  .services-page-hero {
    padding-bottom: 0.1rem;
  }

  .services-grid-section {
    padding-top: 0.35rem;
  }

  .about-trust-section {
    padding-bottom: 1.3rem;
  }

  .about-details-section {
    padding-top: 1.1rem;
    padding-bottom: 0.2rem;
  }

  .about-map-section {
    padding-top: 0.8rem;
  }

  .about-cta-section {
    padding-top: 0.05rem;
  }

  .findus-page-hero {
    padding-bottom: 0.2rem;
  }

  .findus-content-section {
    padding-top: 0.35rem;
  }

  .getintouch-cta-section {
    padding-top: 0.05rem;
  }

  .getintouch-main-section {
    padding-bottom: 0.2rem;
  }

  .follow-card {
    width: auto;
    height: auto;
  }

  .footer-grid,
  .footer-grid > :last-child {
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer-logo {
    height: 42px;
  }

  .map-frame iframe {
    height: 260px;
  }

  .brand img {
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(161, 127, 112, 0.12);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  }

  .site-nav a {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0.45rem 0;
  }

  .site-nav .button-nav {
    width: 100%;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 2.25rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2,
  .page-title {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-card-main {
    inset: 0 0.9rem 2.4rem 0;
  }

  .hero-card-accent {
    top: auto;
    bottom: 0.8rem;
    right: 0;
    width: 170px;
  }

  .hero-card-secondary {
    top: 0.8rem;
    width: 145px;
    height: 190px;
  }

  .hero-card-stats {
    left: 0;
    width: 150px;
  }

  .services-grid,
  .trust-grid,
  .reviews-grid,
  .gallery-grid,
  .studio-grid,
  .social-preview {
    grid-template-columns: 1fr;
  }

  .home-intro-copy {
    order: -1;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .home-intro-mobile-button-wrap {
    margin-top: 0.85rem;
  }

  .about-copy {
    order: -1;
  }

  .follow-card {
    flex-direction: column;
    text-align: center;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1.75rem;
    transform: none;
    width: 60px;
    height: 60px;
    font-size: 2.1rem;
  }

  .lightbox-prev {
    left: calc(50% - 74px);
  }

  .lightbox-next {
    right: calc(50% - 74px);
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .studio-grid img:first-child {
    grid-row: auto;
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
