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

:root {
  --umber: #36312b;
  --gold: #ba955b;
  --gold-light: #d4b07a;
  --gold-dark: #9a7a48;
  --white: #ffffff;
  --black: #000000;
  --cream: #f9f6f1;
  --grey-light: #e8e4df;
  --text-body: #4a453f;
  --gold-text: #8d6d35;
  --section-space: 70px;
  --section-header-space: 56px;
  --section-copy-size: 1.0625rem;
  --section-copy-line-height: 1.75;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 110px);
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--umber);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--umber);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: var(--section-header-space);
}

.section-header--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--left {
  max-width: 640px;
  text-align: left;
}

.section-header--center .section-divider,
.section-header--center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-header--light .section-label {
  color: var(--gold-light);
}

.section-title-light {
  color: var(--white);
}

.section-divider-light {
  background: var(--gold-light);
}

.section-copy {
  max-width: 640px;
  color: var(--text-body);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.74);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.optional-text {
  color: #b0aba5;
  font-weight: 400;
}

.campaign-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--umber);
  color: var(--white);
  text-align: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 24px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-bar:hover {
  color: var(--gold-light);
}

.campaign-bar.hidden {
  transform: translate3d(0, -100%, 0);
}

body.menu-open .campaign-bar {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

body.menu-open .nav {
  top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(54, 49, 43, 0.08);
  backdrop-filter: blur(12px);
}

body.menu-open .nav .nav-toggle span {
  background: var(--umber);
}

.nav {
  position: fixed;
  top: var(--bar-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transform: translateY(0);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(54, 49, 43, 0.08);
  backdrop-filter: blur(12px);
}

.nav.bar-hidden {
  top: env(safe-area-inset-top, 0px);
}

.nav.is-hidden {
  transform: translateY(0);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-links a {
  color: var(--umber);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta,
.nav.scrolled .nav-links a.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:active {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-header {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--umber);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 49, 43, 0.88) 0%,
    rgba(54, 49, 43, 0.65) 50%,
    rgba(54, 49, 43, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 160px 0 80px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186, 149, 91, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.services {
  padding: var(--section-space) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.services-banner {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--umber);
  aspect-ratio: 16/5;
}

.services-banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.services-banner-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  gap: 8px;
}

.services-banner-label {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.services-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
}

.services-banner-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}

.services-banner .btn {
  align-self: flex-start;
  margin-top: 4px;
}

.services-banner-image {
  position: relative;
  overflow: hidden;
}

.services-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(54, 49, 43, 0.92) 0%,
    rgba(54, 49, 43, 0.55) 50%,
    rgba(54, 49, 43, 0.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(54, 49, 43, 0.95) 0%,
    rgba(54, 49, 43, 0.5) 50%,
    rgba(54, 49, 43, 0.2) 100%
  );
}

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-style: italic;
}

.service-card h3 {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover .service-card-arrow {
  background: var(--gold);
  transform: translateX(4px);
}

.about {
  padding: var(--section-space) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  z-index: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 8px 0 0 0;
  z-index: -1;
}

.about-copy {
  color: var(--text-body);
  font-size: var(--section-copy-size);
  margin-bottom: 20px;
  line-height: var(--section-copy-line-height);
}

.about-signature {
  margin-top: 32px;
}

.about-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--umber);
}

.about-signature-title {
  font-size: 0.875rem;
  color: var(--gold-text);
  font-weight: 500;
  margin-top: 2px;
}

.about-cta-btn {
  margin-top: 24px;
}

.about-stats {
  display: flex;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-light);
  overflow: hidden;
}

.about-stat-card {
  flex: 1;
  padding: 0 24px;
  border-left: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-stat-card:first-child {
  padding-left: 0;
  border-left: none;
}

.about-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}

.about-stat-number-text {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--umber);
}

.about-stat-number-badge {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: none;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.45;
}

.gallery {
  padding: var(--section-space) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item--nursery img {
  object-position: center 38%;
}

.gallery-item--desktop-extra {
  display: none;
}

@media (min-width: 1025px) {
  .gallery-item--desktop-extra {
    display: block;
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(54, 49, 43, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(54, 49, 43, 0.3);
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:active {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.lightbox-nav:hover,
.lightbox-nav:active {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.contact {
  padding: var(--section-space) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(54, 49, 43, 0.06);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-info-label {
  font-size: 0.8125rem;
  color: var(--gold-text);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-value {
  color: var(--umber);
  font-size: 1rem;
}

.contact-info-value a {
  color: var(--umber);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover,
.contact-info-value a:active {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(54, 49, 43, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--umber);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--umber);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(186, 149, 91, 0.1);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0aba5;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--gold);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}

#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .contact-grid > div, .grid > div,
  .contact-page-grid > div {
    min-width: 0;
    max-width: 100%;
  }
}

.rot {
  padding: calc(var(--section-space) - 16px) 0;
  background: var(--umber);
  position: relative;
  overflow: hidden;
}

.rot-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rot-content {
  max-width: 640px;
}

.rot-content .section-header {
  margin-bottom: 0;
}

.rot-cta {
  flex-shrink: 0;
}

.btn-rot {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.btn-rot:hover,
.btn-rot:active {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-rot svg {
  width: 16px;
  height: 16px;
}

.footer {
  padding: 64px 0 32px;
  background: #2a2622;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover,
.footer-contact-item a:active {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:active {
  background: rgba(186, 149, 91, 0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

@media (max-width: 1024px) {
  :root {
    --section-space: 96px;
    --section-header-space: 48px;
  }

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

  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

  .container {
    padding: 0 32px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 24px;
  }

  .rot-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  .rot-content {
    max-width: 100%;
  }

  .rot-content .section-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .rot-content .section-divider,
  .rot-content .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stat-card {
    padding: 0 16px;
  }

  .about-stat-number,
  .about-stat-number-text,
  .about-stat-number-badge {
    font-size: 1.5rem;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .nav {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(54, 49, 43, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav .nav-toggle span {
    background: var(--umber);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, calc(100vw - 48px));
    max-width: calc(100vw - 24px);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0 28px 28px;
    gap: 0;
    box-shadow: -18px 0 36px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1002;
    border-left: 1px solid rgba(54, 49, 43, 0.08);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li {
    width: 100%;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--grey-light);
    list-style: none;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .mobile-menu-logo img {
    height: 40px;
    width: auto;
    display: block;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    cursor: pointer;
    color: var(--umber);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:active {
    background: var(--cream);
    border-color: var(--gold);
  }

  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
  }

  .nav-links > li:not(.mobile-menu-header) > a,
  .nav.scrolled .nav-links > li:not(.mobile-menu-header) > a {
    color: var(--umber);
    font-size: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-light);
    display: block;
    width: 100%;
  }

  .nav-links a.nav-cta,
  .nav.scrolled .nav-links a.nav-cta {
    text-align: center;
    margin-top: 16px;
    border-bottom: none;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .services-banner {
    aspect-ratio: auto;
  }

  .services-banner-content {
    grid-template-columns: 1fr;
  }

  .services-banner-text-col {
    padding: 28px 24px;
    text-align: center;
    align-items: center;
  }

  .services-banner .btn {
    align-self: center;
  }

  .services-banner-image {
    height: 220px;
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .service-card {
    aspect-ratio: 4/3;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-image-accent {
    display: none;
  }

  .about-stat-number,
  .about-stat-number-text,
  .about-stat-number-badge {
    font-size: 1.375rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
    max-height: 50vw;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 72px;
    --section-header-space: 40px;
    --section-copy-size: 1rem;
  }

  .hero-content {
    padding: 150px 0 80px;
  }

  .campaign-bar {
    font-size: 0.7rem;
    padding: 8px 16px;
    white-space: normal;
  }

  .nav-inner {
    height: 60px;
  }

  .nav-logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .rot-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links a {
    display: block;
    padding: 6px 0;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .lightbox img {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-prev {
    left: 8px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .lightbox-next {
    right: 8px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .section-label {
    font-size: 0.8125rem;
  }

  .mobile-menu-logo img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .about-stat-card {
    padding: 0 12px;
  }

  .about-stat-number,
  .about-stat-number-text,
  .about-stat-number-badge {
    font-size: 1.125rem;
  }

  .about-stat-label {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}

@media (hover: none) {
  a, button {
    -webkit-tap-highlight-color: transparent;
  }

  .service-card:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .gallery-item-overlay {
    background: rgba(54, 49, 43, 0.1);
  }

  .gallery-item-overlay svg {
    opacity: 0.5;
    transform: scale(1);
  }

  .nav-links a::after {
    display: none;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 0;
  }

  .lightbox {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(0, 0, 0, 0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .campaign-bar,
  .nav,
  .nav-toggle span,
  .nav-links,
  .nav-links a,
  .nav-links a::after,
  .nav-links a.nav-cta,
  .service-card img,
  .service-card-overlay,
  .gallery-item img,
  .gallery-item-overlay,
  .gallery-item-overlay svg,
  .lightbox,
  .lightbox img,
  .lightbox-close,
  .lightbox-nav,
  .btn,
  .btn-rot,
  .contact-info-value a,
  .footer-links a,
  .footer-contact-item a,
  .footer-social a,
  .form-group input,
  .form-group textarea,
  .mobile-menu-close {
    transition: none;
    animation: none;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33, 30, 27, 0.34);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.subpage-hero .section-bg-img { opacity: 0.12; }
.contact-hero .section-bg-img { opacity: 0.18; }

.rot .section-bg-img,
.services-cta .section-bg-img,
.stats-section .section-bg-img { opacity: 0.1; }

.subpage-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--umber);
  overflow: hidden;
}

.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero .section-header { margin-bottom: 0; }
.subpage-hero .section-copy { max-width: 560px; }

.contact-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--umber);
  overflow: hidden;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero .section-header {
  margin-bottom: 0;
}

.contact-hero .section-copy {
  max-width: 560px;
}

.contact-page-section {
  padding: var(--section-space) 0;
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--umber);
  margin-bottom: 32px;
  font-weight: 500;
}

.contact-sidebar-text {
  color: var(--text-body);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
  margin-bottom: 36px;
}

.contact-hours {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-light);
}

.contact-hours-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 16px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--grey-light);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-day {
  font-weight: 500;
  color: var(--umber);
}

.contact-map {
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 24px rgba(54, 49, 43, 0.06);
}

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

.service-detail {
  padding: var(--section-space) 0;
}

.service-detail:nth-child(odd) {
  background: var(--white);
}

.service-detail:nth-child(even) {
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-image-accent {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 8px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.service-detail:nth-child(even) .service-detail-image-accent {
  left: auto;
  right: -14px;
  border-left: none;
  border-right: 2px solid var(--gold);
  border-radius: 0 8px 0 0;
}

.service-detail-image-wrapper {
  position: relative;
}

.service-detail-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 12px;
}

.service-detail-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--umber);
  margin-bottom: 12px;
}

.service-detail-content .section-divider {
  margin-bottom: 24px;
}

.service-detail-content p {
  color: var(--text-body);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
  margin-bottom: 16px;
}

.service-detail-content p:last-of-type {
  margin-bottom: 32px;
}

.service-detail-content .btn {
  margin-top: 8px;
}

.services-intro {
  padding: var(--section-space) 0;
  background: var(--white);
}

.services-cta {
  padding: var(--section-space) 0;
  background: var(--umber);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.services-cta-inner .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 18px;
}

.services-cta-inner p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-inner .section-divider {
  background: var(--gold-light);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.services-cta-inner .section-label {
  color: var(--gold-light);
}

.story {
  padding: var(--section-space) 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
  z-index: 0;
}

.story-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.story-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 8px 0 0 0;
  z-index: -1;
}

.story-content .section-header {
  margin-bottom: 24px;
}

.story-text {
  color: var(--text-body);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
  margin-bottom: 16px;
}

.story-signature {
  margin-top: 36px;
}

.story-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--umber);
}

.story-signature-title {
  font-size: 0.875rem;
  color: var(--gold-text);
  font-weight: 500;
  margin-top: 2px;
}

.values {
  padding: var(--section-space) 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(54, 49, 43, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(54, 49, 43, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.value-card h3 {
  font-size: 1.375rem;
  color: var(--umber);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.stats-section {
  padding: var(--section-space) 0;
  background: var(--umber);
  position: relative;
  overflow: hidden;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(186, 149, 91, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}

.stat-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-value--text {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
}

.stat-card-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.services-overview {
  padding: var(--section-space) 0;
  background: var(--white);
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-overview-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(54, 49, 43, 0.08);
}

.service-overview-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.service-overview-card h3 {
  font-size: 1.25rem;
  color: var(--umber);
  margin-bottom: 8px;
}

.service-overview-card p {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cta-section {
  padding: var(--section-space) 0;
  background: var(--umber);
  position: relative;
  overflow: hidden;
}

.cta-section .section-bg-img {
  opacity: 0.1;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.cta-inner .section-label {
  color: var(--gold-light);
}

.cta-inner .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-inner .section-divider {
  background: var(--gold-light);
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .section-copy {
  color: rgba(255, 255, 255, 0.74);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.projekt-gallery {
  padding: var(--section-space) 0;
  background: var(--white);
}

.instagram-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.instagram-inner {
  max-width: 640px;
  margin: 0 auto;
}

.instagram-inner .section-label {
  margin-bottom: 16px;
}

.instagram-inner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--umber);
  margin-bottom: 16px;
}

.instagram-inner .section-divider {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.instagram-text {
  color: var(--text-body);
  font-size: var(--section-copy-size);
  line-height: var(--section-copy-line-height);
  max-width: 520px;
  margin: 0 auto 32px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--umber);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover,
.btn-instagram:active {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(54, 49, 43, 0.2);
}

.btn-instagram svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .contact-page-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .service-detail-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .subpage-hero { padding: 160px 0 72px; }
  .contact-hero { padding: 160px 0 72px; }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }

  .service-detail-image-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }

  .service-detail:nth-child(even) .service-detail-image-accent {
    left: -14px;
    right: auto;
    border-right: none;
    border-left: 2px solid var(--gold);
    border-radius: 8px 0 0 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .story-image-accent {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page-grid > :last-child {
    order: -1;
  }
}

@media (max-width: 640px) {
  .subpage-hero { padding: 150px 0 56px; }
  .contact-hero { padding: 150px 0 56px; }

  .service-detail-image-accent {
    display: none;
  }

  .stat-card {
    padding: 32px 20px;
  }

  .stat-card-value {
    font-size: 2rem;
  }

  .service-overview-card {
    padding: 24px;
  }

  .contact-sidebar-title {
    font-size: 1.25rem;
  }

  .instagram-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .contact-hours-row {
    font-size: 0.875rem;
  }
}

@media (hover: none) {
  .value-card:hover,
  .service-overview-card:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(54, 49, 43, 0.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-instagram {
    transition: none;
  }
}
