/* Portfolio showcase styles for the full concept websites linked from the Work Examples page. */
:root {
  --primary: #0F3D2E;
  --secondary: #0A2B21;
  --accent: #C8A96B;
  --background: #F7F5F0;
  --paper: #fffdf8;
  --ink: #1d2521;
  --muted: #64716a;
  --line: rgba(15, 61, 46, .16);
  --shadow: 0 20px 60px rgba(10, 43, 33, .14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin: 0 0 18px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.walkers-digital-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 5%;
  background: var(--secondary);
  border-bottom: 2px solid var(--accent);
}

.walkers-bar-home {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color .2s ease, color .2s ease;
}

.walkers-bar-home:hover,
.walkers-bar-home:focus-visible {
  background: var(--accent);
  color: var(--secondary);
}

.walkers-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.walkers-bar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity .2s ease;
}

.walkers-bar-links a:hover {
  opacity: 0.8;
}

.walkers-bar-cta {
  background: var(--accent) !important;
  color: var(--secondary) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.site-nav {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 5%;
  background: rgba(247, 245, 240, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark,
.client-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--secondary);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 43, 33, .08);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta,
.btn-gold {
  background: var(--accent);
  color: var(--secondary);
}

.btn-dark {
  background: var(--secondary);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 43, 33, .18);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 178px 0 82px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 43, 33, .95), rgba(15, 61, 46, .72)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--accent), #2f9488, #d5805c);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 54px;
  align-items: center;
}

.badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(200, 169, 107, .52);
  border-radius: var(--radius);
  background: rgba(200, 169, 107, .16);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 900;
}

.label {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.client-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}

.client-logo strong {
  display: block;
  font-size: 1.1rem;
}

.client-logo span {
  color: rgba(255, 255, 255, .74);
  font-size: .86rem;
}

.mini-stat-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-stat,
.metric {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .15);
}

.mini-stat strong,
.metric strong {
  display: block;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.section {
  padding: 94px 0;
}

.section.alt {
  background: var(--paper);
}

.section.dark {
  background: var(--secondary);
  color: #fff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 900;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(10, 43, 33, .18);
}

.dark .card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  box-shadow: none;
}

.value-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, .34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 245, 240, .94));
  box-shadow: var(--shadow);
}

.value-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--accent);
}

.value-panel > * {
  position: relative;
  z-index: 1;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.value-card strong {
  display: inline-flex;
  width: max-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(200, 169, 107, .16);
  color: var(--primary);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.outcome-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.outcome-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.outcome-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 5px;
}

.package-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.package-link-row .btn {
  min-width: 190px;
}

.dark .package-link-row .btn-dark {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(200, 169, 107, .18);
  color: var(--primary);
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 54px;
  align-items: center;
}

.device {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background: #101714;
  padding: 16px;
  box-shadow: 0 34px 80px rgba(10, 43, 33, .24);
}

.device::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 80px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .22);
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  min-height: 488px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.mock-hero {
  min-height: 210px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(130deg, rgba(10, 43, 33, .88), rgba(15, 61, 46, .45)), var(--mock-image);
  background-size: cover;
  background-position: center;
}

.mock-lines {
  padding: 20px;
}

.mock-line {
  height: 12px;
  margin: 10px 0;
  border-radius: 99px;
  background: rgba(15, 61, 46, .14);
}

.mock-line.short {
  width: 62%;
}

.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 20px 20px;
}

.mock-card {
  min-height: 86px;
  border-radius: var(--radius);
  background: var(--background);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-tile.large {
  grid-row: span 2;
}

.gallery-tile::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(10, 43, 33, .82);
  color: #fff;
  font-weight: 800;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.before-after div {
  min-height: 320px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: 900;
  background: var(--tile-image);
  background-size: cover;
  background-position: center;
}

.form-panel,
.booking-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 13px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.map {
  min-height: 320px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.cta {
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(120deg, rgba(10, 43, 33, .96), rgba(15, 61, 46, .88)), var(--cta-image);
  background-size: cover;
  background-position: center;
}

.cta-box {
  max-width: 820px;
}

.footer {
  padding: 52px 0 28px;
  background: var(--secondary);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 34px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
}

.footer h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  color: var(--accent);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 10px 28px rgba(10, 43, 33, .08);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

/* Industry-specific concept branding */
.carwash-showcase {
  --primary: #0B74D1;
  --secondary: #071A2F;
  --accent: #27D8FF;
  --background: #F4F9FC;
  --paper: #FFFFFF;
  --ink: #102033;
  --muted: #5E7185;
  --line: rgba(11, 116, 209, .16);
  --shadow: 0 18px 44px rgba(7, 26, 47, .12);
  --radius: 18px;
  font-family: Inter, Arial, sans-serif;
}

.carwash-showcase h1,
.carwash-showcase h2,
.carwash-showcase h3,
.carwash-showcase .mini-stat strong,
.carwash-showcase .metric strong {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  letter-spacing: -.02em;
}

.carwash-showcase .site-nav {
  top: 14px;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 28px));
  border: 1px solid rgba(39, 216, 255, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 38px rgba(7, 26, 47, .12);
  transform: translateX(-50%);
}

.carwash-showcase .brand-mark,
.carwash-showcase .client-mark {
  border-radius: 14px;
  background: linear-gradient(135deg, #0B74D1, #27D8FF);
  color: #fff;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
}

.carwash-showcase .hero {
  background: radial-gradient(circle at 82% 18%, rgba(39, 216, 255, .4), transparent 32%), linear-gradient(120deg, rgba(7, 26, 47, .92), rgba(11, 116, 209, .68)), var(--hero-image);
}

.carwash-showcase .hero::after {
  height: 7px;
  background: linear-gradient(90deg, #27D8FF, #0B74D1, #FFFFFF);
}

.carwash-showcase .badge,
.carwash-showcase .icon {
  border-radius: 999px;
}

.carwash-showcase .card,
.carwash-showcase .form-panel,
.carwash-showcase .client-card,
.carwash-showcase .map,
.carwash-showcase .device,
.carwash-showcase .gallery-tile {
  border-radius: 22px;
}

.carwash-showcase .section.alt {
  background: linear-gradient(180deg, #fff, #eef8ff);
}

.carwash-showcase .cta {
  background: linear-gradient(115deg, rgba(7, 26, 47, .94), rgba(11, 116, 209, .72)), var(--cta-image);
}

.landscape-showcase {
  --primary: #557A46;
  --secondary: #26361F;
  --accent: #B98D4A;
  --background: #F3F0E6;
  --paper: #FBF8EF;
  --ink: #26301F;
  --muted: #6F715E;
  --line: rgba(85, 122, 70, .2);
  --shadow: 0 24px 54px rgba(38, 54, 31, .15);
  --radius: 6px;
  font-family: "Source Sans 3", Inter, Arial, sans-serif;
}

.landscape-showcase h1,
.landscape-showcase h2,
.landscape-showcase h3,
.landscape-showcase .mini-stat strong,
.landscape-showcase .metric strong {
  font-family: "Libre Baskerville", Georgia, serif;
}

.landscape-showcase .site-nav {
  background: rgba(243, 240, 230, .94);
  border-bottom: 1px solid rgba(85, 122, 70, .22);
}

.landscape-showcase .brand-mark,
.landscape-showcase .client-mark {
  background: #557A46;
  color: #F8E8B7;
  border-radius: 50%;
  font-family: "Libre Baskerville", Georgia, serif;
}

.landscape-showcase .hero {
  background: linear-gradient(100deg, rgba(38, 54, 31, .92), rgba(85, 122, 70, .58)), var(--hero-image);
}

.landscape-showcase .hero::after {
  height: 14px;
  background: linear-gradient(90deg, #B98D4A, #557A46, #D9C28E);
}

.landscape-showcase .section.alt {
  background: #ECE6D4;
}

.landscape-showcase .card {
  border-left: 5px solid rgba(185, 141, 74, .65);
}

.landscape-showcase .gallery {
  gap: 22px;
}

.landscape-showcase .gallery-tile,
.landscape-showcase .before-after,
.landscape-showcase .before-after div {
  border-radius: 2px;
}

.landscape-showcase .cta {
  background: linear-gradient(100deg, rgba(38, 54, 31, .95), rgba(85, 122, 70, .7)), var(--cta-image);
}

.tourism-showcase {
  --primary: #00A5C8;
  --secondary: #052B3F;
  --accent: #E3C477;
  --background: #F2FBFD;
  --paper: #FFFFFF;
  --ink: #062C3E;
  --muted: #5C7580;
  --line: rgba(0, 165, 200, .18);
  --shadow: 0 24px 70px rgba(5, 43, 63, .16);
  --radius: 14px;
  font-family: Manrope, Inter, Arial, sans-serif;
}

.tourism-showcase h1,
.tourism-showcase h2,
.tourism-showcase h3,
.tourism-showcase .mini-stat strong,
.tourism-showcase .metric strong {
  font-family: "Playfair Display", Georgia, serif;
}

.tourism-showcase .site-nav {
  top: 16px;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 28px));
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(5, 43, 63, .64);
  box-shadow: 0 18px 50px rgba(5, 43, 63, .2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.tourism-showcase .site-nav a,
.tourism-showcase .brand {
  color: #fff;
}

.tourism-showcase .nav-links a:hover {
  background: rgba(255, 255, 255, .14);
}

.tourism-showcase .brand-mark,
.tourism-showcase .client-mark {
  border-radius: 50%;
  background: linear-gradient(135deg, #00A5C8, #E3C477);
  color: #052B3F;
  font-family: "Playfair Display", Georgia, serif;
}

.tourism-showcase .hero {
  background: radial-gradient(circle at 75% 25%, rgba(227, 196, 119, .24), transparent 36%), linear-gradient(112deg, rgba(5, 43, 63, .92), rgba(0, 165, 200, .48)), var(--hero-image);
}

.tourism-showcase .hero::after {
  height: 12px;
  background: linear-gradient(90deg, #E3C477, #00A5C8, #B8F4FF);
}

.tourism-showcase .badge {
  border-radius: 999px;
  background: rgba(227, 196, 119, .18);
}

.tourism-showcase .section.alt {
  background: linear-gradient(180deg, #FFFFFF, #EAF9FC);
}

.tourism-showcase .card,
.tourism-showcase .booking-panel,
.tourism-showcase details {
  border-radius: 18px;
}

.tourism-showcase .gallery {
  grid-template-columns: 1.45fr .75fr .75fr;
}

.tourism-showcase .gallery-tile {
  border-radius: 24px;
}

.tourism-showcase .cta {
  background: linear-gradient(110deg, rgba(5, 43, 63, .94), rgba(0, 165, 200, .54)), var(--cta-image);
}

@media (max-width: 980px) {
  .site-nav {
    position: sticky;
  }

  .carwash-showcase .site-nav,
  .tourism-showcase .site-nav {
    left: 0;
    right: 0;
    width: auto;
    border-radius: 0;
    transform: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .grid,
  .grid.two,
  .footer-grid,
  .calendly-grid,
  .outcome-band,
  .outcome-list {
    grid-template-columns: 1fr;
  }

  .package-link-row .btn {
    width: 100%;
  }

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

  .gallery-tile.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .site-nav {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding: 78px 0 56px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions .btn,
  .cta-row .btn,
  .nav-cta {
    width: 100%;
  }

  .mini-stat-grid,
  .metrics-grid,
  .gallery,
  .before-after,
  .mock-cards {
    grid-template-columns: 1fr;
  }

  .gallery-tile.large {
    grid-column: auto;
  }

  .gallery,
  .gallery-tile,
  .before-after div {
    grid-auto-rows: auto;
    min-height: 240px;
  }

  .client-card,
  .card,
  .form-panel,
  .booking-panel {
    padding: 22px;
  }
}
