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

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --cream: #FAFAF8;
  --charcoal: #2A2A2A;
  --gold: #C4A882;
  --blush: #F2EBE3;
  --muted: #888888;
  --white: #FFFFFF;
  --dark-section: #1E1B18;
  --border: #E8E0D8;
  --container: 1200px;
  --section-v: 96px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-pad {
  padding-top: var(--section-v);
  padding-bottom: var(--section-v);
}

.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

.section-title--light {
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--charcoal);
  border: 2px solid var(--gold);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #b8976e;
  border-color: #b8976e;
  outline: none;
}

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

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--charcoal);
  color: var(--white);
  outline: none;
}

.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--white);
  background-color: rgba(255,255,255,0.1);
  outline: none;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

#site-header.scrolled {
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo__primary {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.logo__secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

#site-header.scrolled .logo__primary {
  color: var(--charcoal);
}

#site-header.scrolled .logo__secondary {
  color: var(--muted);
}

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

.logo--light .logo__secondary {
  color: rgba(255,255,255,0.6);
}

/* Desktop nav */
#desktop-nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

.nav__list a:hover {
  color: var(--gold);
}

#site-header.scrolled .nav__list a {
  color: var(--charcoal);
}

#site-header.scrolled .nav__list a:hover {
  color: var(--gold);
}

.header__cta {
  display: none;
}

/* Burger button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

#site-header.scrolled .burger span {
  background-color: var(--charcoal);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-section);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 150;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.mobile-nav__list li {
  width: 100%;
  text-align: center;
}

.mobile-nav__link {
  display: block;
  padding: 1rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  transition: color 0.2s ease;
}

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

.mobile-nav__cta {
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background-color: var(--dark-section);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.service-card__icon {
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card__title {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-card__price {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  transition: var(--transition);
}

.service-card__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery-section {
  background-color: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--blush);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(30,27,24,0.8), transparent);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

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

/* ===== ABOUT ===== */
.about-section {
  background-color: var(--blush);
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__image-col {
  width: 100%;
}

.about__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  background-color: var(--border);
}

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

.about__content p {
  color: var(--charcoal);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__content p:last-of-type {
  margin-bottom: 2rem;
}

.about__differentiators {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about__diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.about__check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== PROCESS ===== */
.process-section {
  background-color: var(--dark-section);
}

.process__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.process__step {
  display: flex;
  flex-direction: column;
}

.process__number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.testimonial-card__stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.testimonial-card__client {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-style: normal;
}

/* ===== PRICING ===== */
.pricing-section {
  background-color: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background-color: var(--white);
}

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

.pricing-card--featured {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
}

.pricing-card--featured:hover {
  box-shadow: 0 8px 32px rgba(42,42,42,0.3);
}

.pricing-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card__header {
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.55);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card__features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
}

.pricing-card--featured .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.pricing-card--featured .btn--outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== CONTACT ===== */
.contact-section {
  background-color: var(--blush);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact__detail-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__urgency {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background-color: rgba(196, 168, 130, 0.12);
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact__urgency svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Form */
.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form__field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.15);
}

.form__field input[aria-invalid="true"],
.form__field select[aria-invalid="true"] {
  border-color: #c0392b;
}

.form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.field-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  min-height: 1.2em;
  display: block;
}

.form__submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
}

.form-feedback {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.form-feedback--success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.form-feedback--error {
  background-color: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  color: #c0392b;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--charcoal);
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

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

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
}

.footer__nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.footer__copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — 768px+ ===== */
@media (min-width: 768px) {

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

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

  .gallery__item {
    aspect-ratio: 4/3;
  }

  .gallery__item img {
    height: 100%;
  }

  .about__inner {
    flex-direction: row;
    align-items: flex-start;
  }

  .about__image-col {
    width: 46%;
    flex-shrink: 0;
  }

  .about__img {
    height: 520px;
  }

  .about__content {
    flex: 1;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

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

  .contact__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .contact__info {
    width: 40%;
    flex-shrink: 0;
  }

  .contact__form-col {
    flex: 1;
  }

}

/* ===== RESPONSIVE — 1024px+ ===== */
@media (min-width: 1024px) {

  #desktop-nav {
    display: block;
  }

  .header__cta {
    display: inline-block;
  }

  .burger {
    display: none;
  }

  .hero__inner {
    max-width: 700px;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery__item {
    aspect-ratio: 4/3;
  }

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__image-col {
    width: 44%;
  }

  .about__img {
    height: 580px;
  }

  .contact__inner {
    gap: 5rem;
  }

}
