:root {
  --pine: #2C3E35;
  --pine-lt: #3a5246;
  --navy: #1a1a2e;
  --navy-lt: #16213e;
  --cream: #ffffff;
  --sand: #f4f7f5;
  --gold: #4a7c6e;
  --text: #1a1a1a;
  --muted: #6b7280;
  --white: #ffffff;

  --r: Cormorant Garamond, Georgia, serif;
  --s: Inter, system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--s);
  font-size: 16px;
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-family: var(--s);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.divider.center {
  margin: 1.5rem auto;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 62, 53, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: var(--r);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pine);
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--s);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 62, 53, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pine);
}

.nav-cta {
  background: var(--pine) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--pine-lt) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pine);
  margin: 4px 0;
  transition: 0.3s;
}


#hero {
  min-height: 100vh;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem clamp(1.5rem, 6vw, 5rem) 4rem;
}

.labyrinth-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--r);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--pine);
  margin-bottom: 1.5rem;
}

.hero-tagline em {
  display: block;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  margin-top: 0.1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.badge {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine);
  border: 1px solid rgba(44, 62, 53, 0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: rgba(74, 124, 110, 0.08);
  border-left: 3px solid var(--gold);
  max-width: 100%;
  border-radius: 2px;
  color: #444;
}

.hero-note h3 {
  font-size: 1rem;
  font-family: var(--r);
  font-weight: 500;
  color: var(--pine);
  margin-bottom: 0.6rem;
}

.hero-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.btn-primary {
  background: var(--pine);
  color: #ffffff;
  font-family: var(--s);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--pine-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--pine);
  font-family: var(--s);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(44, 62, 53, 0.35);
  border-radius: 2px;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--pine);
  background: rgba(44, 62, 53, 0.05);
}

.hero-photo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.photo-frame {
  position: relative;
  width: min(380px, 90%);
}

.photo-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(44, 62, 53, 0.2);
  border-radius: 2px;
  z-index: 0;
}

.photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  display: block;
  filter: none;
}


#about {
  background: #ffffff;
  padding: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--r);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--pine);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #444;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.credential-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #444;
}

.credential-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

.about-card {
  background: var(--pine);
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 2px;
  position: relative;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(44, 62, 53, 0.2);
  border-radius: 2px;
  pointer-events: none;
}

.about-card blockquote {
  font-family: var(--r);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 2rem;
}

.about-card blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.15rem;
}

.about-card cite {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}


#services {
  background: var(--sand);
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.services-header h2 {
  font-family: var(--r);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1rem;
}

.services-header p {
  color: #666;
  font-size: 0.97rem;
}

.section-copy {
  max-width: 680px;
  color: #666;
  font-size: 0.95rem;
  margin: 0 auto;
}

#group {
  background: #ffffff;
  padding-top: 5rem;
}

#puerto-penasco {
  background: #f4f7f5;
  padding-top: 5rem;
}

#group .services-header h2,
#puerto-penasco .services-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}

#group .service-card h3,
#puerto-penasco .service-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

#group .service-card p,
#puerto-penasco .service-card p {
  margin-top: 0.85rem;
  color: #555;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  background: transparent;
  border: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(44, 62, 53, 0.1);
  border-radius: 2px;
}

.faq-item h3 {
  font-family: var(--r);
  font-size: 1.1rem;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
}

.service-card {
  background: #ffffff;
  padding: 2.4rem 2.2rem;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(44, 62, 53, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  background: #f8faf7;
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(44, 62, 53, 0.14);
}

.resource-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(74, 124, 110, 0.1);
  border: 1px solid rgba(74, 124, 110, 0.2);
  border-radius: 999px;
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.resource-link:hover {
  background: rgba(74, 124, 110, 0.16);
  border-color: var(--pine);
  transform: translateX(2px);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
  transition: color 0.25s;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: stroke 0.25s;
}

.service-card:hover .service-icon svg {
  stroke: var(--pine);
}

.service-card h3 {
  font-family: var(--r);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}


#approach {
  background: #ffffff;
  padding: var(--section-pad);
}

.approach-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.approach-label h2 {
  font-family: var(--r);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--pine);
  line-height: 1.2;
}

.approach-label p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.approach-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(44, 62, 53, 0.1);
  align-items: start;
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--r);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.step h3 {
  font-family: var(--r);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
}


#contact {
  background: var(--sand);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

#contact .labyrinth-bg {
  opacity: 0.03;
}

.video-block {
  max-width: var(--max);
  margin: 2rem auto 3rem;
  align-items: center;
}

.video-block video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(44, 62, 53, 0.12);
  border: 1px solid rgba(44, 62, 53, 0.08);
  object-fit: cover;
  min-height: 240px;
  max-height: 600px;
}

.video-block p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.contact-info h2 {
  font-family: var(--r);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: #666;
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(44, 62, 53, 0.06);
  border: 1px solid rgba(44, 62, 53, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.contact-item-text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
  font-weight: 500;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(44, 62, 53, 0.12);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 24px rgba(44, 62, 53, 0.06);
}

.contact-form h3 {
  font-family: var(--r);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f8faf9;
  border: 1px solid rgba(44, 62, 53, 0.18);
  color: var(--text);
  font-family: var(--s);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: #fff;
  color: var(--text);
}

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

.btn-submit {
  width: 100%;
  background: var(--pine);
  color: #ffffff;
  font-family: var(--s);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  padding: 1rem;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-submit:hover {
  background: var(--pine-lt);
  transform: translateY(-1px);
}


footer {
  background: var(--pine);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(44, 62, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--r);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand span {
  display: block;
  font-family: var(--s);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

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


@media (max-width: 1024px) {

  .about-grid,
  .approach-grid,
  .contact-grid {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem clamp(1rem, 4vw, 3rem);
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  #hero {
    grid-template-columns: 1fr;
    padding: 6rem clamp(1rem, 4vw, 3rem) 3rem;
    gap: 2.5rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-photo {
    order: 1;
  }

  .photo-frame {
    width: min(320px, 85%);
    margin: 0 auto;
  }

  .hero-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .about-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .video-block {
    gap: 1.25rem;
  }

  .video-block video {
    max-height: 500px;
  }

  .about-card::after {
    display: none;
  }

  .contact-form {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.25rem;
    gap: 1rem;
    border-top: 1px solid rgba(44, 62, 53, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

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

  .nav-toggle {
    display: block;
    z-index: 1000;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

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

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .video-block {
    gap: 0.75rem;
  }

  .video-block video {
    max-height: none;
  }

  .photo-frame {
    width: min(320px, 85%);
  }

  nav {
    padding: 0.85rem clamp(1rem, 3vw, 2rem);
  }

  .nav-logo {
    font-size: 1rem;
    gap: 0.5rem;
  }

  .nav-logo img {
    height: 44px;
  }

  #hero {
    min-height: 90vh;
    padding: 5rem clamp(1rem, 3vw, 2.5rem) 2.5rem;
  }

  .hero-tagline {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }

  .photo-frame {
    width: min(280px, 90%);
  }

  #about,
  #services,
  #approach,
  #contact {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem);
  }

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

  .service-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .step {
    padding: 1.5rem 0;
    gap: 1rem;
  }

  .step-num {
    font-size: 2rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem clamp(1rem, 3vw, 2.5rem);
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  nav {
    padding: 0.75rem clamp(0.75rem, 2.5vw, 1.5rem);
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .nav-logo img {
    height: 40px;
  }

  #hero {
    min-height: auto;
    padding: 4rem clamp(0.75rem, 2.5vw, 1.5rem) 2rem;
    gap: 2rem;
  }

  .hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
  }

  .photo-frame {
    width: min(240px, 95%);
  }

  #about,
  #services,
  #approach,
  #contact {
    padding: clamp(2rem, 4vw, 3rem) clamp(0.75rem, 2.5vw, 1.5rem);
  }

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

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .step {
    padding: 1.25rem 0;
    gap: 0.75rem;
  }

  .step-num {
    font-size: 1.75rem;
    min-width: 40px;
  }

  .step h3 {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  footer {
    padding: 1.5rem clamp(0.75rem, 2.5vw, 1.5rem);
    gap: 0.75rem;
  }

  footer p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  nav {
    padding: 0.65rem clamp(0.5rem, 2vw, 1rem);
  }

  .nav-logo {
    font-size: 0.8rem;
  }

  .nav-logo img {
    height: 36px;
  }

  #hero {
    min-height: 80vh;
    padding: 3.5rem clamp(0.5rem, 2vw, 1rem) 1.75rem;
    gap: 1.75rem;
  }

  .hero-tagline {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
  }

  .photo-frame {
    width: min(220px, 100%);
  }

  #about,
  #services,
  #approach,
  #contact {
    padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(0.5rem, 2vw, 1rem);
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .step {
    padding: 1rem 0;
  }

  .step-num {
    font-size: 1.5rem;
  }

  .step h3 {
    font-size: 0.9rem;
  }

  .contact-form h3 {
    font-size: 1rem;
  }

  footer {
    padding: 1.25rem clamp(0.5rem, 2vw, 1rem);
  }
}

@media (max-width: 360px) {
  nav {
    padding: 0.6rem 0.5rem;
  }

  .nav-logo {
    font-size: 0.75rem;
  }

  .nav-logo img {
    height: 32px;
  }

  #hero {
    padding: 3rem 0.5rem 1.5rem;
  }

  .hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
  }

  .photo-frame {
    width: min(200px, 100%);
  }
}

@media (max-width: 960px) {

  #hero {
    padding-top: 8.5rem !important;
    padding-bottom: 4rem !important;
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem !important;
  }

  .hero-photo {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .photo-frame {
    max-width: 290px;
    margin: 0 auto;
  }
}