/* Skin by Angie – fluid, responsive recreation */

:root{
  --bg-mint: #d9e8e5;         /* light teal from design */
  --green:  #1f5848;          /* primary headline green */
  --green-deep: #205b4f;      /* footer/callout green */
  --text:  #334b46;
  --muted: #6a7a76;

  --container: 1060px;
  --pad-x: clamp(20px, 4vw, 40px);
  --pad-y: clamp(22px, 4vw, 44px);

  --h1: clamp(38px, 3.6vw, 48px);
  --h2: clamp(32px, 4.2vw, 42px);
  --body: 14px;
  --lh: 1.6;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{ color: inherit; text-underline-offset: 3px; }
a:hover{ opacity: .9; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Header */
.site-header{
  background: var(--bg-mint);
  padding: clamp(14px, 4vw, 14px) 0;
}

.brand{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: var(--h1);
  letter-spacing: .2px;
  color: var(--green);
}

/* Main content */
.section{
  padding: clamp(12px, 4vw, 0px) 0;
}

#body-hair{
  padding-bottom: 40px;
}

.prose{ max-width: 1060px; }

h2{
  margin: 0 0 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: var(--h2);
  color: var(--green);
  letter-spacing: .2px;
}

#facials h2{
  margin-top: 10px;
}

h3{
  margin: 0 0 0 0;
  font-weight: 600;
  color: var(--text);
}

p{
  margin: 0 0 14px 0;
  color: var(--muted);
}

.service{ margin: 0 0 18px 0; }

.service__title{
  font-weight: 600;
  color: #2c3f3b;
  font-size: 14px;
}

.service__sub{
  margin-top: 2px;
  color: #7a8a86;
  font-size: 12.5px;
}

.dash{ padding: 0 2px; }

.note{
  margin-top: 18px;
  color: #6f807c;
}

/* GlyMed section */
.promo{
  background: var(--bg-mint);
  padding: var(--pad-y) 0 calc(var(--pad-y) + 8px);
  border-top: 1px solid rgba(31, 88, 72, 0.06);
  border-bottom: 1px solid rgba(31, 88, 72, 0.06);
}

.btn{
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.0);
}

.btn:hover{ filter: brightness(0.98); }

/* Callout */
.callout{
  background: var(--green-deep);
  padding: clamp(28px, 4vw, 46px) 0;
  text-align: center;
}

.callout h2{
  color: #fff;
  margin-bottom: 8px;
}

.callout p{
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
}

.callout a{
  color: #fff;
  font-weight: 600;
  text-decoration-thickness: 1px;
}

/* Policy */
.policy{
  background: var(--bg-mint);
  padding: var(--pad-y) 0;
}

.policy h3{
  margin-bottom: 10px;
  color: #3a5450;
}

.policy p{ max-width: 1060px; }

/* Footer */
.site-footer{
  background: var(--green-deep);
  padding: 18px 0;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
}

.footer__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__right{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
}

.fb{
  display: inline-flex;
  opacity: .95;
}

@media (max-width: 599px){
  .footer__row{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer__right{ justify-content: center; }
  .footer__right{ order: 1; }
  .footer__left{ order: 2; }
}

/* Small screens */
@media (max-width: 520px){
  .prose{ max-width: 100%; }
  h2{ margin-bottom: 14px; }
  .service{ margin-bottom: 16px; }
}
