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

:root {
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555;
  --color-navy: #253551;
  --color-rust: #8b3a2a;
  --color-border: #ddd;
  --font-main: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── Skip link ── */
.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-text);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus { top: 0; outline: 3px solid #6688cc; outline-offset: 2px; }

a:focus-visible, button:focus-visible { outline: 3px solid #6688cc; outline-offset: 3px; }

/* ── Header / Nav ── */
header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 3%;
}

header.sticky {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

header.sticky .site-title,
header.dark-text .site-title,
header.scrolled .site-title { color: var(--color-text); }

nav { display: flex; align-items: center; gap: 2.5rem; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav ul > li:not(:last-child) {
  position: relative;
}

nav a {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul > li > a:not(.nav-contact) {
  font-size: 17px;
}

nav a:hover { color: #fff; }

nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

header.sticky nav a,
header.dark-text nav a,
header.scrolled nav a { color: var(--color-text-light); }
header.sticky nav a:hover,
header.dark-text nav a:hover,
header.scrolled nav a:hover { color: var(--color-text); }
header.sticky nav a[aria-current="page"],
header.dark-text nav a[aria-current="page"],
header.scrolled nav a[aria-current="page"] { color: var(--color-text); }

.nav-contact {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 10px 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-contact:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

header.sticky .nav-contact,
header.dark-text .nav-contact,
header.scrolled .nav-contact {
  color: var(--color-text);
  border-color: var(--color-text);
}
header.sticky .nav-contact:hover,
header.dark-text .nav-contact:hover,
header.scrolled .nav-contact:hover {
  background: var(--color-text);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
}
.nav-toggle svg { display: block; }
header.sticky .nav-toggle,
header.dark-text .nav-toggle,
header.scrolled .nav-toggle { color: var(--color-text); }

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: #fff; }

header.sticky .nav-dropdown-toggle,
header.dark-text .nav-dropdown-toggle,
header.scrolled .nav-dropdown-toggle { color: var(--color-text-light); }
header.sticky .nav-dropdown-toggle:hover,
header.dark-text .nav-dropdown-toggle:hover,
header.scrolled .nav-dropdown-toggle:hover { color: var(--color-text); }

.nav-dropdown.has-current .nav-dropdown-toggle {
  text-decoration: underline;
  text-underline-offset: 4px;
}
header.sticky .nav-dropdown.has-current .nav-dropdown-toggle,
header.dark-text .nav-dropdown.has-current .nav-dropdown-toggle,
header.scrolled .nav-dropdown.has-current .nav-dropdown-toggle { color: var(--color-text); }

.dropdown-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  list-style: none;
  padding: 8px 0;
  min-width: 190px;
  z-index: 200;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 15px;
}

.dropdown-menu.open { display: block; }

@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu { display: block; }
}

.dropdown-menu li a {
  display: block;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light) !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: var(--color-text) !important;
}
.dropdown-menu li a[aria-current="page"] {
  color: var(--color-text) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Hero (homepage) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/sky-sculpture-landing.webp') center 54%/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 53, 81, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
}

.hero-text {
  width: 60%;
  min-width: 580px;
  max-width: 750px;
  text-align: left;
  padding: 28px 32px;
  background: rgba(20, 30, 50, 0.45);
  border: none;
  border-radius: 18px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.hero h1.hero-statement {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 16px rgba(12, 16, 28, 0.5), 0 0 40px rgba(12, 16, 28, 0.25);
}

.hero p.hero-statement {
  font-family: var(--font-main);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(12, 16, 28, 0.5), 0 0 40px rgba(12, 16, 28, 0.25);
}

/* ── Hero image band ── */
.hero-image-band {
  display: none;
}

.hero .btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 18px 50px;
  text-decoration: none;
  transition: all 0.25s;
}
.hero .btn:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── Home intro section (painting + photo) ── */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.home-intro-left {
  position: relative;
  overflow: hidden;
}

.home-intro-left .bg-painting {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-intro-left .photo-overlay {
  position: absolute;
  top: 0;
  right: -5%;
  width: 65%;
  max-width: 480px;
  z-index: 2;
}

.home-intro-left .photo-overlay img {
  width: 100%;
  display: block;
}

.home-intro-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 80px;
  background: #fff;
}

.home-intro-right h2 {
  font-family: var(--font-main);
  font-size: clamp(42px, 5.25vw, 63px);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.home-intro-right p {
  font-size: 30px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.6;
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2.5rem;
  justify-content: center;
}

.intro-link {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-navy);
  text-decoration: none;
  border: 1.5px solid var(--color-navy);
  padding: 12px 24px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.intro-link:hover {
  background: var(--color-navy);
  color: #fff;
}

/* ── CTA box (Book a Consultation) ── */
.cta-box {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  border: 1.5px solid var(--color-text);
  padding: 14px 32px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.cta-box:hover {
  background: var(--color-text);
  color: #fff;
}

/* ── Page banner (sub-pages with image) ── */
.page-banner {
  position: relative;
  height: 35vh;
  min-height: 250px;
  overflow: hidden;
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Sections ── */
.section {
  padding: clamp(60px, 8vw, 100px) 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Couple Therapy layout ── */
.couple-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.couple-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.couple-text a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.couple-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.italic-quote {
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  margin: 1.5rem 0;
}

/* ── Approach hero section ── */
.approach-hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.approach-hero-left {
  position: relative;
}

.approach-hero-left .bg-painting {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.approach-hero-left .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 55%;
  max-width: 420px;
  z-index: 2;
}

.approach-hero-left .photo-overlay img {
  width: 100%;
  display: block;
}

.approach-hero-right {
  background: var(--color-rust);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 60px;
  color: #fff;
}

.approach-hero-right h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  margin-bottom: 2rem;
}

.approach-hero-right .btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.25s;
  align-self: center;
}
.approach-hero-right .btn:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── Approach layout (image + text side by side) ── */
.approach-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.approach-image-col {
  position: sticky;
  top: 100px;
}

.approach-painting-wrap {
  position: relative;
}

.approach-painting {
  width: 100%;
  display: block;
}

.approach-photo-overlay {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
}

.approach-photo-overlay img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .approach-layout {
    grid-template-columns: 1fr;
  }
  .approach-image-col {
    position: static;
    max-width: 280px;
  }
}

/* ── Accordion ── */
.accordion { margin-top: 1rem; }

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion-item:first-child {
  border-top: 1px solid #e5e5e5;
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
}
.accordion-trigger:hover { color: var(--color-text-light); }

.accordion-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-panel[aria-hidden="false"] {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

.accordion-panel p { margin-bottom: 1.2rem; }

/* ── Logistics ── */
.logistics-banner img {
  width: 100%;
  height: 35vh;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.logistics-card {
  background: #fff;
  max-width: 900px;
  margin: -60px auto 0;
  position: relative;
  z-index: 1;
  padding: 40px clamp(40px, 5vw, 70px) clamp(40px, 5vw, 70px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06);
}

.logistics-card p {
  margin-bottom: 1.2rem;
}

.logistics-card a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Contact ── */
.contact-page {
  padding: clamp(120px, 15vw, 180px) 5% clamp(80px, 10vw, 140px);
  text-align: center;
  background: var(--color-rust);
  color: #fff;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-page .label {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}

.contact-page .contact-item {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.contact-page .contact-item a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}
.contact-page .contact-item a:hover { border-color: #fff; }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 12px;
  color: #595959;
  border-top: 1px solid #eee;
}

.footer-links {
  margin-top: 0.6rem;
}

.footer-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.policy-page .policy-updated {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-navy);
  margin: 2.4rem 0 0.8rem;
}

.policy-page p {
  margin-bottom: 1rem;
}

.policy-page ul {
  margin: 0 0 1.2rem 1.4rem;
}

.policy-page li {
  margin-bottom: 0.55rem;
}

.policy-page a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .home-intro {
    grid-template-columns: 1fr;
  }
  .home-intro-left {
    min-height: 400px;
  }
  .home-intro-right {
    padding: 50px 30px;
  }
  .couple-layout {
    grid-template-columns: 1fr;
  }
  .couple-image {
    min-height: 350px;
  }
  .approach-hero {
    grid-template-columns: 1fr;
  }
  .approach-hero-left {
    min-height: 350px;
  }
  .approach-hero-left .photo-overlay {
    left: 20px;
    width: 60%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 3%;
  }

  .nav-inner {
    padding: 1.15rem 0;
  }

  .site-title {
    font-size: 28px;
  }

  .nav-toggle { display: block; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 5%;
    gap: 1rem;
    border-bottom: 1px solid #eee;
  }
  nav ul.open { display: flex; }
  nav ul.open a { color: var(--color-text) !important; }
  nav ul.open .nav-dropdown-toggle { color: var(--color-text) !important; }

  nav ul > li:not(:last-child) {
    position: static;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav ul > li > a:not(.nav-contact),
  .nav-dropdown-toggle {
    font-size: 15px;
  }

  .nav-contact {
    font-size: 13px;
    color: var(--color-text) !important;
    border-color: var(--color-text) !important;
    padding: 8px 16px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    min-width: auto;
    text-align: center;
  }

  .dropdown-menu li a {
    padding: 10px 22px;
    text-align: center;
  }

  .dropdown-menu li:first-child a {
    padding-top: 14px;
  }

  /* Homepage header: sticky on mobile */
  header:not(.sticky) {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
  }
  header:not(.sticky) .site-title { color: var(--color-text); }
  header:not(.sticky) .nav-toggle { color: var(--color-text); }

  .hero {
    align-items: flex-start;
    padding: 0;
  }

  .hero-bg {
    background: url('images/sky-sculpture.webp') 36% 50%/cover no-repeat;
  }

  .hero-content {
    color: #fff;
    max-width: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 76px 0 0 3%;
  }

  .hero h1.hero-statement {
    font-size: 26px;
    color: rgba(250, 244, 236, 0.96);
    text-shadow: 0 2px 16px rgba(12, 16, 28, 0.5), 0 0 40px rgba(12, 16, 28, 0.25);
  }

  .hero p.hero-statement {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.34;
    color: rgba(250, 244, 236, 0.96);
    text-shadow: 0 2px 16px rgba(12, 16, 28, 0.5), 0 0 40px rgba(12, 16, 28, 0.25);
  }

  .hero-text {
    width: 90%;
    min-width: 0;
    max-width: none;
    padding: 14px 18px;
    background: rgba(20, 30, 50, 0.45);
    border: none;
    border-radius: 14px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .hero-image-band {
    display: none;
  }

  .logistics-card {
    margin-top: -30px;
    padding: 30px 20px;
  }
}

@media (min-width: 769px) {
  header:not(.sticky) {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
  }

  header:not(.sticky) .site-title,
  header:not(.sticky) nav a,
  header:not(.sticky) .nav-dropdown-toggle {
    color: var(--color-text);
  }

  header:not(.sticky) nav a:hover,
  header:not(.sticky) .nav-dropdown-toggle:hover {
    color: var(--color-text-light);
  }

  header:not(.sticky) .nav-contact {
    color: var(--color-text);
    border-color: var(--color-text);
  }

  header:not(.sticky) .nav-contact:hover {
    background: var(--color-text);
    color: #fff;
  }

  .hero {
    min-height: calc(100vh - 92px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  header { position: static; }
  .hero { min-height: auto; height: auto; padding: 2rem; }
  .hero-bg, .hero-overlay { display: none; }
  .hero-content { color: #000; }
}


/* IMAGE IMPROVEMENTS */
.home-intro-left,
.approach-hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f4ef;
}

.home-intro-left .bg-painting,
.approach-hero-left .bg-painting {
  width: 74%;
  height: 74%;
  margin: auto;
  object-fit: contain;
  opacity: 0.95;
}

.home-intro-left .photo-overlay {
  right: 2%;
  bottom: 0;
  top: 60px;
  width: 58%;
  max-width: 470px;
}

.approach-hero-left .photo-overlay {
  left: 8%;
  bottom: 0;
  width: 52%;
  max-width: 420px;
}

.home-intro-left .photo-overlay img,
.approach-hero-left .photo-overlay img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
} 

.home-intro-left .photo-overlay img {
  filter: contrast(1.02) saturate(1.02);
}
/* CONTACT PAGE REFINEMENTS */
.contact-page {
  padding-top: clamp(32px, 4.5vw, 52px);
  padding-bottom: clamp(24px, 4vw, 40px);
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-gallery {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: auto;
}

.contact-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.contact-gallery img:nth-child(2) {
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.contact-page .label {
  font-size: 18px;
  margin-bottom: 2.5rem;
}

.contact-page .contact-item {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-page .contact-item a {
  border-bottom-width: 2px;
}

@media (max-width: 768px) {
  .contact-gallery {
    gap: 10px;
    margin-top: 1rem;
  }

  .contact-page .label {
    font-size: 16px;
  }

  .contact-page .contact-item {
    font-size: 20px;
  }
}
