:root {
  --bg: #f7f3ec;
  --surface: #ffffff;
  --surface-soft: #fbf8f3;
  --text: #162436;
  --text-muted: #5f6d7c;
  --text-soft: #8190a0;
  --border: rgba(22, 36, 54, 0.11);
  --accent: #8f2d2a;
  --accent-light: #b84a46;
  --accent-deep: #5c1f1d;
  --accent-glow: rgba(143, 45, 42, 0.16);
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(22, 36, 54, 0.1);
  --shadow-soft: 0 14px 34px rgba(22, 36, 54, 0.07);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--surface-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

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

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

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

button {
  cursor: pointer;
}

/* Container System - Consistent across all sections */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Section Padding - Consistent vertical rhythm */
.section-pad {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 7.5rem 0;
  }

  .services.section-pad,
  .expertise.section-pad,
  .about.section-pad,
  .contact.section-pad {
    padding: 4rem 0;
  }
}

.services,
.expertise,
.about,
.contact {
  min-height: auto;
  display: block;
  scroll-margin-top: 110px;
  position: relative;
}

.site-footer {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* Button System - Consistent styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 10px 20px rgba(143, 45, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
}

.btn-primary:hover::after {
  left: 125%;
  opacity: 1;
  transition: left 0.75s ease, opacity 0.75s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 36, 54, 0.15);
}

.btn-ghost:hover {
  color: var(--accent-deep);
  border-color: rgba(143, 45, 42, 0.3);
  background: #fff;
}

.btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Header - Fixed height and better alignment */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  max-width: 100%;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(22, 36, 54, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 95px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
  max-width: 100%;
}

.brand-logo {
  width: 80px;
  height: 80px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(143, 45, 42, 0.12);
  box-shadow: var(--shadow-soft);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  white-space: normal;
  text-wrap: balance;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: normal;
  text-wrap: balance;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.5rem;
  min-width: 0;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  width: 100%;
  left: 0;
}

.header-whatsapp {
  justify-self: end;
  flex-shrink: 0;
}

/* Hero Section - Better height and alignment */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  max-height: 900px;
  overflow: hidden;
  background: #e7e0d6;
  display: flex;
  align-items: center;
}

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

.hero-bg {
  background-image: url("../images/hero-bg-woodshop.jpeg");
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.05);
  will-change: transform;
}

.hero-overlay {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(143, 45, 42, 0.012) 0px,
      rgba(143, 45, 42, 0.012) 6px,
      transparent 6px,
      transparent 12px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 40%, rgba(255, 255, 255, 0.42) 68%, rgba(255, 255, 255, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(247, 243, 236, 0.74) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
  justify-content: start;
  width: 100%;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
  padding-top: 4.5rem;
  padding-bottom: 5.25rem;
}

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

.hero-copy h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 4.55vw, 4.45rem);
  line-height: 1.08;
}

.hero-copy h1 span {
  display: block;
}

.title-nowrap {
  white-space: nowrap;
}

.hero-copy .lead {
  max-width: 44ch;
  margin-top: 1.25rem;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  text-wrap: pretty;
}

.trust-line {
  margin-top: 1.25rem;
  max-width: 100%;
  padding-left: 1rem;
  border-left: 2px solid rgba(143, 45, 42, 0.22);
  color: #33455c;
  font-weight: 600;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.72;
  text-wrap: pretty;
}

/* Global paragraph justification */
p,
.trust-line,
.about-points span,
.about-points li span {
  text-align: justify;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(143, 45, 42, 0.14);
  box-shadow: 0 10px 30px rgba(22, 36, 54, 0.06);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-points span:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(143, 45, 42, 0.12);
}

.hero-points span i {
  color: var(--accent);
  font-size: 0.95rem;
}

/* Section Headers */
.section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .services .section-head,
  .expertise .section-head {
    margin-bottom: 1.5rem;
  }
}

.section-head p {
  max-width: 60ch;
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

/* Services Section */
.services {
  background:
    radial-gradient(circle at top left, rgba(143, 45, 42, 0.06), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1440px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
}

.service-card,
.expertise-card,
.contact-form,
.contact-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: grid;
  grid-template-rows: auto minmax(2.8em, auto) 1fr;
  align-content: start;
  gap: 0.8rem;
  height: 100%;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
  .service-card {
    padding: 1.3rem 1.4rem;
    gap: 0.75rem;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(143, 45, 42, 0.25);
  box-shadow: 0 24px 50px rgba(22, 36, 54, 0.08), 0 2px 5px rgba(143, 45, 42, 0.04);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 10px 20px rgba(143, 45, 42, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.18;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  text-wrap: balance;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
  text-wrap: pretty;
  text-align: left;
}

/* Expertise Section */
.expertise {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(143, 45, 42, 0.012) 0px,
      rgba(143, 45, 42, 0.012) 8px,
      transparent 8px,
      transparent 16px
    ),
    radial-gradient(circle at top right, rgba(143, 45, 42, 0.06), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.expertise-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .expertise-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 2.75rem;
  }
}

.expertise-copy p {
  max-width: 38ch;
  margin-top: 0.95rem;
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.55;
}

.check-list i {
  margin-top: 0.15rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.expertise-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-xl);
  height: fit-content;
  background: linear-gradient(135deg, var(--accent-deep), #220b0a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(92, 31, 29, 0.25);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .expertise-card {
    padding: 1.6rem;
  }
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 0.625rem;
  color: #e59a97;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.expertise-card h3,
.expertise-card p,
.scope-list,
.btn-cta {
  position: relative;
  z-index: 1;
}

.expertise-card h3 {
  color: #ffffff;
}

.expertise-card p {
  margin-top: 0.7rem;
  font-size: 0.97rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: pretty;
}

.scope-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

@media (min-width: 1024px) {
  .scope-list {
    gap: 0.55rem;
    margin-top: 0.95rem;
  }
}

.scope-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

@media (min-width: 1024px) {
  .scope-item {
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
  }
}

.scope-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.scope-item strong {
  color: #e59a97;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.scope-item span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

/* CTA Button Style */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.35rem;
  color: var(--accent-deep);
  background: linear-gradient(135deg, #ffffff, #f7f3ec);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.about-media {
  position: relative;
  max-width: 320px;
  width: 100%;
  justify-self: center;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(143, 45, 42, 0.15);
  background: repeating-linear-gradient(
    90deg,
    rgba(143, 45, 42, 0.06) 0px,
    rgba(143, 45, 42, 0.06) 8px,
    transparent 8px,
    transparent 16px
  );
  border-radius: 18px;
  z-index: 0;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.about-copy h2 {
  max-width: none;
  font-size: clamp(1.9rem, 2.35vw, 2.7rem);
  line-height: 1.08;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
}

@media (min-width: 1160px) {
  .about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-points li {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(251, 248, 243, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(22, 36, 54, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(22, 36, 54, 0.05);
}

.about-points strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
}

.about-points span {
  display: block;
  margin-top: 0.42rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

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

.about-stats div {
  padding: 1.5rem 1.6rem;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 36, 54, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.about-stats div:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(22, 36, 54, 0.08);
  background: #fff;
}

.about-stats .stat-icon {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.about-stats div:hover .stat-icon {
  transform: scale(1.12);
}

.about-stats strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-stats span {
  display: block;
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Contact Section */
.contact {
  background: linear-gradient(180deg, #fbf8f3 0%, #ffffff 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 3rem;
  }
}

.contact-lead {
  max-width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.66;
  text-wrap: pretty;
}

@media (min-width: 960px) {
  .hero-copy .lead,
  .trust-line,
  .section-head p,
  .expertise-copy p,
  .about-points span,
  .contact-lead {
    text-align: justify;
    text-align-last: left;
    hyphens: manual;
  }
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(143, 45, 42, 0.08);
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

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

@media (min-width: 720px) {
  .contact-list {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.88fr);
    column-gap: 1rem;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.1rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-item span {
  color: var(--text-muted);
  font-size: 0.875rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-email-value {
  display: block;
  font-size: 0.825rem;
  color: var(--text-muted);
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  align-self: stretch;
}

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  height: 100%;
}

.contact-form h3 {
  margin-bottom: 0.35rem;
}

.contact-form > p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.form-group {
  margin-bottom: 0.875rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(22, 36, 54, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(143, 45, 42, 0.08), 0 0 0 4px rgba(143, 45, 42, 0.15);
  transform: translateY(-1px);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.footer-meta {
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  z-index: 99;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), #10b759);
  box-shadow: 0 8px 24px rgba(16, 185, 89, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(16, 185, 89, 0.55);
}

.floating-whatsapp i {
  font-size: 1.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .services,
  .expertise,
  .about,
  .contact {
    scroll-margin-top: 80px;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    gap: 0.75rem 1rem;
    min-height: 64px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .brand {
    grid-area: brand;
  }
  
  .brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1.5px solid rgba(143, 45, 42, 0.12);
  }
  
  .brand-name {
    font-size: 1.15rem;
  }
  
  .brand-sub {
    font-size: 0.78rem;
  }
  
  .nav {
    grid-area: nav;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(22, 36, 54, 0.06);
  }
  
  .nav a {
    font-size: 0.875rem;
    padding: 0.25rem 0;
  }
  
  .header-whatsapp {
    grid-area: cta;
  }
  
  .hero {
    min-height: auto;
    max-height: none;
  }
  
  .hero-inner {
    min-height: auto;
    padding-top: 3.4rem;
    padding-bottom: 4rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 4.25rem);
  }

  .title-nowrap {
    white-space: normal;
  }

  .hero-copy .lead,
  .expertise-copy p,
  .contact-copy p {
    max-width: 100%;
  }

  .hero-copy .lead {
    text-align: justify;
    text-align-last: left;
  }

  .trust-line,
  .section-head p,
  .expertise-copy p,
  .about-points span,
  .contact-copy p {
    text-align: justify;
    text-align-last: left;
    hyphens: manual;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .section-pad {
    padding: 3.5rem 0;
  }

  .services,
  .expertise,
  .about,
  .contact {
    min-height: auto;
    align-items: stretch;
  }
  
  .contact-list {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
}

@media (max-width: 390px) {
  .container {
    padding: 0 1rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid rgba(143, 45, 42, 0.12);
  }

  .brand-name {
    font-size: 1.05rem;
  }
  
  .brand-sub {
    font-size: 0.7rem;
  }

  .header-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "cta"
      "nav";
  }

  .header-whatsapp {
    width: 100%;
  }

  .header-whatsapp.btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .service-card,
  .contact-item {
    transition: none !important;
  }
}
