:root { --ink: #12110f; --paper: #f4f1eb; --champagne: #c7a77a; --line: rgba(255,255,255,.18); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; height: 92px; padding: 0 clamp(24px, 5vw, 78px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: .08em; }
.brand small { margin-top: 5px; font-size: 9px; text-transform: uppercase; letter-spacing: .19em; opacity: .72; }
nav { display: flex; gap: 34px; font-size: 12px; letter-spacing: .08em; }
nav a { opacity: .76; transition: opacity .25s; }
nav a:hover { opacity: 1; }
.header-cta { justify-self: end; display: flex; gap: 18px; align-items: center; border: 1px solid rgba(255,255,255,.35); padding: 12px 16px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.header-cta span, .primary-button span { color: var(--champagne); font-size: 16px; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: center; color: white; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 59% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.93) 0%, rgba(9,8,7,.77) 34%, rgba(9,8,7,.2) 70%, rgba(9,8,7,.12) 100%), linear-gradient(0deg, rgba(7,7,6,.5), transparent 45%); }
.hero-content { position: relative; z-index: 2; width: min(670px, 76vw); margin-left: clamp(24px, 8vw, 126px); padding-top: 84px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.eyebrow { color: #e6d6bc; }
.eyebrow span { width: 36px; height: 1px; background: var(--champagne); }
h1 { margin: 22px 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(58px, 7vw, 108px); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.hero-copy { max-width: 590px; color: rgba(255,255,255,.76); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.65; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.primary-button { background: #fff; color: #151310; padding: 17px 20px; display: inline-flex; gap: 28px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.text-link span { margin-left: 10px; color: var(--champagne); }
.hero-location { position: absolute; right: clamp(24px, 5vw, 78px); bottom: 48px; z-index: 2; display: grid; text-align: right; text-transform: uppercase; letter-spacing: .12em; }
.hero-location span { color: rgba(255,255,255,.55); font-size: 8px; margin-bottom: 5px; }
.hero-location strong { font-size: 11px; font-weight: 500; }
.scroll-cue { position: absolute; z-index: 2; bottom: 44px; left: clamp(24px, 8vw, 126px); display: flex; align-items: center; gap: 12px; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.55); }
.scroll-cue span { display: block; width: 38px; height: 1px; background: var(--champagne); }

.intro { padding: clamp(84px, 11vw, 150px) clamp(24px, 8vw, 126px); max-width: 1100px; }
.section-kicker { color: #8e6c43; }
.intro h2 { margin: 20px 0 30px; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 70px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.intro h2 em { color: #8e6c43; font-weight: 400; }
.intro > p:last-child { max-width: 650px; margin-left: min(13vw, 155px); color: #67615a; line-height: 1.8; font-size: 16px; }

@media (max-width: 760px) {
  .site-header { height: 78px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .brand img { width: 45px; height: 45px; }
  .brand span, nav { display: none; }
  .header-cta { padding: 11px 12px; font-size: 9px; }
  .hero-content { margin-left: 20px; width: calc(100% - 40px); }
  .hero-image { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,7,6,.89), rgba(7,7,6,.5)), linear-gradient(0deg, rgba(7,7,6,.7), transparent 60%); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-location { right: 20px; bottom: 24px; }
  .scroll-cue { display: none; }
  .intro > p:last-child { margin-left: 0; }
}

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

/* Complete site */
:root { --cream: #f5f1e9; --sand: #ded3c3; --warm: #9d7950; --dark: #11110f; --muted: #736d64; }
body { overflow-x: hidden; }
.site-header { position: fixed; transition: height .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease; }
.site-header.scrolled { height: 72px; color: var(--ink); background: rgba(245,241,233,.94); border-bottom-color: rgba(18,17,15,.12); box-shadow: 0 10px 35px rgba(22,18,13,.05); backdrop-filter: blur(16px); }
.site-header.scrolled .brand img { border-color: rgba(18,17,15,.18); }
.site-header.scrolled .header-cta { border-color: rgba(18,17,15,.35); }
.site-header.scrolled .header-cta:hover { background: var(--ink); color: white; }
.menu-button, .mobile-nav-cta { display: none; }
.section-pad { padding: clamp(90px, 10vw, 155px) clamp(24px, 7.7vw, 122px); }
.section-kicker span { color: #a98559; }
.section-kicker.light { color: #c6baa8; }
.section-kicker.light span { color: var(--champagne); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.material-strip { min-height: 64px; padding: 0 5vw; background: var(--dark); color: #d8cdbd; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 48px); text-transform: uppercase; letter-spacing: .17em; font-size: 9px; white-space: nowrap; overflow: hidden; }
.material-strip i { color: var(--champagne); font-style: normal; font-size: 8px; }

.intro { max-width: none; }
.intro-heading { max-width: 1150px; }
.intro h2, .section-head h2, .process h2, .showcase h2, .values h2, .contact h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.intro h2 { margin: 24px 0 72px; font-size: clamp(42px, 5.9vw, 86px); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; padding-left: min(11vw, 165px); align-items: start; }
.intro-grid > p { font-family: Georgia, serif; color: #292621; font-size: clamp(24px, 2.3vw, 35px); line-height: 1.45; margin: 0; }
.intro-grid > div > p { color: var(--muted); line-height: 1.85; margin: 5px 0 34px; max-width: 510px; }
.arrow-link { display: flex; align-items: center; justify-content: space-between; gap: 60px; border-bottom: 1px solid #b7ad9d; padding: 0 0 12px; width: max-content; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.arrow-link span { color: #9c7145; font-size: 17px; }

.services { background: #d9cec0; }
.section-head, .showcase-head { display: grid; grid-template-columns: 1.6fr .6fr; gap: 7vw; align-items: end; margin-bottom: 62px; }
.section-head h2, .showcase-head h2 { margin: 23px 0 0; font-size: clamp(43px, 5vw, 72px); }
.section-head > p, .showcase-head > p { margin: 0 0 4px; color: #665f56; line-height: 1.8; font-size: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid rgba(18,17,15,.18); }
.service-card { min-height: 440px; padding: 28px; display: flex; flex-direction: column; border: solid rgba(18,17,15,.18); border-width: 1px 1px 1px 0; transition: background .35s ease, color .35s ease, transform .35s ease; }
.service-card:hover { background: var(--dark); color: white; transform: translateY(-6px); }
.card-number { font-size: 9px; letter-spacing: .14em; opacity: .55; }
.service-icon { margin: 62px 0 32px; width: 54px; height: 54px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; color: #8d673e; font-size: 26px; transition: transform .4s; }
.service-card:hover .service-icon { transform: rotate(45deg); color: var(--champagne); }
.service-card h3 { font-family: Georgia, serif; font-weight: 400; font-size: 27px; margin: 0 0 17px; }
.service-card > p { color: #6a6359; line-height: 1.7; font-size: 13px; margin: 0; }
.service-card:hover > p { color: rgba(255,255,255,.62); }
.service-card footer { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid currentColor; font-size: 8px; text-transform: uppercase; letter-spacing: .11em; opacity: .7; }
.service-card footer i { font-style: normal; font-size: 16px; }

.process { background: var(--dark); color: #fff; display: grid; grid-template-columns: .8fr 1.4fr; gap: 8vw; }
.process-title h2 { margin: 24px 0; font-size: clamp(45px, 5.2vw, 76px); }
.process-title h2 em, .values h2 em, .contact h2 em { color: #bf9566; font-weight: 400; }
.process-title > p:last-child { max-width: 340px; color: rgba(255,255,255,.52); line-height: 1.8; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 36px; }
.step > span { color: var(--champagne); font-family: Georgia, serif; font-size: 13px; }
.step-line { width: 100%; height: 1px; background: rgba(255,255,255,.19); margin: 17px 0 27px; position: relative; }
.step-line:before { content: ''; position: absolute; width: 5px; height: 5px; background: var(--champagne); border-radius: 50%; top: -2px; }
.step h3 { font-family: Georgia, serif; font-weight: 400; font-size: 26px; margin: 0 0 12px; }
.step p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; margin: 0; max-width: 220px; }

.showcase { background: var(--cream); }
.showcase-head em { color: #92704a; font-weight: 400; }
.showcase-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 330px 330px; gap: 18px; }
.showcase-card { position: relative; overflow: hidden; min-height: 280px; color: white; }
.showcase-card.feature { grid-row: span 2; }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.showcase-card.feature img { object-position: 60% center; }
.showcase-card:hover img { transform: scale(1.045); }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,7,6,.68), transparent 55%); }
.showcase-copy { position: absolute; left: 28px; bottom: 25px; }
.showcase-copy span { text-transform: uppercase; letter-spacing: .16em; font-size: 8px; color: #dbc4a5; }
.showcase-copy h3 { font-family: Georgia, serif; font-weight: 400; font-size: clamp(22px, 2.5vw, 36px); margin: 8px 0 0; }
.showcase-card > i { position: absolute; right: 22px; bottom: 24px; width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; font-style: normal; transition: background .3s, color .3s; }
.showcase-card:hover > i { background: white; color: var(--ink); }
.image-note { color: #8f887e; font-size: 9px; letter-spacing: .04em; margin: 17px 0 0; }

.values { background: #24221e; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 8vw, 125px); align-items: center; }
.values-photo { position: relative; height: 650px; }
.values-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.8); }
.values-seal { position: absolute; right: -54px; bottom: 60px; width: 130px; height: 130px; border-radius: 50%; background: #b38b5d; display: grid; place-content: center; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,.25); }
.values-seal strong { font-family: Georgia, serif; font-size: 33px; font-weight: 400; }
.values-seal span { font-size: 7px; line-height: 1.5; text-transform: uppercase; letter-spacing: .15em; }
.values h2 { margin: 24px 0 50px; font-size: clamp(42px, 4.3vw, 65px); }
.values ul { padding: 0; margin: 0; list-style: none; }
.values li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.15); }
.values li > span { color: var(--champagne); font-size: 9px; }
.values li strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.values li p { color: rgba(255,255,255,.5); margin: 8px 0 0; font-size: 12px; line-height: 1.6; }

.contact { position: relative; overflow: hidden; min-height: 620px; background: #8e6c46; color: white; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.contact:before { content: 'JR'; position: absolute; right: -2vw; bottom: -15vw; font-family: Georgia, serif; font-size: 38vw; line-height: 1; color: rgba(255,255,255,.035); }
.contact-inner { position: relative; z-index: 1; max-width: 770px; }
.contact h2 { font-size: clamp(55px, 7vw, 105px); margin: 22px 0 25px; }
.contact-inner > p:not(.section-kicker) { max-width: 520px; color: rgba(255,255,255,.68); line-height: 1.8; }
.contact .primary-button { margin-top: 24px; }
.contact-number { position: relative; z-index: 1; align-self: flex-end; margin-bottom: 18px; display: grid; text-align: right; }
.contact-number span, .contact-number small { text-transform: uppercase; letter-spacing: .16em; font-size: 8px; color: rgba(255,255,255,.55); }
.contact-number a { font-family: Georgia, serif; font-size: clamp(25px, 2.4vw, 38px); margin: 8px 0; white-space: nowrap; }

.footer { padding: 55px clamp(24px, 7.7vw, 122px) 25px; background: #0b0b0a; color: white; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.footer-brand span { font-size: 8px; text-transform: uppercase; letter-spacing: .17em; opacity: .55; }
.footer > p { color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.8; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { display: flex; justify-content: flex-end; gap: 28px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.footer > small { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; color: rgba(255,255,255,.3); font-size: 8px; letter-spacing: .08em; }
.whatsapp-float { position: fixed; z-index: 30; right: 22px; bottom: 22px; height: 50px; padding: 0 18px 0 7px; border-radius: 50px; background: #f4f0e8; color: #151310; display: flex; align-items: center; gap: 10px; box-shadow: 0 12px 40px rgba(0,0,0,.22); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.whatsapp-float span { width: 37px; height: 37px; border-radius: 50%; display: grid; place-items: center; background: #8e6c46; color: white; font-size: 17px; }
.whatsapp-float i { font-style: normal; }

@media (max-width: 1050px) {
  .site-header nav { gap: 18px; }
  .site-header nav a { font-size: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .values-photo { height: 540px; }
}

@media (max-width: 760px) {
  .section-pad { padding: 82px 20px; }
  .site-header.scrolled { height: 68px; }
  .site-header nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; background: #12110f; color: white; opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .35s; }
  .site-header nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
  .site-header nav .mobile-nav-cta { display: block; font-family: Arial, sans-serif; font-size: 10px; margin-top: 10px; padding: 16px 22px; border: 1px solid rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .13em; }
  .header-cta { display: none; }
  .menu-button { display: block; position: relative; z-index: 4; justify-self: end; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; background: transparent; color: inherit; }
  .menu-button i { position: absolute; left: 12px; width: 16px; height: 1px; background: currentColor; transition: .3s; }
  .menu-button i:first-child { top: 17px; }.menu-button i:last-child { top: 23px; }
  .menu-button.active { color: white; }.menu-button.active i:first-child { transform: translateY(3px) rotate(45deg); }.menu-button.active i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { min-height: 800px; }
  .hero-content { padding-top: 30px; }
  .hero h1 { font-size: clamp(55px, 18vw, 76px); }
  .hero-copy { max-width: 92%; }
  .hero-location { display: none; }
  .material-strip { justify-content: flex-start; padding: 0 20px; }
  .intro h2 { margin-bottom: 45px; }
  .intro-grid { grid-template-columns: 1fr; padding-left: 0; gap: 32px; }
  .section-head, .showcase-head { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .service-icon { margin-top: 36px; }
  .steps { grid-template-columns: 1fr; gap: 42px; }
  .showcase-grid { display: flex; flex-direction: column; }
  .showcase-card, .showcase-card.feature { height: 390px; }
  .values { grid-template-columns: 1fr; }
  .values-photo { height: 460px; }
  .values-seal { right: 18px; bottom: -45px; width: 110px; height: 110px; }
  .values-content { padding-top: 35px; }
  .contact { display: block; min-height: 700px; }
  .contact h2 { font-size: clamp(53px, 15.5vw, 76px); }
  .contact-number { margin-top: 65px; text-align: left; }
  .footer { grid-template-columns: 1fr; text-align: left; }
  .footer > p { text-align: left; }.footer-links { justify-content: flex-start; }
  .whatsapp-float { right: 14px; bottom: 14px; padding-right: 7px; }.whatsapp-float i { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .showcase-card img, .service-card, .service-icon { transition: none; }
}
