:root {
  --sage: #6b8f6d;
  --sage-light: #9ab89c;
  --sage-pale: #f0f5f0;
  --cream: #faf8f4;
  --warm: #8b7355;
  --text: #2d3526;
  --muted: #7a8070;
  --border: #dde5d8;
  --rose: #c17f7f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.back-btn {
  position: fixed;
  top: 5.5rem;
  left: 1.5rem;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.back-btn:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo em {
  font-style: italic;
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-appt {
  background: var(--sage);
  color: #fff !important;
  padding: 0.55rem 1.5rem;
  border-radius: 2rem;
  font-weight: 400 !important;
  transition: opacity 0.2s !important;
}
.nav-appt:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
}

.hero-content {
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-sage {
  background: var(--sage);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.btn-sage:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn-text {
  color: var(--sage);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.btn-text:hover {
  color: var(--text);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.portrait-frame {
  width: 340px;
  height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, #d4e8d0 0%, #a8c8a4 50%, #8baa87 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  animation: morphBlob 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(107, 143, 109, 0.2);
}

@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  }
  33% {
    border-radius: 50% 50% 40% 60% / 45% 55% 45% 55%;
  }
  66% {
    border-radius: 40% 60% 60% 40% / 55% 40% 60% 45%;
  }
}

.portrait-deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.3;
}
.portrait-deco2 {
  position: absolute;
  bottom: 10px;
  left: -30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--warm);
  opacity: 0.2;
}

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  font-size: 0.8rem;
  font-weight: 500;
}
.fc1 {
  top: 20px;
  left: -40px;
  color: var(--sage);
}
.fc2 {
  bottom: 60px;
  right: -30px;
  color: var(--rose);
}

/* APPROACH */
.approach {
  padding: 6rem 4rem;
  background: var(--sage-pale);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--sage);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.approach-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
}
.approach-text p + p {
  margin-top: 1rem;
}

.approach-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.approach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}
.approach-card:hover {
  box-shadow: 0 10px 30px rgba(107, 143, 109, 0.12);
}

.ac-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.ac-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.ac-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* SERVICES */
.services-section {
  padding: 6rem 4rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.srv {
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.srv:hover {
  transform: translateY(-3px);
}

.srv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.srv:hover::before {
  transform: scaleX(1);
}

.srv-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.srv-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.srv-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.srv-price {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 500;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--sage-pale);
  padding: 6rem 4rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi:hover {
  transform: translateY(-4px);
}

.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testi-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage);
}

.testi-stars {
  color: #f0a500;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* BOOKING */
.booking {
  padding: 6rem 4rem;
  text-align: center;
}

.booking-inner {
  background: linear-gradient(135deg, #4a6741 0%, var(--sage) 100%);
  border-radius: 2rem;
  padding: 5rem;
  color: #fff;
}

.booking-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.booking-desc {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.booking-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.book-opt {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.book-opt:hover {
  background: rgba(255, 255, 255, 0.25);
}
.book-opt strong {
  display: block;
  font-weight: 500;
}
.book-opt small {
  font-size: 0.78rem;
  opacity: 0.7;
}

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}
footer strong {
  color: #fff;
}
@media (max-width: 768px) {
  .back-btn {
    top: 1.5rem;
    left: 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .portrait-frame {
    width: 240px;
    height: 300px;
    font-size: 5rem;
    margin: 0 auto;
    opacity: 0.25;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
}

@media (max-width: 480px) {
  .portrait-frame {
    width: 200px;
    height: 260px;
    font-size: 4rem;
    opacity: 0.2;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-text {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
    color: var(--text);
    padding: 0 1rem;
  }

  .approach-text p {
    text-align: center;
  }

  .approach-text p + p {
    margin-top: 0.8rem;
  }

  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .approach-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {

  .approach-cards {
    grid-template-columns: 1fr;
  }

  .approach-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 1024px) {
  .services-section {
    padding: 5rem 2rem;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .srv {
    padding: 1.5rem;
  }

  .srv-name {
    font-size: 1.05rem;
  }

  .srv-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 3.5rem 1rem;
  }

  .srv {
    padding: 1.25rem;
  }

  .srv-icon {
    font-size: 1.5rem;
  }

  .srv-name {
    font-size: 1rem;
  }

  .srv-desc {
    font-size: 0.82rem;
  }
}


@media (max-width: 1024px) {
  .testimonials {
    padding: 5rem 2rem;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testi {
    padding: 1.5rem;
  }

  .testi-quote {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 3.5rem 1rem;
  }

  .testi {
    padding: 1.25rem;
  }

  .testi-quote {
    font-size: 0.95rem;
  }

  .testi-stars {
    font-size: 0.8rem;
  }

  .testi-name {
    font-size: 0.8rem;
  }
}