:root {
  --ink:    #0b1a0b;
  --forest: #152415;
  --mid:    #1e3a1e;
  --cream:  #f2ead8;
  --warm:   #e0d4bc;
  --saw:    #e8b84b;
  --gold:   #c8902a;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(to bottom, rgba(11,26,11,0.97) 0%, rgba(11,26,11,0.0) 100%);
}
.nav-left { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-logo-img { width: 2.4rem; height: 2.4rem; filter: invert(1) brightness(0.92); border-radius: 50%; }
.nav-wordmark {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); line-height: 1.2;
}
.nav-wordmark small {
  display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.14em; opacity: 0.55; text-transform: uppercase;
}
.nav-phone {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.05em; color: var(--saw); text-decoration: none;
  border: 1px solid rgba(232,184,75,0.5); padding: 0.4rem 1rem;
  transition: background 0.2s, color 0.2s;
}
.nav-phone:hover { background: var(--saw); color: var(--ink); }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative; height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3rem 8rem;
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; background: center top / cover no-repeat; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,26,11,0.92) 0%, rgba(11,26,11,0.55) 55%, rgba(11,26,11,0.15) 100%),
    linear-gradient(to top, rgba(11,26,11,0.8) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--saw); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-eyebrow::before { content:''; width:1.5rem; height:1px; background: var(--saw); display:block; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900; line-height: 1.0; color: var(--cream);
  text-wrap: balance; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero h1 em { font-style: italic; color: var(--saw); }
.hero-sub {
  font-size: 1rem; color: var(--warm); opacity: 0.85;
  max-width: 460px; line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.8s ease both; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 80vh; min-height: 520px;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 3rem 5rem;
  overflow: hidden;
}
.page-hero-photo { position: absolute; inset: 0; background: center / cover no-repeat; }
.page-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,26,11,0.92) 0%, rgba(11,26,11,0.55) 55%, rgba(11,26,11,0.15) 100%),
    linear-gradient(to top, rgba(11,26,11,0.85) 0%, transparent 55%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.page-hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900; line-height: 1.05; color: var(--cream);
  text-wrap: balance; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.page-hero-content h1 em { font-style: italic; color: var(--saw); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--saw); color: var(--ink);
  font-family: var(--sans); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.04em; padding: 0.9rem 1.8rem;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #d4a540; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(242,234,216,0.3); color: var(--cream);
  font-family: var(--sans); font-weight: 400; font-size: 0.9rem;
  padding: 0.9rem 1.8rem; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(242,234,216,0.06); }

/* ── SHARED SECTION ELEMENTS ── */
.section-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--saw); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content:''; width:1.5rem; height:1px; background:var(--saw); display:block; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1; color: var(--cream); text-wrap: balance;
}

/* ── SERVICES (homepage) ── */
.services { background: var(--forest); padding: 5rem 3rem; }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 3rem; }
.services-header .section-title { margin-bottom: 0.8rem; }
.services-header p:not(.section-label) { color: var(--warm); opacity: 0.65; font-size: 0.92rem; max-width: 500px; }
.services-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
}
.services-grid .svc:nth-child(1),
.services-grid .svc:nth-child(2),
.services-grid .svc:nth-child(3) { grid-column: span 2; }
.services-grid .svc:nth-child(4),
.services-grid .svc:nth-child(5),
.services-grid .svc:nth-child(6) { grid-column: span 2; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .svc:nth-child(n) { grid-column: span 1; }
}
.svc { background: var(--forest); display: flex; flex-direction: column; transition: background 0.25s; }
.svc:hover { background: var(--mid); }
.svc-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.9); transition: filter 0.3s; }
.svc:hover .svc-photo { filter: brightness(0.95) saturate(1); }
.svc-body { padding: 1.8rem 2rem 2.2rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.svc-num { font-size: 0.62rem; letter-spacing: 0.15em; color: var(--saw); opacity: 0.6; font-weight: 500; }
.svc h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--cream); line-height: 1.2; }
.svc p { font-size: 0.88rem; color: var(--warm); opacity: 0.7; line-height: 1.7; }
.svc-body--noimg { padding-top: 2.5rem; padding-bottom: 2.5rem; background: var(--mid); flex: 1; justify-content: center; min-height: 200px; }
.svc--empty { background: var(--forest); opacity: 0.3; pointer-events: none; }

/* ── CONTENT SECTIONS (service pages) ── */
.content-section { background: var(--ink); padding: 5rem 3rem; }
.content-section.alt { background: var(--forest); }
.content-inner { max-width: 1200px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
@media (max-width: 800px) { .content-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.content-section h2 { margin-bottom: 1.2rem; }
.prose { color: var(--warm); opacity: 0.8; font-size: 0.95rem; line-height: 1.85; }
.prose p + p { margin-top: 1rem; }
.content-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.88) saturate(0.9); border-radius: 6px; }
.feature-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; }
.feature-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.9rem; color: var(--warm); opacity: 0.8; }
.feature-list li::before {
  content: ''; width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.25rem;
  background: var(--saw); opacity: 0.8;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ── FAQ ── */
.faq-wrap { background: var(--forest); padding: 5rem 3rem; }
.faq-inner { max-width: 760px; margin: 0 auto; }
details.faq-item { border-top: 1px solid rgba(255,255,255,0.1); }
details.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
summary.faq-q {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; padding: 1.4rem 0; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--cream); user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--saw);
  flex-shrink: 0; transition: transform 0.25s ease;
}
details[open] summary.faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 1.4rem; color: var(--warm); opacity: 0.8; font-size: 0.93rem; line-height: 1.85; }
@media (max-width: 600px) { .faq-wrap { padding: 4rem 1.5rem; } }

/* ── RUT STRIP ── */
.rut-strip {
  background: var(--forest);
  border-top: 1px solid rgba(232,184,75,0.2);
  border-bottom: 1px solid rgba(232,184,75,0.2);
  padding: 2.5rem 3rem;
}
.rut-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: nowrap; }
@media (max-width: 900px) { .rut-inner { flex-wrap: wrap; } }
.rut-badge {
  background: var(--saw); color: var(--ink);
  font-family: var(--sans); font-weight: 700; font-size: 1.4rem;
  padding: 0.6rem 1.2rem; white-space: nowrap; flex-shrink: 0;
}
.rut-text { flex: 1; font-size: 0.9rem; color: var(--warm); opacity: 0.8; line-height: 1.7; }
.rut-text strong { color: var(--cream); font-weight: 500; }

/* ── ABOUT (homepage) ── */
.about-wrap { background: var(--ink); padding: 6rem 3rem; }
.about { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; filter: brightness(0.92) saturate(0.85); }
.about-photo-caption {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--saw); color: var(--ink);
  font-family: var(--sans); font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.07em; text-transform: uppercase; padding: 0.45rem 0.9rem;
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-body { color: var(--warm); opacity: 0.8; font-size: 0.95rem; line-height: 1.85; }
.about-body p + p { margin-top: 1rem; }
.about-contact-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 2rem; color: var(--saw); font-weight: 500; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(232,184,75,0.35); padding-bottom: 0.1rem; transition: border-color 0.2s;
}
.about-contact-link:hover { border-color: var(--saw); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--saw); color: var(--ink); padding: 4.5rem 3rem; text-align: center; }
.cta-banner .eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.6rem; }
.cta-banner h2 { font-family: var(--serif); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.8rem); line-height: 1.15; margin-bottom: 0.4rem; }
.cta-phone { display: block; font-family: var(--serif); font-weight: 900; font-size: clamp(2.8rem, 5.5vw, 5rem); line-height: 1; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; margin-bottom: 0.8rem; transition: opacity 0.2s; }
.cta-phone:hover { opacity: 0.65; }
.cta-note { font-size: 0.8rem; opacity: 0.5; line-height: 1.5; }

/* ── CONTACT FORM ── */
.contact-wrap { background: var(--forest); padding: 6rem 3rem; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: start; }
@media (max-width: 800px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info .section-title { margin-bottom: 1.2rem; }
.contact-info p:not(.section-label) { color: var(--warm); opacity: 0.7; font-size: 0.9rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-row { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-row svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--saw); opacity: 0.8; }
.contact-row-text { font-size: 0.85rem; color: var(--warm); opacity: 0.75; line-height: 1.5; }
.contact-row-text a { color: var(--warm); text-decoration: none; }
.contact-row-text a:hover { color: var(--saw); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saw); opacity: 0.8; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream); font-family: var(--sans); font-size: 0.9rem; font-weight: 300;
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s, background 0.2s; resize: vertical;
}
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8b84b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--forest); color: var(--cream); }
.form-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm); opacity: 0.3; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--saw); background: rgba(255,255,255,0.07); }
.form-group textarea { min-height: 120px; }
.form-submit {
  align-self: flex-start; background: var(--saw); color: var(--ink);
  font-family: var(--sans); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.05em; padding: 0.9rem 2rem;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #d4a540; transform: translateY(-2px); }
.form-note { font-size: 0.75rem; color: var(--warm); opacity: 0.4; margin-top: 0.2rem; }

/* ── AREA ── */
.area-wrap { background: var(--ink); padding: 4rem 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.area-inner { max-width: 1200px; margin: 0 auto; }
.area-inner .section-title { margin-bottom: 1.5rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); color: var(--cream); font-size: 0.82rem; padding: 0.4rem 0.9rem; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.area-tag:hover { border-color: var(--saw); color: var(--saw); }
.area-tag.primary { background: rgba(232,184,75,0.12); border-color: var(--gold); color: var(--saw); }

/* ── FOOTER ── */
footer { background: #070f07; padding: 3rem 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.footer-logo { width: 2rem; height: 2rem; filter: invert(1); opacity: 0.7; }
.footer-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-tagline { font-size: 0.82rem; color: var(--warm); opacity: 0.45; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--saw); margin-bottom: 0.9rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.83rem; color: var(--warm); opacity: 0.55; margin-bottom: 0.4rem; line-height: 1.4; }
.footer-col ul li a { color: inherit; text-decoration: none; }
.footer-col ul li a:hover { color: var(--saw); opacity: 1; }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: var(--warm); opacity: 0.28; flex-wrap: wrap; gap: 0.5rem; }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  nav { padding: 1rem 1.2rem; }
  .hero { padding: 0 1.5rem 5rem; height: 80vh; }
  .page-hero { padding: 0 1.5rem 3rem; min-height: 340px; }
  .services { padding: 4rem 1.5rem; }
  .content-section { padding: 4rem 1.5rem; }
  .rut-strip { padding: 2rem 1.5rem; }
  .about-wrap { padding: 4rem 1.5rem; }
  .cta-banner { padding: 3.5rem 1.5rem; }
  .contact-wrap { padding: 4rem 1.5rem; }
  .area-wrap { padding: 3rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem 1.5rem; }
}
