/* ───────────────────────────────────────────
   High Tolerance Tattoos — Custom Styles
   Palette: Forest Green + Off-White
   Fonts: Cormorant Garamond + Karla
──────────────────────────────────────────── */

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

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #52B788;
  --cream: #F0EDE5;
  --cream-light: #F7F5EF;
  --cream-dark: #E8E4DA;
  --charcoal: #1A1A1A;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Karla', 'Helvetica Neue', Arial, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--green-deep);
  color: var(--cream);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.skip-link:focus {
  top: var(--space-sm);
}

/* ───────────────────────────────────────────
   Buttons
──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240, 237, 229, 0.4);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(240, 237, 229, 0.08);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--outline:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.btn--full { width: 100%; }

.btn--nav {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ───────────────────────────────────────────
   Section Shared
──────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: var(--space-md);
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-light);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ───────────────────────────────────────────
   Header
──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(27, 67, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo--footer {
  .logo-mark {
    background: var(--green-deep);
    color: var(--cream);
  }
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--green-deep);
}

.logo-secondary {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-mid);
  letter-spacing: 0.02em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-mid);
  transition: var(--transition);
}
.site-nav a:not(.btn):hover {
  color: var(--green-deep);
}
.site-nav a:not(.btn):hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green-deep);
  transition: var(--transition);
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ───────────────────────────────────────────
   Hero — Split Layout
──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(64, 145, 108, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.hero-content {
  padding-right: var(--space-md);
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: var(--space-md);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-pale);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(240, 237, 229, 0.75);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(240, 237, 229, 0.6);
  letter-spacing: 0.04em;
}
.trust-item svg {
  color: var(--green-pale);
  flex-shrink: 0;
}

/* Hero Images */
.hero-image-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: absolute;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image--main {
  width: 75%;
  height: 85%;
  top: 5%;
  right: 0;
  z-index: 1;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-image--accent {
  width: 55%;
  height: 45%;
  bottom: 0;
  right: 25%;
  z-index: 2;
  border: 4px solid var(--green-deep);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.hero-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 5%;
  z-index: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle, var(--green-pale) 1px, transparent 1px);
  background-size: 12px 12px;
}

/* ───────────────────────────────────────────
   About
──────────────────────────────────────────── */
.about {
  padding: var(--space-2xl) 0;
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(27, 67, 50, 0.12);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content .section-eyebrow { margin-bottom: var(--space-sm); }
.about-content .section-title { margin-bottom: var(--space-md); }

.about-content p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.about-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--cream-dark);
}

.stat {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ───────────────────────────────────────────
   Services
──────────────────────────────────────────── */
.services {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.services .section-header {
  margin-bottom: var(--space-lg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.1);
  border-color: rgba(27, 67, 50, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(27, 67, 50, 0.06);
  color: var(--green-deep);
  margin-bottom: var(--space-sm);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green-deep);
  color: var(--cream);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: var(--space-xs);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ───────────────────────────────────────────
   Portfolio
──────────────────────────────────────────── */
.portfolio {
  padding: var(--space-2xl) 0;
  background: var(--cream-light);
}

.portfolio .section-header {
  margin-bottom: var(--space-lg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: auto;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  font-style: italic;
}

/* ───────────────────────────────────────────
   Process
──────────────────────────────────────────── */
.process {
  padding: var(--space-2xl) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(64, 145, 108, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.process .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-lg);
}
.process .section-eyebrow { color: var(--green-pale); }
.process .section-title { color: var(--cream); }
.process .section-title em { color: var(--green-pale); }
.process .section-desc { color: rgba(240, 237, 229, 0.6); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: var(--space-md);
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(82, 183, 136, 0.15);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.step-desc {
  font-size: 0.9375rem;
  color: rgba(240, 237, 229, 0.6);
  line-height: 1.75;
}

/* ───────────────────────────────────────────
   Testimonial
──────────────────────────────────────────── */
.testimonial {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  color: var(--green-pale);
  opacity: 0.4;
  margin-bottom: var(--space-md);
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--green-deep);
  margin-bottom: var(--space-md);
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  font-style: normal;
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────
   FAQ
──────────────────────────────────────────── */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--cream-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-lg);
  align-items: start;
}

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header .section-desc {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(27, 67, 50, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--green-mid);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.06);
  transition: var(--transition);
}
.faq-item.active .faq-toggle {
  background: var(--green-deep);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-item.active .faq-toggle svg {
  stroke: var(--cream);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-answer a {
  color: var(--green-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover {
  color: var(--green-deep);
}

/* ───────────────────────────────────────────
   Contact
──────────────────────────────────────────── */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info .section-eyebrow { margin-bottom: var(--space-sm); }
.contact-info .section-title { margin-bottom: var(--space-sm); }

.contact-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.contact-detail svg {
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.15rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-detail a:hover {
  color: var(--green-mid);
  text-decoration: underline;
}

.contact-hours {
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 67, 50, 0.06);
}
.contact-hours strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.contact-hours span {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(27, 67, 50, 0.06);
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream-light);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-sm) var(--space-md);
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  font-size: 0.9375rem;
  margin-top: var(--space-xs);
}
.form-success svg {
  flex-shrink: 0;
  color: var(--green-mid);
}

/* ───────────────────────────────────────────
   Footer
──────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(240, 237, 229, 0.6);
  padding: var(--space-xl) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-col strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(240, 237, 229, 0.5);
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--green-pale);
}

.footer-col address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-col p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 237, 229, 0.08);
  padding: var(--space-md) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(240, 237, 229, 0.35);
}
.footer-bottom a {
  color: rgba(240, 237, 229, 0.35);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--green-pale);
}

/* ───────────────────────────────────────────
   Responsive
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
    order: 2;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap {
    order: 1;
    min-height: 360px;
    height: 400px;
  }
  .hero-image--main { width: 70%; height: 100%; }
  .hero-image--accent { width: 50%; height: 55%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }

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

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-header { position: static; }

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

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream-light);
    padding: 100px var(--space-md) var(--space-md);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }
  .site-nav.open { right: 0; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .site-nav a {
    font-size: 1.0625rem;
    color: var(--text-dark);
  }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: var(--space-lg); }
  .hero-image-wrap { min-height: 280px; height: 300px; }
  .hero-image--main { width: 80%; height: 85%; }
  .hero-image--accent { width: 55%; height: 55%; right: 5%; }

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

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

  .process-steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; }

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

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

/* ───────────────────────────────────────────
   Animations
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
