:root {
  --cream: #faf6f0;
  --warm-white: #fff9f4;
  --taupe: #c4a882;
  --taupe-dark: #7a5e42;
  --brown: #5c3d2e;
  --text: #3d2b1f;
  --text-light: #7a5c4a;
  --border: #e4d5c3;
  --section-bg: #f5ede3;
  --hero-text: var(--cream);
  --hero-sub: var(--taupe);
  --contact-text: var(--cream);
  --contact-sub: var(--taupe);
  --contact-policy: #dfc49a;
  --nav-text: #e8d8c4;
  --font-body: 'Georgia', serif;
  --footer-bg: #3d2010;
  --footer-text: #9a7d5e;
}

[data-theme="botanical"] {
  --cream: #f7f4ef;
  --warm-white: #fdfbf8;
  --taupe: #d8ebd5;
  --taupe-dark: #5a5070;
  --brown: #3d5e3a;
  --text: #2a3828;
  --text-light: #5a7057;
  --border: #d4e0cf;
  --section-bg: #eef3eb;
  --hero-text: #f7f4ef;
  --hero-sub: #c9e0c2;
  --contact-text: #f7f4ef;
  --contact-sub: #c9e0c2;
  --contact-policy: #c8e0c0;
  --nav-text: #d8ebd5;
  --font-body: 'Georgia', serif;
  --footer-bg: #243d22;
  --footer-text: #a8c89a;
}


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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* NAV */
nav {
  background: var(--brown);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .brand {
  color: var(--taupe);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul a {
  color: var(--nav-text);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--taupe);
}

/* HERO */
.hero {
  background: var(--brown);
  color: var(--cream);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 4px solid var(--taupe);
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--hero-text);
}

.hero p {
  color: var(--hero-sub);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

section:nth-child(even) {
  background: var(--section-bg);
  max-width: 100%;
}

section:nth-child(even) .section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

/* ABOUT */
.about-text {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-name {
  margin-top: 1rem;
  font-style: italic;
  color: var(--text-light);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.service-group h3 {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--brown);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dotted var(--border);
}

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

.price {
  color: var(--taupe-dark);
  font-style: italic;
  white-space: nowrap;
  margin-left: 1rem;
}

/* LOCATION & INFO */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.info-block h3 {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 0.6rem;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--text);
  white-space: pre-line;
}

/* CONTACT */
.contact-section {
  text-align: center;
  background: var(--brown);
  color: var(--cream);
  padding: 4rem 2rem;
}

.contact-section h2 {
  color: var(--contact-text);
}

.contact-section .section-label {
  color: var(--contact-sub);
}

.contact-cta {
  font-size: 1.05rem;
  color: var(--contact-sub);
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--taupe);
}

.policy-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--contact-policy);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.5rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 600px) {
  nav ul { display: none; }
  .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }
}
