* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f2eee3;
  color: #252521;
}

.container {
  width: min(1390px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 22px 0;
  color: white;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 38px;
  letter-spacing: 14px;
}

nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

nav a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  background: #354824;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-small {
  padding: 14px 24px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    url("hero.jpg")
    center / cover no-repeat;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(20,25,17,0.72) 0%,
      rgba(20,25,17,0.42) 45%,
      rgba(20,25,17,0.18) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 24px;
}

h1 {
  max-width: 760px;
  font-family: Georgia, serif;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.98;
  font-weight: normal;
  margin-bottom: 38px;
}

.hero-text {
  max-width: 610px;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 38px;
  color: rgba(255,255,255,0.86);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .site-header .btn-small {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  .hero-text {
    font-size: 18px;
  }
}
.trust-strip {
  background: #354824;
  color: #f2eee3;
  padding: 38px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 12px 34px;
  border-right: 1px solid rgba(242, 238, 227, 0.18);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-item h3 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 238, 227, 0.75);
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(242, 238, 227, 0.18);
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.services {
  background: #f2eee3;
  padding: 120px 0;
}

.services-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.section-label,
.service-kicker {
  color: #7f9362;
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 24px;
}

.services h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.05;
  font-weight: normal;
}

.services-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 500px;
  color: #66645d;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 48px;
  border-bottom: 1px solid #d7d1c4;
}

.service-tags span {
  border: 1px solid #c9c2b5;
  padding: 10px 16px;
  font-size: 14px;
  color: #475c32;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
}

.service-card {
  border-right: 1px solid #d7d1c4;
}

.service-card:first-child {
  border-left: 1px solid #d7d1c4;
}

.service-card img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.service-card-content {
  padding: 36px;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: normal;
}

.service-card-content > p:last-child {
  font-size: 16px;
  line-height: 1.75;
  color: #55534d;
}

@media (max-width: 900px) {
  .services {
    padding: 80px 0;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #d7d1c4;
  }
}
.advantages {
  background: #262722;
  color: #f2eee3;
  padding: 85px 0 90px;
}

.advantages .container {
  padding-left: 70px;
  padding-right: 70px;
}

.advantages-heading {
  margin-bottom: 55px;
}

.advantages h2 {
  font-family: Georgia, serif;
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 1.05;
  font-weight: normal;
  max-width: 800px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 90px;
  max-width: 900px;
}

.advantage-item span {
  display: block;
  font-family: Georgia, serif;
  font-size: 48px;
  color: #43572e;
  margin-bottom: 12px;
}

.advantage-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: normal;
}

.advantage-item p {
  color: rgba(242, 238, 227, 0.72);
  font-size: 15px;
  line-height: 1.65;
}
.before-after {
  background: #f2eee3;
  padding: 110px 0 120px;
}

.before-after-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 55px;
}

.before-after h2 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  font-weight: normal;
}

.before-after h2 em {
  font-weight: normal;
}

.before-after-intro {
  max-width: 470px;
  font-size: 17px;
  line-height: 1.7;
  color: #66645d;
}

.comparison {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  z-index: 1;
}

.comparison-after-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.comparison-after {
  width: 100vw;
  max-width: none;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  z-index: 3;
  transform: translateX(-1px);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f2eee3;
  color: #354824;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.comparison-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

@media (max-width: 900px) {
  .before-after {
    padding: 80px 0;
  }

  .before-after-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .comparison {
    height: 430px;
  }
}
.process {
  background: #f2eee3;
  padding: 110px 0 120px;
}

.process-heading {
  max-width: 850px;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  font-weight: normal;
  margin-bottom: 28px;
}

.process-heading h2 em {
  font-weight: normal;
  color: #718255;
}

.process-heading > p:last-child {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  color: #66645d;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #cfc8ba;
}

.process-step {
  padding: 35px 35px 10px;
  border-left: 1px solid #cfc8ba;
}

.process-step:first-child {
  padding-left: 0;
  border-left: none;
}

.process-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 48px;
  color: #7f9362;
  margin-bottom: 45px;
}

.process-step h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 18px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #66645d;
}

@media (max-width: 900px) {
  .process {
    padding: 80px 0;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step,
  .process-step:first-child {
    padding: 30px 20px;
    border-left: none;
    border-bottom: 1px solid #cfc8ba;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.about {
  background: #e9e3d6;
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  height: 680px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-content {
  max-width: 620px;
}

.about-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  font-weight: normal;
  margin-bottom: 38px;
}

.about-content h2 em {
  color: #718255;
  font-weight: normal;
}

.about-content > p {
  color: #5e5c55;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.about-content .about-lead {
  color: #34352f;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-signature {
  border-top: 1px solid #c8c0b2;
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-signature span {
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: 6px;
  color: #354824;
}

.about-signature small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #77736b;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    height: 500px;
  }

  .about-content {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .about-image {
    height: 380px;
  }
}
.contact-section {
  background: #354824;
  color: #f2eee3;
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: start;
}

.contact-copy {
  max-width: 600px;
}

.contact-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.05;
  font-weight: normal;
  margin-bottom: 34px;
}

.contact-copy h2 em {
  color: #c8d5ad;
  font-weight: normal;
}

.contact-copy > p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(242, 238, 227, 0.78);
  max-width: 520px;
}

.contact-note {
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(242, 238, 227, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-note strong {
  font-family: Georgia, serif;
  letter-spacing: 4px;
  font-weight: normal;
}

.contact-note span {
  color: rgba(242, 238, 227, 0.65);
  font-size: 14px;
}

.contact-form {
  background: #f2eee3;
  color: #2d2e29;
  padding: 50px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 9px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c8c0b2;
  background: transparent;
  padding: 15px 14px;
  font: inherit;
  color: #2d2e29;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #354824;
}

.form-field textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #66645d;
  margin-bottom: 25px;
}

.privacy-check input {
  margin-top: 3px;
}

.contact-submit {
  width: 100%;
  border: none;
  background: #354824;
  color: white;
  padding: 18px 24px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

.contact-submit:hover {
  opacity: 0.92;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.site-footer {
  background: #20211d;
  color: #f2eee3;
  padding: 75px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 29px;
  letter-spacing: 7px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 238, 227, 0.65);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  margin-bottom: 10px;
  color: #b6c49b;
}

.footer-column a {
  color: rgba(242, 238, 227, 0.78);
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: white;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 238, 227, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(242, 238, 227, 0.12);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: rgba(242, 238, 227, 0.45);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* =========================
   MOBILE FIX
========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

@media (max-width: 600px) {

  .container {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  /* HERO */

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 3px;
    max-width: 100%;
  }

  h1 {
    font-size: 48px;
    line-height: 0.98;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }


  /* TRUST */

  .trust-item {
    padding: 28px 0;
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-left: 0;
    padding-right: 0;
  }


  /* SERVICES */

  .services h2,
  .before-after h2,
  .process-heading h2,
  .about-content h2,
  .contact-copy h2,
  .advantages h2 {
    font-size: 42px;
    overflow-wrap: break-word;
  }

  .service-tags {
    gap: 8px;
  }

  .service-tags span {
    font-size: 12px;
    padding: 9px 11px;
  }

  .service-card img {
    height: 280px;
  }

  .service-card-content {
    padding: 30px 0;
  }


  /* ADVANTAGES */

  .advantages .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .advantages-grid {
    max-width: 100%;
  }


  /* BEFORE / AFTER */

  .comparison {
    height: 300px;
  }

  .comparison-after {
    width: calc(100vw - 44px);
  }


  /* PROCESS */

  .process-number {
    margin-bottom: 20px;
  }


  /* ABOUT */

  .about-image {
    height: 360px;
  }


  /* CONTACT */

  .contact-form {
    width: 100%;
    padding: 30px 22px;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {

  .site-header {
    padding: 20px 0;
  }

  .logo {
    font-size: 24px;
    letter-spacing: 10px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 44px;
    line-height: 0.98;
    margin-bottom: 26px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 16px 18px;
    font-size: 14px;
  }
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}

.logo-mark {
  width: 66px;
  height: 66px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .logo-wrap {
    gap: 12px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }
}
/* =========================
   LEGAL PAGES
========================= */

.legal-page {
  background: #f2eee3;
  color: #292a25;
}

.legal-header {
  padding: 30px 0;
  border-bottom: 1px solid #d4cec1;
}

.legal-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.legal-logo {
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: 7px;
  color: #354824;
  text-decoration: none;
}

.legal-back {
  color: #5e5c55;
  text-decoration: none;
  font-size: 14px;
}

.legal-back:hover {
  color: #354824;
}

.legal-main {
  padding: 100px 0 120px;
}

.legal-container {
  max-width: 950px;
}

.legal-main h1 {
  color: #292a25;
  font-size: clamp(55px, 7vw, 90px);
  margin-bottom: 70px;
}

.legal-content {
  max-width: 700px;
}

.legal-content section {
  padding: 35px 0;
  border-top: 1px solid #d4cec1;
}

.legal-content h2 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: normal;
  margin-bottom: 18px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #5e5c55;
  margin-bottom: 15px;
}

.legal-footer {
  background: #20211d;
  color: #f2eee3;
  padding: 30px 0;
}

.legal-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
}

.legal-footer a {
  color: rgba(242, 238, 227, 0.7);
  text-decoration: none;
  margin-left: 25px;
}

@media (max-width: 600px) {

  .legal-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-main {
    padding: 70px 0 80px;
  }

  .legal-main h1 {
    font-size: 50px;
    margin-bottom: 45px;
  }

  .legal-footer .container {
    flex-direction: column;
  }

  .legal-footer a {
    margin-left: 0;
    margin-right: 20px;
  }
}
.privacy-check a {
  color: #354824;
}

.privacy-check a:hover {
  text-decoration: none;
}