:root {
  --color-sage: #6B8462;
  --color-sage-light: #9CB293;
  --color-sage-dark: #3E4F40;
  --color-cream: #F5EFE3;
  --color-cream-dark: #EDE2CC;
  --color-clay: #C97A43;
  --color-clay-dark: #A85F30;
  --color-text: #33302C;
  --color-text-muted: #6E6960;
  --max-width: 1140px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 20px rgba(51, 48, 44, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
}

a {
  color: var(--color-sage-dark);
}

img {
  max-width: 100%;
  display: block;
}

svg {
  flex-shrink: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(51, 48, 44, 0.06);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.nav__brand img {
  height: 56px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav__links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-sage-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--color-clay);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-clay-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
}

.btn--secondary:hover {
  background: var(--color-sage);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-sage-dark);
}

.btn--light:hover {
  background: var(--color-cream);
}

/* ---------- Hero ---------- */
.hero {
  padding: 3.5rem 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero .container {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero__eyebrow {
  display: inline-block;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--color-text);
}

.hero h1 span {
  color: var(--color-sage-dark);
}

.hero p {
  color: var(--color-text-muted);
  max-width: 46ch;
  font-size: 1.05rem;
  margin-bottom: 1.85rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__art img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* ---------- Page header (services/contact/404) ---------- */
.page-hero {
  background: var(--color-sage-light);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--color-sage-dark);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--color-sage-dark);
  color: #fff;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.25rem 1.5rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}

.trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-cream);
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section--white {
  background: #fff;
}

.section--alt {
  background: var(--color-cream-dark);
}

.section__eyebrow {
  display: block;
  text-align: center;
  color: var(--color-clay-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section__intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 3rem;
  color: var(--color-text-muted);
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(51, 48, 44, 0.12);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

/* ---------- About / story ---------- */
.about {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 880px) {
  .about {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about__media {
  position: relative;
}

.about__media-frame {
  background: var(--color-sage-light);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 1rem;
}

.about__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: var(--color-clay);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}

.about__badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
}

.about__badge span {
  font-size: 0.8rem;
}

.about__content ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about__content li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-text-muted);
}

.about__content li svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage-dark);
  margin-top: 0.15rem;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__stars {
  color: var(--color-clay);
  display: flex;
  gap: 0.15rem;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__quote {
  color: var(--color-text);
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-sage-dark);
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card__source {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.testimonial-card__source svg {
  width: 14px;
  height: 14px;
}

.testimonials__note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 2.5rem auto 0;
  max-width: 60ch;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-sage-dark);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: #E1EADD;
  max-width: 50ch;
  margin: 0 auto 1.85rem;
}

/* ---------- Service grid (services page) ---------- */
.service-card--full {
  display: flex;
  flex-direction: column;
}

.service-card__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-card__list li + li {
  margin-top: 0.35rem;
}

.service-card__media {
  margin: -2rem -1.75rem 1.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel (multi-photo services) */
.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__btn--prev {
  left: 0.5rem;
}

.carousel__btn--next {
  right: 0.5rem;
}

.carousel__dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}

.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.carousel__dot.is-active {
  background: #fff;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  background: var(--color-sage-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info h2 {
  text-align: left;
  color: #fff;
}

.contact-info a {
  color: #fff;
  font-weight: 600;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-info__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-cream);
  margin-top: 0.15rem;
}

.contact-info__item p {
  margin: 0;
  color: #E1EADD;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E2DCD0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-cream);
  color: var(--color-text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(124, 148, 115, 0.18);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.char-counter {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--color-sage-dark);
  text-align: right;
}

.char-counter--limit {
  color: #B6452C;
}

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--color-sage-dark);
}

.contact-form input[type="file"] {
  padding: 0.5rem;
  background: var(--color-cream);
}

.form-status {
  font-weight: 600;
  min-height: 1.5em;
  margin: 0;
}

.form-status--success {
  color: var(--color-sage-dark);
}

.form-status--error {
  color: #B6452C;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: #C9C4BB;
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  }
}

.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-grid p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-grid a {
  color: #C9C4BB;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer__brand img {
  height: 38px;
  width: 38px;
}

.footer-grid .social-links {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.15s ease;
}

.social-links a:hover {
  background: var(--color-sage);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #9C988F;
}
