@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --cream: #faf6f0;
  --parchment: #f2ead8;
  --dusty-rose: #c9816a;
  --dusty-rose-dark: #b06c56;
  --dusty-rose-light: #edd8d0;
  --charcoal: #2c2825;
  --warm-gray: #7a7168;
  --light-border: #e8ddd0;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(44,40,37,0.08);
  --shadow-card: 0 2px 12px rgba(44,40,37,0.10);
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
}

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

a {
  color: var(--dusty-rose);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

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

.section {
  padding: 72px 0;
}

.section--alt {
  background-color: var(--parchment);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  line-height: 1.2;
}

.btn-primary {
  background: var(--dusty-rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,129,106,0.35);
}

.btn-primary:hover {
  background: var(--dusty-rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,129,106,0.45);
  text-decoration: none;
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--dusty-rose);
  border: 2px solid var(--dusty-rose);
}

.btn-outline:hover {
  background: var(--dusty-rose-light);
  text-decoration: none;
  color: var(--dusty-rose-dark);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--dusty-rose);
}

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

.nav-links a {
  color: var(--warm-gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--charcoal);
  text-decoration: none;
}

.nav-cta {
  font-size: 0.88rem !important;
  background: var(--dusty-rose);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--dusty-rose-dark);
  color: var(--white) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 60%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--dusty-rose-light);
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dusty-rose-light);
  color: var(--dusty-rose-dark);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--dusty-rose);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--dusty-rose);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1 4.6-4.6L12.5 5.5z'/%3E%3C/svg%3E");
  background-size: cover;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

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

.inline-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-border);
}

.inline-form h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.inline-form p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px rgba(201,129,106,0.15);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin: 14px 0;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--dusty-rose);
  cursor: pointer;
}

.form-submit {
  width: 100%;
}

.form-note {
  font-size: 0.78rem;
  color: var(--warm-gray);
  text-align: center;
  margin-top: 10px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-card);
}

.problem-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.problem-card h4 {
  margin-bottom: 10px;
  color: var(--charcoal);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin: 0;
}

.for-whom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.for-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--light-border);
}

.for-whom-item .check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dusty-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-whom-item .check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.for-whom-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0;
}

.curriculum-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.module-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dusty-rose-light);
  color: var(--dusty-rose-dark);
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: var(--dusty-rose-light);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dusty-rose);
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(201,129,106,0.3);
}

.step h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

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

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

.teacher-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.teacher-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
}

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

.teacher-content .section-label {
  margin-bottom: 8px;
}

.teacher-content h2 {
  margin-bottom: 20px;
}

.teacher-content p {
  color: var(--warm-gray);
  font-size: 0.98rem;
}

.teacher-facts {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.teacher-fact {
  background: var(--dusty-rose-light);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
}

.teacher-fact strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--dusty-rose-dark);
}

.teacher-fact span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.materials-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.materials-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.materials-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.materials-list li::before {
  content: '✦';
  color: var(--dusty-rose);
  font-size: 0.7rem;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--parchment) 0%, var(--dusty-rose-light) 100%);
  padding: 80px 0;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.lead-form-text h2 {
  margin-bottom: 16px;
}

.lead-form-text p {
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.lead-form-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.lead-form-perks li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--dusty-rose);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.lead-form-box h3 {
  margin-bottom: 6px;
}

.lead-form-box > p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dusty-rose-light);
  color: var(--dusty-rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  padding-bottom: 20px;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 4px 24px 0;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-text a {
  color: var(--dusty-rose);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--dusty-rose);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.cookie-accept:hover {
  background: var(--dusty-rose-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 9px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.cookie-decline:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--light-border);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dusty-rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--dusty-rose);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.success-card p {
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.legal-page .page-hero {
  background: var(--parchment);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--light-border);
}

.legal-page .page-hero h1 {
  margin-bottom: 8px;
}

.legal-page .page-hero p {
  color: var(--warm-gray);
  margin: 0;
  font-size: 0.9rem;
}

.legal-content {
  padding: 56px 0;
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p, .legal-content li {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 1em;
}

.legal-content li {
  margin-bottom: 0.5em;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-image {
    order: -1;
    aspect-ratio: 16/9;
  }

  .teacher-inner {
    grid-template-columns: 1fr;
  }

  .teacher-photo {
    aspect-ratio: 16/9;
    max-width: 400px;
  }

  .materials-inner {
    grid-template-columns: 1fr;
  }

  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lead-form-box {
    padding: 28px;
  }

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

  .steps::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-border);
    gap: 16px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .for-whom-list {
    grid-template-columns: 1fr;
  }

  .curriculum-modules {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .success-card {
    padding: 36px 24px;
  }

  .inline-form {
    padding: 20px;
  }

  .hero {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
