/* ============================================================
   JELINEK WELL DRILLING — Modern Redesign
   ============================================================ */

/* --- Variables --- */
:root {
  --navy:     #000066;
  --teal:     #177e84;
  --red:      #c0151e;
  --cream:    #efefe0;
  --tan:      #e1e1c4;
  --charcoal: #424251;
  --white:    #ffffff;
  --text:     #1f1f33;
  --muted:    #5a5a70;
  --border:   #d4d4b8;

  --font-head:   'Bree Serif', Georgia, serif;
  --font-script: 'Marck Script', cursive;
  --font-body:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-w:    1120px;
  --radius:   6px;
  --shadow:   0 2px 12px rgba(0,0,0,.10);
  --shadow-lg:0 6px 32px rgba(0,0,0,.14);
  --ease:     0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-size: 16px; line-height: 1.65;
        color: var(--text); background: var(--cream); }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--navy); text-decoration: none; }
a:hover { color: var(--teal); }
ul    { list-style: none; }
button { font-family: var(--font-body); }

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Type --- */
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.tagline {
  font-family: var(--font-script);
  color: var(--red);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}
.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  border-radius: 2px; margin-bottom: 24px;
}
.divider-c { margin-left: auto; margin-right: auto; }
.section-label {
  font-family: var(--font-script);
  color: var(--teal); font-size: 1.1rem;
  display: block; margin-bottom: 6px;
}

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 24px; gap: 16px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head); font-size: 1.05rem;
  color: var(--white); line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .08em;
}

/* Phone */
.header-phone {
  color: var(--white); font-size: 1.2rem; font-weight: 700;
  white-space: nowrap; letter-spacing: .02em;
}
.header-phone:hover { color: #9ee6ea; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600;
  padding: 7px 11px; border-radius: var(--radius); white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.site-nav a:hover,
.site-nav a.active { background: rgba(255,255,255,.13); color: var(--white); }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 7px 16px !important;
}
.nav-cta:hover { background: #a0101a !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   PAGE BANNER (inner pages)
   ================================================================ */

.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #001799 100%);
  padding: 52px 24px; text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: 6px; }
.page-banner .tagline { color: rgba(255,255,255,.8); font-size: 1.1rem; }

/* ================================================================
   HERO SLIDER
   ================================================================ */

.hero { position: relative; overflow: hidden; background: var(--navy); height: 540px; }
.slider { display: flex; height: 100%; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slide { flex: 0 0 100%; position: relative; }
.slide img { width: 100%; height: 540px; object-fit: cover; object-position: center; }
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,55,.72) 0%, rgba(0,0,40,.35) 60%, transparent 100%);
}
.slide-caption {
  position: absolute; top: 50%; left: 10%;
  transform: translateY(-50%);
  z-index: 2; max-width: 500px;
}
.slide-caption h2 {
  color: var(--white); font-size: clamp(1.6rem, 4vw, 2.75rem);
  text-shadow: 0 2px 8px rgba(0,0,0,.4); margin-bottom: 8px;
}
.slide-caption .tagline { color: #ffc8cb; font-size: clamp(1rem, 2.5vw, 1.4rem); }
.slide-caption p {
  color: rgba(255,255,255,.9); font-size: 1rem; margin: 10px 0 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Buttons */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; cursor: pointer; border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: #a0101a; border-color: #a0101a; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #0f6068; color: var(--white); }

/* Slider controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem;
  transition: background var(--ease); backdrop-filter: blur(4px);
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.slider-dot.active { background: var(--white); transform: scale(1.25); }

/* ================================================================
   HOME: SERVICES STRIP
   ================================================================ */

.services-strip { background: var(--white); padding: 56px 0; }
.strip-head { text-align: center; margin-bottom: 40px; }
.strip-head .divider { margin: 12px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--teal); }
.svc-icon {
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 36px; height: 36px; color: var(--teal); }
.service-card h3 { font-size: .95rem; color: var(--navy); }

/* ================================================================
   HOME: FEATURE SECTIONS
   ================================================================ */

.feature-section { padding: 80px 0; }
.feature-section.bg-white { background: var(--white); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.feature-grid.rev .feat-img { order: 2; }
.feature-grid.rev .feat-txt { order: 1; }
.feat-img img {
  border-radius: 8px; box-shadow: var(--shadow-lg);
  width: 100%; height: 400px; object-fit: cover;
}
.feat-txt h2 { margin-bottom: 8px; }
.feat-txt p { color: var(--muted); margin-bottom: 20px; }
.feat-txt .read-more { color: var(--teal); font-weight: 700; }
.feat-txt .read-more:hover { text-decoration: underline; }

/* ================================================================
   HOME: WHY US STRIP
   ================================================================ */

.why-strip { background: var(--navy); padding: 64px 0; }
.why-strip .strip-head h2 { color: var(--white); }
.why-strip .strip-head .section-label { color: #9ee6ea; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 40px;
}
.why-card { text-align: center; padding: 24px 16px; }
.why-icon {
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 40px; height: 40px; color: #9ee6ea; }
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ================================================================
   INNER PAGE LAYOUT (sidebar + main)
   ================================================================ */

.page-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 52px 24px;
  display: grid; grid-template-columns: 272px 1fr;
  gap: 48px; align-items: start;
}

/* Sidebar */
.sidebar { position: sticky; top: 84px; }
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
}
.widget-head {
  background: var(--navy); color: var(--white);
  font-family: var(--font-head); font-size: .95rem;
  padding: 11px 16px;
}
.sidebar-nav li {
  display: block; padding: 9px 16px;
  font-size: .9rem; color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav li::before {
  content: '–'; margin-right: 8px;
  color: var(--teal); font-weight: 700;
}
.sidebar-nav .sidebar-nav-link {
  display: block; padding: 9px 16px;
  font-size: .9rem; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--border); text-align: center;
  transition: background var(--ease), color var(--ease);
}
.sidebar-nav .sidebar-nav-link:hover { background: var(--teal); color: var(--white); }
.sidebar-social { padding: 16px; text-align: center; }
.sidebar-social p { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.social-row { display: flex; justify-content: center; gap: 12px; }
.social-row a img { height: 46px; width: auto; border-radius: 6px; transition: opacity var(--ease), transform var(--ease); }
.social-row a:hover img { opacity: .85; transform: scale(1.06); }
.sidebar-rig img { width: 100%; height: 190px; object-fit: cover; }

/* Main content */
.main-content > h1:first-child { margin-bottom: 8px; }
.main-content h2 { margin-top: 36px; margin-bottom: 12px; font-size: 1.5rem; }
.main-content h2:first-child { margin-top: 0; }
.main-content p { color: var(--muted); line-height: 1.78; }
.main-content a { color: var(--teal); font-weight: 600; }
.main-content a:hover { text-decoration: underline; }

/* Content lists */
.check-list { margin: 16px 0 24px; }
.check-list li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--muted); border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--teal); font-weight: 700; font-size: .9rem;
}

.service-list { margin: 16px 0; }
.service-list li {
  padding: 13px 0 13px 28px; position: relative;
  font-weight: 700; font-size: 1.05rem;
  color: var(--navy); border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--red); font-weight: 700;
}

/* ================================================================
   ABOUT
   ================================================================ */

.about-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin: 28px 0;
}
.about-images img {
  border-radius: 8px; box-shadow: var(--shadow);
  width: 100%; height: 240px; object-fit: cover;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.faq-tab {
  padding: 7px 18px; border-radius: 20px;
  font-size: .875rem; font-weight: 700; cursor: pointer;
  border: 2px solid var(--navy); color: var(--navy);
  background: transparent; transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.faq-tab:hover, .faq-tab.active { background: var(--navy); color: var(--white); }

.faq-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.faq-section h2 { margin-bottom: 20px; }

.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden; background: var(--white);
}
.faq-q {
  width: 100%; text-align: left; padding: 15px 20px;
  background: none; border: none;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background var(--ease);
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
}
.faq-a.open { max-height: 500px; }
.faq-a-inner {
  padding: 16px 20px; color: var(--muted); font-size: .95rem;
  line-height: 1.75; border-top: 1px solid var(--border);
}
.faq-a-inner a { color: var(--teal); font-weight: 600; }
.faq-a-inner a:hover { text-decoration: underline; }

.helpful-links { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.helpful-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  color: var(--navy); font-weight: 600; font-size: .95rem;
  transition: border-color var(--ease), background var(--ease);
}
.helpful-links a:hover { border-color: var(--teal); background: var(--cream); color: var(--teal); }
.helpful-links a::before { content: '→'; color: var(--teal); flex-shrink: 0; }

/* ================================================================
   REVIEWS
   ================================================================ */

.review-intro { color: var(--muted); margin-bottom: 24px; }
.review-links { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.review-platform-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border: 2px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  font-weight: 700; color: var(--navy);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.review-platform-btn:hover { border-color: var(--teal); box-shadow: var(--shadow); color: var(--navy); }
.review-platform-btn img { height: 26px; width: auto; }

.review-quote {
  background: var(--white); border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; margin-bottom: 32px; box-shadow: var(--shadow);
}
.review-quote blockquote {
  font-style: italic; color: var(--muted);
  line-height: 1.8; margin-bottom: 12px; font-size: 1rem;
}
.review-quote cite { font-style: normal; font-weight: 700; color: var(--navy); }

.letter-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.letter-grid a { display: block; }
.letter-grid img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.letter-grid a:hover img { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ================================================================
   CONTACT
   ================================================================ */

.contact-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; align-items: start;
}
.contact-form {
  background: var(--white); border-radius: 8px;
  padding: 36px; box-shadow: var(--shadow);
}
.contact-form h2 { margin-bottom: 6px; }
.contact-form .tagline { font-size: 1rem; margin-bottom: 28px; display: block; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .875rem;
  color: var(--text); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,126,132,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-aside h3 { margin-bottom: 20px; font-size: 1.2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon {
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
}
.c-icon svg { width: 22px; height: 22px; color: var(--teal); }
.c-info strong {
  display: block; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); margin-bottom: 2px;
}
.c-info a, .c-info p { color: var(--navy); font-weight: 700; font-size: 1.05rem; margin: 0; }
.c-info p { font-weight: 400; color: var(--muted); }

/* ================================================================
   GALLERY
   ================================================================ */

.gallery-intro { color: var(--muted); margin-bottom: 32px; line-height: 1.75; }
.gallery-album-meta { color: var(--muted); font-size: .9rem; margin: -4px 0 20px; }

.gallery-grid {
  columns: 3;
  column-gap: 12px;
  margin-top: 4px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 12px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.gallery-item:hover,
.gallery-item:focus { box-shadow: var(--shadow-lg); transform: scale(1.02); outline: 2px solid var(--teal); }
.gallery-item img { width: 100%; display: block; border-radius: var(--radius); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  user-select: none;
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; line-height: 1; cursor: pointer;
  opacity: .75; transition: opacity var(--ease);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.35);
  color: var(--white); width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem;
  transition: background var(--ease); backdrop-filter: blur(4px);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65); font-size: .85rem; pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ================================================================
   DRILLING PROCESS — TEXT + VERTICAL PHOTO TIMELINE
   ================================================================ */

.process-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.process-content {
  position: sticky;
  top: 88px;
  align-self: start;
}
.process-content > h1:first-child { margin-bottom: 8px; }
.process-content h2 { margin-top: 36px; margin-bottom: 12px; font-size: 1.5rem; }
.process-content h2:first-child { margin-top: 0; }
.process-content p { color: var(--muted); line-height: 1.78; margin-bottom: 16px; }

/* Right rail */
.process-timeline { position: relative; }

.timeline-head { margin-bottom: 28px; }
.timeline-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 6px;
}
.timeline-head h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.timeline-head p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 56px;
}

/* Vertical connecting line behind the step badges */
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--navy);
  opacity: .15;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-step {
  position: absolute;
  left: -56px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,40,.08);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.timeline-item figure {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,40,.06), 0 8px 24px rgba(0,0,40,.06);
  transition: transform var(--ease), box-shadow var(--ease);
  margin: 0;
}
.timeline-item figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,40,.08), 0 14px 32px rgba(0,0,40,.10);
}
.timeline-item:hover .timeline-step {
  background: var(--navy);
  color: var(--white);
}

.timeline-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.timeline-item figcaption {
  padding: 12px 16px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 56px;
  }
  .process-content { position: static; }
  .process-timeline { max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 480px) {
  .timeline { padding-left: 48px; }
  .timeline-step { left: -48px; width: 36px; height: 36px; font-size: .8rem; }
  .timeline::before { left: 17px; }
}

/* ================================================================
   FOOTER CTA
   ================================================================ */

.footer-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #001799 100%);
  padding: 64px 24px; text-align: center;
}
.footer-cta h2 { color: var(--white); margin-bottom: 6px; }
.footer-cta .tagline { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.footer-cta p { color: rgba(255,255,255,.65); margin: 14px auto 30px; max-width: 560px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 48px 24px 24px; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px; padding-bottom: 36px;
}
.footer-col h4 {
  color: var(--white); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.footer-col p { font-size: .875rem; margin-bottom: 4px; }
.footer-col a {
  display: block; color: rgba(255,255,255,.65);
  font-size: .875rem; padding: 3px 0;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-tagline {
  font-family: var(--font-script); color: rgba(255,255,255,.5);
  font-size: 1.1rem; margin-top: 8px;
}
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-grid.rev .feat-img, .feature-grid.rev .feat-txt { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 10px 16px; }
  .header-phone { font-size: 1rem; }
  .site-nav {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 12px 16px 16px; gap: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 14px; }
  .nav-toggle { display: flex; }

  .hero { height: 400px; }
  .slide img { height: 400px; }
  .slide-caption { left: 5%; max-width: 90%; }

  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }

  .about-images { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero { height: 320px; }
  .slide img { height: 320px; }
  .slide-caption h2 { font-size: 1.4rem; }
  section, .feature-section { padding: 48px 0; }
  .page-layout { padding: 32px 16px; }
  .contact-form { padding: 20px; }
  .album-card { flex-direction: column; }
  .album-card img { width: 100%; height: 180px; }
}
