/* ========== LOLA'S INTERIORS — GLOBAL STYLES ========== */

:root {
  --color-bg: #FAF8F5;
  --color-dark: #1a1a1a;
  --color-text: #3a3a3a;
  --color-muted: #8a8279;
  --color-accent: #b09e8a;
  --color-accent-dark: #8a7b6b;
  --color-cream: #F3EDE5;
  --color-warm-white: #FFFDF9;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* ========== SITE HEADER / NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  padding: 1rem 3rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.site-header.scrolled .nav-link {
  color: var(--color-dark);
}

.site-header.scrolled .nav-link::after {
  background: var(--color-accent);
}

.header-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
}

.header-logo img.logo-dark {
  height: 50px;
  width: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.header-logo img.logo-white {
  height: 50px;
  width: auto;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.site-header.scrolled .header-logo img.logo-dark {
  opacity: 1;
}

.site-header.scrolled .header-logo img.logo-white {
  opacity: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

.site-header.scrolled .nav-toggle span {
  background: var(--color-dark);
}

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

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

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

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero:hover .hero-image {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.2) 0%, rgba(26,26,26,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 1.5rem auto;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1.1rem 3.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

/* ========== ANCHOR NAV (Services page) ========== */
.anchor-nav {
  background: var(--color-warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.anchor-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 0;
}

.anchor-nav-links {
  display: flex;
  gap: 0;
  width: 100%;
}

.anchor-nav-links a {
  flex: 1;
  text-align: center;
  padding: 1.2rem 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.anchor-nav-links a:hover {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent-dark);
}

/* ========== INTRO TEXT SECTION ========== */
.intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.intro p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text);
  font-weight: 300;
}

.intro p + p {
  margin-top: 1.5rem;
}

.intro .highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-accent-dark);
  margin-top: 2rem;
}

/* ========== SERVICE SECTIONS ========== */
.service-section {
  padding: 5rem 0;
  overflow: hidden;
}

.service-section:nth-child(even) {
  background: var(--color-cream);
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-section:nth-child(even) .service-inner {
  direction: rtl;
}

.service-section:nth-child(even) .service-inner > * {
  direction: ltr;
}

.service-image-wrap {
  position: relative;
}

.service-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.service-image-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-accent);
  z-index: -1;
  transition: all 0.4s ease;
}

.service-image-wrap:hover::after {
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
}

.service-text {
  padding: 1rem 0;
}

.service-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.service-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.service-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.service-includes {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-includes h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}

.includes-grid span {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 300;
  position: relative;
  padding-left: 1.2rem;
}

.includes-grid span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

.btn-enquire {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  transition: all 0.4s ease;
  background: transparent;
}

.btn-enquire:hover {
  background: var(--color-dark);
  color: #fff;
}

/* ========== PROCESS STEPS ========== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  min-width: 40px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========== CTA / FOOTER BANNER ========== */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.35);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content h2 em {
  font-style: italic;
  font-weight: 400;
}

.cta-content p {
  font-size: 1rem;
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  padding: 1.1rem 3.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  transition: all 0.4s ease;
}

.btn-cta:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-top: 1.2rem;
  max-width: 300px;
}

.footer-brand img {
  height: 40px;
  opacity: 0.9;
}

.footer-brand img.logo-dark {
  display: none;
}

.footer-brand img.logo-white {
  display: block;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

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

/* ========== HOMEPAGE — ABOUT PREVIEW ========== */
.about-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--color-accent);
  z-index: -1;
  transition: all 0.4s ease;
}

.about-image-wrap:hover::after {
  top: 14px;
  left: -14px;
  right: 14px;
  bottom: -14px;
}

.about-text .section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.about-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

/* ========== HOMEPAGE — SERVICES OVERVIEW ========== */
.services-overview {
  background: var(--color-cream);
  padding: 7rem 3rem;
}

.services-overview-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-overview-inner .section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.services-overview-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.services-overview-inner h2 em {
  font-style: italic;
  font-weight: 400;
}

.services-overview-inner > p {
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--color-warm-white);
  padding: 0;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem 2rem 2.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.card-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-accent);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.card-link:hover {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

/* ========== HOMEPAGE — TESTIMONIAL ========== */
.testimonial-section {
  padding: 7rem 3rem;
  text-align: center;
}

.testimonial-inner {
  max-width: 750px;
  margin: 0 auto;
}

.testimonial-inner .section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

/* ========== CONTACT PAGE ========== */
.contact-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.contact-intro p {
  font-size: 1.05rem;
  line-height: 2;
  font-weight: 300;
}

.contact-intro .highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-accent-dark);
  margin-top: 1.5rem;
}

.contact-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--color-warm-white);
  padding: 3.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-dark);
  background: var(--color-bg);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

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

.form-group select {
  cursor: pointer;
}

.btn-submit {
  display: inline-block;
  padding: 1.1rem 3.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: transparent;
  color: var(--color-dark);
}

.contact-details {
  padding: 1rem 0;
}

.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.detail-item {
  margin-bottom: 2.5rem;
}

.detail-item .detail-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

.detail-item p,
.detail-item a {
  font-size: 0.95rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--color-text);
}

.detail-item a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.detail-item a:hover {
  border-bottom-color: var(--color-accent);
}

.contact-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-social a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  color: var(--color-dark);
  border-bottom-color: var(--color-accent);
}

/* ========== CONTACT MAP ========== */
.contact-map {
  background: var(--color-cream);
  padding: 0;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(60%) contrast(1.05);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: grayscale(20%) contrast(1.05);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 1.2rem 2rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-warm-white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav .nav-link {
    color: var(--color-dark);
    font-size: 0.8rem;
  }

  .main-nav .nav-link::after {
    background: var(--color-accent);
  }

  .nav-toggle {
    display: flex;
  }

  .service-inner,
  .about-preview,
  .contact-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

  .service-section:nth-child(even) .service-inner {
    direction: ltr;
  }

  .service-image-wrap img,
  .about-image-wrap img {
    height: 400px;
  }

  .service-image-wrap::after,
  .about-image-wrap::after {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
  }

  .about-image-wrap::after {
    left: -12px;
    right: 12px;
  }

  .anchor-nav-links {
    flex-direction: column;
    gap: 0;
  }

  .anchor-nav-links a {
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 0.9rem 1rem;
  }

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

  .hero {
    height: 65vh;
    min-height: 450px;
  }

  .about-preview {
    padding: 5rem 2rem;
  }

  .services-overview {
    padding: 5rem 2rem;
  }

  .contact-form-wrap {
    padding: 2.5rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .service-section {
    padding: 3.5rem 0;
  }

  .intro {
    padding: 4rem 1.5rem;
  }

  .service-image-wrap::after,
  .about-image-wrap::after {
    display: none;
  }

  .service-image-wrap img,
  .about-image-wrap img {
    height: 300px;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .header-logo img {
    height: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .contact-map {
    height: 280px;
  }
}
