/* ─── Design tokens (brand preserved) ─── */
:root {
  --sage: #2e4f4f;
  --bronze: #a47e3b;
  --terracotta: #c85c43;
  --alabaster: #fdfbf7;
  --slate: #2c3333;
  --cream: #f9f9f5;
  --stone: #f7f7f5;
  --card: #f1f1ee;
  --footer: #1a241e;
  --muted: #5a5f5f;
  --gold-light: #d2c19a;
  --gold-rule: #b89b5e;
  --shadow-soft: 0 4px 24px -4px rgba(44, 51, 51, 0.08);
  --shadow-card: 0 8px 32px -8px rgba(44, 51, 51, 0.12);
  --shadow-lift: 0 16px 48px -12px rgba(44, 51, 51, 0.14);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  hyphens: auto;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Section anchors (fixed header) ─── */
#about-us,
#pillars,
#projects,
#contactinfo,
#hero {
  scroll-margin-top: 4.5rem;
}

@media (min-width: 640px) {

  #about-us,
  #pillars,
  #projects,
  #contactinfo,
  #hero {
    scroll-margin-top: 5.5rem;
  }
}

/* ─── Navigation ─── */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 79, 79, 0.08);
  transition: box-shadow 0.3s var(--ease);
}

.nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--sage);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-mobile-panel {
  overflow: hidden;
  max-height: 0;
  border-top: 0 solid rgba(46, 79, 79, 0.08);
  transition: max-height 0.35s var(--ease), border-top-width 0.35s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-toggle:checked~.nav-mobile-panel {
  max-height: 25rem;
  border-top-width: 1px;
}

.nav-toggle:checked+div .nav-menu-btn .nav-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked+div .nav-menu-btn .nav-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked+div .nav-menu-btn .nav-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-bar {
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  border-bottom: 1px solid rgba(46, 79, 79, 0.06);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.nav-mobile-link:last-child {
  border-bottom: none;
}

.nav-mobile-link:hover {
  color: var(--sage);
  background: rgba(46, 79, 79, 0.02);
  padding-left: 1.5rem;
}

/* ─── Shared UI ─── */
.section-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.section-eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .section-eyebrow::before {
    width: 2rem;
  }
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: -0.02em;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.responsive-title {
  font-size: clamp(2rem, 8vw, 4rem);
}

.responsive-heading {
  font-size: clamp(1.75rem, 6vw, 3.25rem);
}

.responsive-heading-sm {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.section-divider {
  width: 4rem;
  height: 2px;
  background: var(--gold-rule);
  margin: 1.25rem auto 0;
}

@media (min-width: 640px) {
  .section-divider {
    width: 5.5rem;
    margin-top: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  box-shadow: 0 2px 12px -2px rgba(200, 92, 67, 0.35);
}

.btn-primary:hover {
  background: #b5523d;
  border-color: #b5523d;
  box-shadow: 0 6px 20px -4px rgba(200, 92, 67, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--sage);
  background: rgba(46, 79, 79, 0.04);
  border: 1px solid rgba(46, 79, 79, 0.15);
}

.btn-secondary:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-1px);
}

.btn-bronze {
  color: #fff;
  background: var(--bronze);
  border: 1px solid var(--bronze);
  box-shadow: 0 2px 12px -2px rgba(164, 126, 59, 0.3);
}

.btn-bronze:hover {
  background: #8f6d33;
  border-color: #8f6d33;
  transform: translateY(-1px);
}

.btn-ghost-light {
  color: var(--alabaster);
  background: rgba(253, 251, 247, 0.12);
  border: 1px solid rgba(253, 251, 247, 0.35);
}

.btn-ghost-light:hover {
  background: rgba(253, 251, 247, 0.2);
  border-color: rgba(253, 251, 247, 0.5);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: none;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(44, 51, 51, 0.78);
  max-width: 36rem;
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1.25rem;
  }
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(44, 51, 51, 0.5);
}

@media (min-width: 640px) {
  .hero-tagline {
    font-size: 0.8125rem;
  }
}

/* Hero — featured logo */
.hero-logo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  position: relative;
  width: 100%;
  padding: 1rem;
  background: var(--alabaster);
  border: 3px solid var(--sage);
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

@media (min-width: 640px) {
  .hero-logo-frame {
    padding: 1.25rem;
    border-width: 4px;
    outline-width: 4px;
    outline-offset: 4px;
  }
}

@media (min-width: 1024px) {
  .hero-logo-frame {
    padding: 1.5rem;
  }
}

.hero-logo-showcase:hover .hero-logo-frame {
  box-shadow:
    0 20px 56px -16px rgba(44, 51, 51, 0.2),
    0 0 0 1px rgba(164, 126, 59, 0.12);
  transform: translateY(-3px);
}

.hero-logo-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-break {
  height: clamp(1.5rem, 4vw, 3rem);
  background: #ffffff;
}

/* Shared luxury marble background */
.about-us,
.values-section,
.projects-section,
.site-footer {
  position: relative;
  background-color: #ffffff;
  border-top: none;
  border-bottom: none;
}

.about-us::before,
.values-section::before,
.projects-section::before,
.site-footer::before {
  content: none;
}

/* ─── About Us ─── */

.about-us-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 4.5rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .about-us-inner {
    padding: 5.5rem 2.5rem 6rem;
  }
}

@media (min-width: 1024px) {
  .about-us-inner {
    padding: 6.5rem 3rem 7rem;
  }
}

.about-us-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--slate);
  margin: 0 0 2.25rem;
  letter-spacing: -0.02em;
}

.about-us-title-line {
  display: block;
}

.about-us-accent-word {
  position: relative;
  display: inline-block;
}

.about-us-accent-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 3px;
  background: var(--bronze);
  opacity: 1;
}

.about-us-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0 0 1.5rem;
  max-width: 48rem;
}

.about-us-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about-us-text {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
  }
}

/* ─── Core Values ─── */
.values-section-inner {
  position: relative;
  z-index: 1;
}

.values-section-title {
  color: var(--slate);
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 1.25rem 0.75rem;
  text-align: center;
  background: var(--alabaster);
  border: 1px solid rgba(46, 79, 79, 0.12);
  border-radius: 2px;
  transition:
    background-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

@media (min-width: 640px) {
  .value-card {
    min-height: 18.75rem;
    padding: 2.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .value-card {
    min-height: 23.125rem;
  }
}

.value-card:hover {
  background: #ffffff;
  border-color: var(--bronze);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.value-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
  color: var(--bronze);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .value-card-number {
    margin-bottom: 2.5rem;
  }
}

.value-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--slate);
  letter-spacing: 0.01em;
}

@media (min-width: 640px) {
  .value-card-title {
    font-size: 1.375rem;
  }
}

/* ─── Projects ─── */
.projects-section-inner {
  position: relative;
  z-index: 1;
}

.projects-section-title {
  color: var(--slate);
}

.projects-section-eyebrow {
  color: #e8d4a8;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--slate);
  background-color: #ffffff;
  border: 1px solid rgba(46, 79, 79, 0.08);
  border-radius: 4px;
  box-shadow: 0 4px 20px -4px rgba(46, 79, 79, 0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

/* Removing fixed height to allow card to collapse to content */

.project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(46, 79, 79, 0.04);
}

.project-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

.project-card:hover .project-card-img {
  transform: scale(1.05);
}

.project-card:hover {
  border-color: rgba(46, 79, 79, 0.15);
  box-shadow: 0 12px 40px -8px rgba(46, 79, 79, 0.12);
  transform: translateY(-2px);
}

.project-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.project-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--slate);
}

@media (min-width: 640px) {
  .project-title {
    font-size: 2rem;
  }
}

.project-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.75rem;
}

@media (min-width: 640px) {
  .project-card-content {
    padding: 2.25rem 2.25rem 2.5rem;
  }
}

.project-body {
  flex-grow: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 2rem;
}

.project-features {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 2rem;
}

.project-features li {
  padding-left: 0.25rem;
}

.project-features li+li {
  margin-top: 0.5rem;
}

/* ─── Footer / Contact Info ─── */
.site-footer {
  color: var(--slate);
}

.site-footer-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.25rem 2.25rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .site-footer-main {
    padding: 3.75rem 1.5rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .site-footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4.5rem 2rem 3rem;
  }
}

@media (min-width: 1024px) {
  .site-footer-main {
    padding: 5rem 3rem 3.25rem;
  }
}

.site-footer-logo-box {
  display: inline-block;
  background: #fff;
  padding: 1.125rem 1.375rem;
  margin-bottom: 1.25rem;
  border-radius: 2px;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease);
}

.site-footer-logo-box:hover {
  transform: translateY(-2px);
}

.site-footer-logo-img {
  display: block;
  width: 9rem;
  max-width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .site-footer-logo-img {
    width: 11rem;
  }
}

.site-footer-contact {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate);
  margin: 0;
}

.site-footer-hours {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .site-footer-hours {
    max-width: 20rem;
  }
}

@media (min-width: 768px) {
  .site-footer-hours {
    margin-left: auto;
    text-align: right;
  }
}

.site-footer-hours-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.25rem;
}

.site-footer-hours-list {
  margin: 0;
  padding: 0;
}

.site-footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--slate);
}

@media (max-width: 350px) {
  .site-footer-hours-row {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(46, 79, 79, 0.05);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .site-footer-hours-row:last-child {
    border-bottom: none;
  }
}

@media (min-width: 640px) {
  .site-footer-hours-row {
    font-size: 0.9375rem;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .site-footer-hours-row {
    min-width: 18rem;
  }
}

.site-footer-hours-row dt {
  flex-shrink: 0;
  margin: 0;
  font-weight: 400;
}

.site-footer-hours-row dd {
  margin: 0;
  font-weight: 400;
  text-align: right;
  flex-shrink: 0;
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 1.25rem 2rem;
}

.site-footer-copyright {
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
  max-width: 24rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .site-footer-copyright {
    font-size: 0.8125rem;
    max-width: none;
  }
}

background: var(--accent-gold);
border-radius: 10px;
}