/* ==========================================================================
   West Gardiner Welding

   Palette:
   - Deep Charcoal (header/footer)   : #1E2328
   - Steel Gray (dark sections)      : #2D3640
   - Forge Orange (primary accent)   : #D4721A
   - Copper (secondary accent)       : #B87333
   - Light Steel (backgrounds)       : #F2EFEB
   - Carbon (text)                   : #1C1C1E
   - Anvil (card backgrounds)        : #E8E4DE
   - Iron (subtle borders/muted)     : #7A7D82
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1C1C1E;
  line-height: 1.7;
  background: #F2EFEB;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.topnav.scrolled {
  background: rgba(30, 35, 40, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  color: #F2EFEB;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #F2EFEB;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #D4721A;
}

.nav-cta {
  background: #D4721A;
  color: #1E2328 !important;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  font-weight: 700;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #B87333 !important;
  color: #F2EFEB !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F2EFEB;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 35, 40, 0.97);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }

  .nav-links li {
    padding: 0.6rem 0;
  }

  .topnav.open .nav-links {
    display: flex;
  }

  .topnav.open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .topnav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .topnav.open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-banner.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 35, 40, 0.7) 0%,
    rgba(30, 35, 40, 0.4) 40%,
    rgba(30, 35, 40, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: #F2EFEB;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.tagline {
  font-size: 1.25rem;
  font-style: italic;
  color: #D4721A;
  margin-bottom: 1rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 114, 26, 0.15);
  border: 1px solid rgba(212, 114, 26, 0.4);
  color: #F2EFEB;
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.veteran-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-block;
  background: #D4721A;
  color: #1E2328;
  text-decoration: none;
  padding: 1rem 2.8rem;
  font-size: 1.1rem;
  font-family: Georgia, serif;
  font-weight: 700;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #B87333;
  color: #F2EFEB;
  transform: translateY(-1px);
}

/* ==========================================================================
   Sections — shared
   ========================================================================== */

section {
  padding: 4.5rem 0;
}

section h2 {
  font-size: 1.8rem;
  color: #2D3640;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* ==========================================================================
   Services Overview (index page)
   ========================================================================== */

.services {
  background: #F2EFEB;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #E8E4DE;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(28, 28, 30, 0.14);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 1.5rem;
  color: #D4721A;
}

.service-icon svg {
  width: 56px;
  height: 56px;
}

.service-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 3px solid #B87333;
}

.service-body h3 {
  font-size: 1.15rem;
  color: #2D3640;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
}

.service-body h3 a {
  color: #2D3640;
  text-decoration: none;
  border-bottom: 2px solid #D4721A;
  transition: color 0.2s;
}

.service-body h3 a:hover {
  color: #B87333;
}

.service-body p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  position: relative;
  overflow: hidden;
  background: #E8E4DE;
}

.about-inner {
  position: relative;
}

.about h2 {
  color: #2D3640;
}

.about p {
  max-width: 720px;
  margin: 0 auto 1.25rem;
  text-align: center;
  font-size: 1.1rem;
}

.about strong {
  color: #B87333;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  background: #1E2328;
  color: #F2EFEB;
}

.gallery h2 {
  color: #F2EFEB;
}

.gallery-intro {
  text-align: center;
  color: #7A7D82;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #2D3640;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A7D82;
  font-size: 0.85rem;
  font-style: italic;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: #2D3640;
  color: #F2EFEB;
  text-align: center;
}

.contact h2 {
  color: #F2EFEB;
}

.contact-intro {
  color: #7A7D82;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 540px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(242, 239, 235, 0.07);
  border: 1px solid rgba(212, 114, 26, 0.25);
  padding: 2rem 2.5rem;
  border-radius: 6px;
  min-width: 240px;
  text-decoration: none;
  color: #F2EFEB;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.contact-card:hover {
  background: rgba(212, 114, 26, 0.12);
  border-color: #D4721A;
  transform: translateY(-2px);
}

.contact-icon {
  width: 36px;
  height: 36px;
  color: #D4721A;
  margin-bottom: 0.75rem;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A7D82;
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F2EFEB;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #14171B;
  color: #7A7D82;
  text-align: center;
  padding: 2rem 1.5rem;
}

.footer-inner p {
  font-size: 0.85rem;
}

.footer-tagline {
  margin-top: 0.3rem;
  font-style: italic;
  font-size: 0.8rem;
  color: #5A5D62;
}

/* ==========================================================================
   Page Hero (subpages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, #1E2328 0%, #2D3640 60%, #3A4550 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  color: #F2EFEB;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Compact variant — used on the Pricing page */
.page-hero-compact {
  padding: 6rem 1.5rem 2.5rem;
}

.page-hero-compact h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-hero-compact .tagline {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.process-pills {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.process-pills-label {
  color: #7A7D82;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.process-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(212, 114, 26, 0.15);
  border: 1px solid rgba(212, 114, 26, 0.5);
  color: #F2EFEB;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.process-pill:hover {
  background: #D4721A;
  color: #1E2328;
}

.process-pill-more {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  color: #D4721A;
  text-decoration: none;
  font-size: 0.9rem;
  font-style: italic;
  transition: color 0.2s;
}

.process-pill-more:hover {
  color: #F2EFEB;
}

/* Give anchor targets breathing room under the sticky nav */
#processes {
  scroll-margin-top: 70px;
  background: #E8E4DE;
}

/* ==========================================================================
   Services Page — Pricing
   ========================================================================== */

.pricing {
  background: #E8E4DE;
  padding: 4.5rem 0;
}

.pricing h2 {
  text-align: center;
  color: #2D3640;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  text-align: center;
  color: #7A7D82;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 540px) {
  .price-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.price-card {
  background: #F2EFEB;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 240px;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.08);
  border-top: 3px solid #7A7D82;
}

.price-card-main {
  border-top-color: #D4721A;
}

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7A7D82;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2D3640;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.price-amount span {
  font-size: 1.1rem;
  font-weight: 400;
  color: #7A7D82;
}

.price-desc {
  font-size: 0.9rem;
  color: #1C1C1E;
  max-width: 220px;
  margin: 0 auto;
}

/* Rate columns (on-site vs shop) */
.rate-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .rate-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.rate-tier {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-label {
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  margin: 0;
}

.tier-shop {
  background: #2D3640;
  color: #D4721A;
}

.tier-onsite {
  background: #1C1C1E;
  color: #D4721A;
}

.rate-tier .price-card {
  min-width: unset;
}

/* Price example boxes */
.price-example {
  max-width: 440px;
  margin: 0 auto 2rem;
  background: #F2EFEB;
  border-radius: 6px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(28, 28, 30, 0.06);
}

.price-example h3,
.price-example h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A7D82;
  margin-bottom: 0.75rem;
  text-align: center;
}

.price-example table {
  width: 100%;
  border-collapse: collapse;
}

.price-example td {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.price-right {
  text-align: right;
  white-space: nowrap;
}

.price-total td {
  border-top: 2px solid #B87333;
  padding-top: 0.6rem;
  font-size: 1.05rem;
}

.price-notes {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.price-notes p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.price-notes a {
  color: #B87333;
  text-decoration: none;
  font-weight: 700;
}

.price-notes a:hover {
  color: #D4721A;
}

/* ==========================================================================
   How It Works
   ========================================================================== */

.how-it-works {
  background: #F2EFEB;
  padding: 4.5rem 0;
}

.how-it-works h2 {
  text-align: center;
  color: #2D3640;
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2D3640;
  color: #D4721A;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  color: #2D3640;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   Service Detail Cards (services page)
   ========================================================================== */

.service-detail {
  padding: 4.5rem 0;
}

.service-detail:nth-child(even) {
  background: #E8E4DE;
}

.service-detail h2 {
  text-align: center;
  color: #2D3640;
  margin-bottom: 1rem;
}

.service-detail-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.service-detail-body p {
  margin-bottom: 1rem;
}

.service-detail-body ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.service-detail-body li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.process-heading {
  font-size: 1.15rem;
  color: #2D3640;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #D4721A;
  letter-spacing: 0.01em;
}

.process-heading strong,
.service-detail-body strong {
  color: #B87333;
}

/* ==========================================================================
   Materials Notice
   ========================================================================== */

.materials-notice {
  background: #2D3640;
  color: #F2EFEB;
  padding: 3rem 0;
  text-align: center;
}

.materials-notice h2 {
  color: #F2EFEB;
  margin-bottom: 1rem;
}

.materials-notice p {
  max-width: 640px;
  margin: 0 auto 0.75rem;
  font-size: 1.05rem;
}

.materials-notice strong {
  color: #D4721A;
}

/* ==========================================================================
   About — portrait + credentials + attributed quote
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr 220px;
    gap: 2.5rem;
  }
}

.about-copy p {
  text-align: left;
  max-width: none;
  margin: 0 0 1.1rem;
}

.about-portrait {
  text-align: center;
}

.about-portrait img {
  width: 100%;
  max-width: 220px;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  filter: grayscale(100%);
  display: block;
  margin: 0 auto;
}

.about-portrait-caption {
  text-align: center;
  font-size: 0.8rem;
  color: #7A7D82;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Credentials strip */
.credentials-strip {
  list-style: none;
  padding: 1.2rem 1rem;
  margin: 2rem auto 1.5rem;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  border-top: 1px solid rgba(184, 115, 51, 0.35);
  border-bottom: 1px solid rgba(184, 115, 51, 0.35);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D3640;
  font-weight: 700;
}

.credentials-strip li {
  white-space: nowrap;
}

.cred-icon {
  color: #D4721A;
  margin-right: 0.2rem;
}

/* Attributed Dave quote */
.dave-quote {
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 1.5rem 1.75rem;
  background: rgba(212, 114, 26, 0.08);
  border-left: 4px solid #D4721A;
  border-radius: 0 4px 4px 0;
}

.dave-quote blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #2D3640;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.dave-quote figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #7A7D82;
  text-align: right;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   From the Bench — dated log
   ========================================================================== */

.from-the-bench {
  background: #F2EFEB;
  padding: 4rem 0;
}

.from-the-bench h2 {
  text-align: center;
  color: #2D3640;
  margin-bottom: 0.5rem;
}

.bench-intro {
  text-align: center;
  color: #7A7D82;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-style: italic;
}

.bench-log {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bench-entry {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1rem 1.25rem;
  background: #E8E4DE;
  border-left: 3px solid #B87333;
  border-radius: 0 4px 4px 0;
}

.bench-entry time {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A7D82;
  font-weight: 700;
  padding-top: 0.2rem;
}

.bench-entry blockquote {
  margin: 0;
}

.bench-entry blockquote p {
  font-style: italic;
  color: #1C1C1E;
  margin: 0;
  line-height: 1.55;
}

.bench-photo {
  float: right;
  width: 150px;
  margin: 0 0 0.5rem 1rem;
  shape-outside: margin-box;
}

.bench-photo img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 560px) {
  .bench-photo {
    float: none;
    width: 180px;
    margin: 0 auto 0.75rem;
  }
}

.bench-attribution {
  text-align: center;
  margin-top: 1.5rem;
  color: #7A7D82;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Hammer PSA — personality aside
   ========================================================================== */

.hammer-psa {
  background: #E8E4DE;
  padding: 3.5rem 0;
  text-align: center;
}

.hammer-psa h2 {
  color: #2D3640;
  margin-bottom: 0.6rem;
}

.hammer-psa-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: #1C1C1E;
  font-style: italic;
}

.hammer-distinction-figure {
  max-width: 560px;
  margin: 0 auto;
}

.hammer-distinction-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.hammer-distinction-figure figcaption {
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: #7A7D82;
  font-style: italic;
  max-width: 480px;
}

.hammer-quote {
  max-width: 520px;
  margin: 1.75rem auto 0;
  padding: 1rem 1.5rem;
  background: rgba(212, 114, 26, 0.08);
  border-left: 4px solid #D4721A;
  border-radius: 0 4px 4px 0;
  text-align: left;
}

.hammer-quote blockquote p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #2D3640;
  line-height: 1.5;
}

.hammer-quote figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #7A7D82;
  text-align: right;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Shop hours sign
   ========================================================================== */

.shop-hours-sign {
  max-width: 340px;
  margin: 0 auto 2.5rem;
  background: #F2EFEB;
  color: #1C1C1E;
  padding: 1.25rem 1.5rem;
  border: 1px dashed #B87333;
  border-radius: 4px;
  text-align: center;
  transform: rotate(-0.75deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.shop-hours-heading {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B87333;
  margin-bottom: 0.5rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(184, 115, 51, 0.3);
  padding-bottom: 0.4rem;
}

.shop-hours-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  color: #2D3640;
}

/* ==========================================================================
   Subpage 2-column layout (content left, sidebar right)
   ========================================================================== */

.section-2col {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 760px) {
  .section-2col {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
  }
}

/* Left-align the section heading & body when in 2-col (override centered defaults) */
.section-2col h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.section-2col .service-detail-body {
  max-width: none;
  margin: 0;
}

.section-2col-content p {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-2col-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 80px;
}

@media (max-width: 759px) {
  .section-2col-aside {
    position: static;
  }
}

.sidebar-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

/* Mini contact card — used in sidebar aside */
.mini-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.25rem 1rem;
  background: #F2EFEB;
  border: 1px solid #B87333;
  border-radius: 6px;
  text-decoration: none;
  color: #1C1C1E;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.mini-contact:hover {
  background: #E8E4DE;
  border-color: #D4721A;
  transform: translateY(-2px);
}

.mini-contact-icon {
  width: 28px;
  height: 28px;
  color: #D4721A;
  margin-bottom: 0.25rem;
}

.mini-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7A7D82;
}

.mini-contact-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D3640;
}

.mini-contact-sub {
  font-size: 0.8rem;
  color: #7A7D82;
  font-style: italic;
  margin-top: 0.15rem;
}

/* ==========================================================================
   Mobile refinements
   ========================================================================== */

@media (max-width: 480px) {
  .hero {
    min-height: 52vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.05rem;
  }

  section {
    padding: 3rem 0;
  }

  section h2 {
    font-size: 1.4rem;
  }

  .contact-card {
    min-width: unset;
    width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 720px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
