@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
    --ink: #0b0b0b;
    --ink-soft: #171717;
    --paper: #f4f1ea;
    --cream: #e8e0d2;
    --gold: #d9a944;
    --gold-light: #f0cd79;
    --line: rgba(255, 255, 255, .14);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; }
h1, h2, .display-4, .display-5 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
a { text-decoration: none; }
.container-xl { --bs-gutter-x: 2rem; }
.section-pad { padding: clamp(5rem, 9vw, 9rem) 0; }
.text-gold { color: var(--gold) !important; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1100; background: #fff; color: #000; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header { transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled, body:not(:has(.home-hero, .page-hero)) .site-header { background: rgba(8, 8, 8, .96); box-shadow: 0 1px 0 rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.navbar { min-height: 154px; padding: .25rem 0; }
.navbar-brand { padding: 0; }
.navbar-brand img { display: block; width: 260px; height: auto; object-fit: contain; object-position: center; }
.navbar-nav .nav-link { color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 500; padding: .75rem .8rem !important; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold-light); }
.dropdown-menu-dark { background: #111; border: 1px solid rgba(255,255,255,.1); padding: .65rem; }
.dropdown-item { border-radius: .25rem; padding: .55rem .8rem; }
.dropdown-item:hover { background: var(--gold); color: #000; }

.btn { border-radius: 0; padding: .85rem 1.25rem; font-size: .875rem; font-weight: 600; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1rem 1.4rem; font-size: .9rem; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #080808; }
.btn-gold:hover, .btn-gold:focus { background: var(--gold-light); border-color: var(--gold-light); color: #080808; }
.btn-outline-gold { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-gold:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.btn-dark { background: var(--ink); border-color: var(--ink); }
.eyebrow { display: block; margin-bottom: 1.25rem; color: var(--gold-light); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.text-link { display: inline-block; color: var(--gold-light); border-bottom: 1px solid currentColor; padding-bottom: .25rem; font-weight: 600; }
.text-link span { display: inline-block; margin-left: .35rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.home-hero { min-height: 100svh; position: relative; background: var(--ink); color: #fff; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; background: url('../images/extension-hero.webp') center/cover no-repeat; transform: scale(1.03); animation: hero-in 1.5s ease forwards; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,4,4,.9) 0%, rgba(4,4,4,.65) 43%, rgba(4,4,4,.05) 78%), linear-gradient(0deg, rgba(4,4,4,.6), transparent 50%); }
.hero-content { position: relative; z-index: 1; padding-top: 12rem; padding-bottom: 4rem; }
.hero-title { max-width: 900px; font-family: var(--serif); font-size: clamp(3.8rem, 7.5vw, 7.8rem); font-weight: 500; line-height: .93; letter-spacing: -.055em; margin-bottom: 2rem; }
.hero-title span { color: var(--gold-light); font-style: italic; }
.hero-lead { max-width: 630px; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.6vw, 1.35rem); margin-bottom: 2rem; }
.hero-foot { display: flex; align-items: center; gap: 1rem; position: absolute; bottom: 2rem; right: 1rem; color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: var(--gold); }
@keyframes hero-in { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.03); } }

.intro-section { background: var(--paper); }
.display-4 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1.02; }
.display-5 { font-size: clamp(2.2rem, 4vw, 3.75rem); line-height: 1.05; }
.section-intro { max-width: 420px; color: #777; }
.services-section { background: var(--ink); color: #fff; }
.service-card { display: block; min-height: 470px; height: 58vw; max-height: 680px; position: relative; overflow: hidden; color: #fff; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%); transition: background .3s; }
.service-card:hover img { transform: scale(1.045); }
.service-card:hover .service-overlay { background: linear-gradient(0deg, rgba(0,0,0,.83), rgba(0,0,0,.03) 70%); }
.service-index { position: absolute; top: 1.5rem; left: 1.5rem; font-size: .75rem; letter-spacing: .18em; color: var(--gold-light); }
.service-title { position: absolute; inset: auto 1.5rem 1.5rem; display: flex; justify-content: space-between; align-items: flex-end; }
.service-title strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; }
.service-title > span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.service-title i { font-style: normal; color: var(--gold); margin-left: .35rem; }

.standard-section { background: var(--paper); }
.craft-visual { min-height: 650px; position: relative; }
.craft-visual img { width: 90%; height: 650px; object-fit: cover; }
.craft-badge { position: absolute; right: 0; bottom: 2rem; width: 185px; height: 185px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; background: var(--gold); color: #111; }
.craft-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.craft-badge strong { font-family: var(--serif); font-size: 2.7rem; font-style: italic; font-weight: 500; }
.principle { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.35rem 0; border-top: 1px solid #d6d0c6; }
.principle > span { color: var(--gold); font-size: .75rem; }
.principle h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: .3rem; }
.principle p { color: #777; margin: 0; }
.areas-strip { background: #161616; color: #fff; border-top: 1px solid var(--line); }

.cta-section { padding: 6rem 0; background: var(--paper); }
.cta-panel { padding: clamp(2.5rem, 6vw, 5.5rem); background: var(--gold); color: #0d0d0d; }
.cta-panel::after { content: "PR"; position: absolute; right: 2%; bottom: -45%; font-family: var(--serif); font-size: 21rem; opacity: .07; line-height: 1; }

.page-hero { min-height: 760px; height: 92svh; position: relative; display: flex; align-items: flex-end; background: #111; color: #fff; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.15) 75%), linear-gradient(0deg, rgba(0,0,0,.72), transparent 55%); }
.page-hero-content { position: relative; z-index: 1; padding-bottom: clamp(3rem, 8vw, 7rem); }
.page-hero h1 { font-size: clamp(3.4rem, 7vw, 7rem); max-width: 900px; line-height: .95; margin-bottom: 1.5rem; }
.page-hero p { max-width: 670px; font-size: 1.15rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; }
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); margin-bottom: 2rem; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb-item.active { color: var(--gold-light); }

.benefit-card { height: 100%; padding: 2.2rem; border: 1px solid #d8d2c8; background: rgba(255,255,255,.24); }
.benefit-mark { display: block; width: 40px; height: 2px; margin-bottom: 4rem; background: var(--gold); }
.benefit-card h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.benefit-card p { color: #72706b; margin: 0; }
.process-section { background: var(--ink); color: #fff; }
.process-grid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { min-height: 330px; padding: 2rem; border-right: 1px solid var(--line); }
.process-grid > div:last-child .process-step { border-right: 0; }
.process-step > span { display: block; color: var(--gold); font-size: .75rem; margin-bottom: 5rem; }
.process-step h3 { font-family: var(--serif); font-size: 2.2rem; }
.process-step p { color: rgba(255,255,255,.56); max-width: 300px; }
.faq-section { background: var(--paper); }
.accordion { --bs-accordion-bg: transparent; --bs-accordion-border-color: #cec8bd; --bs-accordion-btn-focus-box-shadow: none; --bs-accordion-active-bg: transparent; --bs-accordion-active-color: #000; }
.accordion-button { padding: 1.5rem .5rem; font-family: var(--serif); font-size: 1.35rem; }
.accordion-button::after { filter: grayscale(1); }
.accordion-body { padding: 0 .5rem 1.75rem; color: #666; }

.area-hero, .contact-hero { padding: 12rem 0 7rem; background: var(--ink); color: #fff; }
.area-hero { position: relative; overflow: hidden; }
.area-hero::after { content: "WL"; position: absolute; top: -10%; right: -2%; color: #fff; opacity: .025; font-family: var(--serif); font-size: 30rem; line-height: 1; }
.area-hero h1, .contact-hero h1 { font-size: clamp(3.6rem, 7.5vw, 7.5rem); line-height: .94; }
.area-image { width: 100%; height: 680px; object-fit: cover; }
.feature-list { list-style: none; padding: 0; margin: 2rem 0; }
.feature-list li { position: relative; padding: 1rem 0 1rem 2rem; border-top: 1px solid #d2ccc1; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #9b711a; }
.area-service { display: block; position: relative; height: 430px; overflow: hidden; color: #fff; }
.area-service img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.area-service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.8), transparent 60%); }
.area-service > span { position: absolute; z-index: 1; inset: auto 1.25rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.area-service strong { font-family: var(--serif); font-size: 1.65rem; }
.area-service i { color: var(--gold); font-style: normal; }
.area-service:hover img { transform: scale(1.05); }
.local-copy { background: #e7e1d7; }
.local-copy p { color: #555; font-size: 1.1rem; line-height: 1.8; }

.contact-hero { min-height: 100svh; }
.contact-note { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.contact-note span { display: block; color: var(--gold-light); font-size: .7rem; text-transform: uppercase; letter-spacing: .17em; margin-bottom: .5rem; }
.contact-email { color: #fff; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); border-bottom: 1px solid rgba(217,169,68,.55); }
.contact-email:hover { color: var(--gold-light); }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); background: #f5f2ec; color: #111; }
.form-label { font-size: .78rem; font-weight: 600; }
.form-control, .form-select { border: 0; border-bottom: 1px solid #bdb7ad; border-radius: 0; background-color: transparent; padding: .75rem 0; }
.form-control:focus, .form-select:focus { background: transparent; border-color: #9a6a08; box-shadow: 0 2px 0 #9a6a08; }
textarea.form-control { resize: vertical; }
.form-check-input { border-radius: 0 !important; }
.form-check-input:checked { background-color: var(--ink); border-color: var(--ink); }

.site-footer { background: #080808; color: #fff; border-top: 1px solid var(--line); }
.footer-logo { width: min(100%, 380px); height: auto; object-fit: contain; }
.footer-title { font-family: var(--sans); color: var(--gold-light); font-size: .7rem; text-transform: uppercase; letter-spacing: .17em; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.55); }
.footer-links a:hover { color: #fff; }
.footer-bottom { color: rgba(255,255,255,.4); border-top: 1px solid var(--line); }
.footer-bottom a { color: rgba(255,255,255,.68); border-bottom: 1px solid rgba(217,169,68,.45); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-divider { margin: 0 .5rem; color: var(--gold); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
    .site-header { background: rgba(8,8,8,.96); }
    .navbar { min-height: 122px; }
    .navbar-brand img { width: 200px; }
    .offcanvas { width: min(86vw, 380px) !important; }
    .offcanvas-body { padding-top: 1rem; }
    .navbar-nav { align-items: stretch !important; }
    .navbar-nav .nav-link { font-size: 1.15rem; padding: .9rem 0 !important; border-bottom: 1px solid rgba(255,255,255,.08); }
    .hero-title { max-width: 700px; }
    .hero-shade { background: linear-gradient(90deg, rgba(4,4,4,.87), rgba(4,4,4,.28)), linear-gradient(0deg, rgba(4,4,4,.7), transparent 50%); }
    .service-card { height: 560px; max-height: none; }
    .craft-visual { min-height: auto; }
    .craft-visual img { height: 580px; }
    .process-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .process-grid > div:last-child .process-step { border-bottom: 0; }
    .process-step > span { margin-bottom: 2rem; }
    .area-image { height: 540px; }
    .contact-hero { min-height: auto; }
}

@media (max-width: 575.98px) {
    .container-xl { --bs-gutter-x: 1.35rem; }
    .navbar-brand img { width: 186px; }
    .home-hero { min-height: 820px; }
    .hero-media { background-position: 62% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(4,4,4,.94) 0%, rgba(4,4,4,.55) 75%, rgba(4,4,4,.35)); }
    .hero-content { padding-top: 8.5rem; }
    .hero-title { font-size: clamp(3.25rem, 16vw, 5rem); }
    .hero-foot { display: none; }
    .service-card { min-height: 410px; height: 115vw; }
    .service-title { flex-direction: column; align-items: flex-start; gap: .5rem; }
    .craft-visual img { width: 100%; height: 440px; }
    .craft-badge { width: 145px; height: 145px; right: -.25rem; padding: 1.35rem; }
    .craft-badge strong { font-size: 2.1rem; }
    .page-hero { min-height: 720px; }
    .page-hero h1 { font-size: 3.4rem; }
    .page-hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.15) 80%); }
    .page-hero-content { padding-bottom: 3rem; }
    .area-hero, .contact-hero { padding: 9.5rem 0 5rem; }
    .area-image { height: 440px; }
    .area-service { height: 370px; }
    .contact-card { margin-left: -.25rem; margin-right: -.25rem; }
    .footer-logo { width: min(100%, 310px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
