/* Base */
:root {
  --bg: #f5f0eb;
  --bg-alt: #ede6dc;
  --fg: #2d2016;
  --fg-mid: #5c4e3d;
  --fg-light: #9a8878;
  --accent: #7c9a6e;
  --accent-warm: #b8896a;
  --border: #d8cfc4;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.nav__tag {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 5rem 2.5rem 4rem;
  background: var(--bg);
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1.2rem;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.4rem;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--fg-mid);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.hero__accent {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero__amp {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.hero__accent-text {
  font-size: 0.95rem;
  color: var(--fg-mid);
  line-height: 1.6;
  font-style: italic;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__img-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  background: #e8dfd4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hero__img-interior {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8dfd4 0%, #d9cec1 100%);
  position: relative;
  overflow: hidden;
}
.hero__img-sun {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,235,200,0.9) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__img-plant {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 60px;
  height: 120px;
  background: linear-gradient(to top, #7c9a6e 0%, #9ab88a 100%);
  border-radius: 40% 40% 20% 20%;
}
.hero__img-plant::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 35px;
  background: #8b6d5c;
  border-radius: 3px;
}
.hero__img-chair {
  position: absolute;
  bottom: 18%;
  right: 12%;
  width: 90px;
  height: 70px;
  background: #b8896a;
  border-radius: 6px 6px 4px 4px;
}
.hero__img-chair::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 5px;
  width: 80px;
  height: 35px;
  background: #c49a7a;
  border-radius: 4px 4px 0 0;
}

/* Philosophy */
.philosophy {
  padding: 5rem 2.5rem;
  background: var(--fg);
  color: var(--bg);
}
.philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
}
.philosophy__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1.5rem;
}
.philosophy__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--bg);
}
.philosophy__body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c8bfb3;
  margin-bottom: 1.2rem;
}
.philosophy__body p:last-child { margin-bottom: 0; }

/* Services */
.services {
  padding: 5rem 2.5rem;
  background: var(--bg-alt);
}
.services__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services__header {
  margin-bottom: 3.5rem;
}
.services__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 0.8rem;
}
.services__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.services__col-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.services__list {
  list-style: none;
}
.services__list li {
  font-size: 0.92rem;
  color: var(--fg-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.services__list li:last-child { border-bottom: none; }

/* Who */
.who {
  padding: 5rem 2.5rem;
  background: var(--bg);
}
.who__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.who__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1rem;
}
.who__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 3rem;
}
.who__profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.who__card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.who__card-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.who__card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.who__card p {
  font-size: 0.88rem;
  color: var(--fg-mid);
  line-height: 1.6;
}

/* Environment */
.environment {
  padding: 5rem 2.5rem;
  background: var(--fg);
  color: var(--bg);
}
.environment__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.environment__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1rem;
}
.environment__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 1.5rem;
}
.environment__text {
  font-size: 0.97rem;
  color: #c8bfb3;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.environment__stats {
  display: flex;
  gap: 2.5rem;
}
.environment__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.environment__stat-label {
  display: block;
  font-size: 0.75rem;
  color: #9a8d7f;
  letter-spacing: 0.05em;
}
.environment__visual {
  display: flex;
  justify-content: center;
}
.environment__room {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 5/4;
  background: #3a3028;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.environment__room-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5d4f;
}
.environment__room-sun {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,235,200,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.environment__room-plant {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 40px;
  height: 90px;
  background: linear-gradient(to top, #4a5e3c 0%, #6b8055 100%);
  border-radius: 40% 40% 20% 20%;
}
.environment__room-plant::before {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 28px;
  background: #5c4a3d;
  border-radius: 2px;
}
.environment__room-shapes {
  position: absolute;
  bottom: 10%;
  right: 10%;
}
.environment__shape {
  position: absolute;
  border-radius: 2px;
}
.environment__shape--1 {
  bottom: 0;
  right: 0;
  width: 90px;
  height: 55px;
  background: #7c9a6e;
  opacity: 0.6;
}
.environment__shape--2 {
  bottom: 58px;
  right: 20px;
  width: 50px;
  height: 40px;
  background: #b8896a;
  opacity: 0.5;
}
.environment__shape--3 {
  bottom: 65px;
  right: 80px;
  width: 35px;
  height: 55px;
  background: #8b7d6b;
  opacity: 0.4;
}

/* Closing */
.closing {
  padding: 6rem 2.5rem;
  background: var(--bg-alt);
  text-align: center;
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing__text {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 1.5rem;
}
.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing__sub {
  font-size: 1rem;
  color: var(--fg-mid);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2.5rem;
  background: var(--fg);
  text-align: center;
}
.footer__inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--bg);
  margin-bottom: 0.4rem;
}
.footer__tag {
  font-size: 0.75rem;
  color: #6a5d4f;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.footer__note {
  font-size: 0.78rem;
  color: #4a3f35;
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .environment__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .who__profiles { grid-template-columns: 1fr; }
  .nav { padding: 1.2rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .philosophy, .services, .who, .closing { padding: 3.5rem 1.5rem; }
  .environment { padding: 3.5rem 1.5rem; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .environment__stats { flex-direction: column; gap: 1.5rem; }
}