/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--color-orange);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo:hover {
  color: var(--color-orange-hover);
}

.logo--img {
  align-items: center;
  line-height: 0;
}

.logo--img img {
  display: block;
  height: clamp(2rem, 5vw, 2.75rem);
  width: auto;
  max-width: 11rem;
}

.logo__letter {
  position: relative;
  display: inline-block;
}

.logo__letter--v {
  padding-top: 0.45rem;
}

.logo__letter--v .logo__leaf {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-orange);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.header-contact:hover {
  color: var(--color-orange);
}

.header-contact svg {
  flex-shrink: 0;
  color: var(--color-orange);
}

/* ——— Hero ——— */
.hero {
  padding-block: clamp(3rem, 6vw, 5rem) var(--space-section);
  background: var(--color-white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__title-gradient {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(100deg, var(--color-orange) 0%, var(--color-gold) 55%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title-sub {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 36ch;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 10%;
  width: 85%;
  height: 78%;
  background: var(--color-gray-50);
  border-radius: var(--radius-card);
  z-index: 0;
}

.hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__visual {
    justify-self: center;
    max-width: 420px;
  }
}

/* ——— Buttons & links ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-orange-hover);
  color: var(--color-white);
}

.link-caps {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-orange);
}

.link-caps:hover {
  color: var(--color-orange-hover);
}

/* ——— Section headers ——— */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text);
}

.section-intro {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.link-inline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
}

.link-inline:hover {
  text-decoration: underline;
}

/* ——— Treatment cards ——— */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .treatment-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.treatment-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.treatment-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.treatment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.treatment-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.treatment-card__text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ——— About — single white card, image + copy ——— */
.about-panel {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .about-panel {
    flex-direction: column;
    align-items: stretch;
  }
}

.about-photo {
  flex: 0 1 38%;
  max-width: 380px;
  min-width: 0;
}

@media (max-width: 900px) {
  .about-photo {
    flex: none;
    max-width: none;
  }
}

.about-photo__frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-gray-50);
}

.about-photo__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-photo__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2rem 1rem 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--color-white);
  text-align: left;
  line-height: 1.2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
}

.about-panel__body {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: clamp(0.5rem, 2vw, 1rem);
}

@media (max-width: 900px) {
  .about-panel__body {
    padding-left: 0;
  }
}

.about-panel__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.about-panel__text p {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.about-panel__text strong {
  font-weight: 600;
  color: var(--color-text);
}

.about-panel__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ——— Feature grid ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #FAFAF9;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--color-orange);
  object-fit: contain;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
}

.feature-card__text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ——— Lead form ——— */
.lead-section {
  padding-block: var(--space-section);
}

.lead-wrap {
  background: var(--color-gray-50);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 5vw, 3rem);
}

.lead-head {
  text-align: center;
  margin-bottom: 2rem;
}

.lead-head .section-title {
  margin-bottom: 0.5rem;
}

.lead-head p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.lead-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 56rem;
  margin-inline: auto;
}

.lead-form__field {
  flex: 1 1 140px;
  min-width: 0;
}

.lead-form__field input {
  width: 100%;
  height: 100%;
  min-height: 3rem;
  padding: 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  background: var(--color-white);
  color: var(--color-text);
}

.lead-form__field input::placeholder {
  color: var(--color-gray-400);
}

.lead-form__field input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.12);
}

.lead-form .btn {
  flex: 0 0 auto;
  align-self: stretch;
  padding-inline: 2.25rem;
  border-radius: var(--radius-card);
}

.form-alert {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-card);
  font-size: 0.9rem;
  text-align: center;
}

.form-alert--ok {
  background: rgba(34, 160, 80, 0.12);
  color: #1a6b3a;
}

.form-alert--err {
  background: rgba(200, 50, 50, 0.1);
  color: #a32020;
}

/* ——— Promo banner — full photo (no solid left column); text overlaid ——— */
.promo-banner {
  position: relative;
  width: 100%;
  background: transparent;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.promo-banner__inner {
  position: relative;
  min-height: clamp(300px, 40vh, 460px);
  overflow: hidden;
}

/* Light left vignette for text contrast only — photo stays visible across the strip */
.promo-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 42%,
    transparent 68%
  );
  pointer-events: none;
}

.promo-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-banner__media > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(300px, 40vh, 460px);
  max-width: 28rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.promo-banner__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.promo-banner__sub {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.promo-banner__sub strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* icon005.svg — lighten removes dark matte from embedded PNG */
.promo-banner__logo {
  position: absolute;
  right: clamp(0.75rem, 4vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: auto;
  height: clamp(8.5rem, 42%, 15rem);
  max-height: 48%;
  max-width: min(58%, 320px);
  object-fit: contain;
  object-position: right center;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.18));
}

@media (max-width: 768px) {
  .promo-banner__inner {
    min-height: clamp(320px, 58vh, 520px);
  }

  .promo-banner__inner::before {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .promo-banner__content {
    min-height: clamp(320px, 58vh, 520px);
    justify-content: flex-end;
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .promo-banner__logo {
    right: clamp(0.75rem, 5vw, 1.75rem);
    top: auto;
    bottom: clamp(1.25rem, 6vw, 2.5rem);
    transform: none;
    height: clamp(7rem, 34vmin, 12rem);
    max-height: 42%;
    max-width: min(65%, 280px);
  }
}

/* ——— Footer ——— */
.site-footer {
  background: var(--color-gray-50);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--color-gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 28ch;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-list svg,
.footer-list img {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-list svg {
  color: var(--color-orange);
}

.footer-list a {
  color: inherit;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--color-orange);
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  display: flex;
  align-items: center;
  color: var(--color-orange);
}

.social-row a:hover {
  opacity: 0.85;
}

.social-row img {
  display: block;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--color-gray-200);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bar a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-bar a:hover {
  color: var(--color-orange);
}
