@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
  --hot-pink:    #F01F6B;
  --blush-cream: #FDF5F0;
  --dusty-rose:  #F2C4C4;
  --petal:       #F8A0B8;
  --charcoal:    #1C1C1C;
  --stone:       #8C7B7B;

  --font-display: 'David Libre', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  --radius-card: 16px;
  --radius-img:  14px;
  --shadow-soft: 0 12px 48px rgba(28, 28, 28, 0.13);
  --shadow-card: 0 4px 24px rgba(28, 28, 28, 0.08);

  --max-w: 1440px;
  --gutter: 2.5rem;
  --nav-h: 80px;
}

/* ─── Grain overlay ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--blush-cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── Focus styles ───────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--hot-pink);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Layout containers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Typography ─────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.section-title--center {
  text-align: center;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
  display: block;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.15s, border-color 0.22s;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--hot-pink);
  color: #fff;
  border-color: var(--hot-pink);
}

.btn--primary:hover {
  background: #d0185e;
  border-color: #d0185e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 31, 107, 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--hot-pink);
  border-color: var(--hot-pink);
}

.btn--outline:hover {
  background: var(--hot-pink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 31, 107, 0.2);
}

.btn--nav {
  background: var(--hot-pink);
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-color: var(--hot-pink);
}

.btn--nav:hover {
  background: #d0185e;
  border-color: #d0185e;
}

.btn--large {
  font-size: 1rem;
  padding: 1.1rem 2.6rem;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem var(--gutter);
  transition: background 0.3s, box-shadow 0.3s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.nav--solid {
  background: var(--blush-cream);
  box-shadow: 0 2px 20px rgba(28, 28, 28, 0.07);
}

.nav.nav--hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__links a:hover { color: var(--hot-pink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--blush-cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}

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

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--charcoal);
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.2s;
}

.mobile-menu__close:hover { color: var(--hot-pink); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu__nav ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__nav ul a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--charcoal);
  transition: color 0.2s;
}

.mobile-menu__nav ul a:hover { color: var(--hot-pink); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 46fr 54fr;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem;
}

.hero__brand-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--stone);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero__image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__carousel {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3rem);
  overflow: hidden;
  position: relative;
}

.hero__carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  animation: kenBurns 120s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero__carousel-img.active {
  opacity: 1;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.03); }
}

/* ─── Services ───────────────────────────────────────────────── */
.services {
  padding: 3rem 0;
}

.services__header {
  margin-bottom: 2.25rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.service-card {
  background: #fffaf8;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 52px rgba(28, 28, 28, 0.13);
}

.service-card__image {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

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

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

.service-card__image--placeholder {
  background: linear-gradient(135deg, var(--blush-cream) 0%, var(--dusty-rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--hot-pink);
  opacity: 0.55;
}

.service-card__body {
  padding: 1.6rem 1.75rem 1.75rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
}

.services__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.services__cta-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--stone);
}

/* ─── Experience ─────────────────────────────────────────────── */
.experience {
  background: linear-gradient(160deg, #fffaf8 0%, var(--blush-cream) 100%);
  padding: 3rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.experience__image-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.experience__image-col img {
  width: calc(100% + 2rem);
  margin-left: -2rem;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
}

.experience__content-col .section-title {
  margin-bottom: 2.5rem;
}

.experience__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242, 196, 196, 0.45);
}

.experience__block:last-of-type {
  border-bottom: none;
  margin-bottom: 2.5rem;
}

.experience__block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--hot-pink);
  margin-bottom: 0.55rem;
  letter-spacing: 0.01em;
}

.experience__block p {
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.85;
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery-section {
  padding: 3rem 0;
}

.gallery-section .section-title {
  margin-bottom: 2.5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-filter {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--dusty-rose);
  border-radius: 50px;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  letter-spacing: 0.02em;
}

.gallery-filter:hover {
  border-color: var(--petal);
  color: var(--charcoal);
}

.gallery-filter.active {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  background: rgba(240, 31, 107, 0.05);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
}

.gallery__grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: zoom-in;
  transition: opacity 0.35s;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

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

.gallery__item.hidden {
  display: none;
}

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 16, 0.96);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-ui);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox__close:hover { color: #fff; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-ui);
  font-size: 3.5rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  line-height: 1;
}

.lightbox__nav:hover { opacity: 1; color: #fff; }
.lightbox__prev { left: 0.5rem; }
.lightbox__next { right: 0.5rem; }

/* ─── About ──────────────────────────────────────────────────── */
.about {
  padding: 3rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__content .section-title {
  margin-bottom: 2rem;
}

.about__copy {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2.25rem;
}

.about__copy p {
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.about__location {
  font-style: italic;
  color: var(--stone) !important;
  margin-top: 0.25rem;
}

.about__image-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about__image-col img {
  width: calc(100% + 2rem);
  margin-right: -2rem;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-soft);
}

.about__image-placeholder {
  width: calc(100% + 2rem);
  margin-right: -2rem;
  aspect-ratio: 2 / 3;
  background: linear-gradient(145deg, #fdf0ec 0%, var(--dusty-rose) 60%, var(--petal) 100%);
  border-radius: var(--radius-img);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--hot-pink);
  opacity: 0.5;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fffaf8 0%, #fceee8 100%);
}

.testimonials .section-title {
  margin-bottom: 2rem;
}

.testimonials__carousel {
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.testimonial__card {
  min-width: 100%;
  padding: 2.75rem 3.25rem;
  background: #fffaf8;
  box-shadow: var(--shadow-card);
}

.testimonial__card blockquote p {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonial__card blockquote p::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--dusty-rose);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0.1rem;
}

.testimonial__card blockquote footer {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--stone);
}

.testimonial__card blockquote footer strong {
  color: var(--charcoal);
  font-weight: 500;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials__btn {
  background: none;
  border: 1.5px solid var(--dusty-rose);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.22s, color 0.22s;
  line-height: 1;
}

.testimonials__btn:hover {
  border-color: var(--hot-pink);
  color: var(--hot-pink);
}

.testimonials__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dusty-rose);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.testimonials__dot.active {
  background: var(--hot-pink);
  transform: scale(1.35);
}

/* ─── Contact / Booking ──────────────────────────────────────── */
.contact {
  padding: 4rem var(--gutter);
  background: linear-gradient(145deg, var(--blush-cream) 0%, var(--dusty-rose) 100%);
}

.contact__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.contact__copy {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 56ch;
}

.contact__small {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
}

.contact__secondary {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.75;
  margin-top: 0.5rem;
}

.contact__secondary a {
  color: var(--hot-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.contact__secondary a:hover { color: #d0185e; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--blush-cream);
  border-top: 1px solid var(--dusty-rose);
  padding: 3rem var(--gutter) 2rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--dusty-rose);
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__social {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer__social a {
  color: var(--stone);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  display: flex;
}

.footer__social a:hover {
  opacity: 1;
  color: var(--hot-pink);
}

.footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--stone);
  transition: color 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__nav a:hover { color: var(--charcoal); }

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 1.25rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

/* ─── Fade-in scroll animations ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Stagger siblings */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ─── Responsive — 1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gutter: 1.75rem;
  }

  .hero {
    gap: 2rem;
  }

  .experience {
    gap: 3rem;
  }

  .experience__image-col img {
    width: 100%;
    margin-left: 0;
  }

  .about {
    gap: 3rem;
  }

  .about__image-col img,
  .about__image-placeholder {
    width: 100%;
    margin-right: 0;
  }

  .gallery__grid { columns: 2; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer__copy { grid-column: 1 / -1; }
}

/* ─── Responsive — 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --gutter: 1.25rem;
    --nav-h: 64px;
  }

  /* Nav */
  .nav__links,
  .btn--nav { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero: image stacks above copy */
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 3.5rem;
    gap: 2rem;
    min-height: auto;
  }

  .hero__image-wrap { order: -1; justify-content: center; }

  .hero__carousel {
    transform: none;
    max-width: 90vw;
  }

  .hero__carousel-img { animation: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Experience */
  .experience {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem var(--gutter);
  }

  .experience__image-col { position: static; }

  /* Gallery */
  .gallery__grid { columns: 2; }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem var(--gutter);
  }

  .about__image-col {
    position: static;
    order: -1;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__logo { justify-self: center; }
  .footer__social { justify-content: center; }
  .footer__nav { justify-content: center; }
}

/* ─── Responsive — 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --gutter: 1rem; }

  .gallery__grid { columns: 1; }

  .testimonial__card {
    padding: 2rem 1.5rem;
  }

  .contact__copy br,
  .hero__sub br { display: none; }

  .footer__nav { gap: 1.25rem; }
}

/* ─── Responsive — 1440px+ ───────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --gutter: 3.5rem; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__carousel-img { animation: none; }
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
