:root {
  --bg: #f5f1ea;
  --bg-soft: #efe7db;
  --surface: #ffffff;
  --text: #1f1d19;
  --muted: #5b5750;
  --line: #d8cfc2;
  --line-soft: rgba(255, 255, 255, 0.14);
  --dark: #171511;
  --accent: #8a755b;
  --shadow: 0 18px 40px rgba(20, 17, 12, 0.08);
  --radius: 22px;
  --container: 1180px;
  --font-heading: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 12% 0%, rgba(138, 117, 91, 0.08), transparent 60%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.container {
  width: min(100% - 1.5rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark {
  background: var(--dark);
  color: #f3eee6;
}

.section-label {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2,
.intro-copy h2,
.quote-copy h2,
.cta-band-copy h2,
.hero-panel h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p,
.intro-copy p,
.quote-copy p,
.cta-band-copy p {
  margin: 0;
  color: var(--muted);
}

.section-head-light p {
  color: rgba(243, 238, 230, 0.78);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(245, 241, 234, 0.92);
  border-bottom: 1px solid rgba(31, 29, 25, 0.06);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.site-nav a {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text) !important;
  font-weight: 600;
}

/* Hero */

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(14, 13, 11, 0.8) 10%, rgba(14, 13, 11, 0.32) 46%, rgba(14, 13, 11, 0.1) 100%),
    linear-gradient(to right, rgba(14, 13, 11, 0.6) 0%, rgba(14, 13, 11, 0.18) 50%, rgba(14, 13, 11, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f7f3ed;
  padding: 6.25rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(247, 243, 237, 0.8);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 10vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 9ch;
}

.hero-text {
  margin: 1.15rem 0 0;
  max-width: 36rem;
  font-size: 1.02rem;
  color: rgba(247, 243, 237, 0.9);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  color: rgba(247, 243, 237, 0.82);
  font-size: 0.94rem;
}

.hero-points li {
  position: relative;
  padding-left: 1rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #d7c2a2;
}

.hero-panel {
  max-width: 30rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.hero-panel-label {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(247, 243, 237, 0.76);
}

.hero-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.18rem;
  color: #fff;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(247, 243, 237, 0.86);
  font-size: 0.94rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffffff;
  color: var(--text);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ece5da;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.btn-form {
  background: var(--text);
  color: #ffffff;
}

.btn-form:hover,
.btn-form:focus-visible {
  background: #2a2722;
}

.btn-full {
  width: 100%;
}

/* Trust strip */

.trust-strip {
  padding: 1rem 0;
  background: #ebe3d7;
  border-top: 1px solid rgba(31, 29, 25, 0.05);
  border-bottom: 1px solid rgba(31, 29, 25, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.trust-item {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(31, 29, 25, 0.05);
}

.trust-item h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.2;
  font-family: var(--font-body);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* Intro */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.intro-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.intro-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.15;
}

.intro-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.process-step {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #26231e;
  box-shadow: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-2px);
  opacity: 0.96;
}

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

.gallery-feature img {
  aspect-ratio: 4 / 3;
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.45rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.95rem;
}

.testimonial-card p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.94rem;
}

/* CTA band */

.cta-band {
  background: #ddd2c1;
  padding: 2.75rem 0;
}

.cta-band-inner {
  display: grid;
  gap: 1rem;
}

.cta-band-copy p {
  color: #504a42;
}

/* Quote section */

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-card {
  margin-top: 1.4rem;
  padding: 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 0.65rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.quote-form {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.form-field label {
  font-size: 0.93rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fcfbf8;
  color: var(--text);
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(138, 117, 91, 0.12);
  background: #fff;
}

/* Footer */

.site-footer {
  background: var(--dark);
  color: rgba(243, 238, 230, 0.88);
  padding: 1.75rem 0 5.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.footer-tagline,
.footer-contact p {
  margin: 0.25rem 0 0;
  color: rgba(243, 238, 230, 0.68);
}

/* Sticky mobile CTA */

.sticky-quote {
  position: fixed;
  right: 0.85rem;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

/* Responsive */

@media (min-width: 640px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-points {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature {
    grid-column: span 2;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 5.25rem 0;
  }

  .trust-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .sticky-quote {
    display: none;
  }
}

@media (min-width: 980px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
    gap: 1rem;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero-panel {
    justify-self: end;
    align-self: end;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.82fr);
    gap: 1.25rem;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-feature img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 88svh;
  }

  .hero h1 {
    max-width: 9.5ch;
  }

  .hero-panel,
  .intro-card,
  .service-card,
  .testimonial-card,
  .quote-form,
  .contact-card,
  .gallery-card {
    border-radius: 18px;
  }
}

