:root {
  --font-sans: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Cormorant Garamond", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --background: oklch(0.96 0.01 90);
  --foreground: oklch(0.28 0.03 140);
  --card: oklch(0.97 0.008 90);
  --primary: oklch(0.32 0.04 140);
  --primary-foreground: oklch(0.96 0.01 90);
  --secondary: oklch(0.92 0.015 90);
  --muted-foreground: oklch(0.45 0.025 140);
  --accent: oklch(0.38 0.045 140);
  --accent-foreground: oklch(0.96 0.01 90);
  --border: oklch(0.85 0.02 90);
  --radius: 14px;
  --shadow-soft: 0 18px 40px rgba(29, 40, 34, 0.18);
  --hero-ink: oklch(0.26 0.03 55);
  --hero-accent: oklch(0.62 0.1 55);
  --hero-accent-ink: oklch(0.97 0.02 90);
  --hero-card: oklch(0.98 0.02 85 / 0.88);
  --hero-card-border: oklch(0.86 0.03 80 / 0.6);
  --hero-outline: oklch(0.38 0.03 65 / 0.35);
  --hero-shadow: 0 30px 70px rgba(41, 27, 16, 0.25);
}

html[lang="ja"] {
  --font-sans: "IBM Plex Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "IBM Plex Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.7;
  min-height: 100vh;
}

body.is-modal-open {
  overflow: hidden;
}

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

a:hover,
a:focus {
  opacity: 0.75;
}

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

button {
  font-family: inherit;
}

main {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 100px;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--hero-ink);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 237, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(29, 40, 34, 0.12);
  color: var(--foreground);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.site-header.is-scrolled .logo {
  color: inherit;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.nav-links a {
  color: inherit;
  transition: color 0.3s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .nav-links a {
  color: inherit;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  border: 1px solid var(--hero-outline);
  color: currentColor;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled .lang-toggle {
  color: currentColor;
  border-color: oklch(0.28 0.03 140 / 0.25);
}

.lang-toggle:hover,
.lang-toggle:focus {
  background: oklch(0.96 0.01 90 / 0.2);
}

.menu-toggle {
  border: none;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.site-header.is-scrolled .menu-toggle {
  color: currentColor;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.close-icon {
  display: none;
}

.site-header.menu-open .menu-icon {
  display: none;
}

.site-header.menu-open .close-icon {
  display: inline-flex;
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav {
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--foreground);
}

.hero {
  position: relative;
  background: oklch(0.97 0.02 85);
  color: var(--hero-ink);
  min-height: 100vh;
  overflow: visible;
  padding: 140px 0 110px;
  z-index: 1;
}

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

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 70% 18%, oklch(0.98 0.04 85 / 0.6), transparent 55%),
    linear-gradient(180deg, oklch(0.98 0.02 85 / 0.7) 0%, oklch(0.98 0.02 85 / 0.3) 40%, oklch(0.98 0.02 85 / 0.2) 70%, oklch(0.98 0.02 85 / 0) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 500px;
  z-index: 2; background:
  linear-gradient(0deg, oklch(0.98 0.02 85 / 1) 0%, oklch(0.98 0.02 85 / 0.5) 40%, oklch(0.98 0.02 85 / 0.3) 70%, oklch(0.98 0.02 85 / 0) 100%);
}

.hero-bg-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02) brightness(0.96);
}

.hero-leaf {
  position: absolute;
  width: 200px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-leaf--left {
  left: 0;
  top: 0;
  transform: translate(-20%, -10%);
}

.hero-leaf--right {
  right: 0;
  bottom: 0;
  transform: translate(20%, 20%) rotate(180deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  justify-items: center;
  min-height: min(78vh, 900px);
}

.hero-content {
  order: 1;
  width: min(100%, 800px);
  justify-self: center;
  background: var(--hero-card);
  border: 1px solid var(--hero-card-border);
  border-radius: 28px;
  box-shadow: var(--hero-shadow);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  backdrop-filter: blur(6px);
}

.hero-image {
  order: 2;
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--hero-card-border);
  background: oklch(0.98 0.02 85 / 0.75);
  color: var(--hero-accent);
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 520px;
  color: oklch(0.32 0.03 55);
  margin-bottom: 8px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary-foreground);
  color: var(--primary);
  transform: translateY(-2px);
}

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

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

.hero .btn-solid {
  background: var(--hero-accent);
  color: var(--hero-accent-ink);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(83, 45, 24, 0.22);
}

.hero .btn-solid:hover,
.hero .btn-solid:focus {
  background: oklch(0.58 0.11 55);
  box-shadow: 0 22px 46px rgba(83, 45, 24, 0.28);
  transform: translateY(-2px);
}

.hero .btn-outline {
  border-color: var(--hero-outline);
  color: var(--hero-ink);
  background: transparent;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus {
  background: oklch(0.98 0.02 85 / 0.8);
  color: var(--hero-ink);
  transform: translateY(-2px);
}

.btn:hover,
.btn:focus {
  opacity: 1;
}

.btn-hero {
  padding: 16px 40px;
  font-size: 0.85rem;
  box-shadow: 0 14px 28px rgba(16, 22, 18, 0.35);
}

.btn-hero:hover,
.btn-hero:focus {
  box-shadow: 0 18px 34px rgba(16, 22, 18, 0.4);
}

.btn-hero-secondary {
  padding: 12px 26px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0.92;
}

.hero-portrait {
  width: min(380px, 70vw);
  aspect-ratio: 4 / 5;
  border-radius: 240px 240px 32px 32px;
  overflow: hidden;
  padding: 12px;
  background: oklch(0.98 0.02 85 / 0.7);
  border: 1px solid var(--hero-card-border);
  box-shadow: var(--hero-shadow);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-stagger 0.8s ease forwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-image {
  animation: hero-stagger 0.9s ease 0.2s both;
}

@keyframes hero-stagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .hero-image {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.features {
  background: var(--secondary);
  padding: 64px 0;
}

.features-grid {
  display: grid;
  gap: 32px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: oklch(0.32 0.04 140 / 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.program {
  padding: 80px 0;
  background: var(--background);
}

.program-grid {
  display: grid;
  gap: 48px;
}

.program-eyebrow {
  color: var(--muted-foreground);
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  color: var(--muted-foreground);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.4;
  font-weight: 500;
}

.program-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.program-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
}

.dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: oklch(0.32 0.04 140 / 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check svg {
  width: 14px;
  height: 14px;
}

.program-price {
  background: var(--secondary);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 24px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
}

.price-tax {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.price-note {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

.services {
  background: var(--secondary);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(25, 35, 30, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(25, 35, 30, 0.12);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--muted-foreground);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.service-link svg {
  width: 18px;
  height: 18px;
}

.about {
  padding: 80px 0;
  background: var(--background);
}

.about-video {
  max-width: 860px;
  margin: 0 auto 72px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: oklch(0.96 0.01 90 / 0.9);
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button button:hover {
  transform: scale(1.05);
}

.play-button svg {
  width: 28px;
  height: 28px;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 20, 0.68);
  backdrop-filter: blur(6px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.video-modal.is-open .video-modal-content {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--background);
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(10, 16, 12, 0.2);
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.05);
}

.video-modal-close svg {
  width: 16px;
  height: 16px;
}

.video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: oklch(0.12 0.01 160);
}

.video-modal-player video,
.video-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.about-grid {
  display: grid;
  gap: 32px;
}

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

.about-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image.shifted {
  transform: translateY(24px);
}

.about-text {
  position: relative;
}

.accent-card {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 32px;
  border-radius: var(--radius);
}

.accent-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.accent-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.accent-card p + p {
  margin-top: 12px;
}

.testimonials {
  background: var(--secondary);
  padding: 80px 0;
}

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

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.testimonial-card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(25, 35, 30, 0.08);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-detail {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-btn:hover {
  background: var(--card);
}

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

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  border: none;
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--primary);
}

.cta {
  position: relative;
  padding: 120px 0;
  color: var(--primary-foreground);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.32 0.04 140 / 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-text {
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: oklch(0.96 0.01 90 / 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: oklch(0.96 0.01 90 / 0.25);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-divider {
  border-top: 1px solid oklch(0.96 0.01 90 / 0.2);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-image {
    display: flex;
  }

  .hero-leaf {
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    order: 1;
  }

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

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

  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }

  .about-media {
    grid-column: span 7;
  }

  .about-text {
    grid-column: span 5;
    margin-left: -80px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-leaf {
    width: 360px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 90px;
  }

  .hero-content {
    border-radius: 22px;
  }

  .btn {
    width: 100%;
  }

  .service-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
