/* ============================================
   Patti Thompson, MA — Medical Practice Website
   Color Palette: Terracotta + Sand
   ============================================ */

:root {
  --color-terracotta: #C2704E;
  --color-terracotta-dark: #A85A3A;
  --color-terracotta-light: #D4916F;
  --color-sand: #F5EDE4;
  --color-sand-light: #FAF6F1;
  --color-sand-dark: #E8DDD3;
  --color-cream: #FFFDF9;
  --color-text: #3D2C24;
  --color-text-light: #6B5548;
  --color-text-muted: #9A8578;
  --color-white: #FFFFFF;
  --color-border: #E8DDD3;
  --color-success: #5A8A6A;
  --color-error: #C45B5B;

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(61, 44, 36, 0.06), 0 1px 2px rgba(61, 44, 36, 0.04);
  --shadow-md: 0 4px 16px rgba(61, 44, 36, 0.08), 0 2px 4px rgba(61, 44, 36, 0.04);
  --shadow-lg: 0 12px 40px rgba(61, 44, 36, 0.10), 0 4px 12px rgba(61, 44, 36, 0.05);
  --shadow-xl: 0 24px 60px rgba(61, 44, 36, 0.12), 0 8px 20px rgba(61, 44, 36, 0.06);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

a:hover {
  color: var(--color-terracotta-dark);
}

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

em {
  font-style: italic;
  color: var(--color-terracotta);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

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

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Section Headers
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-terracotta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.logo-accent {
  color: var(--color-terracotta);
  font-weight: 400;
}

/* Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  left: 0;
  transition: all var(--transition);
}

.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);
}

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

.nav-menu a {
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-menu a:hover {
  color: var(--color-terracotta);
  background: rgba(194, 112, 78, 0.08);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 120px;
  background: var(--color-sand);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(194, 112, 78, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(194, 112, 78, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at 60% 80%, rgba(194, 112, 78, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  background: rgba(194, 112, 78, 0.1);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--color-terracotta);
}

.hero-sub {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-sub em {
  font-style: italic;
  color: var(--color-terracotta);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.trust-item svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 560/680;
}

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

.hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: rgba(194, 112, 78, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.floating-stat {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1.2;
}

.floating-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

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

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(194, 112, 78, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-terracotta);
  color: var(--color-white);
}

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

.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-terracotta);
  background: rgba(194, 112, 78, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/600;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-cream);
  aspect-ratio: 400/300;
  width: 260px;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  color: var(--color-terracotta-light);
  opacity: 0.3;
}

.about-content .section-eyebrow {
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 24px;
}

.about-content .lead {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.value-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-terracotta-light);
  padding-top: 4px;
}

.value-item strong {
  display: block;
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.value-item span {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   Patient Experience
   ============================================ */
.experience {
  padding: 100px 0;
  background: var(--color-sand);
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--color-terracotta-light);
  opacity: 0.5;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border: 2px solid var(--color-terracotta);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-terracotta);
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 17px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.experience-banner {
  background: var(--color-terracotta);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.experience-banner::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 200px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.banner-quote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.banner-attribution {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

/* ============================================
   Location
   ============================================ */
.location {
  padding: 100px 0;
  background: var(--color-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-info {
  padding: 40px;
  background: var(--color-sand);
  border-radius: var(--radius-xl);
}

.location-info h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 24px;
}

.location-address {
  font-style: normal;
  margin-bottom: 32px;
}

.location-address p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
}

.location-address strong {
  color: var(--color-terracotta);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.detail-item svg {
  color: var(--color-terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 4px;
}

.detail-item a {
  color: var(--color-terracotta);
  font-weight: 500;
}

.detail-item span {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}

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

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

.contact-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  background: rgba(194, 112, 78, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-method:hover .contact-method-icon {
  background: var(--color-terracotta);
  color: var(--color-white);
}

/* Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.required {
  color: var(--color-terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-sand-light);
  color: var(--color-text);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-terracotta);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(194, 112, 78, 0.1);
}

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

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

.form-note {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(90, 138, 106, 0.08);
  border: 1px solid rgba(90, 138, 106, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-success);
  font-size: 15px;
  line-height: 1.6;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--color-success);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--color-terracotta);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-terracotta-light);
  padding-left: 4px;
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-terracotta-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

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

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

  .step::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 100;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  .nav-menu .btn {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 120px 0 100px;
  }

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

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

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

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

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-floating-card {
    left: 0;
    bottom: 24px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-img-secondary {
    right: 0;
  }

  .experience-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 64px;
  }

  .experience-banner {
    padding: 40px 28px;
  }

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

  .location-info {
    padding: 28px;
  }

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

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

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

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-floating-card {
    left: -16px;
    right: -16px;
    bottom: 16px;
  }

  .services,
  .about,
  .experience,
  .location,
  .contact {
    padding: 72px 0;
  }

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

/* ============================================
   Animations
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }
}
