:root {
  --green: #264a3d;
  --green-dark: #17342a;
  --ink: #171512;
  --gold: #c8a34a;
  --charcoal: #2d2a26;
  --muted: #706b62;
  --paper: #ffffff;
  --cream: #faf8f2;
  --line: rgba(45, 42, 38, 0.12);
  --shadow: 0 16px 38px rgba(23, 21, 18, 0.11);
  --shadow-soft: 0 10px 24px rgba(45, 42, 38, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --wrap: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.68), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.85rem, 4.4vw, 3.1rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  clip: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  padding: 14px 0;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(45, 42, 38, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.text-brand span {
  display: grid;
  gap: 2px;
}

.text-brand strong {
  font-size: 1.08rem;
}

.text-brand small {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.site-header.scrolled .brand,
.site-header.menu-active .brand,
.footer .brand {
  color: var(--green);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Poppins, sans-serif;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-menu .nav-call {
  padding: 9px 14px;
  border: 1px solid rgba(200, 163, 74, 0.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(38, 74, 61, 0.42);
}

.site-header.scrolled .nav-menu .nav-call,
.site-header.menu-active .nav-menu .nav-call {
  color: #fff;
  background: var(--green);
}

.site-header.scrolled .nav-menu a,
.site-header.menu-active .nav-menu a {
  color: var(--charcoal);
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  z-index: 55;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .nav-toggle,
.site-header.menu-active .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.scrolled .nav-toggle span:not(.sr-only),
.site-header.menu-active .nav-toggle span:not(.sr-only) {
  background: var(--green);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 72px;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 22, 18, 0.82), rgba(13, 28, 22, 0.55) 54%, rgba(13, 28, 22, 0.2)),
    linear-gradient(0deg, rgba(13, 28, 22, 0.34), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.sub-hero {
  min-height: 66svh;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2.4vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 16px 35px rgba(38, 74, 61, 0.22);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.btn-primary.glass {
  border-color: rgba(200, 163, 74, 0.72);
  background: rgba(38, 74, 61, 0.54);
}

.section {
  padding: 76px 0;
}

.two-col,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-head p,
.contact-info address,
.contact-info .phone-line,
.footer p {
  color: var(--muted);
}

.section-copy p:not(.eyebrow) {
  margin-top: 22px;
}

.about-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.stats-grid div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  color: var(--green);
  font-family: Poppins, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.services-band,
.faq,
.footer,
.signature-section,
.flow-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(250, 248, 242, 0.92)),
    var(--cream);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

.section-head.compact {
  max-width: 680px;
}

.split-simple {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 66px);
  align-items: center;
}

.split-simple .btn {
  margin-top: 24px;
}

.rounded-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.simple-card-grid {
  display: grid;
  gap: 16px;
}

.simple-card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.simple-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(38, 74, 61, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.simple-card h3 {
  color: var(--green);
  font-size: 1.15rem;
}

.simple-card p {
  margin-top: 12px;
  color: var(--muted);
}

.hire-highlight {
  background: #fff;
}

.hire-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hire-list span {
  padding: 16px 18px;
  border: 1px solid rgba(38, 74, 61, 0.13);
  border-radius: var(--radius-sm);
  color: var(--green);
  background: rgba(250, 248, 242, 0.88);
  font-weight: 800;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-preview .gallery-item {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.simple-features .feature {
  min-height: 110px;
}

.simple-features .feature strong {
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-secondary.dark {
  color: var(--green);
  border-color: rgba(38, 74, 61, 0.24);
  background: #fff;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.signature-copy,
.signature-panel,
.editorial-copy,
.flow-step,
.spotlight-list article {
  border: 1px solid rgba(38, 74, 61, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.signature-copy {
  padding: clamp(28px, 5vw, 46px);
}

.signature-copy h2 {
  font-size: clamp(2rem, 4.7vw, 4rem);
}

.signature-copy p {
  margin-top: 20px;
  color: var(--muted);
}

.signature-panel {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(38, 74, 61, 0.03), rgba(38, 74, 61, 0.1)),
    #fff;
}

.signature-panel span,
.directory-card span,
.flow-step span {
  color: var(--gold);
  font-family: Poppins, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signature-panel strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.signature-panel p {
  margin-top: 14px;
  color: var(--muted);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.editorial-image::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: clamp(16px, 3vw, 30px);
  content: "";
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  padding: clamp(28px, 5vw, 50px);
}

.editorial-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.note-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.note-stack span {
  padding: 9px 12px;
  border: 1px solid rgba(200, 163, 74, 0.3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(200, 163, 74, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.directory-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.directory-card img,
.directory-card::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.directory-card img {
  object-fit: cover;
  transition: transform 450ms ease;
}

.directory-card::before {
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(13, 28, 22, 0.12), rgba(13, 28, 22, 0.82));
}

.directory-card span,
.directory-card h3,
.directory-card p {
  position: relative;
  z-index: 2;
}

.directory-card h3 {
  margin-top: 230px;
  color: #fff;
  font-size: 1.6rem;
}

.directory-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.directory-card:hover img,
.directory-card:focus-visible img {
  transform: scale(1.07);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(38, 74, 61, 0.1);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--green);
  background: rgba(200, 163, 74, 0.14);
}

.icon svg,
.socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card ul {
  flex: 1;
  margin: 18px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.service-card p {
  margin-top: 16px;
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.download-grid,
.menu-grid {
  display: grid;
  gap: 18px;
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card,
.menu-card {
  border: 1px solid rgba(38, 74, 61, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.download-card {
  display: block;
  padding: clamp(22px, 4vw, 32px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.download-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(200, 163, 74, 0.14);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card strong {
  display: block;
  color: var(--green);
  font-family: Poppins, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.18;
}

.download-card p {
  margin-top: 12px;
  color: var(--muted);
}

.menu-section {
  background: #fff;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  padding: 26px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-card h3 {
  color: var(--green);
}

.menu-card p {
  margin-top: 12px;
  color: var(--muted);
}

.menu-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--charcoal);
}

.menu-card li {
  margin-bottom: 7px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-list span {
  padding: 14px 16px;
  border: 1px solid rgba(38, 74, 61, 0.1);
  border-radius: 14px;
  color: var(--charcoal);
  background: #fff;
  box-shadow: 0 8px 18px rgba(45, 42, 38, 0.04);
  font-weight: 700;
}

.price-strip {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flow-step {
  padding: clamp(24px, 4vw, 34px);
}

.flow-step h3 {
  margin-top: 18px;
  color: var(--green);
  font-size: 1.45rem;
}

.flow-step p {
  margin-top: 12px;
  color: var(--muted);
}

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.spotlight-list {
  display: grid;
  gap: 16px;
}

.spotlight-list article {
  padding: 24px;
}

.spotlight-list h3 {
  color: var(--green);
}

.spotlight-list p,
.spotlight-list li {
  color: var(--muted);
}

.spotlight-list p {
  margin-top: 10px;
}

.spotlight-list ul {
  columns: 2;
  margin: 16px 0 0;
  padding-left: 18px;
}

.price-strip strong {
  color: var(--gold);
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
}

.menu-more {
  margin-top: 26px;
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  color: var(--green);
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
}

.detail-list span {
  margin-top: 6px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  transition: transform 180ms ease;
}

.text-link::after {
  margin-left: 8px;
  color: var(--gold);
  content: "→";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 25px rgba(45, 42, 38, 0.04);
}

.feature span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Poppins, sans-serif;
  font-weight: 800;
}

.feature strong {
  display: block;
  color: var(--green);
  font-family: Poppins, sans-serif;
  line-height: 1.25;
}

.image-break {
  height: clamp(320px, 52vw, 560px);
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 28, 22, 0.58), transparent 55%);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: #fff;
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

blockquote {
  margin: 20px 0;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.22;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(38, 74, 61, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 12px 25px rgba(45, 42, 38, 0.04);
}

summary {
  padding: 20px 22px;
  color: var(--green);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--gold);
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 60px;
}

.cta-band {
  background: var(--cream);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(38, 74, 61, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-top: 14px;
  color: var(--muted);
}

.contact-layout {
  align-items: start;
}

.contact-info address {
  margin-top: 22px;
  font-style: normal;
}

.phone-line {
  margin-top: 18px;
}

.phone-line a {
  color: var(--green);
  font-weight: 800;
}

.hours {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  color: var(--muted);
}

.hours strong {
  color: var(--green);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field.full,
.quote-form .btn,
.form-success {
  grid-column: 1 / -1;
}

label {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(45, 42, 38, 0.16);
  border-radius: 14px;
  color: var(--charcoal);
  background: #fff;
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 163, 74, 0.16);
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #b23b3b;
}

.field small {
  min-height: 18px;
  color: #b23b3b;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-success {
  color: var(--green);
  font-weight: 800;
}

.map-wrap {
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.footer {
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: 34px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid !important;
  width: 42px !important;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(38, 74, 61, 0.16);
  border-radius: 50%;
  color: var(--green) !important;
  background: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
}

.preview-watermark {
  position: fixed;
  z-index: 45;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: calc(100vw - 36px);
  padding: 9px 13px;
  border: 1px solid rgba(200, 163, 74, 0.36);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(23, 52, 42, 0.78);
  box-shadow: 0 12px 28px rgba(23, 21, 18, 0.2);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-watermark strong {
  color: #fff;
}

.floating-ctas {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.floating-ctas a,
.scroll-top {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(38, 74, 61, 0.24);
  font-weight: 800;
}

.float-call {
  padding: 10px 16px;
  background: var(--gold);
}

.float-quote {
  padding: 10px 16px;
  background: var(--green);
}

.scroll-top {
  position: fixed;
  z-index: 42;
  right: 18px;
  bottom: 78px;
  width: 46px;
  opacity: 0;
  pointer-events: none;
  background: var(--green-dark);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 88px;
  left: 18px;
  display: none;
  max-width: 560px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  color: var(--charcoal);
  font-weight: 700;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 8px 16px;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(13, 28, 22, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: min(82vh, 900px);
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.animations-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 13px;
  }

  .nav-menu a {
    font-size: 0.76rem;
  }

  .service-grid,
  .directory-grid,
  .signature-grid,
  .simple-card-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --wrap: min(100% - 24px, 720px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-content: stretch;
    gap: 0;
    padding: 92px 24px 32px;
    background: rgba(255, 255, 255, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 0;
    color: var(--charcoal);
    border-bottom: 1px solid var(--line);
    font-family: Poppins, sans-serif;
    font-size: clamp(1.2rem, 6vw, 2.1rem);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 28, 22, 0.84), rgba(13, 28, 22, 0.42) 72%, rgba(13, 28, 22, 0.54)),
      linear-gradient(90deg, rgba(13, 28, 22, 0.35), transparent);
  }

  .section {
    padding: 72px 0;
  }

  .two-col,
  .split-simple,
  .faq-layout,
  .contact-layout,
  .service-detail,
  .editorial-grid,
  .spotlight-layout {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 380px;
  }

  .directory-card {
    min-height: 360px;
  }

  .directory-card h3 {
    margin-top: 190px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .masonry {
    grid-auto-rows: 165px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .hero-actions,
  .floating-ctas {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 170px;
  }

  .service-grid,
  .feature-grid,
  .download-grid,
  .menu-grid,
  .menu-list,
  .directory-grid,
  .signature-grid,
  .simple-card-grid.five,
  .gallery-preview,
  .hire-list,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .signature-panel {
    min-height: 230px;
  }

  .editorial-image {
    min-height: 300px;
  }

  .spotlight-list ul {
    columns: 1;
  }

  .service-card {
    min-height: auto;
  }

  .stats-grid div {
    padding: 18px;
  }

  .masonry {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .floating-ctas {
    right: 0;
    bottom: 0;
    left: 0;
    gap: 0;
  }

  .preview-watermark {
    right: 12px;
    bottom: 66px;
    left: 12px;
    justify-content: center;
    width: auto;
    border-radius: 10px;
  }

  .floating-ctas a {
    flex: 1;
    min-height: 54px;
    border-radius: 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 68px;
  }

  .cookie-banner {
    bottom: 66px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
