:root {
  --black: #111111;
  --charcoal: #222222;
  --gray: #6f6f6f;
  --light-gray: #f2f2f2;
  --line: #dedede;
  --white: #ffffff;
  --cream: #f8f5ef;
  --copper: #a86134;
  --copper-dark: #7e4628;
  --shadow: 0 24px 70px rgba(0,0,0,.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  filter: grayscale(100%) contrast(1.06);
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 18px;
}

.brand span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: .04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
}

.nav-menu a:hover {
  color: var(--copper);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.dark {
  background: var(--black);
  color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--black);
  border-color: var(--line);
}

.btn.light:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn.outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn.full {
  width: 100%;
  margin-top: 22px;
}

/* TYPOGRAPHY */

.label {
  margin: 0 0 14px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.light-label {
  color: #e0aa83;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 94px);
  line-height: .92;
  letter-spacing: -.075em;
  margin-bottom: 24px;
  color: var(--black);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.055em;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 10px;
}

/* HOME */

.hero {
  padding: 92px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 76px;
  align-items: center;
}

.hero-lead {
  font-size: 23px;
  max-width: 780px;
  color: #444;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: 50% 34%;
  border-radius: 16px;
  background: #eeeeee;
}

.hero-card div {
  padding: 18px 6px 4px;
}

.hero-card strong {
  display: block;
  font-size: 21px;
  margin-bottom: 6px;
}

.hero-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* HOME FOCUS RAIL */

.focus-rail {
  background: var(--black);
  color: var(--white);
  padding: 34px 0;
}

.focus-rail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.focus-rail article {
  border-left: 4px solid var(--copper);
  padding: 8px 24px 8px 20px;
}

.focus-rail span {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 7px;
}

.focus-rail p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  line-height: 1.45;
}

.profile-preview {
  padding: 90px 0;
  background: var(--white);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 62px;
  align-items: start;
}

.preview-copy p {
  color: #505050;
  font-size: 18px;
}

.quote-card {
  border-top: 8px solid var(--copper);
  background: var(--light-gray);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 34px;
}

.quote-card p {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 18px;
}

.quote-card span {
  color: var(--copper);
  font-weight: 900;
}

.text-link {
  color: var(--copper);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(168,97,52,.25);
}

.image-feature {
  padding: 90px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-feature-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: center;
}

.image-feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eeeeee;
}

.image-feature p {
  color: #505050;
  font-size: 18px;
}

.values {
  padding: 90px 0;
  background: var(--white);
}

.light-section {
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 820px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.values-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.values-grid span {
  display: inline-block;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.values-grid p {
  color: var(--gray);
  margin-bottom: 0;
}

.final-cta {
  background: var(--black);
  color: var(--white);
  padding: 86px 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255,255,255,.74);
  max-width: 760px;
  margin: 0 auto 26px;
}

.center {
  justify-content: center;
}

/* PAGE HERO */

.page-hero {
  padding: 86px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 70px;
  align-items: center;
}

.page-hero p {
  color: #505050;
  font-size: 21px;
}

.page-hero img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: 50% 36%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eeeeee;
}

/* ABOUT ARTICLE */

.article-section {
  padding: 90px 0;
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 62px;
  align-items: start;
}

.main-article {
  max-width: 790px;
}

.main-article p {
  color: #505050;
  font-size: 18px;
}

.article-lead {
  font-size: 29px !important;
  line-height: 1.36;
  color: var(--black) !important;
  font-weight: 900;
  letter-spacing: -.035em;
}

.side-panel {
  position: sticky;
  top: 105px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.side-panel h2 {
  font-size: 34px;
}

.side-panel ul {
  padding-left: 19px;
  color: #505050;
  font-weight: 700;
}

.side-panel li {
  margin-bottom: 10px;
}

.personal-intro {
  background: var(--black);
  color: var(--white);
  padding: 88px 0;
}

.personal-box {
  max-width: 980px;
}

.personal-box blockquote {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 900;
}

/* BUSINESS PAGE */

.business-hero {
  padding: 96px 0;
  background: var(--black);
  color: var(--white);
}

.business-hero-inner {
  max-width: 950px;
}

.business-hero h1 {
  color: var(--white);
}

.business-hero p {
  font-size: 23px;
  color: rgba(255,255,255,.76);
}

.business-overview {
  padding: 90px 0;
  background: var(--white);
}

.business-overview-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 70px;
  align-items: center;
}

.business-overview p {
  color: #505050;
  font-size: 18px;
}

.business-overview img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eeeeee;
}

.service-list-section {
  padding: 90px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list div {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.service-list span {
  color: var(--copper);
  font-weight: 900;
  letter-spacing: .14em;
}

.service-list h3 {
  margin-bottom: 0;
}

.service-list p {
  color: var(--gray);
  margin-bottom: 0;
}

.links-section {
  padding: 90px 0;
  background: var(--white);
}

.links-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 60px;
}

.links-grid p {
  color: #505050;
  font-size: 18px;
}

.external-links {
  display: grid;
  gap: 14px;
}

.external-links a {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--black);
  text-decoration: none;
  border-radius: 16px;
  padding: 24px;
  font-size: 22px;
  font-weight: 900;
}

.external-links a span {
  display: block;
  color: var(--copper);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

/* CONTACT PAGE */

.contact-hero {
  padding: 86px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 70px;
  align-items: center;
}

.contact-grid p {
  color: #505050;
  font-size: 21px;
  max-width: 720px;
}

.contact-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: 50% 34%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eeeeee;
}

.contact-cards {
  padding: 44px 0;
  background: var(--black);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card-grid a {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  text-decoration: none;
  border-radius: 16px;
  padding: 24px;
  font-size: 22px;
  font-weight: 900;
}

.contact-card-grid a span {
  display: block;
  color: #e0aa83;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 7px;
}

.contact-note-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-note {
  max-width: 880px;
  border-left: 7px solid var(--copper);
  padding-left: 32px;
}

.contact-note p {
  color: #505050;
  font-size: 20px;
}

/* FOOTER */

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.footer-inner strong {
  color: var(--white);
}

.footer-inner a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-weight: 800;
  margin-left: 18px;
}

.footer-inner a:hover {
  color: #e0aa83;
}

/* RESPONSIVE */

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    right: 21px;
    top: 70px;
    width: min(310px, calc(100vw - 42px));
    display: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 15px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    padding: 10px;
  }

  .hero-grid,
  .preview-grid,
  .image-feature-grid,
  .page-hero-grid,
  .article-layout,
  .business-overview-grid,
  .links-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .page-hero img,
  .business-overview img,
  .contact-grid img {
    max-width: 360px;
  }

  .focus-rail-grid,
  .values-grid,
  .values-grid.three,
  .contact-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .profile-preview,
  .image-feature,
  .values,
  .page-hero,
  .article-section,
  .personal-intro,
  .business-hero,
  .business-overview,
  .service-list-section,
  .links-section,
  .contact-hero,
  .contact-note-section {
    padding: 56px 0;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead,
  .business-hero p,
  .contact-grid p,
  .page-hero p {
    font-size: 19px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .focus-rail-grid,
  .values-grid,
  .values-grid.three,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer-inner a {
    display: inline-block;
    margin: 12px 14px 0 0;
  }

  .quote-card p {
    font-size: 24px;
  }
}