:root {
  --charcoal: #231f1b;
  --charcoal-2: #312a24;
  --paper: #fff8ed;
  --cream: #f7e8d2;
  --teal: #0f8b8d;
  --teal-dark: #075c60;
  --amber: #e08a2f;
  --copper: #b9542b;
  --red: #a72920;
  --ivory: #fff4e6;
  --ink: #1e1a17;
  --muted: #75685c;
  --line: rgba(35, 31, 27, 0.13);
  --shadow: 0 24px 70px rgba(35, 31, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 139, 141, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 0%, rgba(224, 138, 47, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--paper), #f3dfc5 58%, #f8efe1);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(35, 31, 27, 0.92);
  color: var(--ivory);
  box-shadow: 0 14px 40px rgba(35, 31, 27, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: conic-gradient(from 160deg, var(--teal), var(--amber), var(--red), var(--teal));
  color: white;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.12rem;
  color: rgba(255, 244, 230, 0.72);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.mobile-nav-head,
.mobile-nav-contact {
  display: none;
}

.nav-links a,
.nav-pay-button {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 244, 230, 0.78);
}

.nav-pay-button {
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 12px 26px rgba(215, 47, 36, 0.22);
}

.nav-links a:hover,
.nav-links a.active,
.nav-pay-button:hover {
  background: rgba(255, 244, 230, 0.11);
  color: white;
}

.nav-pay-button:hover {
  background: var(--amber);
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 247, 233, 0.18);
  border-radius: 0.8rem;
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.28), rgba(215, 47, 36, 0.22)),
    rgba(255, 247, 233, 0.08);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 247, 233, 0.14);
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 0.13rem;
  border-radius: 999px;
  background: var(--ivory);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle span + span {
  margin-top: 0.28rem;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0.41rem) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.41rem) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(18rem, 0.97fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem) 3rem;
}

.hero-content {
  max-width: 51rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

.hero-copy,
.page-hero p,
.story-copy p,
.service-card p,
.service-detail p,
.service-detail li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 42rem;
  font-size: clamp(1.02rem, 2vw, 1.27rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border-radius: 0.5rem;
  font-weight: 900;
}

.btn.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 32px rgba(167, 41, 32, 0.25);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.75);
}

.btn.light {
  background: var(--ivory);
  color: var(--ink);
}

.hero-showcase {
  position: relative;
  min-height: 34rem;
}

.art-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(15, 139, 141, 0.95), transparent 42%),
    linear-gradient(45deg, var(--red), var(--amber) 48%, var(--charcoal) 49%);
  box-shadow: var(--shadow);
}

.art-card::before {
  position: absolute;
  content: "";
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 244, 230, 0.34);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.art-card::after {
  position: absolute;
  content: "";
  inset: auto -14% -10% 28%;
  height: 44%;
  background: rgba(255, 244, 230, 0.13);
  border-radius: 50% 50% 0 0;
}

.art-card img {
  position: relative;
  z-index: 1;
  width: min(72%, 24rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 244, 230, 0.9);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.floating-note {
  position: absolute;
  z-index: 2;
  min-width: 9.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 244, 230, 0.24);
  border-radius: 0.6rem;
  background: rgba(35, 31, 27, 0.82);
  color: var(--ivory);
  box-shadow: 0 18px 45px rgba(35, 31, 27, 0.25);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--amber);
  font-size: 1.5rem;
}

.floating-note span {
  color: rgba(255, 244, 230, 0.76);
  font-size: 0.86rem;
}

.note-one {
  top: 1.2rem;
  left: -1rem;
}

.note-two {
  right: -1rem;
  bottom: 1.4rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 4vw, 4.5rem);
  overflow: hidden;
  border-radius: 0.65rem;
  background: rgba(35, 31, 27, 0.12);
  box-shadow: 0 20px 55px rgba(35, 31, 27, 0.1);
}

.stats-strip div {
  padding: 1.25rem;
  background: var(--charcoal);
  color: var(--ivory);
}

.stats-strip strong,
.stats-strip span {
  display: block;
}

.stats-strip strong {
  margin-bottom: 0.28rem;
  color: var(--amber);
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.stats-strip span {
  color: rgba(255, 244, 230, 0.73);
  font-size: 0.9rem;
}

.section,
.split-band,
.cta-band,
.story-section,
.values-section,
.service-detail-grid,
.contact-layout {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading.wide {
  max-width: 65rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 19rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 248, 237, 0.84);
  box-shadow: 0 18px 55px rgba(35, 31, 27, 0.08);
}

.service-card::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 0.35rem;
  background: var(--teal);
}

.service-card.accent-amber::before {
  background: var(--amber);
}

.service-card.accent-red::before {
  background: var(--red);
}

.service-card.accent-charcoal::before {
  background: var(--charcoal);
}

.service-icon {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--charcoal);
  color: var(--ivory);
  font-weight: 900;
}

.service-card a {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--charcoal);
  color: var(--ivory);
}

.split-band .eyebrow,
.cta-band .eyebrow {
  color: var(--amber);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 244, 230, 0.14);
  border-radius: 0.55rem;
  background: rgba(255, 244, 230, 0.06);
}

.feature-list span {
  color: var(--teal);
  font-weight: 900;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(167, 41, 32, 0.92), rgba(35, 31, 27, 0.96)),
    var(--charcoal);
  color: var(--ivory);
}

.cta-band h2 {
  max-width: 48rem;
}

.page-hero {
  min-height: 52vh;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(35, 31, 27, 0.92), rgba(35, 31, 27, 0.66)),
    radial-gradient(circle at 82% 18%, rgba(224, 138, 47, 0.72), transparent 20rem),
    radial-gradient(circle at 15% 80%, rgba(15, 139, 141, 0.7), transparent 22rem),
    var(--charcoal);
}

.page-hero .eyebrow {
  color: var(--amber);
}

.page-hero h1 {
  max-width: 64rem;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 46rem;
  color: rgba(255, 244, 230, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.story-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-image {
  display: grid;
  min-height: 28rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--teal), var(--amber), var(--red));
  box-shadow: var(--shadow);
}

.story-image img {
  width: min(74%, 24rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid var(--ivory);
  border-radius: 50%;
}

.story-copy {
  max-width: 45rem;
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0;
}

.values-section article {
  padding: 1.4rem;
  border-radius: 0.6rem;
  background: var(--charcoal);
  color: var(--ivory);
}

.values-section strong,
.values-section span {
  display: block;
}

.values-section strong {
  margin-bottom: 0.5rem;
  color: var(--amber);
  font-size: 1.25rem;
}

.values-section span {
  color: rgba(255, 244, 230, 0.74);
  line-height: 1.6;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(255, 248, 237, 0.86);
  box-shadow: 0 18px 55px rgba(35, 31, 27, 0.08);
}

.service-detail.featured {
  background: var(--charcoal);
  color: var(--ivory);
}

.service-detail.featured p,
.service-detail.featured li {
  color: rgba(255, 244, 230, 0.76);
}

.service-detail span {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 900;
}

.service-detail ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.contact-main,
.contact-actions a {
  border-radius: 0.65rem;
  background: rgba(255, 248, 237, 0.88);
  box-shadow: 0 18px 55px rgba(35, 31, 27, 0.1);
}

.contact-main {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  padding: 1.45rem;
  border-left: 0.4rem solid var(--teal);
}

.contact-actions a:nth-child(2) {
  border-left-color: var(--red);
}

.contact-actions span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4.5rem) 1.2rem;
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.14), transparent 36%),
    linear-gradient(120deg, var(--charcoal), #261713 68%, #331d17);
  color: rgba(255, 244, 230, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.45fr) repeat(3, minmax(10rem, 0.75fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.2rem;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  color: var(--ivory);
  font-size: 1rem;
}

.footer-grid a {
  display: table;
  margin-bottom: 0.62rem;
  color: rgba(255, 244, 230, 0.74);
  line-height: 1.45;
}

.footer-grid a:hover {
  color: var(--amber);
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-logo {
  width: 190px;
  background: rgba(255, 247, 233, 0.04);
}

.footer-brand p,
.footer-grid p {
  max-width: 24rem;
  margin: 0;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 244, 230, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.policy-content {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4.5rem);
}

.policy-content h2 {
  margin: 1rem 0 0.1rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.policy-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.payment-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.payment-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.payment-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(255, 247, 233, 0.7);
  border-radius: 0.9rem;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.payment-dialog h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.payment-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: white;
  cursor: pointer;
}

.payment-close span {
  position: absolute;
  width: 1.1rem;
  height: 0.12rem;
  border-radius: 999px;
  background: var(--charcoal);
}

.payment-close span:first-child {
  transform: rotate(45deg);
}

.payment-close span:last-child {
  transform: rotate(-45deg);
}

.payment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.payment-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
}

.payment-form label.full,
.payment-status {
  grid-column: 1 / -1;
}

.payment-form input,
.payment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
}

.payment-form input:focus,
.payment-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 167, 165, 0.13);
}

.payment-submit {
  width: 100%;
}

.payment-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--red);
  line-height: 1.5;
}

body.payment-open {
  overflow: hidden;
}

.policy-hero {
  min-height: 42vh;
}

@media (max-width: 1020px) {
  .hero,
  .split-band,
  .story-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase {
    min-height: 28rem;
  }

  .stats-strip,
  .service-grid,
  .values-section,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 2.7rem;
  }

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

  .hero-showcase {
    min-height: 22rem;
  }

  .floating-note {
    position: static;
    margin-top: 0.75rem;
  }

  .art-card {
    position: relative;
    min-height: 20rem;
  }

  .stats-strip,
  .service-grid,
  .values-section,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-inline: 1rem;
  }

  .service-card {
    min-height: auto;
  }

  .page-hero {
    min-height: auto;
  }

  .story-image {
    min-height: 20rem;
  }

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

  .footer-bottom {
    display: block;
  }
}

/* Premium visual refresh */
:root {
  --charcoal: #171513;
  --charcoal-2: #2b211d;
  --paper: #fffaf3;
  --cream: #ffe8c4;
  --teal: #00a7a5;
  --teal-dark: #006a6d;
  --amber: #ff9f2e;
  --copper: #d75f28;
  --red: #d72f24;
  --magenta: #9d2f7a;
  --ivory: #fff7e9;
  --ink: #191614;
  --muted: #706158;
  --line: rgba(25, 22, 20, 0.12);
  --shadow: 0 28px 90px rgba(25, 22, 20, 0.2);
}

body {
  background:
    linear-gradient(115deg, rgba(0, 167, 165, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 159, 46, 0.24), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(215, 47, 36, 0.12), transparent 25rem),
    linear-gradient(180deg, #fffaf3, #ffe9cf 48%, #fff6e9);
}

.site-header {
  border-bottom: 1px solid rgba(255, 247, 233, 0.1);
  background: rgba(23, 21, 19, 0.88);
}

.brand-mark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    conic-gradient(from 180deg, var(--teal), var(--amber), var(--red), var(--magenta), var(--teal));
  box-shadow: 0 0 0 5px rgba(255, 159, 46, 0.12);
}

.nav-links a {
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 1rem clamp(1rem, 4vw, 4.5rem) auto auto;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(215, 47, 36, 0.18);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.home-hero {
  min-height: calc(100svh - 4.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-dark);
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

h1 {
  max-width: 12ch;
}

.home-hero h1 {
  max-width: 10.5ch;
  background: linear-gradient(110deg, #15120f, #006a6d 48%, #d72f24 88%);
  background-clip: text;
  color: transparent;
}

.home-hero .hero-copy {
  max-width: 36rem;
}

.home-hero .hero-actions {
  margin-top: 1.65rem;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), var(--copper) 52%, var(--amber));
  box-shadow: 0 18px 42px rgba(215, 47, 36, 0.28);
}

.btn.secondary,
.btn.light {
  border: 1px solid rgba(25, 22, 20, 0.08);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 14px 38px rgba(25, 22, 20, 0.08);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  isolation: isolate;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 233, 0.55);
  border-radius: 1rem;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.mosaic-card.large {
  min-height: 31rem;
}

.mosaic-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(23, 21, 19, 0.62)),
    linear-gradient(135deg, rgba(0, 167, 165, 0.26), transparent 45%, rgba(215, 47, 36, 0.22));
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.mosaic-card.large {
  grid-row: 1 / 3;
}

.mosaic-card.small.top {
  transform: translateY(1.3rem);
}

.mosaic-card.small.bottom {
  transform: translateY(-1.3rem);
}

.floating-note {
  border-color: rgba(255, 247, 233, 0.28);
  background: rgba(23, 21, 19, 0.78);
}

.photo-mosaic .floating-note {
  border-color: rgba(255, 247, 233, 0.38);
}

.photo-mosaic .note-one {
  left: 0.85rem;
}

.photo-mosaic .note-two {
  right: 0.85rem;
}

.stats-strip {
  border: 1px solid rgba(255, 247, 233, 0.6);
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.16);
}

.stats-strip div {
  background:
    linear-gradient(145deg, rgba(0, 167, 165, 0.2), transparent),
    var(--charcoal);
}

.section {
  position: relative;
}

.section::before {
  position: absolute;
  content: "";
  top: 2rem;
  right: clamp(1rem, 4vw, 4.5rem);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 167, 165, 0.14), rgba(255, 159, 46, 0.18));
}

.service-grid {
  gap: 1.25rem;
}

.service-card {
  min-height: 24rem;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.13);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(25, 22, 20, 0.18);
}

.service-card::before {
  z-index: 1;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.service-photo {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card a {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.service-card .service-icon {
  margin-top: -1.65rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--charcoal), var(--teal-dark));
  box-shadow: 0 12px 26px rgba(25, 22, 20, 0.22);
}

.service-card a {
  margin-bottom: 1.3rem;
}

.split-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 167, 165, 0.22), transparent 40%),
    linear-gradient(110deg, var(--charcoal), #2b1815 62%, #3d2118);
}

.split-band::after {
  position: absolute;
  content: "";
  right: -6rem;
  bottom: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 159, 46, 0.24);
  border-radius: 50%;
}

.feature-list {
  position: relative;
  z-index: 1;
}

.feature-list div {
  background: rgba(255, 247, 233, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 247, 233, 0.1);
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(23, 21, 19, 0.74), rgba(23, 21, 19, 0.9)),
    url("images/kolkata-howrah-sunset.jpg") center / cover;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(23, 21, 19, 0.9), rgba(23, 21, 19, 0.58)),
    var(--page-photo, radial-gradient(circle at 75% 20%, rgba(255, 159, 46, 0.6), transparent 22rem)),
    var(--charcoal);
}

.page-hero::after {
  position: absolute;
  content: "";
  inset: auto clamp(1rem, 4vw, 4.5rem) -5.5rem auto;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(255, 247, 233, 0.2);
  border-radius: 50%;
}

.about-hero {
  --page-photo: url("images/kolkata-howrah-sunset.jpg") center / cover;
}

.services-hero {
  --page-photo: url("images/import-export-container-port.jpg") center / cover;
}

.contact-hero {
  --page-photo: url("images/kolkata-hooghly-bridge.jpg") center / cover;
}

.story-image {
  border-radius: 1rem;
  background: var(--charcoal);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
  border-radius: 0;
}

.values-section article {
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(0, 167, 165, 0.16), transparent),
    var(--charcoal);
  box-shadow: 0 22px 70px rgba(25, 22, 20, 0.13);
}

.service-detail {
  overflow: hidden;
  padding: 0 0 clamp(1.3rem, 3vw, 2rem);
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 24px 76px rgba(25, 22, 20, 0.13);
}

.detail-photo {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.service-detail span,
.service-detail h2,
.service-detail p,
.service-detail ul {
  margin-left: clamp(1.3rem, 3vw, 2rem);
  margin-right: clamp(1.3rem, 3vw, 2rem);
}

.service-detail span {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--amber), var(--ivory));
  box-shadow: 0 14px 34px rgba(25, 22, 20, 0.2);
}

.service-detail.featured {
  background:
    linear-gradient(145deg, rgba(215, 47, 36, 0.28), transparent),
    var(--charcoal);
}

.contact-layout {
  grid-template-columns: minmax(17rem, 0.85fr) minmax(16rem, 0.8fr) minmax(17rem, 0.9fr);
}

.contact-main,
.contact-actions a {
  border: 1px solid rgba(255, 247, 233, 0.62);
  border-radius: 1rem;
  background: rgba(255, 250, 243, 0.9);
}

.contact-photo {
  min-height: 22rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.05), rgba(23, 21, 19, 0.42)),
    url("images/kolkata-hooghly-bridge.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-actions a {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-actions a:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(25, 22, 20, 0.16);
}

@media (max-width: 1020px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    min-height: 30rem;
  }
}

@media (max-width: 680px) {
  h1 {
    max-width: none;
  }

  .home-hero {
    gap: 1.7rem;
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }

  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.8rem);
    line-height: 0.94;
  }

  .home-hero .hero-copy {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .home-hero .hero-actions {
    gap: 0.65rem;
    margin-top: 1.4rem;
  }

  .home-hero .btn {
    min-height: 3rem;
  }

  .photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0.75rem;
  }

  .mosaic-card.large,
  .mosaic-card.small {
    grid-row: auto;
    min-height: 10rem;
    transform: none;
  }

  .mosaic-card.large {
    min-height: 16rem;
  }

  .mosaic-card.small {
    display: none;
  }

  .mosaic-card {
    border-radius: 0.85rem;
  }

  .floating-note {
    width: auto;
    min-width: 0;
    padding: 0.8rem 0.9rem;
    border-radius: 0.55rem;
  }

  .photo-mosaic .floating-note {
    position: absolute;
    margin: 0;
  }

  .photo-mosaic .note-one {
    top: 0.75rem;
    left: 0.75rem;
  }

  .photo-mosaic .note-two {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-note strong {
    font-size: 1.12rem;
  }

  .floating-note span {
    font-size: 0.76rem;
  }

  .service-photo,
  .detail-photo {
    height: 12rem;
  }

  .story-image img {
    min-height: 20rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.65rem 0.85rem;
  }

  .brand-logo {
    width: min(46vw, 165px);
  }

  .menu-toggle {
    position: relative;
    z-index: 998;
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    padding: 0;
  }

  .menu-toggle span {
    position: absolute;
    width: 1.22rem;
    height: 0.12rem;
    margin: 0;
  }

  .menu-toggle span + span {
    margin-top: 0;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-0.38rem);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(0.38rem);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    width: min(84vw, 21.5rem);
    max-width: none;
    height: 100dvh;
    gap: 0.45rem;
    padding: 1rem;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 247, 233, 0.14);
    border-radius: 0 1rem 1rem 0;
    background:
      linear-gradient(155deg, rgba(0, 167, 165, 0.13), transparent 36%),
      linear-gradient(180deg, #191614, #100f0e);
    box-shadow: 18px 0 44px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateX(-105%);
    transition: transform 0.26s ease, opacity 0.2s ease;
    visibility: hidden;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .menu-toggle.is-open {
    position: fixed;
    top: 1.05rem;
    left: min(calc(84vw - 3.35rem), 18.1rem);
    z-index: 1002;
    background: rgba(255, 247, 233, 0.1);
  }

  .nav-links a {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 3.15rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 247, 233, 0.08);
    border-radius: 0.65rem;
    background: rgba(255, 247, 233, 0.045);
    color: rgba(255, 244, 230, 0.78);
    font-size: 1rem;
    font-weight: 800;
  }

  .nav-links a:hover,
  .nav-links a.active {
    border-color: rgba(255, 159, 46, 0.36);
    background: rgba(255, 159, 46, 0.13);
    color: white;
  }

  .nav-pay-button {
    width: 100%;
    justify-content: center;
    min-height: 3.15rem;
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 0.65rem;
    text-align: left;
    box-shadow: 0 18px 34px rgba(215, 47, 36, 0.26);
  }

  .mobile-nav-head {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 0.85rem;
    padding: 0.6rem 0.2rem 1rem;
    border-bottom: 1px solid rgba(255, 247, 233, 0.1);
  }

  .mobile-nav-head img {
    width: min(13rem, 68vw);
    border-radius: 0.45rem;
  }

  .mobile-nav-head span {
    color: rgba(255, 244, 230, 0.62);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav-contact {
    display: grid;
    gap: 0.25rem;
    margin-top: auto;
    padding: 1rem 0.2rem 0.2rem;
    color: rgba(255, 244, 230, 0.62);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .mobile-nav-contact a {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--amber);
    font-size: 1.2rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .brand {
    visibility: visible;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.58);
  }

  .payment-modal {
    align-items: end;
    padding: 0;
  }

  .payment-dialog {
    width: 100%;
    max-height: 92dvh;
    border-radius: 1rem 1rem 0 0;
  }

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

.btn.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-weight: 600;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}
/* ── Service Tab Bar ── */
.service-tab-wrap {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05)), url('/images/brushed-gold.png') center/cover no-repeat;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(163, 0, 237, 0.15);
  border-radius: 2px; 
  overflow: hidden; 
}

.service-tab-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
}

.service-tab-inner::-webkit-scrollbar { display: none; }

.service-tab-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 22px; /* Slightly increased padding to frame the shape nicely */
  text-decoration: none;
  color: #A300ED;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1; /* Ensures text stays above the new background shape */
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* NEW: The Background Shape for ALL tabs */
.service-tab-item::before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 8px;
  right: 8px;
 background: linear-gradient(90deg,rgba(230, 230, 230, 1) 0%, rgba(212, 212, 212, 1) 46%, rgba(255, 255, 255, 1) 100%); /* Base state: subtle frosty glass */
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px; /* Nice rounded pill/box shape */
  z-index: -1; /* Pushes the shape behind the icon and text */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* NEW: The "Another Look" when hovered or active */
.service-tab-item:hover::before,
.service-tab-item.active::before {
  background: rgba(255, 255, 255, 0.95); /* Transforms to a solid, bright shape */
  border-color: rgba(163, 0, 237, 0.3); /* Adds a subtle purple tint to the border */
  box-shadow: 0 6px 15px rgba(163, 0, 237, 0.15); /* Pushes a glowing shadow down */
  transform: scale(1.03) translateY(-2px); /* Physically lifts and expands the shape */
}

/* The Glowing Bottom Line */
.service-tab-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #A300ED; 
  box-shadow: 0 -2px 8px rgba(163, 0, 237, 0.6);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-tab-item:hover::after,
.service-tab-item.active::after {
  width: 60%; /* Slightly shorter width so it sits neatly under the new shape */
}

.service-tab-item:hover,
.service-tab-item.active {
  color: #8A00C2; 
  border-bottom-color: transparent;
}

.service-tab-item i {
  font-size: 22px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
}

.service-tab-item:hover i,
.service-tab-item.active i {
  transform: scale(1.2) translateY(-3px);
  filter: drop-shadow(0 4px 8px rgba(163, 0, 237, 0.4));
}

/* Scroll fade hint on mobile */
.service-tab-hint {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8) 75%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.service-tab-hint i {
  color: #A300ED;
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
}

/* On wide screens, distribute tabs evenly */
@media (min-width: 700px) {
  .service-tab-inner { justify-content: center; }
  .service-tab-item { flex: 1 1 0; }
  .service-tab-hint { display: none !important; }
}

