@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap");

:root {
  --bg: #f7f4ef;
  --surface: #fffdfa;
  --surface-soft: #f1ece4;
  --text: #2f2a26;
  --muted: #73685f;
  --accent: #d77f9a;
  --accent-dark: #b94f72;
  --line: #e2d8cc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
  padding: 12px 5vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.brand img {
  width: 160px;
  height: auto;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 15px;
  justify-self: center;
}

.nav a {
  color: var(--muted);
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 2px;
  transition: color 0.28s ease, transform 0.28s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--accent-dark);
}

.nav a.active::after {
  transform: scaleX(1);
}

.nav a:focus-visible {
  outline: none;
  color: var(--accent-dark);
}

.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav .cta-link {
  color: var(--muted);
  font-weight: 500;
}

.mobile-nav-cta {
  display: none;
}

.mobile-nav-instagram {
  display: none;
}

.mobile-nav-actions {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 7px 14px;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.header-cta {
  justify-self: end;
  white-space: nowrap;
  padding: 10px 16px;
  border-color: transparent;
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  background: #b94f72;
}

.header-cta:hover {
  background: #9f4160;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(111, 91, 70, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--accent-dark);
  background: rgba(255, 253, 250, 0.72);
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-instagram-link:hover,
.header-instagram-link:focus-visible {
  border-color: rgba(111, 91, 70, 0.38);
  background: var(--surface);
  color: var(--text);
}

.header-actions .header-cta,
.header-instagram-link {
  font-weight: 400;
}

@media (max-width: 1120px) {
  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 0.02em;
  }
}

main {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.home-main {
  width: 100%;
  margin: 0;
}

.home-main > .section {
  width: min(1200px, 90vw);
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  min-height: 76vh;
  width: calc(100% - 10vw);
  margin: 24px 5vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 48px;
  border-radius: 30px;
  overflow: hidden;
}

.hero-content h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: left;
}

.hero-kicker {
  margin: 0 0 12px;
  color: rgba(255, 253, 250, 0.78);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero-content p {
  color: #f0e9df;
  line-height: 1.65;
  margin: 0;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(28, 21, 16, 0.46) 0%, rgba(28, 21, 16, 0.24) 34%, rgba(28, 21, 16, 0.05) 70%),
    linear-gradient(180deg, rgba(28, 21, 16, 0.1) 0%, rgba(28, 21, 16, 0.02) 48%, rgba(28, 21, 16, 0.18) 100%);
  z-index: 1;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 8px;
  font-weight: 600;
}

.hero .eyebrow {
  color: #eadccc;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #d77f9a, #a84566);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #e08ca6, #943858);
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255, 253, 250, 0.34);
  background: rgba(255, 253, 250, 0.12);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 253, 250, 0.2);
  border-color: rgba(255, 253, 250, 0.52);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--accent-dark);
  background: var(--surface);
}

.section {
  padding: 62px 0 20px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal="fade"] {
  transform: none;
}

.reveal-ready [data-reveal="image"] {
  transform: translateY(14px) scale(0.985);
}

.reveal-ready [data-reveal="image"].is-visible {
  transform: translateY(0) scale(1);
}

.section-soft {
  margin-top: 30px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 28px;
}

.section-soft .eyebrow {
  color: var(--accent-dark);
}

.section-head {
  margin-bottom: 24px;
}

.section-head-action {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: end;
}

.home-intro h2 {
  margin-bottom: 0;
}

.home-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.home-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-category-grid .service-card img {
  height: 230px;
}

.home-experience {
  border-top: 1px solid rgba(111, 91, 70, 0.16);
  border-bottom: 1px solid rgba(111, 91, 70, 0.16);
  margin-top: 34px;
  padding-top: 46px;
  padding-bottom: 46px;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-steps article {
  display: grid;
  gap: 10px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  padding: 24px;
}

.home-steps span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-steps h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.05;
}

.home-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-journal-grid .service-card img {
  height: 210px;
}

.home-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 117, 89, 0.2), transparent 34%),
    linear-gradient(135deg, var(--surface-soft), var(--surface));
  padding: clamp(24px, 4vw, 38px);
}

.home-cta-band h2 {
  margin-bottom: 10px;
}

.home-cta-band p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-instagram-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(143, 117, 89, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 117, 89, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.92), rgba(241, 236, 228, 0.7));
  padding: clamp(24px, 4vw, 40px);
}

.home-instagram-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home-instagram-copy h2 {
  max-width: 520px;
}

.home-instagram-copy p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.instagram-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.instagram-preview-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-soft);
}

.instagram-preview-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-preview-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(34, 29, 25, 0.68));
}

.instagram-preview-grid article:hover img {
  transform: scale(1.045);
}

.instagram-preview-grid span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--surface);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card img {
  transition: transform 0.45s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(111, 91, 70, 0.3);
  box-shadow: 0 16px 34px rgba(47, 42, 38, 0.08);
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.025);
}

.service-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.service-card h3 {
  margin: 14px 16px 6px;
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
}

.service-card p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.inline-link {
  display: inline-block;
  margin: 0 16px 18px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
}

.category-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  display: flex;
  flex-direction: column;
}

.category-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.category-card .category-card-body h3,
.category-card .category-card-body p,
.category-card .category-card-body .category-button {
  margin-left: 0;
  margin-right: 0;
}

.category-card .category-card-body h3 {
  margin-top: 0;
  font-size: 28px;
}

.category-card .category-card-body > p {
  margin-bottom: 16px;
}

.category-card .category-button {
  margin-top: auto;
  margin-bottom: 0;
}

.category-highlights {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.category-highlights li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.category-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.category-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-button:hover,
.category-button:focus-visible {
  background: var(--surface);
  border-color: rgba(111, 91, 70, 0.34);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.service-card > .category-button {
  margin: 0 16px 18px;
}

.service-card:hover .category-button,
.service-card:focus-visible .category-button {
  background: var(--surface);
  border-color: rgba(111, 91, 70, 0.28);
  color: var(--accent-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  border-radius: 14px;
  border: 1px solid var(--line);
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.video-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.video-card span {
  display: block;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: center;
}

.about p {
  color: var(--muted);
  line-height: 1.7;
}

.about-highlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.about-highlight p {
  margin: 0;
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.2;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: var(--surface);
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-page {
  display: grid;
  gap: 22px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-method {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 20px;
  background: var(--surface);
  padding: 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  border-color: rgba(111, 91, 70, 0.3);
  box-shadow: 0 16px 34px rgba(47, 42, 38, 0.07);
}

.contact-method span,
.contact-location-copy .eyebrow {
  color: var(--accent-dark);
}

.contact-method strong {
  color: var(--text);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-method small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-location {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 22px;
  align-items: stretch;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  padding: clamp(20px, 3vw, 28px);
}

.contact-location-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-location-copy h2,
.contact-note h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
}

.contact-location-copy p,
.contact-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-map {
  overflow: hidden;
  border-radius: 20px;
  min-height: 320px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.85) sepia(0.05);
}

.contact-note {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(111, 91, 70, 0.16);
  padding-top: 24px;
  text-align: center;
}

.contact-note p {
  max-width: 720px;
  margin: 0 auto;
}

.footer {
  width: 100%;
  margin: 56px 0 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(143, 117, 89, 0.3), transparent 32%),
    linear-gradient(135deg, #3a3029, #221d19);
  color: rgba(255, 253, 250, 0.78);
  font-size: 14px;
  padding: 38px 5vw 30px;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-block .eyebrow {
  color: rgba(255, 253, 250, 0.7);
}

.footer-brand-block h2 {
  max-width: 460px;
  margin: 0;
  color: var(--surface);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.footer-brand-block p {
  max-width: 520px;
  margin: 0;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.footer-links a {
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: 999px;
  color: var(--surface);
  padding: 8px 12px;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.34);
  transform: none;
}

.footer-contact-panel {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(190px, 1.25fr);
  gap: 12px;
  border-bottom: 1px solid rgba(255, 253, 250, 0.14);
  padding-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.footer-address-item {
  align-items: center;
  min-height: 100%;
  border-right: 1px solid rgba(255, 253, 250, 0.14);
  padding-right: 18px;
}

.footer-contact-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 253, 250, 0.82);
}

.footer-contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.footer-contact-copy span {
  color: rgba(255, 253, 250, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-copy strong {
  color: var(--surface);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-email-item .footer-contact-copy strong {
  font-size: 13px;
  white-space: nowrap;
}

.footer-location-row {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.footer-map {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 210px;
  border: 0;
  border-radius: 16px;
  filter: saturate(0.75) sepia(0.08);
}

.footer-bottom {
  position: relative;
  margin-top: 8px;
  padding-top: 24px;
  color: rgba(255, 253, 250, 0.56);
  text-align: left;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: min(260px, 100%);
  height: 1px;
  background: rgba(255, 253, 250, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 20px;
}

.quick-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  padding: 30px;
}

.page-hero-plain {
  border: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.page-hero-plain + .section {
  padding-top: 28px;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero .eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  line-height: 1.2;
}

.blog-detail-hero {
  max-width: 920px;
  margin: 42px auto 0;
  border: 0;
  background: transparent;
  padding: 16px 0 8px;
  text-align: center;
}

.blog-detail-hero .eyebrow {
  color: var(--accent-dark);
}

.blog-detail-hero h1 {
  margin: 0 auto 14px;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.blog-detail-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
}

.blog-detail-hero + .journal-article {
  padding-top: 34px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.text-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 20px;
}

.mission-card {
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
}

.text-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.text-card p,
.text-card li {
  color: var(--muted);
  line-height: 1.7;
}

.text-card ul {
  margin: 0;
  padding-left: 18px;
}

.mission-values {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mission-values p {
  margin: 0 0 14px;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-dark);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.experience-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--surface), var(--surface-soft));
  padding: clamp(24px, 4vw, 42px);
}

.experience-panel::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(143, 117, 89, 0.12);
}

.experience-intro,
.experience-steps {
  position: relative;
}

.experience-intro h2 {
  margin: 0 0 16px;
  max-width: 620px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.experience-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.experience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.experience-badges span,
.experience-step span {
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.experience-badges span {
  background: var(--surface);
  padding: 9px 13px;
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.experience-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.78);
  padding: 18px;
}

.experience-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  background: var(--surface-soft);
}

.experience-step h3 {
  margin: 16px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.experience-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.experience-care {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: 16px;
  margin-top: 16px;
  align-items: stretch;
}

.experience-care .text-card {
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  min-height: 260px;
}

.experience-care .about-inline-image img {
  height: 260px;
  min-height: 0;
  aspect-ratio: auto;
}

.about-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.about-page > .section {
  padding-top: 78px;
  padding-bottom: 34px;
}

.about-page > .page-hero-plain + .section {
  padding-top: 46px;
}

.about-page .section + .section {
  margin-top: 18px;
}

.about-showcase-copy {
  display: grid;
  gap: 28px;
}

.about-copy-block {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  padding: clamp(24px, 4vw, 42px);
}

.about-copy-block-plain {
  border: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.about-why-section {
  border: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.about-why-section .text-card {
  border: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.about-why-section .section-head {
  margin-bottom: 10px;
}

.about-showcase-copy h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.about-showcase-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.about-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.about-stat-row span {
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
}

.about-single-image,
.about-inline-image {
  margin: 0;
}

.about-single-image img,
.about-inline-image img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.about-single-image img {
  height: 100%;
  min-height: 360px;
}

.about-inline-image img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
}

.media-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.media-grid-3 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.journal-grid .service-card h3 {
  margin-bottom: 8px;
  min-height: 0;
}

.journal-grid .service-card {
  display: flex;
  flex-direction: column;
}

.journal-grid .service-card .category-button {
  margin-top: auto;
}

.journal-article {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.journal-cover {
  margin-bottom: -34px;
  position: relative;
  z-index: 1;
}

.journal-cover img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  border: 1px solid rgba(111, 91, 70, 0.18);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(47, 42, 38, 0.12);
}

.journal-content {
  --journal-content-x: clamp(24px, 5vw, 64px);
  position: relative;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 28px;
  background: var(--surface);
  padding: clamp(54px, 6vw, 78px) var(--journal-content-x) clamp(30px, 5vw, 58px);
  box-shadow: 0 18px 50px rgba(47, 42, 38, 0.06);
}

.journal-content h2 {
  margin: 34px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  color: var(--text);
}

.journal-content h3 {
  margin: 28px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.15;
}

.journal-content p,
.journal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.journal-content p {
  margin: 0 0 14px;
}

.journal-content > p:first-child {
  color: var(--text);
  font-size: 17px;
}

.journal-content ul,
.journal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.journal-content hr {
  border: 0;
  border-top: 1px solid rgba(111, 91, 70, 0.16);
  margin: 34px 0;
}

.journal-content blockquote {
  margin: 28px 0;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  color: var(--accent-dark);
  padding: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.journal-content figure {
  margin: 30px 0;
}

.journal-content figure img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 24px;
}

.journal-content figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.blog-cta {
  display: grid;
  gap: 8px;
  margin: 38px calc(var(--journal-content-x) * -1) 0;
  border-top: 1px solid rgba(111, 91, 70, 0.18);
  background: linear-gradient(180deg, rgba(241, 236, 228, 0.55), rgba(255, 253, 250, 0));
  padding: clamp(24px, 4vw, 34px) var(--journal-content-x) 0;
  text-align: center;
}

.blog-cta h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
}

.blog-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.blog-cta .btn {
  justify-self: center;
  margin-top: 6px;
}

.blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.blog-cta-actions .btn,
.blog-cta-actions .category-button {
  margin-top: 0;
}

.related-posts {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 26px;
}

.related-posts .section-head {
  text-align: center;
}

.related-posts .section-head .eyebrow {
  color: var(--accent-dark);
}

.related-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-post-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(111, 91, 70, 0.16);
  border-radius: 20px;
  background: var(--surface);
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.related-post-card:hover,
.related-post-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(111, 91, 70, 0.3);
  box-shadow: 0 16px 34px rgba(47, 42, 38, 0.08);
}

.related-post-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post-card div {
  padding: 16px;
}

.related-post-card h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.1;
}

.related-post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.all-services-grid .service-card img {
  height: 210px;
}

.category-intro {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.application-list {
  counter-reset: application;
  display: grid;
  margin-top: 18px;
}

.application-item {
  counter-increment: application;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
}

.application-item + .application-item {
  border-top: 1px solid var(--line);
}

.application-item::before {
  grid-row: 1 / span 2;
  content: counter(application, decimal-leading-zero);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.9;
}

.application-item h3 {
  grid-column: 2;
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.application-item p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-media-section {
  margin-top: 26px;
}

.category-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-media-card {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--surface-soft);
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.category-media-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 42, 38, 0);
  transition: background 0.2s ease;
}

.category-media-card:hover::before,
.category-media-card:focus-visible::before {
  background: rgba(47, 42, 38, 0.16);
}

.category-media-card[data-media-type="iframe"]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  filter: drop-shadow(0 2px 8px rgba(47, 42, 38, 0.35));
  transform: translate(-40%, -50%);
}

.category-blog-section {
  margin-top: 30px;
  border: 1px solid rgba(111, 91, 70, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(241, 236, 228, 0.72), rgba(255, 253, 250, 0.96));
  padding: 22px;
}

.service-detail-main .category-blog-section {
  margin-top: 0;
}

.category-blog-section h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
}

.category-blog-section h3::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(111, 91, 70, 0.42);
}

.category-blog-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: center;
  border-top: 1px solid rgba(111, 91, 70, 0.16);
  color: inherit;
  margin-top: 14px;
  padding: 18px 34px 18px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.category-blog-card::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  opacity: 0.58;
  transform: rotate(-45deg);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-blog-card:hover,
.category-blog-card:focus-visible {
  padding-left: 10px;
}

.category-blog-card:hover::after,
.category-blog-card:focus-visible::after {
  opacity: 1;
  transform: translateX(4px) rotate(-45deg);
}

.category-blog-card span {
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.category-blog-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  grid-column: 1 / 2;
}

.conversion-note {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 18px;
  border: 1px solid rgba(111, 91, 70, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--surface-soft), var(--surface));
  padding: 20px 22px;
}

.conversion-note-copy {
  min-width: 0;
}

.conversion-note p {
  margin: 0;
  color: var(--accent-dark);
  font-size: 16px;
  line-height: 1.7;
}

.conversion-note .btn {
  flex: 0 0 auto;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(47, 42, 38, 0.72);
  padding: 24px;
}

.media-modal.open {
  display: flex;
}

.media-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: 86vh;
}

.media-modal-content {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 26px 80px rgba(47, 42, 38, 0.28);
}

.media-modal-content img,
.media-modal-content iframe {
  display: block;
  width: 100%;
  border: 0;
}

.media-modal-content img {
  max-height: 86vh;
  object-fit: contain;
  background: #111;
}

.media-modal-content iframe {
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

.media-modal-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(47, 42, 38, 0.22);
}

.media-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.92);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 26px rgba(47, 42, 38, 0.2);
}

.media-modal-prev {
  left: -18px;
}

.media-modal-next {
  right: -18px;
}

.media-modal-nav:hover,
.media-modal-nav:focus-visible,
.media-modal-close:hover,
.media-modal-close:focus-visible {
  background: var(--surface);
  color: var(--accent-dark);
}

body.modal-open {
  overflow: hidden;
}

.service-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: start;
}

.service-detail-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.service-detail-card {
  min-width: 0;
}

.service-detail-image {
  margin-bottom: 18px;
}

.service-detail-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.service-detail-content {
  padding: clamp(22px, 4vw, 38px);
}

.service-detail-cta {
  margin-top: 22px;
}

.service-side-nav {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 18px;
}

.service-side-nav h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.service-side-link {
  display: block;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.service-side-link.active,
.service-side-link:hover {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .hero {
    min-height: 68vh;
    padding: 32px;
    gap: 24px;
  }

  .hero-media img {
    min-height: 100%;
  }

  .service-grid,
  .home-intro,
  .home-cta-band,
  .home-instagram-section,
  .video-grid,
  .about,
  .split,
  .media-grid-3,
  .contact-location,
  .service-detail-layout,
  .experience-panel,
  .experience-care,
  .about-showcase {
    grid-template-columns: 1fr;
  }

  .service-side-nav {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-category-grid,
  .home-journal-grid,
  .home-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-inline-image img,
  .about-single-image img {
    height: 320px;
  }

  .experience-care .about-inline-image img {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-block;
    min-height: 42px;
    padding: 10px 18px;
    color: var(--text);
    font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .header-actions,
  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    background: rgba(255, 253, 250, 0.98);
    box-shadow: 0 18px 34px rgba(47, 42, 38, 0.08);
    padding: 18px 5vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
  }

  .nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, #d77f9a, #a84566);
    color: #fff;
    padding: 10px 16px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .nav .mobile-nav-cta:hover,
  .nav .mobile-nav-cta:focus-visible {
    color: #fff;
  }

  .nav .mobile-nav-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    border: 1px solid rgba(185, 79, 114, 0.28);
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.82);
    color: var(--accent-dark);
    font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 10px 16px;
  }

  .nav .mobile-nav-cta::after {
    display: none;
  }

  .nav .mobile-nav-instagram::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .section-head-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-category-grid,
  .home-journal-grid,
  .home-steps {
    grid-template-columns: 1fr;
  }

  .home-category-grid .service-card img,
  .home-journal-grid .service-card img {
    height: 220px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .instagram-preview-grid {
    grid-template-columns: 1fr;
  }

  .instagram-preview-grid article {
    min-height: 220px;
  }

  .contact-location {
    border-radius: 22px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 260px;
  }

  .footer {
    width: 100%;
    margin-top: 32px;
    padding: 24px 12px 0;
  }

  .footer-inner {
    border-radius: 22px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .footer-location-row {
    grid-template-columns: 1fr;
  }

  .footer-contact-item,
  .footer-address-item {
    align-items: flex-start;
  }

  .footer-address-item {
    border-right: 0;
    padding-right: 0;
  }

  .footer-map iframe {
    height: 180px;
  }

  .about-inline-image img,
  .about-single-image img {
    height: 260px;
  }

  .experience-panel {
    padding: 22px;
  }

  .experience-steps {
    grid-template-columns: 1fr;
  }

  .application-list {
    grid-template-columns: 1fr;
  }

  .application-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .category-media-grid {
    grid-template-columns: 1fr;
  }

  .category-media-card img {
    height: 220px;
  }

  .media-modal {
    padding: 14px;
  }

  .media-modal-content iframe {
    min-height: 240px;
  }

  .media-modal-close {
    right: 8px;
    top: 8px;
  }

  .media-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .media-modal-prev {
    left: 8px;
  }

  .media-modal-next {
    right: 8px;
  }

  .conversion-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-care .about-inline-image img {
    height: 220px;
  }

  .experience-care .text-card {
    min-height: 220px;
  }

  .hero {
    width: calc(100% - 24px);
    margin: 16px 12px 0;
    min-height: 62vh;
    padding: 24px;
    border-radius: 22px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .blog-detail-hero {
    margin-top: 24px;
    text-align: left;
  }

  .journal-cover {
    margin-bottom: 16px;
  }

  .journal-cover img {
    height: 260px;
    border-radius: 22px;
  }

  .journal-content {
    border-radius: 22px;
    padding-top: 28px;
  }

  .journal-content blockquote {
    padding: 22px;
  }

  .related-post-grid {
    grid-template-columns: 1fr;
  }

  .related-posts .section-head {
    text-align: left;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
