:root {
  --ink: #17201d;
  --muted: #65706b;
  --paper: #f4f0e7;
  --card: #fffdf8;
  --amber: #d88913;
  --amber-light: #ffc65b;
  --forest: #173b32;
  --line: rgba(23, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(44, 34, 19, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 100; padding: 10px 14px; background: #fff; }
.skip-link:focus { top: 12px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 231, 0.78);
  backdrop-filter: blur(18px);
}
.site-header.scrolled { border-color: var(--line); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark { width: 38px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #ffe6a0 0 8%, #f8b73e 28%, #bb6311 69%, #64320f 100%); box-shadow: inset -5px -6px 12px rgba(80, 34, 5, .25); }
.brand small { display: block; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 11px; border-radius: 999px; color: #39423e; font-size: 14px; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { background: #fff8e8; color: #8f4d0d; }
.nav .nav-cta { margin-left: 8px; padding-inline: 16px; color: white; background: var(--forest); }
.nav .nav-cta:hover { color: white; background: #0c2c24; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: white; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s; }
.hero { position: relative; padding: 32px 0 58px; min-height: 720px; display: grid; align-items: center; overflow: hidden; }
.hero-grid { position: relative; display: flex; min-height: 630px; align-items: center; overflow: hidden; border-radius: 36px; background: #e8e0d3; box-shadow: var(--shadow); isolation: isolate; }
.hero-grid > div:first-child { position: relative; z-index: 2; width: min(68%, 760px); padding: 64px 0 64px 58px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px; color: #8b4c11; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { max-width: 850px; margin-bottom: 26px; font-size: clamp(56px, 6.2vw, 94px); }
.hero h1 em { color: var(--amber); font-style: italic; }
.lead { max-width: 690px; margin-bottom: 32px; color: #505c57; font-size: clamp(18px, 2vw, 23px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 21px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 750; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: var(--forest); color: white; background: var(--forest); }
.button.light { background: white; }
.hero-media { position: absolute; z-index: 0; inset: 0; height: 100%; margin: 0; overflow: hidden; }
.hero-media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(247,243,232,.99) 0%, rgba(247,243,232,.96) 32%, rgba(247,243,232,.76) 52%, rgba(247,243,232,.12) 75%, transparent 100%); pointer-events: none; }
.hero-media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(7,18,14,.52)); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media figcaption { position: absolute; right: 28px; bottom: 22px; z-index: 2; color: rgba(255,255,255,.86); font-size: 12px; letter-spacing: .06em; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.section { padding: 100px 0; }
.section.dark { color: #f7f0e3; background: var(--forest); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 44px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(42px, 5vw, 74px); }
.section-head p { max-width: 420px; margin-bottom: 4px; color: var(--muted); }
.dark .section-head p { color: #bdc9c4; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset; }
.card-index { margin-bottom: 48px; color: var(--amber); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin-bottom: 12px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.card p { margin-bottom: 0; color: var(--muted); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0; list-style: none; }
.feature-list li { padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.04); }
.feature-list strong { display: block; margin-bottom: 7px; color: #ffc65b; }
.feature-list span { color: #c3d0cb; }
.notice { padding: 28px; border-left: 3px solid var(--amber); background: rgba(216,137,19,.08); }
.notice p:last-child { margin-bottom: 0; }
.page-hero { padding: 86px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(54px, 7vw, 96px); }
.page-hero .lead { margin-bottom: 0; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 34px; color: var(--muted); font-size: 13px; }
.breadcrumb a { text-decoration: none; }
.source-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 34px; border-radius: var(--radius); color: #fff; background: linear-gradient(135deg, #173b32, #0d2922); }
.source-card h2 { margin-bottom: 10px; font-size: 42px; }
.source-card p { max-width: 690px; margin-bottom: 0; color: #c6d5cf; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { grid-column: span 4; min-height: 420px; padding: 0; overflow: hidden; border: 0; border-radius: 24px; color: #fff; background: var(--forest); cursor: pointer; text-align: left; position: relative; }
.gallery-item::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(180deg, transparent, rgba(8,19,15,.78)); pointer-events: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; }
.gallery-item strong { display: block; margin-bottom: 4px; font-size: 20px; }
.gallery-item small { opacity: .78; }
.generated-gallery .gallery-item:first-child, .generated-gallery .gallery-item:last-child { grid-column: span 7; }
.generated-gallery .gallery-item:nth-child(2), .generated-gallery .gallery-item:nth-child(3) { grid-column: span 5; }
.generated-note { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.post-list { display: grid; gap: 18px; }
.post { display: grid; grid-template-columns: 145px 1fr auto; gap: 28px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.post:last-child { border-bottom: 1px solid var(--line); }
.post time { color: var(--muted); font-size: 13px; }
.post h2 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 30px; letter-spacing: -.02em; line-height: 1.1; }
.post p { margin-bottom: 0; color: var(--muted); }
.arrow-link { font-size: 24px; text-decoration: none; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.contact-panel { min-height: 370px; padding: 42px; border-radius: var(--radius); background: var(--card); }
.contact-panel.dark-panel { color: white; background: var(--forest); }
.contact-panel h2 { font-size: 48px; }
.contact-panel p { color: var(--muted); }
.dark-panel p { color: #c6d3ce; }
.contact-link { display: block; margin: 22px 0; font-size: clamp(23px, 3vw, 38px); font-weight: 750; text-decoration-color: var(--amber); text-underline-offset: 7px; overflow-wrap: anywhere; }
.footer { padding: 42px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.footer p { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; }
.footer-links a { text-decoration: none; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(9,17,14,.9); }
.lightbox.open { display: grid; }
.lightbox-dialog { width: min(760px, 100%); padding: 38px; border-radius: 28px; color: white; background: var(--forest); box-shadow: var(--shadow); }
.lightbox-close { float: right; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; background: transparent; font-size: 24px; cursor: pointer; }
.lightbox-image { width: 100%; max-height: 56vh; margin-top: 18px; border-radius: 18px; object-fit: cover; }
.lightbox-dialog h2 { margin: 24px 0 15px; font-size: 48px; }
.lightbox-dialog p { color: #cad6d1; }
.review-card { padding: clamp(30px, 6vw, 76px); border: 1px solid rgba(216,137,19,.32); border-radius: 34px; background: #fff9ed; }
.review-card blockquote { max-width: 980px; margin: 0; font-family: Georgia, serif; font-size: clamp(26px, 3.7vw, 48px); line-height: 1.24; letter-spacing: -.025em; }
.review-author { margin: 28px 0 0; color: var(--amber); font-weight: 800; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-list article { --graphic: rgba(19,52,44,.18); position: relative; min-height: 230px; padding: 27px 24px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0); isolation: isolate; transition: color .34s ease, background .34s ease, transform .34s ease, box-shadow .34s ease; }
.service-list article:nth-child(3n) { border-right: 0; }
.service-list article::after { content: ""; position: absolute; z-index: -1; left: 24px; right: 24px; bottom: 0; height: 3px; background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform .34s ease; }
.service-list article::before { content: ""; position: absolute; z-index: -1; right: 22px; bottom: 20px; width: 132px; height: 90px; opacity: .55; transform: translate(10px, 8px) scale(.92); transform-origin: right bottom; transition: opacity .34s ease, transform .34s ease; }
.service-list article:nth-child(1)::before { background: radial-gradient(circle at 17% 22%, transparent 0 5px, var(--graphic) 6px 8px, transparent 9px), radial-gradient(circle at 78% 72%, transparent 0 5px, var(--graphic) 6px 8px, transparent 9px), linear-gradient(32deg, transparent 0 31%, var(--graphic) 32% 34%, transparent 35%), linear-gradient(90deg, transparent 0 16%, var(--graphic) 17% 19%, transparent 20% 77%, var(--graphic) 78% 80%, transparent 81%); }
.service-list article:nth-child(2)::before { border: 2px solid var(--graphic); border-width: 0 0 2px 2px; border-radius: 0 0 0 28px; background: radial-gradient(circle at 16% 0, transparent 0 9px, var(--graphic) 10px 12px, transparent 13px), radial-gradient(circle at 100% 78%, transparent 0 13px, var(--graphic) 14px 16px, transparent 17px), linear-gradient(90deg, transparent 0 48%, var(--graphic) 49% 51%, transparent 52%); }
.service-list article:nth-child(3)::before { background: linear-gradient(158deg, transparent 0 39%, var(--graphic) 40% 43%, transparent 44%), linear-gradient(22deg, transparent 0 55%, var(--graphic) 56% 60%, transparent 61%), linear-gradient(90deg, transparent 0 66%, var(--graphic) 67% 73%, transparent 74%); clip-path: polygon(3% 22%, 63% 22%, 83% 40%, 72% 54%, 100% 83%, 91% 92%, 62% 62%, 48% 73%, 3% 73%); border: 2px solid var(--graphic); }
.service-list article:nth-child(4)::before { border: 2px solid var(--graphic); background: repeating-linear-gradient(0deg, transparent 0 14px, var(--graphic) 15px 16px), linear-gradient(55deg, transparent 0 55%, var(--graphic) 56% 60%, transparent 61%); transform: translate(10px, 8px) rotate(-4deg) scale(.92); }
.service-list article:nth-child(5)::before { border-radius: 50%; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 10px, var(--graphic) 11px 13px), conic-gradient(from 15deg, transparent 0 12%, var(--graphic) 13% 15%, transparent 16% 35%, var(--graphic) 36% 38%, transparent 39% 62%, var(--graphic) 63% 65%, transparent 66%); }
.service-list article:nth-child(6)::before { border: 2px solid var(--graphic); background: linear-gradient(90deg, transparent 31%, var(--graphic) 32% 34%, transparent 35% 65%, var(--graphic) 66% 68%, transparent 69%), linear-gradient(0deg, transparent 46%, var(--graphic) 47% 50%, transparent 51%); box-shadow: -10px -10px 0 -7px var(--graphic), 10px 10px 0 -7px var(--graphic); }
.service-list article:nth-child(7)::before { border: 2px solid var(--graphic); background: repeating-linear-gradient(90deg, transparent 0 28px, var(--graphic) 29px 31px), repeating-linear-gradient(0deg, transparent 0 28px, var(--graphic) 29px 31px); transform: translate(10px, 8px) rotate(-5deg) scale(.92); }
.service-list article:nth-child(8)::before { background: linear-gradient(0deg, var(--graphic) 0 3px, transparent 4px 20px, var(--graphic) 21px 24px, transparent 25px 42px, var(--graphic) 43px 46px, transparent 47px), linear-gradient(128deg, transparent 0 48%, var(--graphic) 49% 52%, transparent 53%); clip-path: polygon(0 15%, 100% 0, 100% 82%, 0 100%); }
.service-list article:nth-child(9)::before { border: 2px solid var(--graphic); background: repeating-linear-gradient(105deg, transparent 0 22px, var(--graphic) 23px 25px), repeating-linear-gradient(0deg, transparent 0 21px, var(--graphic) 22px 24px); transform: translate(10px, 8px) rotate(3deg) scale(.92); }
.service-list span { position: relative; z-index: 1; color: var(--amber); font-size: 12px; font-weight: 800; transition: color .34s ease; }
.service-list h3 { position: relative; z-index: 1; max-width: 76%; margin: 72px 0 0; font-family: Georgia, serif; font-size: clamp(23px, 2vw, 30px); font-weight: 500; line-height: 1.12; transition: color .34s ease, transform .34s ease; }
@media (hover: hover) and (pointer: fine) {
  .service-list article:hover { --graphic: rgba(255,190,70,.88); z-index: 1; color: #fff9ed; background: #102f27; transform: translateY(-5px); box-shadow: 0 20px 42px rgba(16,47,39,.22); }
  .service-list article:hover::before { opacity: 1; transform: translate(0, 0) scale(1); }
  .service-list article:nth-child(4):hover::before { transform: translate(0, 0) rotate(-4deg) scale(1); }
  .service-list article:nth-child(7):hover::before { transform: translate(0, 0) rotate(-5deg) scale(1); }
  .service-list article:nth-child(9):hover::before { transform: translate(0, 0) rotate(3deg) scale(1); }
  .service-list article:hover::after { transform: scaleX(1); }
  .service-list article:hover h3 { color: #fff9ed; transform: translateY(-3px); }
  .service-list article:hover span { color: #ffc45d; }
}
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list strong { color: var(--amber-light); font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.process-list span { color: #c7d3ce; }
.split-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 7vw, 90px); align-items: center; }
.split-feature.reverse { grid-template-columns: 1.15fr .85fr; }
.split-feature.reverse img { order: 2; }
.split-feature img { width: 100%; max-height: 640px; border-radius: 28px; object-fit: cover; box-shadow: var(--shadow); }
.split-feature h2 { font-size: clamp(40px, 5vw, 70px); }
.split-feature p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 18px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 22px; background: var(--card); }
.faq-list summary { position: relative; padding: 25px 70px 25px 26px; font-family: Georgia, serif; font-size: clamp(22px, 2.5vw, 32px); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 25px; top: 19px; color: var(--amber); font-family: system-ui, sans-serif; font-size: 34px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 26px 26px; }
.faq-list details p { max-width: 820px; margin: 0; color: var(--muted); font-size: 17px; }

@media (max-width: 920px) {
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; padding: 96px 28px 32px; background: var(--paper); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .24s ease, visibility .24s ease; }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a { padding: 13px 18px; font-size: 22px; }
  .nav .nav-cta { margin: 12px 0 0; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { min-height: auto; padding: 24px 0 54px; }
  .hero-grid { min-height: 650px; align-items: flex-start; }
  .hero-grid > div:first-child { width: min(82%, 650px); padding: 60px 0 180px 42px; }
  .hero-media::before { background: linear-gradient(90deg, rgba(247,243,232,.99) 0%, rgba(247,243,232,.94) 48%, rgba(247,243,232,.55) 72%, rgba(247,243,232,.08) 100%); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-3 .card:last-child { grid-column: 1 / -1; }
  .section-head { align-items: start; flex-direction: column; }
  .gallery-item { grid-column: span 6; }
  .post { grid-template-columns: 110px 1fr auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 70px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 32px; }
  .hero { padding: 14px 0 42px; }
  .hero-grid { min-height: 690px; border-radius: 25px; align-items: flex-start; }
  .hero-grid > div:first-child { width: 100%; padding: 38px 24px 230px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-media::before { background: linear-gradient(180deg, rgba(247,243,232,.99) 0%, rgba(247,243,232,.96) 45%, rgba(247,243,232,.70) 67%, rgba(247,243,232,.06) 88%); }
  .lead { font-size: 18px; }
  .actions .button { width: 100%; }
  .hero-media { height: 100%; }
  .service-list { grid-template-columns: 1fr 1fr; }
  .service-list article:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-list article:nth-child(2n) { border-right: 0; }
  .split-feature, .split-feature.reverse { grid-template-columns: 1fr; }
  .split-feature.reverse img { order: 0; }
  .generated-gallery .gallery-item:first-child, .generated-gallery .gallery-item:last-child, .generated-gallery .gallery-item:nth-child(2), .generated-gallery .gallery-item:nth-child(3) { grid-column: span 6; }
  .section { padding: 72px 0; }
  .section-head h2, .page-hero h1 { font-size: 48px; }
  .grid-3, .feature-list { grid-template-columns: 1fr; }
  .grid-3 .card:last-child { grid-column: auto; }
  .card { padding: 24px; }
  .gallery { display: block; }
  .gallery-item { width: 100%; min-height: 270px; margin-bottom: 14px; }
  .generated-gallery .gallery-item { min-height: 390px; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article, .service-list article:nth-child(2n), .service-list article:nth-child(3n) { border-right: 0; }
  .process-list li { grid-template-columns: 1fr; gap: 8px; }
  .split-feature img { max-height: 480px; }
  .hero-media figcaption { left: 18px; right: 18px; bottom: 16px; text-align: right; }
  .post { grid-template-columns: 1fr auto; gap: 8px 18px; }
  .post time { grid-column: 1 / -1; }
  .source-card { grid-template-columns: 1fr; padding: 28px; }
  .source-card h2 { font-size: 36px; }
  .contact-panel { min-height: auto; padding: 28px; }
  .contact-panel h2, .lightbox-dialog h2 { font-size: 38px; }
  .footer-grid { display: block; }
  .footer-links { margin-top: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
