:root {
  color-scheme: light;
  color: #212121;
  background: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

button,
a {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.98);
  border-bottom: 1px solid rgba(193, 40, 114, 0.3);
  backdrop-filter: blur(16px);
}

.header-inner,
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: block;
  text-decoration: none;
}

.brand img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #c12872;
}

.header-image {
  width: 100%;
  height: 400px;
  position: relative;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  overflow: visible;
  padding: 0 2rem;
}

.animated-logo {
  max-width: 1050px;
  width: 100%;
  height: auto;
  animation: slideInAndFloat 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
  will-change: transform, opacity;
}

@keyframes slideInAndFloat {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll animation applied via JavaScript */
.animated-logo.scrolling {
  animation: none;
}

.hero {
  padding: 8rem 0 8rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/IMG_9628.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(100%) brightness(0.4);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(193, 40, 114, 0.12);
  color: #c12872;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.hero p {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: #e0e0e0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  background: #c12872;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #a1004e;
  transform: translateY(-1px);
}

.button-outline {
  border: 2px solid #c12872;
  background: rgba(193, 40, 114, 0.10);
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(193,40,114,0.10);
  font-weight: 700;
}

  .button-outline:hover,
  .button-outline:focus-visible {
    background: #c12872;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 24px 0 rgba(193,40,114,0.18);
    transform: translateY(-2px) scale(1.04);
  }
.section {
  padding: 5rem 0;
}

#services {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  border-top: 1px solid #c12872;
  border-bottom: 1px solid #c12872;
}

.services-inner {
  position: relative;
  z-index: 2;
}

#services h2 {
  color: #ffffff;
}

#services .card h3 {
  color: #c12872;
}

#services .card p {
  color: #e0e0e0;
}

.section-alt {
  background: linear-gradient(135deg, #f2f2f2 0%, #e8e8e8 100%);
}

#work {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.work-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/IMG_4810.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(100%) brightness(0.4);
  z-index: 1;
  pointer-events: none;
}

.work-inner {
  position: relative;
  z-index: 2;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

#work .section-header h2 {
  color: #ffffff;
}

#work .section-header p {
  color: #e0e0e0;
}

#faq .section-header h2 {
  color: #c12872;
}

.faq-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.faq-social-links {
  display: flex;
  gap: 1.1rem;
}

.faq-social-links .social-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  transition: filter 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(193,40,114,0.10));
}
.faq-social-links .social-icon:hover,
.faq-social-links .social-icon:focus-visible {
  filter: drop-shadow(0 4px 16px #c12872);
  transform: scale(1.13) translateY(-2px);
}

#faq .section-header p {
  color: #e0e0e0;
}

.section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  color: #212121;
}

.section-header p,
.card p,
.gallery-card p,
.contact-card p,
.footer-brand p,
.footer-newsletter p {
  margin: 0;
  color: #424242;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.contact-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: #1a1a1a;
  border: 1px solid rgba(193, 40, 114, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

#services .card {
  background: #1a1a1a;
  border: 1.5px solid rgba(193, 40, 114, 0.3);
  transition: all 0.3s ease;
}

#services .card:hover {
  border-color: #c12872;
  box-shadow: 0 24px 80px rgba(193, 40, 114, 0.15);
  transform: translateY(-4px);
}

.card-accent {
  background: linear-gradient(135deg, rgba(193, 40, 114, 0.15), rgba(161, 0, 78, 0.1));
  border-color: #c12872;
}

.card h3,
.gallery-card h3 {
  margin: 0 0 0.85rem;
  color: #212121;
}

.gallery-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.instagram-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: start;
}

.ig-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(193, 40, 114, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 30px 80px rgba(193, 40, 114, 0.3);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-card:hover .ig-caption {
  opacity: 1;
}

.ig-embed-wrapper {
  width: 100%;
  max-width: 540px;
  height: 550px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
}

.ig-embed-wrapper .instagram-media {
  margin: 0 auto !important;
  border-radius: 1.5rem !important;
  overflow: hidden;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.gallery-card {
  overflow: hidden;
  border-radius: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(193, 40, 114, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(193, 40, 114, 0.16);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 22rem;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card > div {
  padding: 2rem;
  background: #ffffff;
}

.gallery-card h3 {
  font-size: 1.3rem;
  color: #c12872;
}

.gallery-card p {
  font-size: 0.95rem;
  color: #424242;
  margin-top: 0.5rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card .contact-actions {
  grid-column: 1 / -1;
}

.contact-card h2 {
  color: #ffffff;
}

.contact-card p {
  color: #e0e0e0;
}

.contact-form-wrap .quote-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form-wrap .quote-form input,
.contact-form-wrap .quote-form select,
.contact-form-wrap .quote-form textarea {
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(193, 40, 114, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font: inherit;
  font-size: 0.95rem;
}

.contact-form-wrap .quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e0e0e0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form-wrap .quote-form select option {
  background: #1a1a1a;
  color: #ffffff;
}

.contact-form-wrap .quote-form textarea {
  resize: vertical;
  min-height: 4rem;
}

.contact-form-wrap .quote-form input::placeholder,
.contact-form-wrap .quote-form textarea::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.contact-form-wrap .quote-form input:focus,
.contact-form-wrap .quote-form select:focus,
.contact-form-wrap .quote-form textarea:focus {
  outline: none;
  border-color: #c12872;
  box-shadow: 0 0 0 3px rgba(193, 40, 114, 0.2);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-links .social-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  transition: filter 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(193,40,114,0.10));
}

.contact-links .social-icon:hover {
  filter: drop-shadow(0 4px 16px #c12872);
  transform: scale(1.13) translateY(-2px);
}

.contact-links a,
.footer-links a,
.footer-social a {
  color: #7f1146;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-links a:hover,
.footer-links a:hover,
.footer-social a:hover,
.contact-links a:focus-visible,
.footer-links a:focus-visible,
.footer-social a:focus-visible {
  color: #c12872;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, #f2f2f2 0%, #e0e0e0 100%);
  color: #212121;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 10%, rgba(193, 40, 114, 0.08), transparent 16%),
    radial-gradient(circle at 20% 30%, rgba(161, 0, 78, 0.06), transparent 12%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand .brand img {
  height: 60px;
  width: auto;
}

.footer-brand p,
.footer-quote p {
  max-width: 32rem;
  margin-top: 1rem;
}

.footer-contact-info a {
  color: #7f1146;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: #c12872;
}

.footer-location {
  color: #424242;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-social .social-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  transition: filter 0.2s, transform 0.2s;
}

.footer-social .social-icon:hover {
  filter: drop-shadow(0 4px 16px #c12872);
  transform: scale(1.13) translateY(-2px);
}

.footer-links h3,
.footer-quote h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.footer-links a {
  display: block;
  margin-bottom: 0.85rem;
}

.quote-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #212121;
  font: inherit;
  font-size: 0.95rem;
}

.quote-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23424242' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quote-form textarea {
  resize: vertical;
  min-height: 4rem;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #c12872;
  box-shadow: 0 0 0 3px rgba(193, 40, 114, 0.15);
}

.footer-button {
  border-radius: 999px;
  background: #c12872;
  color: #ffffff;
  border: none;
  box-shadow: 0 18px 35px rgba(193, 40, 114, 0.18);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: #424242;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

/* Lightbox Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1rem;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 1001;
}

.modal-close:hover {
  color: #c12872;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Scrolling Gallery */
.scrolling-gallery-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  overflow: hidden;
}

.scrolling-gallery-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scrolling-gallery-container::-webkit-scrollbar {
  display: none;
}

.scrolling-gallery-container.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.scrolling-gallery {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  animation: scroll 90s linear infinite;
}

.scroll-item {
  flex-shrink: 0;
  width: 300px;
  height: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 20px 60px rgba(193, 40, 114, 0.15);
}

.scroll-item:hover {
  transform: scale(1.08);
  box-shadow: 0 30px 80px rgba(193, 40, 114, 0.3);
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 21 - 1.1rem * 21));
  }
}

/* Pause animation on hover */
.scrolling-gallery-container:hover .scrolling-gallery {
  animation-play-state: paused;
}

/* Why Choose Sticky Ink */
.why-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(193, 40, 114, 0.3);
}

.why-section h2 {
  color: #ffffff;
}

.why-section .section-header p {
  color: #e0e0e0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(193, 40, 114, 0.08);
  border: 1px solid rgba(193, 40, 114, 0.25);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: #c12872;
  box-shadow: 0 24px 80px rgba(193, 40, 114, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  margin: 0 0 0.75rem;
  color: #c12872;
  font-size: 1.15rem;
}

.why-card p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* FAQ Accordion */
#faq {
  background: #1a1a1a;
  color: #ffffff;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.faq-item {
  border: 1px solid rgba(193, 40, 114, 0.3);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(193, 40, 114, 0.08);
  box-shadow: 0 4px 15px rgba(193, 40, 114, 0.15);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(193, 40, 114, 0.12);
  box-shadow: 0 8px 25px rgba(193, 40, 114, 0.25);
  border-color: rgba(193, 40, 114, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: #c12872;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #c12872;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 2rem 1.5rem;
  border-top: 1px solid rgba(193, 40, 114, 0.3);
}

.faq-answer p {
  margin: 0.75rem 0;
  color: #e0e0e0;
  line-height: 1.6;
}

.faq-answer p:first-child {
  margin-top: 1rem;
}

.faq-answer strong {
  color: #c12872;
}

.faq-answer ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin: 0.5rem 0;
  color: #e0e0e0;
}

.faq-answer a {
  color: #c12872;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: #ff6ba8;
  text-decoration: underline;
}

@media (max-width: 960px) {
  .hero-inner,
  .footer-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .ig-visible .ig-caption {
    animation: fadeInCaption 0.5s ease 1s forwards;
  }

  @keyframes fadeInCaption {
    to { opacity: 1; }
  }

  .ig-embed-wrapper {
    max-width: 540px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .footer-grid {
    display: grid;
    gap: 1.5rem;
  }

  .gallery-card img {
    height: 14rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
