/* ===================================================
   Midland Tailors — Stylesheet
   =================================================== */

:root {
  --bg-primary: #FAF9F6;
  --bg-secondary: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --accent: #C4A77D;
  --border: #E8E6E1;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.08);

  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-secondary);
}

.btn-solid {
  background: var(--text-primary);
  color: var(--bg-secondary);
  border-color: var(--text-primary);
}

.btn-solid:hover {
  background: transparent;
  color: var(--text-primary);
}

/* ---------- Image Placeholder ---------- */

.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(135deg, #EDE9E1 0%, #F7F4EE 50%, #E9E3D6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(196,167,125,0.06) 0, rgba(196,167,125,0.06) 2px, transparent 2px, transparent 14px);
}

.img-placeholder span {
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 24px;
}

/* ---------- Top fixed wrapper (announcement bar + navbar) ---------- */

.top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.announcement-bar {
  height: 40px;
  background: var(--text-primary);
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: height 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.top-fixed.scrolled .announcement-bar {
  height: 0;
  opacity: 0;
}

.announcement-track {
  display: flex;
  animation: ticker 28s linear infinite;
}

.announcement-track span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 32px;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Navbar ---------- */

.navbar {
  position: static;
  width: 100%;
  height: 80px;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.top-fixed.scrolled .navbar {
  background: var(--bg-secondary);
  box-shadow: 0 1px 0 var(--border);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--text-primary);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 32px;
  background: none;
  border: none;
  font-size: 28px;
  font-family: var(--font-body);
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 180px 32px 80px;
  background:
    linear-gradient(rgba(250,249,246,0.88), rgba(250,249,246,0.55)),
    linear-gradient(135deg, #EDE9E1 0%, #F7F4EE 45%, #E4DCC9 100%);
  background-blend-mode: normal;
}

.hero-inner {
  max-width: 760px;
}

.hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.15;
  color: var(--text-primary);
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 24px auto 0;
}

.hero .btn {
  margin-top: 40px;
}

/* ---------- Section shared ---------- */

section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.section-heading em {
  font-style: italic;
  color: var(--text-primary);
}

/* ---------- Intro / Secondary CTA banner ---------- */

.intro-cta {
  background: var(--bg-secondary);
  text-align: center;
  padding: 90px 0;
}

.intro-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto;
}

.intro-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 24px auto 0;
}

.intro-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ---------- Stats ---------- */

.stats {
  background: var(--bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ---------- Experience Reimagined ---------- */

.experience {
  background: var(--bg-primary);
}

.experience .container {
  max-width: 820px;
  text-align: center;
}

.experience p.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 24px auto 0;
}

.experience-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  text-align: left;
}

.experience-point .point-index {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
}

.experience-point h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 8px;
}

.experience-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Features ---------- */

.features {
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  background: transparent;
  padding: 8px;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 1.3;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-link {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.feature-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.feature-link:hover::after {
  transform: scaleX(1);
}

/* ---------- Studio Experience (two column) ---------- */

.studio {
  background: var(--bg-secondary);
}

.studio .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.studio h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.3;
}

.studio p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 24px;
}

.studio .img-placeholder {
  aspect-ratio: 4 / 5;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--bg-primary);
}

.testimonials-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
  font-style: italic;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 56px auto 0;
}

/* Sliding marquee variant */
.testimonial-marquee {
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-marquee .testimonial-card {
  flex: 0 0 360px;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
}

.testimonial-author {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-top: 24px;
}

.placeholder-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 2px 10px;
  margin-top: 12px;
}

/* ---------- Services & Pricing ---------- */

.services-pricing {
  background: var(--bg-secondary);
}

.pricing-table {
  max-width: 820px;
  margin: 56px auto 0;
  border-top: 1px solid var(--border);
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row-info h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 6px;
}

.pricing-row-info p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 480px;
}

.pricing-row-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 20px;
}

.shop-teaser {
  max-width: var(--max-width);
  margin: 80px auto 0;
  text-align: center;
}

.shop-teaser h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 32px;
}

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

.shop-item .img-placeholder {
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}

.shop-item h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.shop-item span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- Locations (studio cards) ---------- */

.locations {
  background: var(--bg-primary);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 56px auto 0;
}

.location-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location-card .img-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.location-card-body {
  padding: 32px;
}

.location-card-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
}

.location-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.location-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.location-card-actions .btn {
  padding: 12px 28px;
  font-size: 12px;
}

/* ---------- Video Spotlight Testimonial ---------- */

.video-spotlight {
  background: var(--bg-secondary);
}

.video-spotlight .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.video-placeholder {
  aspect-ratio: 4 / 5;
  position: relative;
}

.play-button {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.play-button svg {
  width: 22px;
  height: 22px;
  fill: var(--text-primary);
  margin-left: 3px;
}

.video-spotlight-text .testimonial-quote-mark {
  display: block;
}

.video-spotlight-text .testimonial-text {
  font-size: 24px;
}

.video-spotlight-text .testimonial-author {
  margin-top: 28px;
}

/* ---------- Social / Instagram ---------- */

.social {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.social-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.social-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
}

.social-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
}

.follow-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.follow-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.follow-buttons a svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.follow-buttons a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

.social-item {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.social-item .img-placeholder {
  height: 100%;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.social-item:hover .img-placeholder {
  transform: scale(1.03);
}

.social-footer {
  text-align: center;
  margin-top: 40px;
}

.social-footer a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- About page specific ---------- */

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 32px 60px;
  background:
    linear-gradient(rgba(250,249,246,0.9), rgba(250,249,246,0.6)),
    linear-gradient(135deg, #EDE9E1 0%, #F7F4EE 45%, #E4DCC9 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 48px);
}

.about-section {
  background: var(--bg-secondary);
  max-width: 820px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.about-section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.35;
  margin-bottom: 24px;
}

.about-section p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-section + .about-section {
  padding-top: 0;
}

.careers-cta {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  padding: 60px 40px;
  border-radius: 8px;
}

.careers-cta h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 28px;
  line-height: 1.4;
}

/* ---------- Contact CTA band ---------- */

.contact-cta {
  background: var(--bg-primary);
  text-align: center;
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
}

.contact-cta p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.contact-cta .btn {
  margin-top: 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9A9A9A;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 13px;
  color: #9A9A9A;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #E5E5E5;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: #E5E5E5;
  fill: none;
  stroke-width: 1.4;
  transition: stroke 0.2s ease;
}

.footer-social a:hover svg {
  stroke: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: #9A9A9A;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #9A9A9A;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ---------- Fade in up ---------- */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .stats .container {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .studio .container {
    gap: 40px;
  }

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

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

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

  .video-spotlight .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 64px 0;
  }

  .stats {
    padding: 56px 0;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }

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

  .studio .container {
    grid-template-columns: 1fr;
  }

  .studio .img-placeholder {
    order: -1;
    aspect-ratio: 16 / 10;
  }

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

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

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

  .intro-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .pricing-row {
    flex-direction: column;
    gap: 8px;
  }

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

  .hero {
    padding-top: 150px;
  }

  .page-hero {
    padding-top: 150px;
  }
}
