:root {
  --beige-50: #fbf8f1;
  --beige-100: #f5efe3;
  --beige-200: #e9decc;
  --beige-300: #d8c8b2;
  --beige-400: #bba78e;
  --beige-500: #97836d;
  --beige-600: #6f604f;
  --ink: #211c16;
  --ink-soft: #3d352b;
  --muted: #746b60;
  --white: #ffffff;
  --line: rgba(61, 53, 43, 0.14);
  --line-strong: rgba(61, 53, 43, 0.24);
  --shadow: 0 24px 70px rgba(48, 39, 30, 0.1);
  --soft-shadow: 0 16px 44px rgba(48, 39, 30, 0.08);
  --radius: 6px;
  --section-pad: 112px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige-50);
  color: var(--ink-soft);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a,
button,
input,
select,
textarea,
.project-card,
.testimonial-card,
.gallery-card,
.svc-card,
.story-card,
.value-card,
.founder-card,
.style-card,
.why-card,
.areas-panel span,
.consult-card,
.map-frame,
.brochure-card,
.brochure-media img,
.filter-btn {
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
}

section {
  padding: var(--section-pad) 32px;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section-band {
  background: var(--beige-100);
}

.eyebrow,
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--beige-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.s-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--beige-500);
}

.section-kicker {
  color: var(--beige-600);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.s-title,
.section-title {
  max-width: 760px;
  font-size: 4rem;
}

.s-title em,
.section-title em,
.accent-text {
  color: var(--beige-600);
  font-style: italic;
}

.s-title.on-dark {
  color: var(--beige-50);
}

.s-sub,
.section-subtitle {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}

.section-head.center {
  display: block;
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head.center .eyebrow,
.section-head.center .s-label {
  justify-content: center;
}

.section-head.center .eyebrow::before,
.section-head.center .s-label::before {
  display: none;
}

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-ghost,
.btn-link,
.btn-submit,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-dark,
.btn-submit,
.submit-btn {
  background: var(--ink);
  color: var(--beige-50);
}

.btn-primary:hover,
.btn-dark:hover,
.btn-submit:hover,
.submit-btn:hover {
  background: var(--beige-600);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--beige-600);
  background: var(--beige-100);
  transform: translateY(-2px);
}

.btn-link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--beige-600);
  background: transparent;
  text-transform: none;
}

.btn-link:hover {
  color: var(--ink);
}

.fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.page-hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  place-items: end start;
  padding: 150px 32px 72px;
  overflow: hidden;
  background: var(--beige-200);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 28, 22, 0.68), rgba(33, 28, 22, 0.16));
  z-index: 1;
}

.page-hero > img,
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  color: var(--beige-50);
}

.page-hero h1,
.page-hero h2 {
  max-width: 760px;
  color: var(--beige-50);
  font-size: 4.6rem;
}

.page-hero p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(251, 248, 241, 0.82);
  font-size: 1.04rem;
}

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

.field,
.fg,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  color: var(--beige-600);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-50);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--beige-600);
  box-shadow: 0 0 0 3px rgba(151, 131, 109, 0.14);
}

.message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--beige-100);
  color: var(--ink);
  border: 1px solid var(--line);
}

.message.visible {
  display: block;
}

@media (max-width: 980px) {
  :root {
    --section-pad: 82px;
  }

  .section-head {
    display: block;
  }

  .section-head .btn-primary,
  .section-head .btn-dark,
  .section-head .btn-secondary {
    margin-top: 28px;
  }

  .s-title,
  .section-title,
  .page-hero h1,
  .page-hero h2 {
    font-size: 3.1rem;
  }
}

@media (max-width: 640px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-hero {
    min-height: 70vh;
    padding: 132px 20px 56px;
  }

  .s-title,
  .section-title,
  .page-hero h1,
  .page-hero h2 {
    font-size: 2.48rem;
  }

  .s-sub,
  .section-subtitle,
  .page-hero p {
    font-size: 0.96rem;
  }

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

  .hero-actions a,
  .page-actions a,
  .hero-actions button,
  .page-actions button {
    width: 100%;
  }

  .btn-primary,
  .btn-dark,
  .btn-submit,
  .submit-btn {
    min-height: 54px;
    box-shadow: 0 14px 34px rgba(33, 28, 22, 0.16);
  }
}
