@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

:root {
  --bg-primary: #F9F9F8;
  /* Luftig vit / Minimalistisk */
  --bg-secondary: #F2F2F0;
  /* Mycket dämpad sektionering */
  --bg-white: #ffffff;
  --text-main: #2D3436;
  /* Grundad mörkgrå */
  --text-soft: #636E72;
  /* Lätt för brödtext */
  --accent-sage: #B8C4B9;
  /* En viskning av lokalen / Salvia */
  --accent-sage-dark: #423E37;
  /* Stabilitet och Beslutskraft / Mörk jord */
  --accent-sage-hover: #35322C;
  /* Djupare ton för hover */
  --btn-text: #FFFFFF;
  --border-light: #E8E4E1;
  --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.03);
  --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 2.0;
  /* Increased line-height for ultra-airy feel */
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  /* Slightly tighter for elegance */
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

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

section {
  padding: 8rem 0;
  /* More whitespace */
}

section,
[id] {
  scroll-margin-top: 120px;
  /* Offset for navbar when skipping to anchors */
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background-color: transparent;
  transition: var(--transition-smooth);
  z-index: 1000;
}

nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-subtle);
}

.nav-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

nav.scrolled .logo img {
  height: 100px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 1.05rem;
  /* Increased from 0.95rem */
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  transition: var(--transition-smooth);
}

.nav-links li a:hover {
  color: var(--text-main);
}


.dropdown-menu li a {
  text-transform: none !important;
  letter-spacing: normal !important;
}

.btn-book {
  background-color: var(--accent-sage-dark);
  color: var(--btn-text) !important;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  /* Tillbaka till mjuk form */
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(66, 62, 55, 0.15);
}

.btn-book:hover {
  background-color: var(--accent-sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(66, 62, 55, 0.25);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: var(--bg-white);
  color: var(--accent-sage-dark) !important;
  border: 1px solid var(--accent-sage-dark);
  border-radius: 50px;
  /* Tillbaka till mjuk form */
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-explore:hover {
  background-color: var(--accent-sage-dark);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

.btn-explore i {
  transition: transform 0.4s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin-bottom: 0.5rem;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a {
  padding: 1rem 1.25rem;
  display: block;
  font-size: 1rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.dropdown-menu li a:hover {
  background-color: var(--bg-primary);
  color: var(--accent-sage-dark);
  transform: translateX(5px);
}

/* Hero Refined Simplification */
.hero-refined {
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  padding: 200px 10% 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 20%, rgba(255, 255, 255, 0.1) 100%), url('../images/hero-landscape-grounded.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: left;
}



.hero-content-simple {
  max-width: 850px;
  margin: 0 auto;
}

.hero-refined h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -1px;
  /* Less tight for 'airy' feel */
}

.hero-refined p {
  font-size: 1.25rem;
  color: var(--text-soft);
  margin-bottom: 3.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 550px;
}

/* Modern Menu-Style Pricing */
.price-menu {
  max-width: 500px;
  margin: 4rem auto 3rem;
  text-align: left;
}

.price-menu-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-menu-label {
  font-size: 1.1rem;
  color: var(--text-main);
  white-space: nowrap;
}

.price-menu-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--border-light);
  transform: translateY(-4px);
}

.price-menu-price {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-menu-original {
  text-decoration: line-through;
  opacity: 0.4;
  font-size: 0.9rem;
  font-weight: 400;
}

.offer-banner {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-sage-dark);
  font-weight: 600;
  margin-top: 2rem;
  text-align: center;
}

/* Booking Highlight Section - Ultra-Sleek */
.booking-highlight {
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
  position: relative;
  border: 1px solid var(--bg-primary);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.booking-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.booking-highlight h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: 400px;
}

@media (max-width: 500px) {
  .booking-actions {
    grid-template-columns: 1fr;
  }
}

.booking-action-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background-color: var(--bg-primary);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.booking-action-item:hover {
  border-color: var(--accent-sage-dark);
  background-color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.booking-action-item i {
  color: var(--accent-sage-dark);
  width: 18px;
  height: 18px;
}

.action-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-sage-dark);
  margin-bottom: 0.1rem;
}

.action-value {
  font-size: 0.9rem;
  font-weight: 500;
}

.special-badge {
  display: inline-block;
  background-color: var(--accent-sage-dark);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(180, 123, 94, 0.2);
}

.pricing-block {
  position: relative;
  background-color: var(--bg-white);
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.pricing-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-sage-dark);
  /* Changed from sage to sage */
}

.pricing-block h2 {
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: white;
  margin-bottom: 1rem;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.price-row:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-main);
}

.price-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  font-size: 0.95rem;
  color: var(--text-soft);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-value {
  font-weight: 700;
  color: var(--text-main);
  /* Changed from sage to dark text for cleaner look */
  font-size: 2.2rem;
  display: block;
}

/* Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.service-card {
  background-color: var(--bg-white);
  padding: 0;
  border-radius: 24px;
  transition: var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.service-card .service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.service-card-content {
  padding: 0 2.5rem 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--border-light);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--accent-sage-dark);
  margin-bottom: 1.5rem;
  display: block;
}

/* Accordion */
.accordion-item {
  margin-bottom: 1.5rem;
  background: var(--bg-white);
  border-radius: 20px;
  /* Softer corners */
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--text-main);
  text-align: left;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--text-soft);
}

.accordion-item.active .accordion-content {
  display: block;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  /* Softer corners */
  background-color: var(--bg-white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-sage-dark);
  box-shadow: 0 0 0 4px rgba(66, 62, 55, 0.1);
}



.btn-submit {
  background-color: var(--accent-sage-dark);
  /* Uppdaterad till den mörka stabila färgen */
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  /* Tillbaka till mjuk form */
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(66, 62, 55, 0.15);
}

.btn-submit:hover {
  background-color: var(--accent-sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(66, 62, 55, 0.25);
}

/* Footer */
footer {
  padding: 6rem 0 4rem;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  color: var(--text-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1rem;
  /* Slightly larger */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-sage-dark);
  /* Changed from sage to sage */
  margin-bottom: 2rem;
  font-weight: 800;
  /* Bolder */
}

.footer-col p,
.footer-col a {
  font-size: 1rem;
  color: var(--text-soft);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--accent-sage-dark);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background-color: var(--bg-white);
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2000;
  width: auto;
  max-width: 90%;
  border: 1px solid var(--border-light);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-main);
  white-space: nowrap;
}

.btn-cookie-accept {
  background-color: var(--accent-sage);
  color: white;
  border: none;
  padding: 0.6rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-cookie-accept:hover {
  background-color: #A6B59D;
}

/* Modal Simple */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 2rem;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 24px;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-content h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-sage-dark);
}

.btn-close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
}

@media (max-width: 768px) {

  .services-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-col a:hover {
    transform: none;
  }

  .cookie-banner {
    flex-direction: column;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    gap: 1.5rem;
    bottom: 1rem;
  }

  .cookie-banner p {
    white-space: normal;
  }
}

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

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

/* Mobile */
@media (max-width: 768px) {

  .services-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .nav-links {
    display: none;
  }
}

/* Grounded & Compact Service Detail Styles */
.service-detail-header {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 60px;
  background-color: var(--bg-primary);
  position: relative;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.service-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-sage-dark);
  /* Changed from sage to sage */
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 800;
  /* Bolder */
}

.service-detail-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 0;
}

.back-link {
  position: absolute;
  top: 100px;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  z-index: 10;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: var(--accent-sage-dark);
}

/* Service Detail Components */
.deep-intro {
  padding: 4rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.healing-narrative {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-main);
  text-align: center;
}

.healing-narrative p {
  margin-bottom: 2rem;
}

.activation-section {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.activation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.activation-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

.activation-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-sage-dark);
}

.activation-item {
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 1px solid var(--accent-sage);
}

.activation-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.activation-item p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

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

.focus-item.popping {
  background-color: var(--bg-white);
  padding: 4rem 2.5rem;
  border-radius: 24px;
  /* Softer corners */
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.focus-item.popping .icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--accent-sage-dark);
  transition: var(--transition-smooth);
}

.focus-item.popping:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-sage-dark);
}

.focus-item.popping:hover .icon-wrap {
  background-color: var(--accent-sage-dark);
  color: var(--bg-white);
  transform: scale(1.1);
}

.focus-item.popping h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 700;
}

.focus-item.popping p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
  max-width: 100%;
}

.rows-section {
  padding: 5rem 0;
}

@media (max-width: 992px) {
  .hero-refined {
    padding: 120px 2rem 60px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image img {
    height: 450px;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  position: relative;
  padding: 1rem;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border-top: 2px solid var(--accent-sage);
  border-left: 2px solid var(--accent-sage);
  z-index: 1;
  opacity: 0.6;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-bottom: 2px solid var(--accent-sage-dark);
  border-right: 2px solid var(--accent-sage-dark);
  z-index: 1;
  opacity: 0.6;
}

.about-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-sage-dark);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 800;
  /* Increased weight for contrast */
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
  color: var(--text-main);
  font-weight: 500;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  color: var(--text-soft);
  max-width: 600px;
}