/* ===== Design Tokens ===== */
:root {
  --background: #fcf9f8;
  --surface: #fcf9f8;
  --surface-container-low: #f6f3f2;
  --surface-container: #f0eded;
  --surface-variant: #e4e2e1;
  --primary: #4a6243;
  --primary-container: #627b5a;
  --on-primary: #ffffff;
  --secondary: #71594c;
  --secondary-fixed: #fddcca;
  --tertiary: #5c5c58;
  --on-surface: #1b1c1c;
  --on-surface-variant: #434840;
  --on-secondary-container: #775f51;
  --outline: #74796f;
  --outline-variant: #c3c8bd;
  --primary-fixed-dim: #b3cea7;

  --container-max: 1200px;
  --margin-mobile: 24px;
  --margin-desktop: 64px;
  --section-gap: 120px;

  --font-display: "EB Garamond", serif;
  --font-body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--on-surface);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--margin-mobile);
  padding-right: var(--margin-mobile);
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--on-surface-variant);
  font-size: 16px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 9999px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background-color: var(--primary-container);
}

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

.btn-light:hover {
  background-color: #fff;
}

.btn-ghost {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: var(--primary-container);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--background);
  border-bottom: 1px solid var(--outline-variant);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  color: var(--on-surface-variant);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

.menu-toggle .material-symbols-outlined {
  font-size: 28px;
}

/* ===== Header Actions & Language Switcher ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--outline-variant);
  border-radius: 9999px;
  background-color: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lang-trigger:hover {
  background-color: var(--surface-container-low);
  border-color: var(--outline);
}

.lang-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(27, 28, 28, 0.08);
  display: block;
}

.lang-current {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-surface);
}

.lang-chevron {
  font-size: 18px;
  color: var(--on-surface-variant);
  transition: transform 0.3s ease;
}

.lang-switch:hover .lang-chevron,
.lang-switch:focus-within .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 184px;
  padding: 6px;
  background-color: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(27, 28, 28, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 70;
}

/* invisible bridge so hover survives the gap between trigger and menu */
.lang-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--on-surface);
  transition: background-color 0.2s ease;
}

.lang-option:hover {
  background-color: var(--surface-container-low);
}

.lang-option.is-active {
  background-color: rgba(98, 123, 90, 0.12);
  font-weight: 600;
}

.lang-option .lang-flag {
  width: 24px;
  height: 17px;
}

#google_translate_element {
  display: none !important;
}

iframe.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 614px;
  min-height: 500px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuCoyLKLFgOXJrmiPAEmB_U-y0JiesH807MdHwtHY6AmjiEb4is4DkjpSuv6ExKJnaoXPQNNoJ_uAndaqvdZzfQpIuqWhJSpCQFbQfVyyYOWrOZ6-d_hX573yVYvpeK9cw9B2Pkh15QvTrRd_eYEuLSzAnsEm8_lESO2Vz7ZdZjw5LFWlPtCpdNjzKQvkmHg-unHTGmI0IFxyeMyXfUVRTOf5-5b426kvfwjajLsjLxrNqpuipUrKN0");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(113, 89, 76, 0.35);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-bottom: 40px;
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-content p {
  font-size: 18px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Welcome ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.welcome-text .body {
  color: var(--on-surface-variant);
  margin-bottom: 16px;
}

.welcome-image {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--outline-variant);
  box-shadow: 0 20px 40px rgba(93, 71, 58, 0.08);
}

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

/* ===== Services ===== */
.services {
  background-color: var(--surface-container-low);
}

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

.service-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(74, 98, 67, 0.12);
}

.service-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.service-card-head h3 {
  margin-bottom: 0;
}

.price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.meta .material-symbols-outlined {
  font-size: 16px;
}

.service-card p {
  font-size: 15px;
  color: var(--on-surface-variant);
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== Services Page ===== */
.page-hero {
  padding-top: 72px;
  padding-bottom: 24px;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero p {
  font-size: 18px;
  color: var(--tertiary);
  max-width: 620px;
}

.service-list-section {
  padding-top: 32px;
  padding-bottom: 96px;
}

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

.service-item {
  background-color: var(--surface-container-low);
  border: 1px solid var(--surface-variant);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(93, 71, 58, 0.1);
}

.service-item-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-item:hover .service-item-media img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--surface-container-low) 0%,
    rgba(246, 243, 242, 0.7) 40%,
    rgba(246, 243, 242, 0) 100%
  );
}

.service-item-body {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 24px 28px 28px;
}

.service-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.service-item-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--on-surface);
}

.service-item-body p {
  font-size: 15px;
  color: var(--on-surface-variant);
  margin-bottom: 24px;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--on-primary);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===== Nature / Bento ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

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

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(27, 28, 28, 0.8),
    transparent 60%
  );
}

.bento-caption h3 {
  font-size: 24px;
  color: var(--surface-container-low);
  margin-bottom: 8px;
}

.bento-caption p {
  color: var(--surface-variant);
  font-size: 15px;
}

.bento-text {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
}

.bento-text h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-text p {
  color: var(--on-surface-variant);
  font-size: 15px;
}

/* ===== Testimonial ===== */
.testimonial {
  background-color: rgba(98, 123, 90, 0.08);
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 16px;
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--on-surface);
  margin-bottom: 24px;
}

.quote-author {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ===== Owner / Therapist ===== */
.owner {
  background-color: rgba(98, 123, 90, 0.08);
}

.owner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.owner-photo {
  width: 256px;
  height: 256px;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 4px solid var(--surface-container-low);
  background-color: var(--surface-container);
  box-shadow: 0 10px 20px rgba(93, 71, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-photo .placeholder-icon {
  font-size: 64px;
  color: var(--outline);
}

.owner-name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 4px;
}

.owner-role {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}

.owner-bio {
  font-size: 16px;
  color: var(--on-surface-variant);
}

/* ===== CTA ===== */
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--on-surface-variant);
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--surface-container-low);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-about {
  max-width: 340px;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.footer-col p {
  color: var(--on-secondary-container);
  font-size: 15px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--on-secondary-container);
  font-size: 15px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--outline-variant);
  text-align: center;
}

.footer-bottom p {
  color: var(--secondary);
  font-size: 15px;
}

/* ===== Contact Page ===== */
.contact-hero {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 64px;
  padding-bottom: 8px;
}

.contact-hero h1 {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: var(--on-surface-variant);
}

.contact-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 96px;
}

.contact-card {
  background-color: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(93, 71, 58, 0.04);
}

.contact-card h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-card-lead {
  color: var(--on-surface-variant);
  margin-bottom: 32px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--outline-variant);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary);
  background-color: rgba(206, 235, 194, 0.15);
}

.social-full {
  grid-column: 1 / -1;
}

.social-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--surface-container);
  color: var(--primary);
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-link:hover .social-icon {
  background-color: var(--primary);
  color: var(--on-primary);
}

.social-text {
  display: flex;
  flex-direction: column;
}

.social-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--on-surface);
}

.social-sub {
  font-size: 14px;
  color: var(--on-surface-variant);
}

.contact-quote {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--outline-variant);
  text-align: center;
}

.contact-quote p {
  font-style: italic;
  color: var(--on-surface-variant);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  background-color: var(--surface-container-low);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block h3 {
  font-size: 24px;
  color: var(--secondary);
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--outline-variant);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.info-item .material-symbols-outlined {
  color: var(--primary);
  font-size: 24px;
}

.info-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
}

.info-sub {
  color: var(--on-surface-variant);
  margin-top: 4px;
}

.info-branches {
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-surface-variant);
  margin-top: 4px;
}

.info-link {
  transition: color 0.3s ease;
}

.info-link:hover {
  color: var(--primary);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--on-surface-variant);
}

.hours-time {
  color: var(--primary);
  font-weight: 600;
}

.info-note {
  font-size: 14px;
  font-style: italic;
  color: var(--outline);
  margin-top: 12px;
}

.decor-card {
  position: relative;
  height: 192px;
  border-radius: 16px;
  border: 1px solid var(--outline-variant);
  background-color: rgba(98, 123, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.decor-dots {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
}

.decor-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.decor-content .material-symbols-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 8px;
}

.decor-content p {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
}

/* ===== Responsive ===== */
@media (min-width: 1024px) {
  .container {
    padding-left: var(--margin-desktop);
    padding-right: var(--margin-desktop);
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .welcome-image {
    height: 380px;
  }
  .service-list-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 36px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--background);
    border-top: 1px solid var(--outline-variant);
    border-bottom: 1px solid var(--outline-variant);
    padding: 8px 0;
    box-shadow: 0 12px 24px rgba(27, 28, 28, 0.08);
    z-index: 60;
  }
  .nav-toggle:checked ~ .main-nav {
    display: flex;
  }
  .main-nav .nav-link {
    padding: 14px 24px;
  }
  .main-nav .nav-link.active {
    border-bottom: none;
    background-color: var(--surface-container-low);
  }
  .lang-current {
    display: none;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large {
    grid-column: span 1;
    grid-row: span 1;
    grid-auto-rows: 250px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    justify-self: start;
    text-align: left;
  }
  .contact-card {
    padding: 28px 24px;
  }
  .contact-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
