﻿:root {
  --ink: #231f20;
  --muted: #6d6661;
  --line: #e5ded8;
  --paper: #ffffff;
  --soft: #f7f3ef;
  --rose: #8e615f;
  --gold: #b79862;
  --green: #596f62;
  --shadow: 0 24px 70px rgba(35, 31, 32, 0.14);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  width: 100%;
  min-height: 88px;
  margin: 0;
  padding: 14px clamp(20px, 6vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(19, 17, 17, 0.76), rgba(19, 17, 17, 0.42));
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 86px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.nav-pills {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav-pills a,
.text-link {
  text-decoration: none;
}

.nav-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
}

.nav-pills a:hover,
.text-link:hover {
  color: #fff;
}

.nav-pills a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  content: "";
  transition: transform 160ms ease;
}

.nav-pills a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta {
  min-width: 72px;
}

.hero {
  margin-top: -88px;
  position: relative;
  display: grid;
  min-height: min(760px, 92vh);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 18, 18, 0.84), rgba(20, 18, 18, 0.34) 52%, rgba(20, 18, 18, 0.1));
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, 100%);
  padding: clamp(120px, 14vw, 180px) clamp(20px, 6vw, 76px) clamp(60px, 10vw, 120px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.blog-hero h1 {
  color: var(--ink);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
}

h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  min-height: 52px;
  padding: 0 24px;
  border-color: rgba(183, 152, 98, 0.55);
  background: linear-gradient(135deg, #8e615f 0%, #b79862 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(142, 97, 95, 0.32);
}

.button.primary::after {
  position: absolute;
  inset: 1px;
  border-radius: 5px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%);
  content: "";
  pointer-events: none;
}

.button span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button.primary span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
  content: "";
}

.button.secondary span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid currentColor;
  content: "";
  opacity: 0.68;
}

.button.secondary {
  min-height: 52px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 12px 28px rgba(35, 31, 32, 0.14);
  backdrop-filter: blur(10px);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(35, 31, 32, 0.22);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 76px);
}

.local-seo {
  position: relative;
  align-items: start;
  margin: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 76px);
  padding: clamp(38px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #f7f3ef 62%, #efe7dd 100%);
  overflow: hidden;
}

.local-seo::after {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: -36px;
  color: rgba(183, 152, 98, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 1;
  content: "Luja";
  pointer-events: none;
}

.local-seo h2 {
  margin-bottom: 0;
}

.local-copy {
  position: relative;
  z-index: 1;
  padding: 8px 0 0;
}

.local-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.local-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(142, 97, 95, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
}

.intro {
  background: var(--soft);
}

.intro p,
.feature p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.services,
.gallery,
.contact {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 76px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-panel {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(35, 31, 32, 0.05);
}

.service-panel p {
  min-height: 86px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 14px;
  line-height: 1.35;
}

.service-panel li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.feature {
  background: var(--ink);
  color: #fff;
}

.feature p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-media img {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.06);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 800;
}

.gallery {
  background: var(--soft);
}

.blog-preview {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 6vw, 76px);
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: block;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: var(--soft);
}

.blog-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 14px;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-card:hover {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 14px 38px rgba(35, 31, 32, 0.08);
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: -88px;
  padding: clamp(126px, 12vw, 160px) clamp(20px, 6vw, 76px) clamp(54px, 7vw, 86px);
  background: var(--soft);
}

.blog-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-hero img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #efe7dd;
}

.article-list {
  display: grid;
  gap: 22px;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.article-block {
  width: min(980px, 100%);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-block:nth-child(even) {
  justify-self: end;
  background: var(--soft);
}

.article-block p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.blog-contact {
  background: var(--ink);
  color: #fff;
}

.blog-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.article-detail {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 10vw, 132px) 0 clamp(58px, 8vw, 104px);
}

.article-detail h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
}

.article-detail > img {
  width: 100%;
  max-height: 360px;
  margin: 30px 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #efe7dd;
}

.article-detail p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.lead-copy {
  color: var(--ink) !important;
  font-size: clamp(1.12rem, 2vw, 1.32rem) !important;
}

.article-detail h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.local-service-grid,
.quote-grid,
.landing-gallery {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.local-service-grid section,
.quote-grid blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.local-service-grid h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

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

.landing-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border-radius: 8px;
  background: #efe7dd;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.08);
}

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

.quote-grid blockquote {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.55;
}

.faq-block {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.faq-block h2 {
  margin-top: 0;
}

.faq-block p:last-child {
  margin-bottom: 0;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.map-embed {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
  background: #efe7dd;
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.contact .button.secondary,
.article-detail .button.secondary,
.blog-contact .button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.contact .button.primary,
.article-detail .button.primary {
  border-color: rgba(142, 97, 95, 0.3);
}

.blog-contact .button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.quick-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.quick-info div {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--soft);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f7a4d;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(31, 122, 77, 0.34);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

footer img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-pills {
    justify-content: flex-end;
    overflow-x: auto;
  }

  .section-grid,
  .contact,
  .blog-hero {
    grid-template-columns: 1fr;
  }

  .local-seo {
    margin-right: 20px;
    margin-left: 20px;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    min-height: 116px;
    align-items: start;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 0;
    padding: 12px 16px 14px;
  }

  .brand img {
    width: 78px;
    height: 58px;
  }

  .nav-pills {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-pills a {
    min-width: max-content;
    min-height: 36px;
    padding: 0 2px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 620px;
    margin-top: -116px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(20, 18, 18, 0.9), rgba(20, 18, 18, 0.32));
  }

  .hero-content {
    align-self: end;
    padding: 170px 20px 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
    min-height: 50px;
  }

  .header-cta {
    width: auto;
  }

  .service-panel {
    padding: 24px 20px;
  }

  .local-seo {
    padding: 28px 22px;
  }

  .local-seo::after {
    right: 14px;
    bottom: -20px;
    font-size: 5.4rem;
  }

  .feature-media img {
    max-height: 340px;
    aspect-ratio: 4 / 5;
  }

  .service-panel p {
    min-height: 0;
  }

  .service-panel ul {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .quick-info {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(n) {
    aspect-ratio: 16 / 10;
  }

  .blog-hero {
    padding-top: 132px;
    padding-bottom: 42px;
  }

  .blog-hero img,
  .article-detail > img {
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .local-service-grid,
  .landing-gallery,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 300px;
  }

  .article-detail {
    width: min(100% - 32px, 920px);
    padding-top: 104px;
  }

  .article-cta {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 86px;
  }
}

