﻿:root {
  --orange: #c24100;
  --orange-dark: #9f3000;
  --ink: #171513;
  --muted: #65605b;
  --cream: #fff8f0;
  --line: #eaded2;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }

.site-header {
  height: 82px; display: flex; align-items: center; gap: 42px; padding: 0 max(4.7vw, 28px);
  background: rgba(255,255,255,.96); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #f3ede7;
  backdrop-filter: blur(14px);
}
.brand { min-width: 178px; display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 38px; letter-spacing: -2px; }
.brand-name span { color: var(--orange); font-family: Arial, sans-serif; font-size: 28px; margin-left: -4px; }
.brand small { margin-top: 2px; font-family: var(--serif); font-size: 11px; letter-spacing: .1px; }
.nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav a { position: relative; padding: 31px 0 28px; font-size: 11px; letter-spacing: .35px; font-weight: 800; text-transform: uppercase; }
.nav a.active { color: var(--orange); }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--orange); transition: right .25s; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-phone { display: flex; align-items: center; gap: 10px; min-width: 188px; }
.header-phone > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--orange); font-size: 22px; }
.header-phone div { display: flex; flex-direction: column; gap: 3px; }
.header-phone small { color: #9c4b25; font-size: 10px; }
.header-phone strong { font-size: 14px; }
.menu-button { display: none; border: 0; background: transparent; font-size: 27px; cursor: pointer; }

.hero { height: 560px; position: relative; display: grid; grid-template-columns: 44% 56%; background: #fffaf5; }
.hero-copy {
  min-width: 0; padding: 40px clamp(34px,3.6vw,64px) 58px max(4.7vw, 28px); position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(90deg,#fff 0%,#fffdfb 80%,rgba(255,253,251,.92) 100%);
}
.hero-copy::before { content: ""; width: 42px; height: 3px; margin-bottom: 19px; border-radius: 2px; background: var(--orange); }
.eyebrow, .section-kicker { margin: 0 0 16px; color: #6d6762; text-transform: uppercase; letter-spacing: 2px; font-size: 11px; font-weight: 800; }
.hero h1 { margin: 0; max-width: 610px; font-family: var(--serif); font-size: clamp(42px,3.9vw,62px); line-height: 1.01; letter-spacing: -2.5px; text-transform: uppercase; font-weight: 500; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-body { max-width: 505px; color: var(--muted); font-size: 13px; line-height: 1.7; margin: 20px 0 25px; }
.button-row { display: flex; gap: 13px; flex-wrap: wrap; }
.button { min-height: 48px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 18px; border: 1px solid transparent; border-radius: 4px; text-transform: uppercase; font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242,88,22,.18); }
.button.primary { background: var(--orange); color: #fff; }
.button.primary:hover { background: var(--orange-dark); }
.button.secondary, .button.outline { border-color: var(--orange); color: var(--orange); background: #fff; }
.hero-visual {
  position: relative; z-index: 3; min-width: 0; height: 100%; margin-left: -70px; overflow: hidden;
  clip-path: ellipse(104% 88% at 100% 50%); background: #32170b;
}
.hero-visual::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(255,250,245,.16),transparent 20%), linear-gradient(0deg,rgba(0,0,0,.2),transparent 50%); }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); image-rendering: auto; filter: saturate(1.18) contrast(1.06); }
.stats {
  position: absolute; z-index: 4; width: min(980px,88%); left: 50%; bottom: -52px; transform: translateX(-50%);
  display: grid; grid-template-columns: repeat(4,1fr); padding: 18px;
  overflow: hidden; color: #fff; background: linear-gradient(112deg,#17120f 0%,#261a14 55%,#3a1d10 100%);
  border: 1px solid rgba(255,122,55,.35); border-radius: 18px;
  box-shadow: 0 20px 50px rgba(35,20,13,.25);
}
.stats::before {
  content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 3px;
  background: linear-gradient(90deg,transparent,var(--orange),#ff9a61,var(--orange),transparent);
}
.stat {
  min-width: 0; display: grid; grid-template-columns: 48px auto; grid-template-rows: auto auto;
  align-items: center; column-gap: 13px; padding: 4px 22px; border-right: 1px solid rgba(255,255,255,.14);
}
.stat:last-child { border: 0; }
.stat > span {
  grid-row: 1/3; display: grid; place-items: center; width: 44px; height: 44px;
  color: #fff; font-size: 22px; border-radius: 14px;
  background: linear-gradient(145deg,var(--orange),#ff8b52); box-shadow: 0 8px 18px rgba(242,88,22,.28);
}
.stat strong { color: #fff; font: 31px/1 var(--serif); letter-spacing: -.5px; }
.stat small { color: rgba(255,255,255,.7); font-size: 9px; margin-top: 5px; letter-spacing: .25px; }

.section-shell { width: min(1180px,91%); margin-inline: auto; }
.about { padding: 126px 0 72px; display: grid; grid-template-columns: 32% 68%; gap: 50px; align-items: center; }
.section-kicker { color: var(--orange); margin-bottom: 14px; }
.about h2, .section-title h2, .gallery-copy h2, .modal h2 { margin: 0 0 20px; font: 42px/1.08 var(--serif); letter-spacing: -1.2px; }
.about h2 span, .section-title h2 span, .gallery-copy h2 span, .modal h2 span { color: var(--orange); }
.about-copy > p:not(.section-kicker), .gallery-copy > p:not(.section-kicker) { color: var(--muted); font-size: 13px; line-height: 1.75; }
.about-copy .button { margin-top: 8px; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.feature-card { height: 340px; position: relative; overflow: hidden; border-radius: 6px; background: #2a160d; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-card:hover img { transform: scale(1.04); }
.feature-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(0,0,0,.86)); }
.feature-overlay { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 20px; color: #fff; }
.feature-overlay span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--orange); font-size: 24px; }
.feature-overlay h3 { margin: 12px 0 0; font-size: 17px; }

.services-section {
  position: relative; padding: 78px 0 86px; overflow: hidden;
  background: linear-gradient(145deg,#fffaf5 0%,#fff2e6 54%,#f9e4d3 100%);
}
.services-section::before {
  content: ""; position: absolute; width: 430px; height: 430px; right: -170px; top: -220px;
  border-radius: 50%; border: 70px solid rgba(242,88,22,.055);
}
.section-title { position: relative; z-index: 1; text-align: center; }
.section-title h2 { margin-bottom: 12px; font-size: 46px; }
.section-title > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 38px;
}
.service-card {
  position: relative; min-height: 205px; padding: 28px 27px; overflow: hidden; isolation: isolate;
  text-align: left; color: var(--ink); border: 1px solid rgba(206,168,139,.34);
  border-radius: 17px; background: rgba(255,255,255,.82); box-shadow: 0 12px 34px rgba(91,53,28,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, color .3s ease, background .3s ease;
}
.service-card::after {
  content: ""; position: absolute; z-index: -1; width: 170px; height: 170px; right: -115px; bottom: -125px;
  border-radius: 50%; background: rgba(255,255,255,.13); transform: scale(.3);
  transition: transform .42s ease;
}
.service-card:hover {
  color: #fff; transform: translateY(-8px); border-color: transparent;
  background: linear-gradient(135deg,#ea4e0d 0%,#f8702d 62%,#ff945d 100%);
  box-shadow: 0 22px 45px rgba(218,67,9,.24);
}
.service-card:hover::after { transform: scale(1.65); }
.big-icon {
  display: grid; place-items: center; width: 58px; height: 58px; margin: 0 0 22px;
  border-radius: 17px; color: var(--orange); font-size: 28px;
  background: linear-gradient(145deg,#fff,#ffe3d3); box-shadow: inset 0 0 0 1px rgba(242,88,22,.12);
  transition: transform .3s ease, color .3s ease, background .3s ease, box-shadow .3s ease;
}
.service-card h3 { min-height: 0; margin: 0; font: 22px/1.15 var(--serif); }
.service-card p { margin: 11px 0 0; color: #71645c; font-size: 11px; line-height: 1.65; transition: color .3s ease; }
.service-card:hover .big-icon {
  color: var(--orange); background: #fff; transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 10px 24px rgba(118,35,5,.18);
}
.service-card:hover p { color: rgba(255,255,255,.82); }

.seo-section { padding: 70px 0; }
.seo-section h2 { margin: 0 0 16px; font: 42px/1.1 var(--serif); color: var(--dark); }
.seo-section > p:not(.section-kicker) { max-width: 920px; color: var(--muted); font-size: 14px; line-height: 1.85; }
.seo-link-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.seo-link-grid a { padding: 18px 20px; border: 1px solid #ead6c5; border-radius: 12px; background: #fff; color: var(--dark); font-size: 13px; font-weight: 800; box-shadow: 0 12px 28px rgba(76,41,19,.06); }
.seo-link-grid a:hover { color: var(--orange); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(242,88,22,.12); }
.seo-content { display: grid; gap: 28px; }
.seo-content h2, .seo-content h3 { margin: 0 0 12px; font-family: var(--serif); color: var(--dark); }
.seo-content h2 { font-size: 42px; line-height: 1.1; }
.seo-content h3 { font-size: 28px; }
.seo-content p, .seo-content li { color: var(--muted); font-size: 14px; line-height: 1.85; }
.seo-content ul { margin: 0; padding-left: 18px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #776b63; font-size: 12px; font-weight: 700; }
.breadcrumb a { color: var(--orange); }
.seo-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.seo-card { padding: 24px; border: 1px solid #ead6c5; border-radius: 14px; background: #fff; box-shadow: 0 12px 28px rgba(76,41,19,.06); }
.seo-card h3 { font-size: 23px; }
.faq-grid { display: grid; gap: 14px; }
.faq-item { padding: 20px 22px; border: 1px solid #ead6c5; border-radius: 12px; background: #fff; }
.faq-item h3 { font: 20px/1.25 var(--serif); }
.floating-cta { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: flex; gap: 10px; }
.floating-cta a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 17px; border-radius: 999px; color: #fff; background: var(--orange); font-size: 12px; font-weight: 800; box-shadow: 0 14px 30px rgba(70,30,10,.22); }

.gallery-section { padding: 72px 0 24px; display: grid; grid-template-columns: 25% 75%; gap: 38px; align-items: center; }
.gallery-copy h2 { font-size: 39px; }
.gallery-copy .button { margin-top: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gallery-item { height: 160px; padding: 0; border: 0; border-radius: 7px; overflow: hidden; cursor: pointer; background: #2b170d; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .4s; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.2); }

.cta { min-height: 145px; margin-top: 36px; padding: 28px 7%; display: flex; justify-content: space-between; align-items: center; gap: 40px; border-radius: 12px; color: #fff; background: linear-gradient(90deg,rgba(130,43,8,.3),transparent 28%), linear-gradient(100deg,#e94a0c,#f5701f); position: relative; overflow: hidden; }
.cta::before { content: "✦"; position: absolute; left: 5%; top: -70px; font-size: 190px; color: rgba(255,255,255,.08); transform: rotate(-12deg); }
.cta h2 { position: relative; margin: 0; font: 36px/1 var(--serif); }
.cta p { max-width: 530px; margin: 12px 0 0; font-size: 11px; line-height: 1.55; }
.cta-actions { position: relative; display: flex; align-items: center; gap: 28px; }
.button.light { color: var(--orange); background: #fff; min-width: 160px; }
.cta-actions > a { display: flex; align-items: center; gap: 11px; min-height: 48px; font-size: 22px; }
.cta-actions > a span { font-size: 12px; line-height: 1.45; }
.cta-actions > a strong { font-size: 13px; }

.footer { padding: 34px 0 16px; display: grid; grid-template-columns: 1.5fr .8fr 1fr 1fr; gap: 45px; }
.footer .brand-name { font-size: 34px; }
.footer-brand p { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.footer h3 { margin: 6px 0 14px; font-size: 12px; }
.footer > div:not(.footer-brand):not(.copyright) { display: flex; flex-direction: column; align-items: flex-start; }
.footer > div > a:not(.brand) { display: inline-flex; align-items: center; min-height: 44px; color: #4f4944; font-size: 12px; line-height: 1.35; }
.socials { display: flex; gap: 11px; }
.socials a { width: 44px; height: 44px; display: grid !important; place-items: center; border-radius: 50%; color: var(--orange) !important; background: #fff; box-shadow: 0 3px 12px rgba(0,0,0,.13); font-weight: 800; }
.copyright { grid-column: 1/-1; border-top: 1px solid #eee4db; margin-top: 4px; padding-top: 14px; display: flex; justify-content: space-between; color: #77716c; font-size: 9px; }
.copyright b { color: #e63131; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(24,15,10,.68); backdrop-filter: blur(5px); }
.modal { width: min(590px,100%); max-height: calc(100vh - 40px); overflow: auto; padding: 36px; position: relative; border-radius: 14px; background: #fffaf5; box-shadow: 0 25px 90px rgba(0,0,0,.35); }
.modal h2 { font-size: 34px; }
.modal-close { position: absolute; top: 15px; right: 17px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #444; background: #fff; font-size: 24px; cursor: pointer; }
.modal form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.modal label { display: flex; flex-direction: column; gap: 7px; color: #5b514b; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.modal label:nth-child(4) { grid-column: 1/-1; }
.modal input, .modal select, .modal textarea { width: 100%; border: 1px solid #e4d6ca; border-radius: 5px; padding: 12px; color: #222; background: #fff; outline: none; text-transform: none; resize: vertical; }
.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,88,22,.1); }
.modal form .button { justify-self: start; }
.success { padding: 28px 0; text-align: center; }
.success > span { display: grid; place-items: center; width: 66px; height: 66px; margin: auto; border-radius: 50%; color: #fff; background: var(--orange); font-size: 34px; }
.success h2 { margin: 18px 0 6px; }
.modal[hidden], .modal-backdrop[hidden] { display: none; }
.lightbox-image { max-height: 78vh; width: auto; margin: auto; border-radius: 8px; }

/* Inner pages */
.subpage-hero {
  min-height: 320px; position: relative; display: grid; place-items: center; padding: 70px 5%; overflow: hidden;
  color: #fff; text-align: center; background:
    linear-gradient(105deg,rgba(25,14,9,.92),rgba(73,28,10,.72)),
    url("assets/hero.jpg") center 46% / cover no-repeat;
}
.subpage-hero::after {
  content: ""; position: absolute; width: 430px; height: 430px; right: -190px; bottom: -290px;
  border: 70px solid rgba(255,255,255,.06); border-radius: 50%;
}
.subpage-hero > div { position: relative; z-index: 1; }
.subpage-hero .eyebrow { color: #ffad82; margin-bottom: 12px; }
.subpage-hero h1 { margin: 0; font: clamp(46px,6vw,76px)/.98 var(--serif); letter-spacing: -2px; }
.subpage-hero p:last-child { max-width: 650px; margin: 18px auto 0; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.7; }
.page-section { padding: 82px 0; }
.page-section.soft { background: linear-gradient(145deg,#fffaf5,#fff1e5); }
.page-heading { max-width: 700px; margin: 0 auto 38px; text-align: center; }
.page-heading h2 { margin: 0 0 14px; font: 42px/1.08 var(--serif); }
.page-heading h2 span { color: var(--orange); }
.page-heading > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.7; }

.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-page-image { height: 530px; overflow: hidden; border-radius: 24px 24px 120px 24px; box-shadow: 0 25px 60px rgba(62,34,19,.18); }
.about-page-image img { width: 100%; height: 100%; object-fit: cover; }
.about-page-copy h2 { margin: 0 0 20px; font: 46px/1.05 var(--serif); }
.about-page-copy h2 span { color: var(--orange); }
.about-page-copy > p:not(.section-kicker) { color: var(--muted); font-size: 13px; line-height: 1.85; }
.about-welcome-section { padding: 0 0 82px; }
.about-welcome-card {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 50px; align-items: center;
  overflow: hidden; padding: 48px; border-radius: 25px; color: #fff;
  background: linear-gradient(135deg,#21140f 0%,#4b2517 58%,#d94b13 145%);
  box-shadow: 0 25px 60px rgba(54,28,16,.2);
}
.about-welcome-card::after { content: ""; position: absolute; right: -120px; top: -150px; width: 350px; height: 350px; border: 55px solid rgba(255,134,75,.12); border-radius: 50%; pointer-events: none; }
.about-welcome-copy, .about-strengths { position: relative; z-index: 1; }
.about-welcome-copy .section-kicker { color: #ffb18c; }
.about-welcome-copy h2 { margin: 0 0 18px; font: 42px/1.08 var(--serif); }
.about-welcome-copy h2 span { color: #ff8b50; }
.about-welcome-copy > p:not(.section-kicker) { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; }
.about-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.about-fact { display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.07); font-size: 11px; }
.about-fact b { display: grid; place-items: center; min-width: 20px; height: 20px; color: #ff8b50; font-size: 12px; }
.about-strengths { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.about-strength { min-height: 105px; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.08); backdrop-filter: blur(5px); }
.about-strength span { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 14px; border-radius: 10px; color: #fff; background: var(--orange); font-size: 17px; }
.about-strength strong { font: 17px/1.25 var(--serif); }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid #eedbca; border-radius: 17px; background: #fff; box-shadow: 0 12px 30px rgba(76,41,19,.06); }
.value-card span { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 20px; border-radius: 15px; color: #fff; background: var(--orange); font-size: 22px; }
.value-card h3 { margin: 0 0 10px; font: 23px var(--serif); }
.value-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.services-page .service-grid { margin-top: 0; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 26px 28px; border-right: 1px solid #ebd7c5; counter-increment: process; }
.process-step:last-child { border: 0; }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 18px; color: var(--orange); font: 34px var(--serif); }
.process-step h3 { margin: 0 0 9px; font-size: 15px; }
.process-step p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.gallery-toolbar { display: flex; justify-content: center; gap: 9px; margin-bottom: 30px; flex-wrap: wrap; }
.filter-button {
  min-height: 44px; padding: 10px 18px; border: 1px solid #d7b094; border-radius: 999px; color: #4f433c;
  background: #fff; cursor: pointer; font-size: 12px; font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.filter-button:hover, .filter-button.active { color: #fff; border-color: var(--orange); background: var(--orange); transform: translateY(-2px); }
.gallery-page-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gallery-page-grid .gallery-item {
  position: relative; height: 225px; overflow: hidden; border-radius: 15px;
  box-shadow: 0 10px 26px rgba(63,35,19,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-page-grid .gallery-item::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(25,12,7,.8) 100%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-page-grid .gallery-item::after {
  content: "View Photo  \2197"; position: absolute; z-index: 2; left: 18px; bottom: 16px;
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .4px;
  opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease;
}
.gallery-page-grid .gallery-item img { transition: transform .5s ease, filter .4s ease; }
.gallery-page-grid .gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(63,35,19,.22); }
.gallery-page-grid .gallery-item:hover::before, .gallery-page-grid .gallery-item:hover::after { opacity: 1; }
.gallery-page-grid .gallery-item:hover::after { transform: translateY(0); }
.gallery-page-grid .gallery-item:hover img { transform: scale(1.1); filter: saturate(1.15) brightness(.8); }
.gallery-item[hidden] { display: none; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }
.contact-copy h2 { margin: 0 0 18px; font: 44px/1.05 var(--serif); }
.contact-copy h2 span { color: var(--orange); }
.contact-copy > p:not(.section-kicker) { color: var(--muted); font-size: 13px; line-height: 1.8; }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 16px; border: 1px solid #ead9ca; border-radius: 14px; background: #fff; }
.contact-item > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #fff; background: var(--orange); font-size: 20px; }
.contact-item small { display: block; margin-bottom: 4px; color: var(--muted); }
.contact-item strong { font-size: 13px; }
.contact-item address { margin: 0; color: #28201c; font-style: normal; font-size: 12px; font-weight: 700; line-height: 1.55; }
.contact-form-card { padding: 36px; border: 1px solid #ead6c5; border-radius: 20px; background: #fff; box-shadow: 0 18px 45px rgba(76,41,19,.09); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; color: #4f443e; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.contact-form label.full { grid-column: 1/-1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px; border: 1px solid #e5d5c7; border-radius: 7px; outline: none; background: #fffaf6; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,88,22,.1); }
.contact-form .button { justify-self: start; }
.contact-success { margin: 18px 0 0; padding: 13px; border-radius: 8px; color: #1f6b3d; background: #e8f8ef; font-size: 12px; }

.inner-cta { margin-bottom: 72px; }

@media (max-width: 1050px) {
  .site-header { gap: 20px; }
  .nav { gap: 18px; }
  .header-phone { display: none; }
  .hero { grid-template-columns: 49% 51%; }
  .hero h1 { font-size: clamp(40px,5vw,54px); }
  .stat { padding: 0 12px; }
  .about { grid-template-columns: 34% 66%; gap: 28px; }
  .feature-card { height: 300px; }
  .gallery-section { grid-template-columns: 28% 72%; }
  .gallery-item { height: 135px; }
  .cta { padding-inline: 5%; }
}

@media (max-width: 800px) {
  .site-header { height: 74px; justify-content: space-between; }
  .brand-name { font-size: 32px; }
  .menu-button { display: block; order: 3; }
  .nav { position: absolute; top: 74px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 6%; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
  .nav.open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid #eee; }
  .nav a::after { display: none; }
  .hero { display: block; height: auto; }
  .hero-copy { min-height: 500px; padding: 48px 6% 64px; }
  .hero h1 { font-size: clamp(44px,10vw,66px); }
  .hero-visual { height: 460px; min-height: auto; margin-left: 0; clip-path: none; }
  .stats { position: relative; left: auto; bottom: auto; transform: none; width: 90%; margin: -38px auto 0; grid-template-columns: repeat(2,1fr); }
  .stat { padding: 15px 16px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .about { padding-top: 68px; display: block; }
  .about-copy { max-width: 620px; margin-bottom: 35px; }
  .service-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .seo-link-grid { grid-template-columns: repeat(2,1fr); }
  .seo-card-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-section { grid-template-columns: 1fr; }
  .gallery-copy { max-width: 520px; }
  .cta { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; justify-content: space-between; }
  .footer { grid-template-columns: repeat(2,1fr); }
  .subpage-hero { min-height: 270px; }
  .about-page-grid, .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .about-page-image { height: 420px; }
  .about-welcome-card { grid-template-columns: 1fr; gap: 34px; }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step { border-bottom: 1px solid #ebd7c5; }
  .process-step:nth-child(n+3) { border-bottom: 0; }
  .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-page-grid .gallery-item { height: 190px; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 20px; }
  .hero-copy { min-height: 0; padding: 46px 22px 54px; }
  .hero h1 { font-size: 43px; letter-spacing: -2px; }
  .hero-body { font-size: 13px; }
  .hero-visual { height: 490px; }
  .stats { grid-template-columns: 1fr; padding: 12px 20px; }
  .stat, .stat:nth-child(2), .stat:nth-child(n+3) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { height: 300px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .seo-link-grid { grid-template-columns: 1fr; }
  .seo-card-grid { grid-template-columns: 1fr; }
  .seo-section h2, .seo-content h2 { font-size: 34px; }
  .floating-cta { left: 14px; right: 14px; }
  .floating-cta a { flex: 1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item { height: 125px; }
  .cta h2 { font-size: 30px; }
  .cta-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; gap: 8px; }
  .modal { padding: 32px 22px 24px; }
  .modal form { grid-template-columns: 1fr; }
  .modal label:nth-child(4) { grid-column: auto; }
  .page-section { padding: 58px 0; }
  .about-page-image { height: 340px; }
  .about-page-copy h2, .contact-copy h2 { font-size: 37px; }
  .about-welcome-section { padding-bottom: 58px; }
  .about-welcome-card { padding: 30px 24px; }
  .about-welcome-copy h2 { font-size: 34px; }
  .about-strengths { grid-template-columns: 1fr; }
  .about-strength { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(2), .process-step:nth-child(n+3) { border-right: 0; border-bottom: 1px solid #ebd7c5; }
  .process-step:last-child { border-bottom: 0; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid .gallery-item { height: 220px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label.full { grid-column: auto; }
  .contact-form-card { padding: 25px; }
}

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