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

:root {
  --charcoal: #2c2c2c;
  --charcoal-light: #3d3d3d;
  --charcoal-dark: #1a1a1a;
  --coral: #c4655a;
  --coral-dark: #a85248;
  --coral-light: #d4857a;
  --cream: #faf6f3;
  --cream-dark: #f0e8e2;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-muted: #999999;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Lato', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
  --shadow-md: 0 8px 30px rgba(44,44,44,0.08);
  --shadow-lg: 0 20px 60px rgba(44,44,44,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 500;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

em {
  font-style: italic;
  color: var(--coral);
}

/* ===== Section Shared ===== */
.section__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn--coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,101,90,0.3);
}

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

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

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

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-sm {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--outline-sm:hover {
  background: var(--coral);
  color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,246,243,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44,44,44,0.06);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.logo--light .logo__text {
  color: var(--white);
}

.logo__icon {
  display: flex;
  align-items: center;
}

/* Nav */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--coral);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

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

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

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,101,90,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--coral);
}

.hero__headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.hero__accent {
  font-size: 1.1em;
  font-weight: 400;
}

.hero__body {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  height: 600px;
}

.hero__image-wrapper {
  position: relative;
  height: 100%;
}

.hero__image {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__image--main {
  width: 380px;
  height: 500px;
  top: 0;
  right: 0;
  z-index: 1;
}

.hero__image--accent {
  width: 260px;
  height: 340px;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 6px solid var(--cream);
}

.hero__badge {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 3;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  box-shadow: var(--shadow-md);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header .section__lead {
  margin: 0 auto;
}

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

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.service-card__img {
  overflow: hidden;
  min-height: 280px;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

/* ===== About ===== */
.about {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image-stack {
  position: relative;
  height: 580px;
}

.about__image-main {
  width: 340px;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--charcoal);
  box-shadow: var(--shadow-md);
}

.about__stat {
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about__content .section__eyebrow {
  color: var(--coral-light);
}

.about__content .section__title {
  color: var(--white);
}

.about__text {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__value-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.about__value-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== Gallery ===== */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery__header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery__header .section__lead {
  margin: 0 auto;
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.gallery__item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery__item:nth-child(2) {
  grid-column: span 3.5;
}

.gallery__item:nth-child(3) {
  grid-column: span 3.5;
}

.gallery__item:nth-child(4) {
  grid-column: span 3.5;
}

.gallery__item:nth-child(5) {
  grid-column: span 5;
}

.gallery__item:nth-child(6) {
  grid-column: span 3.5;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

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

.testimonial {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--coral);
  opacity: 0.15;
  line-height: 1;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta__eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.cta__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact__info .section__title {
  margin-bottom: 16px;
}

.contact__text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.contact__detail a:hover {
  color: var(--coral);
}

.contact__map {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196,101,90,0.1);
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.form__success {
  text-align: center;
  padding: 20px 0;
}

.form__success-icon {
  margin-bottom: 16px;
}

.form__success-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form__success-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer__contact address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.footer__contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--coral-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--coral-light);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 40px;
  }

  .hero__visual {
    height: 480px;
  }

  .hero__image--main {
    width: 300px;
    height: 400px;
  }

  .hero__image--accent {
    width: 200px;
    height: 260px;
  }

  .about__grid {
    gap: 50px;
  }

  .about__image-stack {
    height: 460px;
  }

  .about__image-main {
    width: 280px;
    height: 380px;
  }

  .about__image-float {
    width: 200px;
    height: 260px;
  }

  .gallery__grid {
    grid-template-rows: repeat(2, 200px);
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__img {
    min-height: 220px;
  }

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

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

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

  .footer__top > div:first-child {
    grid-column: span 2;
  }
}

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

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__link--cta {
    padding: 14px 32px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero__visual {
    height: 400px;
    order: -1;
  }

  .hero__image--main {
    width: 240px;
    height: 320px;
    right: 20px;
  }

  .hero__image--accent {
    width: 160px;
    height: 210px;
    left: 10px;
  }

  .hero__badge {
    bottom: 60px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .hero__scroll {
    display: none;
  }

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

  .about__image-stack {
    height: 380px;
    max-width: 400px;
  }

  .about__image-main {
    width: 220px;
    height: 300px;
  }

  .about__image-float {
    width: 160px;
    height: 210px;
  }

  .about__stat {
    left: 0;
    top: 20px;
    padding: 16px 20px;
  }

  .about__stat-number {
    font-size: 2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: span 1;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__top > div:first-child {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: 2.2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: 12px;
  }

  .services,
  .about,
  .gallery,
  .testimonials,
  .cta,
  .contact {
    padding: 80px 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .gallery__item--large {
    grid-column: span 1;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
}
