/* Base and font */
:root{
  --nav-h: 80px; /* set to your navbar height */
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "CMU Serif", serif;
  background-color: #fff7f7;
  color: #ffffff;
}

/* Layout wrapper for normal margins on larger screens */
.page-wrapper {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.section {
  min-height: 100vh;   /* fallback */
  min-height: 100svh;  /* iOS stable viewport */
  min-height: 100dvh;  /* modern dynamic viewport */  

  box-sizing: border-box;
  padding: 4rem 1.5rem;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section > * {
  max-width: 1200px;      /* adjust if you want wider or narrower */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 4rem);
}



/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;

  /* position: sticky;
  top: 0;
  z-index: 200; */

  /* Current */
  /* background: #e4d6d6; 
  backdrop-filter: blur(6px);  */

  /* Blur */
  background: rgba(255, 255, 255, 0.07); 
  backdrop-filter: blur(10px);           
  -webkit-backdrop-filter: blur(10px);    

  border-bottom: 1px solid rgba(255,255,255,0.2); 
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem; /* increased padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


/* Logo as image */
.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  height: 20px;   /* adjust to your logo */
  width: auto;
  text-decoration: none;
}

/* Nav links (desktop) */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;

  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  opacity: 50%;

  padding: 0.35rem 0;
  border-bottom: 1px solid transparent; /* subtle hover */
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

/* Subtle hover: light underline and slight fade */
.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

/* Hamburger button (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header {
  border-bottom: 3px solid rgba(255,255,255,0.2); /* same thickness & color */
}

/* Animation Home page */
.home .nav-logo {
  opacity: 0;
  transform: translateX(-40px);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none; 
}

/* HOME ONLY: logo becomes visible after hero */
.home .nav-logo.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #e4d6d6; /* solid color background */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 300;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Mobile menu links */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu-links li + li {
  margin-top: 1.2rem;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "Mulish", sans-serif;
  letter-spacing: 0.04em;
}

/* Close button (X) under links */
.mobile-menu-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  transform: scale(1.05);
  background: #e4d6d6 ;
  color: #ffffff;
}

/* Generic sections */
.section {
  min-height: 100vh; /* Each section fills the screen */
  padding: 4rem clamp(1rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Different colors for each section */
.section-hero {
  background: #ffffff; /* dark blue-ish */
  background-image: url(images/1.png);
  background-size: cover;
  background-position: 50% 43%; 
  background-repeat: no-repeat; /* no tiling */
  background-attachment: fixed;
  color: #ffffff;
  align-items: center;
  text-align: center;
}

@media (max-width: 1024px) {
  .section-hero {
    background-attachment: scroll; /* force mobile/tablet normal */
  }
}

.section-info {
  background: #fff7f7; /* light gray */
  color: #a24e4e;
  text-align: center;
  
}

.section-reviews {
  background: #e4d6d6; /* darker teal/blue */
  color: #a24e4e;
  text-align: center;
}

/* Section text styling */
.section-info .section-text,
.section-reviews .section-text {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero section specifics */
.hero-logo {
  position: absolute;
  top: 3rem; /* under navbar */
  left: 50%;
  transform: translateX(-50%);
}

.hero-logo img {
  max-height: 140px;   /* adjust as needed */
  width: auto;
  display: block;
}

.hero-content {
  max-width: 1000px;
  padding-top: 7rem;
}

.hero-title-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
  max-width: 1000px;
  flex-direction: column;
  align-items: center;     
  gap: 2rem;  
  margin: 0 auto;
}

.hero-title-image img {
  width: clamp(180px, 28vw, 360px);
  height: auto;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
   .section-hero {
    justify-content: flex-start;
   }
  .hero-title-image {
     padding-bottom: 2rem;
      min-height: 100svh;
  }
  .hero-cta {
    margin-top: 5.5rem; /* moves button + text down */
  }
  .btn-outline {
    margin-bottom: 1.5rem;
  }
  

}

.hero-content {
  padding-top: calc(var(--nav-h) + 2rem);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.5rem);  
  letter-spacing: 0.04em;
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  /* border-radius: 0.4rem; */
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #ffffff;
  color: #121c35;
  transform: translateY(-1px);
}

/* Info section */
.section-info h2,
.section-reviews h2 {
  margin-bottom: 1rem;
  font-weight: 200;
}

.section-info .section-text {
  color: #fff7f7;
}

/* REVIEW SECTION GRID */
.review-boxes {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; /* 1 card per row */
  justify-items: stretch;
}

/* DESKTOP: 3 columns */
@media (min-width: 1200px) {
  .review-boxes {
    grid-template-columns: repeat(3, 1fr); /* exactly 3 cards */
  }
}

/* REVIEW CARD */
.review-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* author stays at bottom */
  padding: 4rem 2.75rem;            /* large margins like your example */
  background: #ffffff;
  color: #5b2e37;                  /* soft red-brown like example */
  border: 1px solid #a24e4e;       /* purple border */
  aspect-ratio: 4 / 5;             /* tall consistent ratio */
  text-align: center;
}

.review-box.service-card {
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 2.75rem);
}

/* REVIEW TEXT */
.review-text {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.1rem);  /* slightly bigger */
  line-height: 1.7;
  font-family: "Mulish", sans-serif;
}

/* AUTHOR NAME */
.review-author {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.1vw, 1.2rem);    /* slightly larger */
  /* font-weight: 600;                          */
  letter-spacing: 0.02em;
  font-family: "Muslish", sans-serif;
}


/* Footer */
.site-footer {
  border-top: 1px solid #ffffff;
  padding: 1.25rem 1.5rem;
  background: #a24e4e;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Mulish", sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  justify-content: space-between;
}

.footer-text {
  margin: 0;
}

/* Credit Footer */
.footer-credit {
  margin: 0;
}

.footer-credit-name {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit-name:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* Footer nav links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease, opacity 0.2s ease;
  font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
  opacity: 0.9;
}

/* Terms & Conditions */
.footer-terms {
  display: flex;
}

.footer-terms a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-terms a:hover,
.footer-terms a:focus-visible {
  color: #ffffff;
  opacity: 0.9;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

/* Enlarge a little and turn whiter on hover */
.social-link:hover,
.social-link:focus-visible {
  transform: scale(1.1);
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
  }

  /* Hide desktop nav links on small screens, show hamburger */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-logo {
    top: 6rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------------- */
/* ABOUT PAGE LAYOUT      */
/* ---------------------- */

/* Different colors so sections are easy to distinguish */
.about-section-1 {
  background: #a24e4e; 
  color: #e4d6d6;
}


.about-section-2 {
  background: #ffffff; 
  background-image: url(images/VALD3.jpg);
  background-size: cover;

  background-position: 50% 40%;  /* perfect centering */
  background-repeat: no-repeat; /* no tiling */
  color: #ffffff;
  align-items: center;
  text-align: center;
  font-weight: 200;
}

.about-section-3 {
  background: #e4d6d6; /* dark green/teal */
  color: #a24e4e;
}


/* Split layout: two boxes, left ~120% bigger */
.about-split {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.about-box {
  border-radius: 1rem;
  padding: 2rem;
  /* remove background + outlines on the boxes */
  background: transparent;
  border: none;
}

/* Left ~120% of right: 1.2fr vs 1fr */
.about-box-left {
  flex: 1.2 1 0;
}

.about-box-right {
  flex: 1 1 0;
}


/* SECTION 1: center text in both boxes */
.about-section-1 .about-box-left,
.about-section-1 .about-box-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Typography inside boxes */
.about-box-left h1,
.about-box-left h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-family: "Playfair Display", serif;
  font-weight: 100;
}

.about-box-right p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.4rem;
}

/* Section 2 center content */
.about-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-section-2-h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 100;
  margin-bottom: 1rem;

}

.about-center, about h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.about-center p {
  margin-top: 0;
  line-height: 1.7;
  font-size: 1.4rem;
  opacity: 0.9;
 
}

/* SECTION 3: 
   - center header in the left box
   - make boxes visually taller while keeping section height behavior
*/
.about-section-3 .about-box-left h2 {
  text-align: center;
}

/* Make boxes feel taller via extra padding */
.about-section-3 .about-box {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right column in section 3: 1 column, 3 rows (image + text) */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  text-align: center;
}


.about-feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.about-icon {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}


.about-feature p {
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  line-height: 1.6;
  color: #a24e4e;
}

/* For the lighter second section, adjust text color in case reused */
.about-section-2 .about-feature p {
  color: rgba(0, 0, 0, 0.8);
}

/* Responsive tweaks for About split layout */
@media (max-width: 900px) {
  .about-split {
    flex-direction: column;
  }

  .about-box-left,
  .about-box-right {
    flex: 1 1 100%;
  }
}


/* ---------------------- */
/* WHAT WE OFFER PAGE     */
/* ---------------------- */

.section-offer {
  background: #ffffff; 
  background-image: url(images/3.png);
  background-size: cover;
  background-position: 50% 43%; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  color: #ffffff;
  align-items: center;
  text-align: center;
}

@media (max-width: 1024px) {
  .section-offer {
    background-attachment: scroll; /* force mobile/tablet normal */
  }
}

@media (max-width: 768px) {
  .offer-title-image {
     padding-bottom: 2rem;
      min-height: 100svh;
  }
}


.offer-title-image img {
  width: clamp(200px, 34vw, 480px);
  height: auto;
  max-width: 100%;
  display: block;
}

.offer-title-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.25rem;
  max-width: 1000px;
  flex-direction: column;
  align-items: center;     
  gap: 2rem;  
  margin: 0 auto;
}

/* ONLY FOR SERVICE CARDS (offer page) */
.services-h2 {
  font-size: clamp(1.8rem, 5vw, 5rem);
}

.review-box.service-card {
  justify-content: flex-start;
  gap: 1.25rem;
}

/* icon block */
.service-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 88px; /* gives the icon more breathing room */
}

.service-icon img {
  width: clamp(48px, 6vw, 72px);
  height: auto;
  display: block;
}

.review-box.service-card:nth-child(3) .service-icon img {
  width: clamp(64px, 7vw, 88px);
}

/* title + text */
.service-title {
  color: #853a3a;
  margin: 0;
  font-family: "mulish", sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  letter-spacing: 0.04em;
  font-weight: 200;
}

.service-text {
  color: #a24e4e;
  margin: 0;
  font-family: "mulish", sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  opacity: 0.9;
}

/* CTA button */
.service-btn {
  margin-top: auto; /* locks button to bottom consistently */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 2rem;
  border: 1.5px solid #a24e4e;
  background: transparent;
  color: #a24e4e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.service-btn:hover,
.service-btn:focus-visible {
  background: #a24e4e;
  color: #ffffff;
  transform: translateY(-1px);
}


.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  /* border-radius: 0.4rem; */
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

/* ---------------------- */
/* PRICELIST              */
/* ---------------------- */

/* FULL WIDTH SECTION (removes side color issue) */
.pricelist-section {
  width: 100%;
  padding: 60px 0;
  background: #e4d6d6;
  color: #a24e4e;
}

/* INNER CONTAINER (keeps margins nicely) */
.pricelist-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'CMU Serif', serif;
}

/* TITLE */
.title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(1.8rem, 5vw, 5rem);
  font-weight: 200;
}

/* CATEGORY */
.price-category {
  margin-bottom: 40px;
  font-family: "Mulish", sans-serif;
}

.price-category h2 {
  font-size: 24px;
  margin-bottom: 12px;
  padding-bottom: 6px;
}

/* ITEM LAYOUT */
.price-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  text-decoration: none;
  color: #a24e4e;
  padding: 14px 0;
  border-bottom: 1px dotted #eee;
  font-family: "Mulish", sans-serif;
}

/* TEXT */
.service-name {
  font-size: 16px;
}

/* PERFECTLY ALIGNED PRICES */
.price {
  text-align: right;
  min-width: 70px;
  font-weight: 500;
}

/* ARROW */
.arrow {
  margin-left: 16px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* HOVER ONLY FOR ARROW */
.price-item:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricelist-title {
    font-size: 32px;
  }

  .service-name,
  .price {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .pricelist-container {
    padding: 0 16px;
  }

  .pricelist-title {
    font-size: 28px;
  }

  .service-name,
  .price {
    font-size: 14px;
  }
}

/* ---------------------- */
/* SERVICE PAGES          */
/* ---------------------- */

/* PAGE SECTION */
.info-section {
  width: 100%;
  padding: 70px 0 80px;
  box-sizing: border-box;
  background: #a24e4e;
  color: #fff7f7;
}

.info-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* MAIN TITLE */

.info-title{
  margin-bottom: 70px;
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 5rem);
  font-weight: 200; 
}

/* BLOCK */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr; /* exact half / half */
  align-items: stretch;
  margin: 0;
}

.info-block.reverse .info-image {
  order: 2;
}

.info-block.reverse .info-text {
  order: 1;
}

.info-image {
  width: 100%;
  overflow: hidden; 
}

.info-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3; 
  object-fit: cover;
}

.info-text {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px 34px;
  box-sizing: border-box;
}

.info-text h2 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  font-family: "mulish", sans-serif;
  font-weight: 200;
}

.info-text p {
  max-width: 470px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: "mulish", sans-serif;
  font-weight: 200;
}

/* TABLET */
@media (max-width: 992px) {
  .info-container {
    max-width: 1000px;
    padding: 0 20px;
  }

  .info-title {
    font-size: 4rem;
    margin-bottom: 50px;
  }

  .info-text {
    padding: 30px 24px;
  }

  .info-text h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .info-text p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 420px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .info-section {
    padding: 50px 0 60px;
  }

  .info-container {
    padding: 0 16px;
  }

  .info-title {
    font-size: 2.8rem;
    margin-bottom: 36px;
  }

  .info-block {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .info-block.reverse .info-image,
  .info-block.reverse .info-text {
    order: unset;
  }

  .info-image img {
    aspect-ratio: 4 / 3;
  }

  .info-text {
    padding: 28px 18px;
  }

  .info-text h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .info-text p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .info-title {
    font-size: 2.2rem;
  }

  .info-text {
    padding: 24px 14px;
  }

  .info-text h2 {
    font-size: 1.3rem;
  }

  .info-text p {
    font-size: 0.94rem;
    line-height: 1.6;
  }
}

/* ---------------------- */
/* CONTACT PAGE LAYOUT    */
/* ---------------------- */

/* Same colors as ABOUT section 1 */
.contact-section-hero {
  background: #a24e4e;
  color: #e4d6d6;
}

/* Inner content similar sizing/feel to the About split */
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Header similar to ABOUT VA LUSH DESK */
.contact-inner h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: "Playfair Display", serif;
  font-weight: 100;
}

/* Text similar in size/line-height to About text */
.contact-inner p {
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.7;
}

/* Button from hero, just give it some breathing room */
.contact-inner .btn-outline {
  margin-top: 4rem;
  font-family: 'Poppins', sans-serif;
}

