:root {
  --ink: #172033;
  --blue: #183f79;
  --blue-deep: #102b54;
  --cream: #f6f0e7;
  --paper: #fffdf8;
  --copper: #b56a3c;
  --sage: #6e7d69;
  --line: rgba(23, 32, 51, .14);
  --shadow: 0 24px 70px rgba(16, 43, 84, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3, .serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.025em;
}
h1 { margin: 0; font-size: clamp(3.1rem, 7.4vw, 6.9rem); }
h2 { margin: 0 0 18px; font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
h3 { margin: 0 0 10px; font-size: 1.55rem; }
p { margin: 0 0 1em; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 99; padding: 10px 16px; background: #fff; }
.skip-link:focus { top: 12px; }
.topline { background: var(--blue-deep); color: #fff; font-size: .82rem; }
.topline .wrap { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline p { margin: 0; }
.topline a { color: #fff; text-underline-offset: 3px; }
.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, .94); backdrop-filter: blur(14px); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 188px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: .92rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: currentColor; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-deep); }
.button.secondary { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button.cream { background: var(--cream); color: var(--blue-deep); }
.hero { overflow: hidden; background: var(--cream); }
.hero-grid { min-height: 710px; display: grid; grid-template-columns: 1.03fr .97fr; }
.hero-copy { align-self: center; padding: 80px max(40px, calc((100vw - var(--max))/2)) 80px max(20px, calc((100vw - var(--max))/2)); }
.hero-copy .lead { max-width: 640px; margin: 28px 0 34px; color: #485060; font-size: clamp(1.06rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 34px; display: flex; align-items: center; gap: 13px; color: var(--blue-deep); font-size: .9rem; font-weight: 750; }
.hero-note::before { content: ""; width: 42px; height: 1px; background: var(--copper); }
.hero-visual { position: relative; min-height: 620px; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 44px;
  width: min(340px, 85%);
  padding: 22px 26px;
  background: var(--blue-deep);
  color: #fff;
}
.hero-badge strong { display: block; margin-bottom: 3px; font-family: Georgia, serif; font-size: 1.42rem; font-weight: 500; }
.section { padding: 110px 0; }
.section.soft { background: var(--cream); }
.section.blue { background: var(--blue-deep); color: #fff; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.intro-copy { color: #4e5562; font-size: 1.06rem; }
.signal-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); }
.signal { padding: 28px; background: var(--paper); }
.signal b { display: block; margin-bottom: 4px; color: var(--blue); font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.signal span { color: #5b6270; font-size: .88rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 45px; }
.service-card { min-height: 244px; padding: 28px; border: 1px solid var(--line); border-radius: 4px 24px 4px 4px; background: var(--paper); }
.service-number { margin-bottom: 44px; color: var(--copper); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.service-card p { margin: 0; color: #5a606d; font-size: .91rem; }
.craft-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; }
.craft-image img { width: 100%; height: 100%; min-height: 630px; object-fit: cover; object-position: center; }
.craft-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(34px, 7vw, 100px); background: var(--blue-deep); color: #fff; }
.craft-copy p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.checklist { display: grid; gap: 14px; margin: 24px 0 32px; padding: 0; list-style: none; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: "✓"; color: #e3b38e; font-weight: 900; }
.gallery-teaser { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 260px 260px; gap: 14px; margin-top: 44px; }
.gallery-teaser figure { position: relative; overflow: hidden; margin: 0; background: #ddd; }
.gallery-teaser figure:first-child { grid-row: 1 / 3; }
.gallery-teaser figure:last-child:nth-child(4) { grid-column: 2 / 4; }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; }
.gallery-popout { position: fixed; z-index: 1000; pointer-events: none; box-sizing: border-box; padding: 8px; opacity: 0; transform: scale(.76); transform-origin: center; border: 1px solid rgba(25,46,87,.24); background: var(--paper); box-shadow: 0 28px 80px rgba(14,29,54,.42), 0 8px 24px rgba(14,29,54,.2); transition: opacity .16s ease, transform .38s cubic-bezier(.18,.82,.24,1); }
.gallery-popout.is-visible { opacity: 1; transform: scale(1); }
.gallery-popout img { display: block; width: 100%; height: 100%; object-fit: contain; background: #eef0f3; }

@media (hover: hover) and (pointer: fine) {
  .gallery-teaser figure { cursor: zoom-in; transition: box-shadow .2s ease; }
  .gallery-teaser figure:hover { box-shadow: inset 0 0 0 3px rgba(255,255,255,.86); }
}
.hours-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper); }
.hours-copy { padding: 60px; }
.hours-list { margin: 30px 0 0; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-list strong { font-weight: 800; }
.contact-hours { display: grid; gap: 8px; margin: 8px 0 0; padding: 0; list-style: none; }
.contact-hours li { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); padding: 7px 0; }
.contact-hours strong { text-align: right; }
.contact-panel { display: flex; flex-direction: column; justify-content: center; padding: 60px; background: var(--blue); color: #fff; }
.contact-panel address { margin-bottom: 24px; font-style: normal; }
.contact-panel .phone-text { margin: 4px 0 22px; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.phone-mobile { display: none; }
.page-hero { padding: 90px 0 70px; background: var(--cream); }
.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; color: #555c69; font-size: 1.15rem; }
.price-toolbar { position: sticky; top: 89px; z-index: 12; padding: 18px 0; border-bottom: 1px solid var(--line); background: rgba(255,253,248,.96); backdrop-filter: blur(10px); }
.price-tabs { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.price-tabs button { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; background: #fff; cursor: pointer; font-size: .82rem; font-weight: 750; }
.price-tabs button.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.price-sections { display: grid; gap: 24px; }
.price-section { scroll-margin-top: 165px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.price-heading { display: grid; grid-template-columns: .38fr .62fr; gap: 30px; padding: 30px 34px; background: var(--cream); }
.price-heading p { margin: 0; color: #5d626d; }
.price-list { margin: 0; padding: 12px 34px 24px; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row dd, .price-row dt { margin: 0; }
.price-row dd { white-space: nowrap; color: var(--blue); font-weight: 850; }
.notice { margin-top: 32px; padding: 24px 28px; border-left: 4px solid var(--copper); background: var(--cream); color: #4d5360; }
.masonry { columns: 3 280px; column-gap: 16px; }
.masonry figure { break-inside: avoid; margin: 0 0 16px; overflow: hidden; background: #eee; }
.masonry img { width: 100%; height: auto; transition: transform .35s ease; }
.masonry figure:hover img { transform: scale(1.02); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-box { padding: 38px; border-radius: var(--radius); background: var(--blue-deep); color: #fff; box-shadow: var(--shadow); }
.contact-box .label { margin: 28px 0 4px; color: #e3b38e; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.map-frame { min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end; padding: 42px; border-radius: var(--radius); background: linear-gradient(150deg, rgba(16,43,84,.12), rgba(181,106,60,.2)), url("images/IMG_0914.JPG") center / cover; }
.map-card { max-width: 390px; padding: 26px; background: rgba(255,253,248,.95); box-shadow: var(--shadow); }
.legal { max-width: 880px; }
.legal h2 { margin-top: 64px; font-size: 2.1rem; }
.legal h3 { margin-top: 36px; font-family: inherit; font-size: 1.05rem; font-weight: 850; letter-spacing: 0; }
.legal ul { padding-left: 22px; }
.footer { padding: 62px 0 28px; background: #0b203f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; }
.footer-logo { width: 180px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer h3 { font-family: inherit; font-size: .8rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin: 7px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.55); font-size: .78rem; }
.reveal { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .topline .wrap { justify-content: center; }
  .topline p:last-child { display: none; }
  .nav { min-height: 74px; }
  .brand img { width: 154px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: 74px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 26px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 11px 0; }
  .nav-links .button { margin-top: 9px; }
  .hero-grid, .craft-grid, .hours-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 28px; }
  .hero-visual { min-height: 540px; }
  .hero-badge { left: 20px; bottom: 20px; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .signal-row { grid-template-columns: 1fr; }
  .gallery-teaser { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 230px 230px; }
  .gallery-teaser figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-teaser figure:last-child:nth-child(4) { grid-column: 1 / 3; }
  .hours-copy, .contact-panel { padding: 42px; }
  .price-heading { grid-template-columns: 1fr; gap: 7px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / 3; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .hero-grid { min-height: auto; }
  .hero-copy { padding: 55px 18px 48px; }
  .hero-visual { min-height: 470px; }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { margin-bottom: 26px; }
  .craft-image img { min-height: 420px; }
  .craft-copy { padding: 48px 25px; }
  .gallery-teaser { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 290px 170px 210px; }
  .hours-copy, .contact-panel, .contact-box { padding: 30px 24px; }
  .page-hero { padding: 64px 0 50px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .price-toolbar { top: 74px; }
  .price-heading, .price-list { padding-left: 20px; padding-right: 20px; }
  .price-row { gap: 14px; font-size: .92rem; }
  .phone-desktop { display: none !important; }
  .phone-mobile { display: inline-flex; }
  .map-frame { min-height: 430px; padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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