/* --- CSS Variables & Palettes --- */
:root {
  /* Mint Tones */
  --bg-color: #fafdfc;
  --mint-light: #e6f4f1;
  --mint: #bce3d8;
  --mint-dark: #4a7c6f;
  
  /* Pink Tones */
  --pink-ultra-light: #fdf5f6;
  --pink-light: #f9d8dc;
  --pink: #eba1ad;
  --pink-dark: #b85b6a;
  
  /* Text Tones */
  --text-dark: #2c3e38;
  --text-p: #5d706a;
  --white: #ffffff;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --blob-radius-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --blob-radius-2: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --blob-radius-3: 50% 50% 20% 80% / 25% 80% 20% 75%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-p);
  margin-bottom: 1rem;
}

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

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

/* --- Typography Helpers --- */
.subtitle {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint-dark);
  margin-bottom: 1rem;
  position: relative;
}

.subtitle::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--pink);
}

.watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 15rem;
  color: rgba(188, 227, 216, 0.2);
  z-index: -1;
  top: 10%;
  left: -5%;
  line-height: 1;
  user-select: none;
}

.watermark-right {
  left: auto;
  right: -5%;
  top: 20%;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background-color: var(--pink-dark);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 10px 20px rgba(184, 91, 106, 0.2);
}

.btn-primary:hover {
  background-color: var(--mint-dark);
  box-shadow: 0 10px 20px rgba(74, 124, 111, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}

.logo span {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-dark);
}

.nav a {
  margin: 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--pink-dark);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 12rem 0 8rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-mask {
  width: 400px;
  height: 550px;
  overflow: hidden;
  border-radius: var(--blob-radius-1);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.image-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blob-mint {
  position: absolute;
  width: 450px;
  height: 550px;
  background-color: var(--mint-light);
  border-radius: var(--blob-radius-2);
  z-index: 1;
  top: 50px;
  right: 0;
  transform: rotate(-10deg);
}

.blob-pink {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: var(--pink-light);
  border-radius: var(--blob-radius-3);
  z-index: 3;
  bottom: -20px;
  left: -50px;
}

/* --- About Section --- */
.about {
  padding: 8rem 0;
  position: relative;
  background-color: var(--pink-ultra-light);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
}

.about-image-wrapper .image-mask {
  width: 100%;
  max-width: 450px;
  height: 600px;
  border-radius: var(--blob-radius-2);
}

.about-image-wrapper .tape {
  position: absolute;
  width: 120px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 5;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.blob-mint-small {
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--mint);
  border-radius: 50%;
  z-index: 1;
  top: -40px;
  left: -40px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

/* --- Services Section --- */
.services {
  padding: 10rem 0;
  background-color: var(--bg-color);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

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

.service-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 227, 216, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.service-card.highlight {
  background-color: var(--mint-light);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(74, 124, 111, 0.1);
}

.service-card.highlight:hover {
  transform: scale(1.05) translateY(-10px);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pink-icon {
  background-color: var(--pink-light);
  color: var(--pink-dark);
}

.mint-icon {
  background-color: var(--white);
  color: var(--mint-dark);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-p);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  font-weight: bold;
}

.services-footer {
  margin-top: 4rem;
  text-align: center;
}

.highlight-text {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--pink-dark);
  font-style: italic;
}

/* --- Footer --- */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 5rem 0 3rem;
  text-align: center;
}

.footer-logo h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: var(--mint);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.tag {
  background-color: rgba(255,255,255,0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--mint-light);
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Responsive Helpers --- */
@media (max-width: 992px) {
  .hero-container, .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .subtitle::before {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-card.highlight {
    transform: scale(1);
  }
  
  .service-card.highlight:hover {
    transform: translateY(-10px);
  }
  
  .header {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .nav a {
    margin: 0;
  }
}
