
:root {
  --navy: #061f36;
  --blue: #0b3a5b;
  --sky: #9ec6dc;
  --ice: #edf4f7;
  --ink: #102331;
  --muted: #5f707b;
  --line: #dbe5ea;
  --sand: #c7a36a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
body::selection { background: var(--sky); color: var(--navy); }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: #2e688d; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .75; }
.eyebrow.light { color: #b8d9e9; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { text-wrap: balance; }

.site-header { position: absolute; z-index: 10; inset: 0 0 auto; height: 104px; display: flex; align-items: center; gap: 52px; padding: 0 5vw; color: white; border-bottom: 1px solid rgba(255,255,255,.18); background: linear-gradient(180deg,rgba(2,18,31,.48),rgba(2,18,31,.08)); backdrop-filter: blur(3px); }
.brand { width: 175px; margin-right: auto; transition: transform .25s ease; }
.brand:hover { transform: translateY(-2px); }
.site-header nav { display: flex; gap: 34px; font-size: 14px; }
.site-header nav a { position: relative; padding: 10px 0; opacity: .82; transition: opacity .2s; }
.site-header nav a::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header nav a:hover { opacity: 1; }
.header-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.6); border-radius: 99px; font-size: 13px; font-weight: 700; transition: background .25s,color .25s,transform .25s; }
.header-cta:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

.hero { min-height: 760px; height: 94vh; position: relative; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-image,.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image { animation: heroReveal 1.2s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgba(3,20,35,.9) 0%, rgba(3,24,42,.67) 48%, rgba(3,24,42,.12) 82%), linear-gradient(0deg, rgba(3,20,35,.32), transparent 50%); }
.hero-content { position: relative; padding-top: 80px; animation: contentReveal .9s .12s ease-out both; }
.hero h1 { max-width: 810px; margin-bottom: 24px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 5.4vw, 80px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.hero-copy { max-width: 630px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 26px; border-radius: 3px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: #fff; color: var(--navy); }
.button-primary:hover { background: var(--ice); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(5px); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-assurance { max-width: 780px; display: flex; gap: 0; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.76); font-size: 12px; letter-spacing: .03em; }
.hero-assurance span { padding-right: 27px; margin-right: 27px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-assurance span:last-child { border-right: 0; }
.hero-assurance b { margin-right: 8px; color: #a8cada; font-size: 10px; }
.hero-scroll { position: absolute; right: 5vw; bottom: 42px; display: flex; align-items: center; gap: 18px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.hero-scroll i { width: 54px; height: 1px; background: #fff; }

.intro { display: grid; grid-template-columns: 1.05fr .85fr; gap: 100px; padding: 120px 0 64px; align-items: end; }
.intro h2,.preview-projects h2 { max-width: 630px; margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; line-height: 1.1; letter-spacing: -.025em; }
.intro-text { margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.services { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-bottom: 120px; background: var(--line); border: 1px solid var(--line); }
.service-card { position: relative; min-height: 330px; padding: 34px 28px; background: #fff; display: flex; flex-direction: column; overflow: hidden; transition: transform .3s ease,box-shadow .3s ease,background .3s ease; }
.service-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg,var(--blue),var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { z-index: 1; background: #f8fbfc; box-shadow: 0 20px 50px rgba(4,34,54,.12); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card > span { color: #86a4b5; font-size: 12px; }
.service-card h3 { margin: 66px 0 17px; font-family: Georgia, 'Times New Roman', serif; font-size: 28px; font-weight: 400; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-card a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 700; }
.service-card a b { float: right; font-size: 17px; }

.wood-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 700px; background: var(--navy); color: #fff; }
.wood-image { position: relative; min-height: 700px; overflow: hidden; }
.wood-image::after { content: ""; position: absolute; inset: 60% 0 0; background: linear-gradient(transparent,rgba(2,18,31,.48)); pointer-events: none; }
.wood-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.wood-section:hover .wood-image img { transform: scale(1.02); }
.image-caption { position: absolute; z-index: 1; right: 32px; bottom: 30px; left: 32px; display: flex; align-items: end; justify-content: space-between; color: #fff; }
.image-caption span { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.image-caption b { font: 400 18px Georgia,serif; }
.wood-content { padding: 92px clamp(48px, 6vw, 100px); align-self: center; }
.wood-content h2 { max-width: 600px; margin-bottom: 28px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 400; line-height: 1.08; }
.wood-content > p:not(.eyebrow) { color: #b8c8d2; line-height: 1.8; }
.wood-content ul { margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.wood-content li { display: flex; align-items: center; gap: 18px; padding: 16px 0; color: #dce7ed; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 14px; }
.wood-content li span { color: #7ca7be; font-size: 11px; }
.text-link { color: #fff; font-size: 14px; font-weight: 700; }
.text-link b { margin-left: 12px; }

.preview-projects { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 120px 0; align-items: center; }
.preview-copy { max-width: 510px; margin: 28px 0 0; color: var(--muted); line-height: 1.8; }
.preview-visual { position: relative; }
.preview-projects img { height: 480px; object-fit: cover; box-shadow: 0 28px 70px rgba(6,31,54,.15); }
.portfolio-stamp { position: absolute; bottom: -26px; left: -34px; width: 146px; height: 146px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 50%; background: var(--blue); color: #fff; box-shadow: 0 16px 40px rgba(6,31,54,.25); }
.portfolio-stamp::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.portfolio-stamp b { font: 400 40px Georgia,serif; }
.portfolio-stamp span { font-size: 10px; line-height: 1.4; letter-spacing: .06em; text-transform: uppercase; }
.cta-band { padding: 100px 0; background: var(--blue); color: #fff; text-align: center; }
.cta-band h2 { margin-bottom: 18px; font: 400 clamp(40px, 5vw, 64px)/1.1 Georgia, serif; }
.cta-band p:not(.eyebrow) { color: #c5d8e3; }
.button-light { margin-top: 20px; background: #fff; color: var(--navy); }

.portfolio-section { position: relative; padding: 112px 0 122px; }
.portfolio-section::before { content: ""; position: absolute; top: 0; left: 5vw; width: 88px; height: 3px; background: var(--sand); }
.portfolio-section.portfolio-dark { background: var(--navy); color: #fff; }
.portfolio-section.portfolio-soft { background: var(--ice); }
.portfolio-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.portfolio-heading h2 { margin: 0; font: 400 clamp(40px, 4.5vw, 62px)/1.08 Georgia, serif; letter-spacing: -.025em; }
.portfolio-heading > p { margin: 0 0 5px; color: var(--muted); line-height: 1.8; }
.portfolio-dark .portfolio-heading > p { color: #b8c8d2; }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.gallery-card { position: relative; grid-column: span 4; height: 390px; margin: 0; padding: 0; overflow: hidden; background: #dfe7eb; border: 0; border-radius: 2px; color: white; cursor: zoom-in; text-align: left; box-shadow: 0 10px 26px rgba(6,31,54,.08); transition: box-shadow .35s ease,transform .35s ease; }
.gallery-card:nth-child(5n + 1),.gallery-card:nth-child(5n + 2) { grid-column: span 6; height: 480px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent,rgba(2,17,29,.76)); }
.gallery-card:hover { box-shadow: 0 22px 48px rgba(6,31,54,.18); transform: translateY(-3px); }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card span { position: absolute; z-index: 1; left: 22px; bottom: 22px; font-size: 14px; font-weight: 700; }
.gallery-card i { position: absolute; z-index: 1; right: 22px; bottom: 21px; font-size: 20px; font-style: normal; }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 40px 92px; background: rgba(1,11,19,.96); color: white; }
.lightbox figure { max-width: min(1100px, 100%); max-height: 88vh; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox figcaption { display: flex; justify-content: space-between; padding-top: 14px; color: #d2dce2; font-size: 13px; }
.lightbox figcaption span { color: #8099a9; }
.lightbox button { position: absolute; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 32px; }
.lightbox-close { top: 26px; right: 30px; }
.lightbox-prev { left: 24px; top: 50%; }
.lightbox-next { right: 24px; top: 50%; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding: 120px 0; }
.process-heading h2 { margin: 0; font: 400 clamp(38px, 4vw, 55px)/1.1 Georgia, serif; }
.process-list { border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease,background .25s ease; }
.process-list article:hover { padding-right: 18px; padding-left: 18px; background: var(--ice); }
.process-list article > span { color: #7995a5; font-size: 12px; }
.process-list h3 { margin: 0 0 8px; font: 400 23px/1.2 Georgia, serif; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.about-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; background: #eaf1f4; }
.about-images { position: relative; min-height: 720px; overflow: hidden; }
.about-images img:first-child { width: 100%; height: 100%; object-fit: cover; }
.about-images img:last-child { position: absolute; right: 0; bottom: 0; width: 35%; height: 42%; object-fit: cover; border: 10px solid #eaf1f4; border-right: 0; border-bottom: 0; }
.about-content { align-self: center; padding: 90px clamp(45px, 6vw, 100px); }
.about-content h2 { margin-bottom: 28px; font: 400 clamp(38px, 4vw, 57px)/1.08 Georgia, serif; }
.about-content > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.about-content blockquote { position: relative; margin: 36px 0 0; padding: 22px 0 0 34px; border-top: 1px solid #c7d7de; color: var(--blue); font: italic 21px/1.5 Georgia, serif; }
.about-content blockquote::before { content: "“"; position: absolute; top: 12px; left: 0; color: var(--sand); font: 52px/1 Georgia,serif; }

.contact-section { display: grid; grid-template-columns: .82fr 1.18fr; background: radial-gradient(circle at 12% 22%,rgba(43,112,151,.3),transparent 32%),var(--navy); color: #fff; }
.contact-copy { padding: 110px clamp(40px, 7vw, 110px); align-self: center; }
.contact-copy h2 { max-width: 540px; margin-bottom: 26px; font: 400 clamp(43px, 5vw, 67px)/1.03 Georgia, serif; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; color: #b6c9d4; line-height: 1.8; }
.contact-direct { display: flex; flex-direction: column; gap: 9px; margin-top: 52px; }
.contact-direct small { color: #829eae; text-transform: uppercase; letter-spacing: .12em; }
.contact-direct a:first-of-type { margin-top: 7px; font: 400 29px Georgia, serif; }
.contact-direct a:first-of-type span { margin-left: 10px; font-family: Arial,sans-serif; }
.contact-direct a:last-of-type { color: #adc2ce; font-size: 14px; }
.contact-social { margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-social small { display: block; margin-bottom: 16px; color: #829eae; text-transform: uppercase; letter-spacing: .12em; }
.contact-social > div { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-social a { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px 9px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: #dbe6ec; font-size: 12px; transition: background .25s,border-color .25s; }
.contact-social a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.contact-social b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--navy); font-size: 9px; }
.lead-form { position: relative; padding: 88px clamp(40px, 6vw, 92px); background: #fff; color: var(--ink); }
.lead-form::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg,var(--sky),var(--blue),var(--sand)); }
.honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.field { margin-bottom: 25px; }
.field label,.lead-form legend { display: block; margin-bottom: 9px; color: #405563; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.field input,.field textarea { width: 100%; padding: 14px 0; background: transparent; border: 0; border-bottom: 1px solid #bdcbd2; border-radius: 0; color: var(--ink); font: 16px Arial,sans-serif; outline: none; }
.field textarea { resize: vertical; }
.field input:focus,.field textarea:focus { border-bottom-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lead-form fieldset { margin: 6px 0 28px; padding: 0; border: 0; }
.choice-row { display: flex; gap: 10px; }
.choice input { position: absolute; opacity: 0; }
.choice span { display: inline-flex; padding: 12px 19px; border: 1px solid #cbd8de; border-radius: 99px; color: #425866; cursor: pointer; font-size: 14px; }
.choice input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.form-submit { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; background: var(--blue); border: 0; color: #fff; cursor: pointer; font-size: 14px; font-weight: 700; }
.form-submit:disabled { opacity: .65; cursor: wait; }
.form-submit span { font-size: 20px; }
.form-message { margin: 16px 0 0; padding: 12px 14px; font-size: 13px; }
.form-message.success { background: #e8f5ec; color: #1d6a39; }
.form-message.error { background: #fff0ef; color: #9a332c; }
.privacy-note { margin: 15px 0 0; color: #85949d; font-size: 11px; text-align: center; }

footer { padding: 70px 0 28px; background: #041827; color: white; }
.footer-main { display: grid; grid-template-columns: 220px 1fr .8fr auto; gap: 55px; align-items: start; padding-bottom: 55px; }
.footer-main > img { width: 190px; }
.footer-main > p { max-width: 380px; color: #8ea7b6; font-size: 14px; line-height: 1.7; }
.footer-main > div { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; font-size: 13px; }
.footer-social { display: flex !important; flex-direction: column; gap: 10px !important; }
.footer-social a { display: flex; align-items: center; gap: 10px; color: #d8e3e9; }
.footer-social b { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 9px; transition: background .25s,color .25s; }
.footer-social a:hover b { background: #fff; color: var(--navy); }
.footer-social span { font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #718b9a; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 20; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border: 3px solid rgba(255,255,255,.9); border-radius: 50%; background: #24d366; box-shadow: 0 10px 30px rgba(0,0,0,.25); color: #063b1d; font-size: 12px; font-weight: 900; transition: transform .25s,box-shadow .25s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 38px rgba(0,0,0,.3); }

@keyframes heroReveal { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes contentReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 940px) {
  .site-header nav { display: none; }
  .hero { min-height: 720px; }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .services { grid-template-columns: 1fr 1fr; }
  .wood-section { grid-template-columns: 1fr; }
  .wood-image { min-height: 520px; }
  .preview-projects { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-stamp { left: 22px; }
  .portfolio-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery-card,.gallery-card:nth-child(5n + 1),.gallery-card:nth-child(5n + 2) { grid-column: span 6; height: 420px; }
  .process { grid-template-columns: 1fr; gap: 50px; }
  .about-section { grid-template-columns: 1fr; }
  .about-images { min-height: 560px; }
  .contact-section { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .site-header { height: 86px; padding: 0 20px; }
  .brand { width: 140px; }
  .header-cta { padding: 11px 14px; font-size: 11px; }
  .hero { height: auto; min-height: 730px; align-items: flex-end; padding: 150px 0 110px; }
  .hero h1 { font-size: 45px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-assurance { flex-direction: column; gap: 12px; margin-top: 34px; }
  .hero-assurance span { padding-right: 0; margin-right: 0; border-right: 0; }
  .hero-scroll { display: none; }
  .intro { padding-top: 84px; }
  .services { grid-template-columns: 1fr; margin-bottom: 84px; }
  .service-card { min-height: 270px; }
  .service-card h3 { margin-top: 40px; }
  .wood-image { min-height: 370px; }
  .wood-content { padding: 70px 24px; }
  .preview-projects { padding: 84px 0; }
  .preview-projects img { height: 340px; }
  .portfolio-stamp { bottom: -22px; left: 18px; width: 120px; height: 120px; }
  .portfolio-stamp b { font-size: 32px; }
  .image-caption { right: 20px; bottom: 20px; left: 20px; }
  .image-caption b { font-size: 15px; }
  .portfolio-section { padding: 78px 0 84px; }
  .gallery-card,.gallery-card:nth-child(5n + 1),.gallery-card:nth-child(5n + 2) { grid-column: span 12; height: 420px; }
  .lightbox { padding: 72px 14px; }
  .lightbox-prev,.lightbox-next { top: auto; bottom: 12px; }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
  .process { padding: 84px 0; }
  .about-images { min-height: 440px; }
  .about-content { padding: 70px 24px; }
  .contact-copy,.lead-form { padding: 74px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .choice-row { flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

button,input,textarea{font:inherit}.lightbox[hidden]{display:none!important}.form-message[hidden]{display:none}.form-message{display:block}.gallery-card i{font-style:normal}