/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: #faf9f6;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TOKENS ── */
:root {
  --cream:      #faf9f6;
  --white:      #ffffff;
  --black:      #101828;
  --text-dark:  #1e2939;
  --text-body:  #364153;
  --text-muted: #4a5565;
  --text-dim:   #6a7282;
  --blue:       #0085ff;
  --blue-light: #dbeafe;
  --orange:     #ffa500;
  --border:     #e5e7eb;
  --layout-max: 1280px;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: var(--layout-max);
}

/* ── LOGO ── */
.logo img {
  width: 179px;
  height: 30px;
  display: block;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
}
.nav-link:hover        { color: var(--text-dark); border-bottom-color: var(--text-dark); }
.nav-link--active      { color: var(--text-dark); font-weight: 600; border-bottom-color: var(--text-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 32px;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.35);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-primary.is-loading {
  opacity: 1;
  cursor: wait;
  pointer-events: none;
}
.btn-primary.is-loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.btn-cta-white {
  background-color: var(--white);
  color: var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-cta-outline:hover { background-color: rgba(255,255,255,0.1); opacity: 1; }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.link-inline {
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-ref { text-decoration: underline; text-decoration-style: dotted; text-decoration-thickness: 2px; text-underline-offset: 8px; }

/* ── HERO ── */
.hero {
  background-color: var(--cream);
  padding: 0 0 96px;
  margin-top: 70px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--layout-max);
}

.hero-text {
  flex: 0 0 60%;
  max-width: 60%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-badge-label { color: var(--text-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; font-size: 16px; }
.hero-badge-flag { width: 18px; height: auto; display: inline-block; }

/* Title */
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

/* Bio */
.hero-bio {
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* Decorative underline on "define, design, and deliver" */
.hero-strong {
  font-weight: 800;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding:0 6px;
  background-color: #ffe2ba
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Photo */
.hero-photo {
  position: relative;
  flex-shrink: 0;
}

.hero-photo-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(circle at 50% 50%, var(--blue) 0%, transparent 70%);
  filter: blur(48px);
  opacity: 0.18;
  z-index: 0;
  border-radius: 50%;
}

.hero-photo-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.10);
  transform: rotate(3deg);
  width: 275px;
  height: 357px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-photo-card:hover {
  transform: rotate(6deg);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ── SELECTED WORK ── */
.work {
  background-color: var(--white);
  padding: 96px 0;
}

.work .container {
  max-width: var(--layout-max);
}

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

.work-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  aspect-ratio: 520 / 338;
  background-color: #f3f4f6;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  padding: 0;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Text overlay (TUI, Printed) */
.work-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.work-card-text h3 {
  display: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.work-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Brand logo overlay */
.work-card-brand {
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-height: 28px;
  width: auto;
}
.work-card-brand--light {
  filter: brightness(10);
  bottom: 20px;
  left: 20px;
}

/* Lock badge */
.work-card-lock {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* ── MY SERVICES ── */
.services {
  background-color: var(--cream);
  padding: 96px 0;
}

.services .container {
  max-width: var(--layout-max);
}

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

.service-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--blue);
  display: flex;
  flex-direction: column;
  padding: 24px 20px 20px;
}

.service-card:nth-child(even) { border-color: var(--orange); }


.service-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}



.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background-color: var(--white);
  padding: 96px 0;
}

.testimonials .container {
  max-width: var(--layout-max);
}

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

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  width: 36px;
  height: 36px;
}

.testimonial-card blockquote {
  flex: 1;
}

.testimonial-card blockquote p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-card footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 2px;
}

/* ── GET IN TOUCH (CTA) ── */
.cta {
  background: linear-gradient(162.94deg, #0085ff 0%, #006dd6 100%);
  padding: 96px 24px;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.cta-social-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.social-link:hover { background-color: rgba(255,255,255,0.28); }
.social-link img { filter: brightness(10); }

/* ── FOOTER ── */
.footer {
  background-color: var(--black);
  padding: 28px 0;
}

.footer .container {
  max-width: var(--layout-max);
}

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

.footer p {
  font-size: 14px;
  font-weight: 300;
  color: #99a1af;
}

/* ── PASSWORD MODAL ── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  font-family: inherit;
}
.modal-close:hover { color: var(--text-dark); }

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

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.modal-form { text-align: left; }

.modal-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal-input-wrap {
  position: relative;
}

.modal-input {
  width: 100%;
  height: 56px;
  border: 2px solid var(--blue);
  border-radius: 9999px;
  padding: 0 52px 0 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  background: var(--white);
}
.modal-input:focus { box-shadow: 0 0 0 3px rgba(0, 133, 255, 0.15); }

.modal-input-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-eye-hide { display: none; }

.modal-error {
  font-size: 14px;
  color: #dc2626;
  margin-top: 8px;
  min-height: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.modal-btn {
  flex: 1;
  justify-content: center;
}

.modal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.modal-footer-text {
  font-size: 16px;
  color: var(--text-muted);
}

/* ── CASE STUDY ── */

.cs-hero {
  background-color: var(--cream);
  padding: 70px 0 64px;
}

.cs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.cs-breadcrumb-link,
.cs-breadcrumb-current {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.cs-breadcrumb-link {
  color: var(--text-muted);
  transition: color 0.2s;
}
.cs-breadcrumb-link:hover { color: var(--text-dark); }

.cs-breadcrumb-sep {
  flex-shrink: 0;
  display: block;
}

.cs-breadcrumb-current {
  font-weight: 500;
  color: var(--text-dark);
}

.cs-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.cs-intro {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 860px;
  margin-bottom: 40px;
}

.cs-meta {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.cs-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-meta-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.cs-meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Hero image */
.cs-hero-image {
  background-color: var(--cream);
  padding-bottom: 80px;
}

.cs-img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.cs-img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cs-img-card--mt { margin-top: 48px; }

.cs-img-card--tall img { max-height: 500px; }

/* Content sections */
.cs-section {
  padding: 80px 0;
}

.cs-section--white { background-color: var(--white); }
.cs-section--cream { background-color: var(--cream); }

.cs-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cs-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.cs-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 860px;
}

.cs-body + .cs-body {
  margin-top: 24px;
}

.cs-cta-btn {
  margin-top: 40px;
  font-size: 18px;
  height: 56px;
  padding: 0 32px;
}

/* Two column layout */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cs-two-col-text .cs-body { max-width: none; }

.cs-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.75;
}

.cs-feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
}

/* ── FAQ PAGE ── */

.faq-section {
  background-color: var(--white);
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 848px;
}

.faq-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-answer {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.75;
}

/* ── ABOUT PAGE ── */

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

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

.about-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  aspect-ratio: 536 / 500;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.about-bio-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-bio-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-bio-body:last-child { margin-bottom: 0; }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4px 24px 8px;
    border-bottom: 3px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  }
  .nav.is-open { display: flex; }

  .nav-link {
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link:hover, .nav-link--active { border-bottom-color: var(--border); }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
  }
  .hero-title  { font-size: 52px; }
  .hero-bio    { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .hero-photo-card { width: 260px; height: 338px; transform: none; box-shadow: none; }
  .hero-photo-card:hover { transform: none; }

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

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .cs-title { font-size: 36px; }
  .cs-intro { font-size: 18px; }
  .cs-two-col { grid-template-columns: 1fr; gap: 40px; }

  .about-bio-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── TABLET LANDSCAPE ── */
@media (min-width: 901px) and (max-width: 1440px) and (orientation: landscape) {
  .about-bio-inner { align-items: flex-start; }
  .cs-title { margin-bottom: 0; }
  .cs-intro { margin-top: 16px; margin-bottom: 0; }
  .cs-meta { margin-top: 24px; }
}

/* ── TABLET PORTRAIT ── */
@media (min-width: 641px) and (max-width: 900px) and (orientation: portrait) {
  .hero-text { flex: 0 0 80%; max-width: 80%; }
  .cs-hero { padding: 0; }
  .cs-breadcrumb { margin-bottom: 0; }
  .cs-title { margin-bottom: 0; padding: 24px 0; }
  .about-bio { padding-top: 24px; }
  .faq-section { padding: 0; padding-top: 24px; }
  .cs-intro { margin-bottom: 24px; }
}

/* ── MOBILE LANDSCAPE ── */
@media (orientation: landscape) and (max-height: 500px) {
  main { margin-top: 24px; }
  .hero { padding: 0 0 48px; margin-top: 0; }
  .cs-hero { padding: 0; }
  .cs-breadcrumb { margin-bottom: 0; }
  .cs-title { margin-bottom: 0; padding: 24px 0; }
  .faq-section { padding: 48px 0; }
  .cs-hero-image { margin-top: 48px; }
  .about-bio-inner { align-items: flex-start; }
  .hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 32px;
  }
  .hero-text { flex: 0 0 55%; max-width: 55%; }

  .hero-bio { font-size: 18px; }
  .hero-actions { justify-content: flex-start; }
  .hero-photo { flex: 1; display: flex; justify-content: center; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  .modal-overlay { align-items: center; padding: 12px; }
  .modal { padding: 16px 20px; max-width: 400px; }
  .modal-icon { width: 40px; height: 40px; margin-bottom: 8px; }
  .modal-title { font-size: 18px; margin-bottom: 6px; }
  .modal-desc { font-size: 13px; margin-bottom: 12px; }
  .modal-label { font-size: 14px; margin-bottom: 6px; }
  .modal-input { height: 40px; font-size: 14px; }
  .modal-error { font-size: 13px; }
  .modal-actions { margin-top: 10px; gap: 8px; }
  .modal-btn { height: 40px; font-size: 14px; padding: 0 20px; }
  .modal-divider { margin: 12px 0; }
  .modal-footer-text { font-size: 13px; }
  .hero-photo-card {
    width: 200px;
    height: 260px;
    transform: rotate(3deg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.10);
  }
  .hero-photo-card:hover { transform: rotate(6deg); }
}

@media (max-width: 640px) {
  .hero { padding: 16px 0 48px; margin-top: 0; }
  .hero-inner { text-align: left; align-items: center; gap: 24px; }
  .hero-text { flex: 0 0 100%; max-width: 100%; }
  .hero-actions { justify-content: flex-start; }
  .hero-title { font-size: 48px; letter-spacing: -1px; }
  .hero-bio   { font-size: 21px; }

  .section-title { font-size: 32px; }
  .section-header { margin-bottom: 24px; }
  .section { padding: 48px 0; }
  .cta-actions { flex-wrap: nowrap; }

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

  .cta-title { font-size: 36px; }

  .cs-title { font-size: 28px; }
  .cs-heading { font-size: 28px; }
  .cs-meta { gap: 24px; margin-top: 16px; padding-top: 16px; }
  .cs-section { padding: 56px 0; }
  .cs-img-card img { height: 300px; object-fit: cover; }

  .cs-hero { padding: 16px 0 48px; }
  .cs-breadcrumb { margin-bottom: 16px; }
  .cs-title { margin-bottom: 0; }
  .cs-intro { margin-top: 16px; margin-bottom: 0; }
  .faq-section { padding: 48px 0; }

  .modal { padding: 28px 24px; }
  .modal-icon { width: 52px; height: 52px; margin-bottom: 16px; }
  .modal-title { font-size: 22px; margin-bottom: 8px; }
  .modal-desc { font-size: 14px; margin-bottom: 20px; }
  .modal-input { height: 44px; }
  .modal-actions { margin-top: 16px; }
  .modal-divider { margin: 20px 0; }
  .about-bio-inner { gap: 16px; }
  .about-bio-text { margin-top: 48px; }
  .about-bio-heading { margin-bottom: 16px; }
  .about-bio-body { margin-bottom: 16px; }
}
