/* ========================================
   ISLAND IMPRINTS & DESIGN
   Color Palette (derived from logo):
   - Navy:       #1a2e4a  (primary, text, nav, footer)
   - Teal:       #34b8b4  (accent, CTAs, highlights)
   - Deep Teal:  #2a9d99  (hover states)
   - Warm Cream:  #f9f7f4  (alternate section backgrounds)
   - Light Teal:  #eaf7f6  (subtle highlight backgrounds)
   - White:       #ffffff
   - Dark Text:   #2d3748
   - Medium Text:  #5a6a7a
   - Light Border: #e2e8f0
   ======================================== */

:root {
  --navy: #1a2e4a;
  --teal: #34b8b4;
  --teal-deep: #2a9d99;
  --teal-light: #eaf7f6;
  --cream: #f9f7f4;
  --white: #ffffff;
  --text-dark: #2d3748;
  --text-medium: #5a6a7a;
  --text-light: #8896a6;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(26, 46, 74, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 46, 74, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 46, 74, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1160px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}

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

.btn--primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: #15253d;
  border-color: #15253d;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn--full {
  width: 100%;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 64px;
  width: auto;
  transition: height var(--transition);
}

.nav--scrolled .nav__logo img {
  height: 50px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--teal-deep);
  background: var(--teal-light);
}

.nav__link--active {
  color: var(--teal-deep);
}

.nav__link--cta {
  background: var(--teal);
  color: var(--white);
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  padding-top: var(--nav-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 184, 180, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

/* ========== SOCIAL PROOF BAR ========== */
.proof {
  text-align: center;
  overflow: hidden;
}

.proof__enterprise {
  background: var(--navy);
  color: var(--white);
  padding: 48px 24px 44px;
}

.proof__enterprise-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.proof__headline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 16px;
}

.proof__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.proof__brands span {
  padding: 0 12px;
  white-space: nowrap;
}

.proof__dot {
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  padding: 0 !important;
}

.proof__clients {
  background: var(--white);
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
}

.proof__clients-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.proof__subhead {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 28px;
}

.proof__logos {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.proof__track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 40s linear infinite;
  width: max-content;
}

.proof__logo-item {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
}

.proof__logo-item img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition);
}

.proof__logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}

/* ========== PACKAGES ========== */
.packages {
  padding: 96px 24px;
  background: var(--cream);
}

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

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

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  /* animation prep */
  opacity: 0;
  transform: translateY(24px);
}

.package-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card.animated:hover {
  transform: translateY(-4px);
}

.package-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.package-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-card__image img {
  transform: scale(1.04);
}

.package-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card__title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.package-card__desc {
  font-size: 0.92rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.package-card__includes {
  margin-bottom: 20px;
  padding: 0;
}

.package-card__includes li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 4px 0 4px 20px;
  position: relative;
}

.package-card__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 2px solid var(--teal);
}

.package-card__price {
  margin-top: auto;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.package-card__amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
}

.package-card__unit {
  font-size: 0.88rem;
  color: var(--text-medium);
}

.packages__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-medium);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
}

.packages__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ========== TRUST BADGES ========== */
.trust {
  padding: 48px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust__item {
  text-align: center;
  padding: 20px 12px;
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.trust__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust__sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .trust__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .trust__container {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust__item {
    padding: 16px 8px;
  }

  .trust__label {
    font-size: 0.85rem;
  }
}

/* ========== ABOUT ========== */
.about {
  padding: 96px 24px;
  background: var(--white);
}

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

.about__content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.about__text p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}

.about__team {
  display: flex;
  gap: 32px;
  justify-content: center;
  position: sticky;
  top: 120px;
}

.about__member {
  text-align: center;
}

.about__headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--teal-light);
}

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

.about__member h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.about__member p {
  font-size: 0.88rem;
  color: var(--text-medium);
}

/* ========== OUR WORK ========== */
.work {
  padding: 96px 24px;
  background: var(--cream);
}

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

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

.work__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  /* animation prep */
  opacity: 0;
  transform: translateY(20px);
}

.work__item.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work__item:hover img {
  transform: scale(1.04);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 96px 24px;
  background: var(--white);
}

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

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

.testimonial-card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  /* animation prep */
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card__stars {
  color: #f0b429;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}

.testimonial-card__author span {
  font-size: 0.82rem;
  color: var(--text-medium);
}

/* ========== INSTAGRAM ========== */
.instagram {
  padding: 80px 24px;
  background: var(--cream);
}

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

.instagram__feed {
  max-width: 800px;
  margin: 0 auto;
}

.instagram__feed .snapwidget-widget {
  display: block;
  width: 100%;
  max-width: 765px;
  height: 510px;
  margin: 0 auto;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.instagram__cta {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .instagram__feed .snapwidget-widget {
    height: 0;
    padding-bottom: 66.7%;
    max-width: 100%;
  }
}

/* ========== CATALOG ========== */
.catalog {
  padding: 80px 24px;
  background: var(--white);
}

.catalog__container {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.catalog__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.catalog__desc {
  color: var(--text-medium);
  margin-bottom: 28px;
  font-size: 1rem;
}

.catalog__note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-medium);
}

.catalog__note a {
  font-weight: 600;
}

/* ========== CONTACT ========== */
.contact {
  padding: 96px 24px;
  background: var(--cream);
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(52, 184, 180, 0.15);
}

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

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

.contact__privacy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 12px;
}

.contact__success {
  text-align: center;
  padding: 24px;
  background: var(--teal-light);
  border-radius: var(--radius);
  margin-top: 16px;
}

.contact__success p {
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 1rem;
}

.contact__info {
  padding-top: 20px;
}

.contact__info-block {
  margin-bottom: 32px;
}

.contact__info-block h3 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.contact__info-block a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.contact__info-block a:hover {
  color: var(--navy);
}

.contact__info-block p {
  font-size: 1rem;
  color: var(--text-dark);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 24px 32px;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__links h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal);
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 16px;
}

.footer__bottom p {
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */

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

  .about__content {
    gap: 40px;
  }

  .packages__grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero__sub {
    margin: 0 auto 32px;
  }

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

  .hero__image::before {
    display: none;
  }

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

  .about__team {
    position: static;
    justify-content: center;
  }

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

  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu--open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .nav__link--cta {
    text-align: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto 36px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .work__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .proof__brands {
    font-size: 0.95rem;
  }

  .proof__brands span {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
  }

  .hero__container {
    padding: 32px 20px 48px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .package-card__body {
    padding: 20px;
  }

  .contact__form {
    padding: 24px;
  }

  .proof__brands {
    flex-direction: column;
    gap: 4px;
  }

  .proof__dot {
    display: none;
  }
}
