:root {
  --ink: #211411;
  --brown: #451b12;
  --brown-2: #6f2b1a;
  --red: #a92018;
  --gold: #e1b326;
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --white: #fffdf9;
  --muted: #746761;
  --line: rgba(69, 27, 18, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 15px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 253, 249, .98);
}
.topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px max(24px, calc((100vw - 1280px) / 2));
  color: var(--cream);
  background: var(--brown);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.topline p { margin: 0; }
.topline a { text-decoration: none; }
.nav-shell {
  width: min(1280px, calc(100% - 48px));
  min-height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}
.brand span { display: grid; line-height: 1.05; }
.brand b {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
nav a {
  position: relative;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--brown);
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--red); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero { background: var(--brown); }
.hero picture, .hero picture img { width: 100%; }
.hero picture img {
  height: auto;
}
.hero-actions {
  width: min(1180px, calc(100% - 48px));
  min-height: 116px;
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.hero-actions div { display: grid; }
.hero-actions span {
  color: #d6c5bd;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-actions strong { margin-top: 3px; font-family: var(--serif); font-size: 1.35rem; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--brown); background: var(--white); }
.button-light:hover { background: var(--gold); }
.button-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.button-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-dark { color: var(--white); background: var(--brown); }
.button-dark:hover { background: var(--red); }
.button-gold { color: var(--brown); background: var(--gold); border: 0; }
.button-gold:hover { background: #f0c746; }

.section { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h2, h3, p { margin-top: 0; }
h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; line-height: 1.04; }

.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  margin-top: 24px;
  align-items: start;
}
.intro-grid h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.6rem, 5.3vw, 5rem); }
.intro-copy { padding-top: 15px; color: #514640; font-size: 1.03rem; }
.intro-copy p + p { margin-top: 20px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 12px; color: var(--brown); font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-strip article { min-height: 188px; padding: 28px; border-right: 1px solid var(--line); }
.value-strip article:first-child { padding-left: 0; }
.value-strip article:last-child { border-right: 0; }
.value-strip span { color: var(--red); font-size: .7rem; font-weight: 700; }
.value-strip h3 { margin: 24px 0 8px; font-family: var(--serif); font-size: 1.45rem; }
.value-strip p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.manufacturing { color: var(--white); background: var(--brown); overflow: hidden; }
.light-heading { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: end; }
.light-heading .eyebrow { color: var(--gold); }
.light-heading h2 { max-width: 720px; margin: 20px 0 0; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.light-heading > p { margin: 0 0 8px; color: #d7c6bf; }
.capabilities { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.capability { position: relative; min-height: 410px; padding: 28px; border-right: 1px solid rgba(255,255,255,.2); transition: background .25s ease, color .25s ease; }
.capability:first-child { padding-left: 0; }
.capability:last-child { border-right: 0; }
.capability:hover, .capability.featured { color: var(--brown); background: var(--gold); }
.cap-number { font-size: .72rem; font-weight: 700; }
.cap-mark { display: grid; width: 70px; height: 70px; margin-top: 70px; place-items: center; color: var(--gold); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.6rem; }
.featured .cap-mark, .capability:hover .cap-mark { color: var(--brown); border-color: rgba(69,27,18,.3); }
.capability h3 { margin: 42px 0 12px; font-family: var(--serif); font-size: 1.75rem; }
.capability p { margin: 0; color: #d7c6bf; font-size: .92rem; }
.featured p, .capability:hover p { color: #5b2e21; }
.process-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; gap: 18px; align-items: center; margin-top: 42px; color: #d7c6bf; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.process-line i { height: 1px; background: rgba(255,255,255,.24); }

.solutions { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; background: var(--cream); }
.solutions-title { position: sticky; top: 30px; align-self: start; }
.solutions-title h2 { margin: 20px 0 0; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.solution-cards { border-top: 1px solid var(--line); }
.solution-cards article { position: relative; padding: 40px 60px 40px 0; border-bottom: 1px solid var(--line); }
.solution-cards article > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.solution-cards h3 { margin: 12px 0; font-family: var(--serif); font-size: 2rem; }
.solution-cards p { max-width: 590px; margin-bottom: 18px; color: var(--muted); }
.solution-cards a { font-size: .85rem; font-weight: 700; text-decoration: none; }
.solution-cards a span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.solution-cards a:hover span { transform: translate(3px, -3px); }

.tour { background: var(--paper); }
.tour-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; overflow: hidden; background: var(--gold); }
.tour-art { position: relative; min-height: 600px; overflow: hidden; background: var(--red); isolation: isolate; }
.tour-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 15px 15px;
}
.tour-art .sun { position: absolute; top: 10%; left: 18%; width: 220px; height: 220px; border-radius: 50%; background: var(--gold); }
.mountain { position: absolute; left: -15%; bottom: -28%; width: 90%; height: 72%; background: var(--brown); border-radius: 50% 50% 0 0; transform: rotate(12deg); }
.mountain-two { left: 42%; bottom: -34%; width: 75%; background: #672417; transform: rotate(-14deg); }
.tour-art > span { position: absolute; left: 10%; bottom: 10%; z-index: 2; color: var(--white); font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 6rem); font-weight: 600; letter-spacing: -.05em; line-height: .82; }
.tour-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 7vw, 95px); }
.tour-copy .eyebrow { color: var(--brown); }
.tour-copy h2 { margin: 16px 0 24px; color: var(--brown); font-size: clamp(3rem, 5vw, 5rem); }
.tour-copy > p { max-width: 530px; color: #593c22; font-size: 1.05rem; }
.tour-notes { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0 34px; }
.tour-notes span { padding: 7px 12px; border: 1px solid rgba(69,27,18,.35); border-radius: 999px; color: var(--brown); font-size: .72rem; font-weight: 700; }

.real-team { position: relative; min-height: min(760px, 70vw); color: var(--white); background: #19100d; overflow: hidden; }
.real-team > img { width: 100%; min-height: min(760px, 70vw); object-fit: cover; object-position: center; }
.real-team::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(25,16,13,.86) 0%, rgba(25,16,13,.35) 46%, transparent 75%); }
.team-overlay { position: absolute; left: max(24px, calc((100vw - 1180px) / 2)); top: 50%; z-index: 2; width: min(480px, calc(100% - 48px)); transform: translateY(-50%); }
.team-overlay .eyebrow { color: var(--gold); }
.team-overlay h2 { margin: 20px 0; font-size: clamp(3rem, 6vw, 5.8rem); }
.team-overlay p { max-width: 430px; color: #eee1d9; font-size: 1.03rem; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; background: var(--paper); }
.faq h2 { margin: 18px 0; font-size: clamp(2.7rem, 4.5vw, 4.2rem); }
.faq > div:first-child > p { max-width: 380px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--red); font-family: var(--sans); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 620px; margin: -6px 45px 28px 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; color: var(--white); background: var(--brown); }
.contact .eyebrow { color: var(--gold); }
.contact h2 { margin: 18px 0 25px; font-size: clamp(3rem, 5.5vw, 5.2rem); }
.contact-intro > p { max-width: 460px; color: #d8c4bc; }
.direct-phone { display: inline-grid; margin-top: 30px; text-decoration: none; }
.direct-phone span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.direct-phone strong { font-family: var(--serif); font-size: 2rem; }
#contact-form { padding: clamp(28px, 4vw, 52px); color: var(--ink); background: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
label { display: grid; gap: 7px; }
label > span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.full-field { grid-column: 1 / -1; }
input, select, textarea { width: 100%; padding: 14px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #cbbeb7; border-radius: 0; outline: 0; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.field-error { border-color: #b00020 !important; }
.form-status { min-height: 25px; margin: 20px 0 8px; color: #9d1515; font-size: .85rem; font-weight: 600; }
#contact-form .button { min-width: 230px; }
#contact-form > small { display: block; margin-top: 14px; color: var(--muted); }

footer { padding: 70px max(24px, calc((100vw - 1180px) / 2)) 28px; color: var(--cream); background: #1c100d; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr 1.4fr; gap: 60px; align-items: center; padding-bottom: 55px; }
.footer-brand img { width: 68px; height: 68px; }
.footer-brand small { color: #aa9790; }
.footer-main > p { margin: 0; color: #aa9790; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 28px; }
.footer-links a { font-size: .82rem; font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: #897770; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: grid; width: 56px; height: 56px; place-items: center; color: white; background: #208f55; border: 4px solid rgba(255,255,255,.85); border-radius: 50%; box-shadow: 0 8px 28px rgba(0,0,0,.24); font-size: .72rem; font-weight: 800; text-decoration: none; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }

@media (max-width: 980px) {
  .nav-shell { min-height: 76px; }
  .menu-toggle { display: grid; width: 46px; height: 42px; padding: 10px; place-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--brown); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav { position: absolute; top: 76px; left: 0; right: 0; display: none; padding: 18px 24px 28px; align-items: stretch; flex-direction: column; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 18px 30px rgba(40,18,11,.1); }
  nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero-actions { grid-template-columns: 1fr 1fr; padding: 25px 0; }
  .hero-actions div { grid-column: 1 / -1; }
  .intro-grid, .light-heading, .solutions, .faq, .contact { grid-template-columns: 1fr; }
  .intro-grid { gap: 36px; }
  .value-strip, .capabilities { grid-template-columns: 1fr 1fr; }
  .value-strip article:nth-child(2) { border-right: 0; }
  .value-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-strip article:nth-child(3) { padding-left: 0; }
  .capability:nth-child(2) { border-right: 0; }
  .capability:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .capability:nth-child(3) { padding-left: 0; }
  .process-line { grid-template-columns: 1fr; gap: 10px; }
  .process-line i { width: 1px; height: 18px; margin-left: 5px; }
  .solutions-title { position: static; }
  .tour-card { grid-template-columns: 1fr; }
  .tour-art { min-height: 430px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .topline { justify-content: center; text-align: center; }
  .topline p { display: none; }
  .nav-shell { width: calc(100% - 30px); }
  .brand img { width: 48px; height: 48px; }
  .brand b { font-size: 1.35rem; }
  .hero picture img { height: auto; }
  .hero-actions { width: calc(100% - 36px); grid-template-columns: 1fr; }
  .hero-actions div { grid-column: auto; }
  .hero-actions .button { width: 100%; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .intro-grid h2, .light-heading h2, .solutions-title h2, .tour-copy h2, .team-overlay h2, .contact h2 { font-size: 2.65rem; }
  .value-strip { grid-template-columns: 1fr; margin-top: 55px; }
  .value-strip article { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-strip article:nth-child(3) { border-bottom: 1px solid var(--line); }
  .value-strip article:last-child { border-bottom: 0; }
  .value-strip h3 { margin-top: 14px; }
  .capabilities { grid-template-columns: 1fr; }
  .capability, .capability:first-child, .capability:nth-child(3) { min-height: 300px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .capability:last-child { border-bottom: 0; }
  .cap-mark { margin-top: 35px; }
  .capability h3 { margin-top: 28px; }
  .solution-cards article { padding-right: 0; }
  .tour { padding-left: 0; padding-right: 0; }
  .tour-art { min-height: 360px; }
  .tour-art .sun { width: 160px; height: 160px; }
  .tour-copy { padding: 52px 24px 60px; }
  .real-team, .real-team > img { min-height: 610px; }
  .real-team > img { object-position: 64% center; }
  .real-team::after { background: linear-gradient(0deg, rgba(25,16,13,.94) 0%, rgba(25,16,13,.1) 75%); }
  .team-overlay { top: auto; bottom: 25px; transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  #contact-form { margin: 0 -8px; padding: 28px 22px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
