:root {
  --ink: #2f3b33;
  --muted: #687269;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --yellow: #f3c85f;
  --yellow-soft: #fff2c8;
  --green: #567d5a;
  --green-dark: #3f6445;
  --green-pale: #e9f0e6;
  --blue: #3e758d;
  --coral: #d96f54;
  --line: #ded7c7;
  --shadow: 0 16px 36px rgba(55, 62, 45, .12);
  --radius: 22px;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("img/background-pattern/2.png");
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }

h1, h2, h3 {
  margin: 0 0 .6em;
  color: #354237;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1.25em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--coral);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--yellow); border-radius: 4px; }

.section { padding: 105px 0; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(86, 125, 90, .16);
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; }
.brand img { width: 82px; height: 59px; object-fit: contain; }
.brand strong { display: block; color: var(--green-dark); font: 700 1.55rem Georgia, serif; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; letter-spacing: .02em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { position: relative; font-size: .9rem; font-weight: 700; text-decoration: none; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform .2s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-contact { padding: 10px 18px; border-radius: 999px; background: var(--green); color: white; }
.menu-button { display: none; border: 0; background: none; color: var(--ink); font: inherit; font-weight: 700; cursor: pointer; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 22px; height: 2px; background: currentColor; content: ""; transition: .2s; }
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -7px; }
.menu-icon::after { position: absolute; top: 7px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 92px;
  background-color: #f6f0dc;
  background-image: url("img/background-pattern/2.png");
}
.hero::after { content: ""; position: absolute; right: -110px; bottom: -180px; width: 420px; height: 420px; border: 80px solid rgba(243, 200, 95, .16); border-radius: 50%; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 70px; }
.hero-lead { max-width: 630px; color: #59645b; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 31px 0 20px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 11px 22px; border: 2px solid transparent; border-radius: 12px; font-size: .94rem; font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform .18s, box-shadow .18s, background .18s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(42, 65, 46, .16); }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { border-color: var(--green); background: transparent; color: var(--green-dark); }
.small-note { color: var(--muted); font-size: .83rem; }
.small-note span { color: var(--coral); }
.hero-photo-wrap { position: relative; padding: 17px; background: var(--paper); border: 1px solid #e3dbc8; border-radius: 32px 11px 32px 11px; box-shadow: var(--shadow); transform: rotate(1.1deg); }
.hero-photo { width: 100%; aspect-ratio: 1.06; object-fit: cover; object-position: 50% 55%; border-radius: 22px 7px 22px 7px; }
.stitch-line { position: absolute; inset: 8px; z-index: 2; pointer-events: none; border: 2px dashed var(--yellow); border-radius: 27px 8px; }
.photo-note { position: absolute; right: -17px; bottom: 28px; max-width: 265px; padding: 15px 20px; border-left: 5px solid var(--coral); background: var(--paper); box-shadow: 0 8px 24px rgba(45, 52, 40, .17); transform: rotate(-2deg); z-index: 2; }
.photo-note strong, .photo-note span { display: block; }
.photo-note strong { font-family: Georgia, serif; font-size: 1.05rem; }
.photo-note span { color: var(--muted); font-size: .74rem; }

.trust-strip { background: var(--green); color: white; }
.trust-list { min-height: 72px; display: flex; align-items: center; justify-content: space-around; gap: 24px; font-size: .91rem; font-weight: 700; }
.trust-list b { display: inline-grid; width: 24px; height: 24px; margin-right: 8px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--green-dark); }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.service-card { overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 310px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 8px 24px rgba(53, 65, 55, .07); }
.featured-service { grid-row: span 2; grid-template-columns: 1fr; }
.service-image { min-height: 220px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.service-card:hover .service-image img { transform: scale(1.025); }
.featured-service .service-image { min-height: 325px; }
.service-content { position: relative; padding: 30px; }
.service-content p, .service-content li { color: var(--muted); font-size: .9rem; }
.service-content ul { padding-left: 20px; margin: 20px 0 0; }
.service-content li { margin: 5px 0; }
.number { position: absolute; top: 26px; right: 28px; color: #d4cdbd; font: italic 1rem Georgia, serif; }

.process { background-color: var(--green-pale); background-image: url("img/background-pattern/4.png"); background-blend-mode: soft-light; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.process-intro { position: relative; }
.process-intro > p:last-of-type { color: var(--muted); }
.process-intro img { width: 165px; margin: 35px auto 0; transform: rotate(-9deg); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px dashed rgba(63, 100, 69, .32); }
.steps li:last-child { border: 0; }
.steps > li > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50% 45% 50% 40%; background: var(--yellow); color: var(--green-dark); font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; transform: rotate(-4deg); }
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); font-size: .92rem; }

.gallery-section { background: var(--paper); }
.split-heading { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.split-heading > p { max-width: 300px; }
.gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 330px 290px; gap: 15px; }
.gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 17px 6px 17px 6px; background: #ddd; }
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s, filter .35s; }
.gallery figure:hover img { transform: scale(1.025); filter: saturate(1.08); }
.gallery figcaption { position: absolute; left: 15px; bottom: 15px; padding: 7px 12px; border-radius: 8px; background: rgba(255, 253, 248, .92); font-size: .8rem; font-weight: 800; }
.gallery-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: max-height .8s ease, margin-top .55s ease, opacity .45s ease, transform .55s ease, visibility 0s linear .8s;
}
.gallery-more.is-open {
  max-height: 1100px;
  margin-top: 15px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: max-height .8s ease, margin-top .55s ease, opacity .55s ease .12s, transform .55s ease .08s, visibility 0s;
}
.gallery-more figure { position: relative; overflow: hidden; min-height: 260px; margin: 0; border-radius: 17px 6px 17px 6px; background: #e5e1d7; }
.gallery-more figure:nth-child(3n + 1) { grid-row: span 2; }
.gallery-more img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .55s ease, transform .7s ease; }
.gallery-more.is-open img.is-loaded { opacity: 1; transform: scale(1); }
.gallery-more figure:hover img { transform: scale(1.025); }
.gallery-more figcaption { position: absolute; left: 15px; bottom: 15px; padding: 7px 12px; border-radius: 8px; background: rgba(255, 253, 248, .92); font-size: .8rem; font-weight: 800; }
.gallery-toggle-wrap { display: flex; justify-content: center; margin-top: 32px; }
.gallery-toggle { gap: 10px; cursor: pointer; font-family: inherit; }
.gallery-toggle b { font-size: 1.25rem; line-height: 1; transition: transform .35s ease; }
.gallery-toggle[aria-expanded="true"] b { transform: rotate(45deg); }

.about { overflow: hidden; background: #f4edda; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.about-photos { position: relative; }
.about-main { width: 100%; aspect-ratio: 1.12; object-fit: cover; border: 13px solid white; border-radius: 8px 26px 8px 26px; box-shadow: var(--shadow); transform: rotate(-1.6deg); }
.about-detail { position: absolute; right: -30px; bottom: -28px; width: 185px; filter: drop-shadow(0 8px 7px rgba(46, 53, 40, .17)); transform: rotate(6deg); }
.about-copy .intro { color: var(--green-dark); font: 1.35rem/1.5 Georgia, serif; }
.about-copy > p:not(.eyebrow):not(.intro) { color: var(--muted); }
.text-link { display: inline-block; margin-top: 10px; color: var(--green-dark); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link span { color: var(--coral); }

.reviews { background: var(--paper); }
.review-summary { margin-top: -8px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
blockquote { margin: 0; padding: 28px; border: 1px solid var(--line); border-top: 5px solid var(--yellow); border-radius: 8px 8px 18px 18px; background: var(--cream); }
.stars { margin-bottom: 15px; color: #dca724; letter-spacing: .12em; }
blockquote p { font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.65; }
blockquote footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 14px; color: var(--muted); font-size: .82rem; font-weight: 700; }
blockquote footer a { color: var(--green-dark); font-size: .76rem; text-underline-offset: 3px; }
.review-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 28px; margin-top: 38px; }
.review-actions .text-link { margin-top: 0; }

.contact { position: relative; padding: 100px 0; overflow: hidden; background: var(--green); color: white; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: url("img/background-pattern/1.png"); }
.contact-layout { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.contact h2, .contact h3 { color: white; }
.contact .eyebrow { color: var(--yellow); }
.contact-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, .78); }
.contact-actions { display: grid; gap: 12px; margin-top: 32px; }
.contact-row { display: flex; align-items: center; gap: 16px; max-width: 430px; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,.28); text-decoration: none; }
.contact-row > span { display: grid; flex: 0 0 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--green-dark); }
.contact-row small, .contact-row strong { display: block; }
.contact-row small { color: rgba(255,255,255,.67); font-size: .72rem; }
.contact-row strong { font-size: .95rem; overflow-wrap: anywhere; }
.address-card { position: relative; padding: 34px; border-radius: 25px 8px 25px 8px; background: var(--paper); color: var(--ink); box-shadow: 0 22px 50px rgba(24, 45, 28, .3); }
.address-card::after { content: ""; position: absolute; inset: 9px; pointer-events: none; border: 2px dashed var(--yellow); border-radius: 19px 5px; }
.address-card > * { position: relative; z-index: 1; }
.address-card > img { width: 100px; margin: -10px 0 12px; }
.address-card h3 { color: var(--green-dark); }
.address-card address { margin-bottom: 13px; font-style: normal; }
.address-card p { color: var(--muted); font-size: .82rem; }

.site-footer { padding: 22px 0; background: #2f4534; color: rgba(255,255,255,.72); font-size: .75rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-inner p { margin: 0; }
.footer-inner span[aria-hidden] { color: var(--yellow); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 900px) {
  .header-inner { min-height: 72px; }
  .brand img { width: 68px; height: auto; }
  .brand small { display: none; }
  .menu-button { display: flex; align-items: center; gap: 10px; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 18px 24px 24px; flex-direction: column; align-items: stretch; gap: 3px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 20px rgba(40,45,38,.1); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .nav-contact { margin-top: 7px; text-align: center; }
  .menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
  .menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

  .hero-inner, .process-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { gap: 52px; }
  .hero-copy { max-width: 680px; }
  .hero-photo-wrap { width: min(100%, 660px); }
  .service-grid { grid-template-columns: 1fr; }
  .featured-service { grid-row: auto; grid-template-columns: .8fr 1.2fr; }
  .featured-service .service-image { min-height: 220px; }
  .process-layout, .about-layout, .contact-layout { gap: 55px; }
  .process-intro img { display: none; }
  .about-photos { max-width: 650px; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-more { grid-template-columns: repeat(2, 1fr); }
  .gallery-more.is-open { max-height: 2200px; }
  .contact-layout { max-width: 680px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .section { padding: 72px 0; }
  .brand strong { font-size: 1.25rem; }
  .hero { padding: 55px 0 72px; }
  h1 { font-size: clamp(2.5rem, 13vw, 3.7rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .photo-note { right: 4px; bottom: 18px; }
  .trust-list { padding: 18px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
  .service-card, .featured-service { grid-template-columns: 1fr; }
  .service-image, .featured-service .service-image { min-height: 250px; max-height: 310px; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px 250px; }
  .gallery-large { grid-column: span 2; grid-row: auto; }
  .gallery-wide { grid-column: span 2; }
  .gallery-more { grid-template-columns: 1fr 1fr; }
  .gallery-more figure { min-height: 220px; }
  .gallery-more figure:nth-child(3n + 1) { grid-row: auto; }
  .gallery-more.is-open { max-height: 2600px; }
  .gallery-toggle { width: 100%; }
  .review-actions { align-items: stretch; flex-direction: column; text-align: center; }
  .review-actions .button { width: 100%; }
  .about-detail { right: -5px; width: 140px; }
  .steps li { grid-template-columns: 46px 1fr; gap: 15px; }
  .steps > li > span { width: 42px; height: 42px; }
  .address-card { padding: 30px 25px; }
  .footer-inner { align-items: center; flex-direction: column; gap: 4px; text-align: center; }
}

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