/* ========================================
   Custom Font Faces
   ======================================== */
@font-face {
  font-family: 'Moonlight';
  src: url('../Fonts/Moonlight/Moonlight.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moonlight';
  src: url('../Fonts/Moonlight/Moonlight Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Monterchi Sans';
  src: url('../Fonts/MonterchiSans/Monterchi-Sans-Thin-trial.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0-2F, U+3A-2012, U+2015-10FFFF;
}

@font-face {
  font-family: 'Monterchi Sans';
  src: url('../Fonts/MonterchiSans/Monterchi-Sans-Book-trial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0-2F, U+3A-2012, U+2015-10FFFF;
}

@font-face {
  font-family: 'Monterchi Sans';
  src: url('../Fonts/MonterchiSans/Monterchi-Sans-Extrabold-trial.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0-2F, U+3A-2012, U+2015-10FFFF;
}

@font-face {
  font-family: 'Monterchi Sans';
  src: local('Segoe UI'), local('Arial'), local('Helvetica');
  unicode-range: U+30-39, U+2013-2014;
  font-display: swap;
}

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  --color-gold: #E8A835;
  --color-gold-light: #F5D484;
  --color-gold-dark: #C78D1E;
  --color-gold-bg: #FDF6E3;
  --color-gold-subtle: #FEF9ED;
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8A8A;
  --color-white: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFAFA;
  --color-border: #E8E8E8;

  --font-body: 'Monterchi Sans', 'Segoe UI', sans-serif;
  --font-heading: 'Moonlight', cursive;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(232, 168, 53, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.nav-logo-img {
  height: 96px;
  width: auto;
}

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

.nav-links a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--color-gold-dark);
  background: var(--color-gold-subtle);
}

.nav-links a.nav-cta {
  background: var(--color-gold);
  color: var(--color-white);
  margin-left: 8px;
}

.nav-links a.nav-cta:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}

.nav-links a.active-link {
  color: var(--color-gold-dark);
}

.nav-links a.active-link.nav-cta {
  color: var(--color-white);
}

/* Mobile Nav Toggle */
.nav-close-wrapper {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-gold-bg) 0%, var(--color-gold-subtle) 50%, var(--color-white) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 53, 0.12) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--color-gold-dark);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========================================
   Guitar Banner Divider
   ======================================== */
.guitar-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.guitar-banner-img {
  width: 100%;
  height: auto;
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-quote {
  position: relative;
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--color-gold-bg);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-light);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
}

.tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-light);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Sessions Grid */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.session-card {
  position: relative;
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.session-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-light);
}

.session-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  border-radius: 50px;
  margin-bottom: 16px;
}

.session-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.session-card > p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.session-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.session-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.93rem;
  color: var(--color-text-light);
}

.session-details svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

/* ========================================
   Videos Section
   ======================================== */
.videos {
  padding: 100px 0;
  background: var(--color-white);
}

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

.video-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-light);
  color: var(--color-text);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(232, 168, 53, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.video-card:hover .video-play-icon {
  background: var(--color-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon svg {
  margin-left: 3px;
}

.video-info {
  padding: 16px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-date {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: auto;
}

.video-loading {
  text-align: center;
  color: var(--color-text-muted);
  padding: 40px;
  grid-column: 1 / -1;
}

.video-footer {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .videos {
    padding: 80px 0;
  }

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

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-gold-bg);
  color: var(--color-gold-dark);
  border-radius: var(--radius-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-item a {
  color: var(--color-gold-dark);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}


/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-form h3 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(232, 168, 53, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Form Status Messages */
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-status-success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-status-error {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFCC80;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.85rem;
}

/* ========================================
   Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-white);
    padding: 0;
    gap: 8px;
  }

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

  .nav-close-wrapper {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    list-style: none;
  }

  .nav-close {
    background: none;
    border: none;
    font-size: 2.4rem;
    color: var(--color-text);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color var(--transition);
  }

  .nav-close:hover {
    color: var(--color-gold-dark);
  }

  .nav-links a {
    font-size: 2rem;
    padding: 18px 32px;
    width: 100%;
    text-align: center;
  }

  .nav-links a.nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    max-width: 280px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 120px 0 100px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-photo {
    max-width: 280px;
  }

  /* About */
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-quote {
    text-align: left;
  }

  /* Services */
  .services {
    padding: 80px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sessions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 280px;
  }

  /* Contact */
  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-text h2,
  .section-header h2,
  .contact-info h2 {
    font-size: 1.8rem;
  }
}
