@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #ff6600;
  --primary-transparant-color: #ff66001e;
  --secondary-color: #1e2023;
  --dark-color: #1a1c1d;
  --text-color: #eeeeee;
  --paragraph-color: #cecece;
  --border-color: #353739;
  --rating-color: #f0ad4e;
  --font-text: "DM Sans", sans-serif;
  --font-heading: "Barlow Condensed", sans-serif;
  --overlay-color: #0000008d;
  --disabled-color: #383838;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--secondary-color);
  font-size: 1.1rem;
  margin: 0;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-color);
  margin-top: 0;
  line-height: 1.05;
}

h1 { font-size: clamp(2rem, 1.2rem + 3vw, 3.7rem); }
h1.heading-hero { font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: 4px; }
h2 { font-size: clamp(1.75rem, 1.1rem + 2.5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 1rem + 2vw, 3rem); }
h4 { font-size: clamp(1.25rem, 0.9rem + 1.5vw, 2.4rem); }
h5 { font-size: clamp(1.125rem, 0.85rem + 1vw, 1.8rem); }
h6 { font-size: clamp(1rem, 0.8rem + 0.5vw, 1.4rem); }

p {
  color: var(--paragraph-color);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

button {
  font-family: var(--font-text);
  font-weight: 500;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--text-color); text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }

section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

hr {
  border-color: var(--border-color);
  border-width: 3px;
}

hr.style-2 {
  overflow: visible;
  width: 100%;
  position: relative;
  border: none;
  border-top: 2px solid var(--text-color);
  opacity: 1;
  margin: 1.2rem 0;
}

hr.style-2::before,
hr.style-2::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0;
  background-color: var(--primary-color);
  transform: translateY(-50%);
}
hr.style-2::before { left: 0; }
hr.style-2::after { right: 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 6em 0; }

.hero-section { min-height: 100vh; }

.font-heading { font-family: var(--font-heading); }
.fw-black { font-weight: 900 !important; }
.ls-1 { letter-spacing: 1px !important; }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.primary-color { color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-dark { background-color: var(--dark-color) !important; }
.bg-secondary-dark { background-color: var(--border-color); }

/* Buttons */
.btn {
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  padding: 16px 32px;
  white-space: nowrap;
  gap: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn i { font-size: 0.9rem; }

.btn-primary {
  background-color: transparent;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: inherit;
}

.btn-primary::before {
  left: 0;
  background-color: var(--dark-color);
  border: 2px solid var(--border-color);
}

.btn-primary::after {
  right: 0;
  background-color: var(--primary-color);
  border: 2px solid var(--border-color);
  transition: width 0.5s;
}

.btn-primary:hover { color: #fff; }
.btn-primary:hover::after { width: 0%; }

.btn-dark {
  background-color: var(--dark-color);
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

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

.btn-light {
  background: #fff;
  color: #000;
}

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

.btn-link-primary { color: var(--primary-color); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.btn-link-primary:hover { color: var(--text-color); }

.btn-filter {
  border: 2px solid var(--text-color);
  color: var(--text-color);
  background: transparent;
  font-size: 1rem;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-filter.active,
.btn-filter:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

.btn-navigation {
  width: 52px;
  height: 52px;
  background-color: var(--primary-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

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

.btn-social-link {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.95rem;
}

.btn-social-link:hover { background: var(--dark-color); color: var(--primary-color); }

.social-secondary-dark .btn-social-link {
  background-color: var(--border-color);
  color: var(--text-color);
}

.social-secondary-dark .btn-social-link:hover { color: var(--primary-color); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark-color);
}

.site-header.sticky {
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 110px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
}

.brand:hover { color: #fff; }

.brand-mark {
  width: 92px;
  height: 92px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  background: var(--primary-color);
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 22px 0 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: 1px;
  color: #fff;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  flex: 1;
}

.header-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social {
  display: flex;
  gap: 6px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar .nav-link {
  color: var(--text-color);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 18px;
  display: inline-block;
}

.navbar .nav-link.active,
.navbar .nav-link:hover { color: var(--primary-color); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1.3rem;
}

/* Page banner */
.page-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
  margin-top: 0;
}

.page-banner-copy {
  background-color: var(--primary-color);
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  padding: 80px 70px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-banner-copy .eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.page-banner-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #fff;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  width: fit-content;
}

.breadcrumb-pill a { color: #fff; }
.breadcrumb-pill a:hover { color: var(--text-color); }
.breadcrumb-pill span { color: var(--primary-color); }

.page-banner-image {
  position: relative;
  min-height: 420px;
}

.page-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.page-banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,102,0,0.25), rgba(0,0,0,0.25));
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,28,29,0.92) 0%, rgba(26,28,29,0.55) 55%, rgba(255,102,0,0.25) 100%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  display: inline-block;
}

.subheading {
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.15em;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subheading::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-photos img:first-child { height: 360px; margin-top: 40px; }
.hero-photos img:last-child { height: 300px; }

.circle-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin: 30px auto 0;
}

.circle-badge span {
  max-width: 90px;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Cards */
.card {
  border: none;
  background-color: var(--border-color);
  border-radius: 0;
  color: var(--text-color);
  transition: all 0.5s;
}

.card-dark { background-color: var(--dark-color); }
.card-hover:hover { background-color: var(--primary-color); }
.card-hover:hover p,
.card-hover:hover h5,
.card-hover:hover .btn-link-primary { color: #fff; }
.card-hover:hover hr.style-2 { border-top-color: var(--dark-color); }
.card-hover:hover hr.style-2::before,
.card-hover:hover hr.style-2::after { background: #fff; }

.icon-box {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.5s;
}

.card-hover:hover .icon-box { background-color: var(--dark-color); color: var(--primary-color); }

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

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

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

.service-card {
  background: var(--dark-color);
  padding: 0;
  overflow: hidden;
}

.service-card .card-body { padding: 28px 24px 32px; }

.card-service .card-image { position: relative; overflow: hidden; }
.card-service .card-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.5s;
}

.card-service .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(0,0,0,0) 0%, rgba(255,102,0,1) 100%);
  width: 0%;
  opacity: 0;
  transition: all 0.5s;
}

.card-service:hover .card-image img { filter: none; }
.card-service:hover .card-image::after { width: 100%; opacity: 0.7; }

/* Fun facts */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fun-item {
  text-align: center;
  padding: 20px 10px;
}

.fun-item .num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -2px;
  line-height: 1;
}

.fun-item .label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images .main-img {
  width: 78%;
  height: 520px;
  object-fit: cover;
}

.about-images .sub-img {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 48%;
  height: 260px;
  object-fit: cover;
  border: 10px solid var(--secondary-color);
}

.skill-bars { margin-top: 28px; }
.skill-row { margin-bottom: 18px; }
.skill-row .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.progress-bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--text-color);
}
.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--primary-color);
}

/* Feature checks */
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--paragraph-color);
}
.check-list i { color: var(--primary-color); margin-top: 4px; }

/* Project gallery */
.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 28px;
}

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

.image-gallery-wrapper {
  overflow: hidden;
  position: relative;
}

.image-gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.image-gallery-wrapper:hover img {
  transform: scale(1.12);
  filter: grayscale(70%);
}

.image-gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-color);
  opacity: 0;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.image-gallery-wrapper:hover .image-gallery-overlay { opacity: 1; }

/* Team */
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-color);
}

.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(0.15);
}

.team-card .team-info {
  padding: 22px 20px 28px;
  position: relative;
}

.team-card .team-info::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, transparent 50%, var(--primary-color) 50%);
}

.team-card h5 { margin-bottom: 4px; }
.team-card .role {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Testimonials */
.testimonial-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
}

.testimonial-featured img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.testimonial-body {
  background: var(--border-color);
  padding: 48px 40px;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: var(--primary-color);
  line-height: 1;
  font-family: Georgia, serif;
}

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

.testi-card {
  background: var(--dark-color);
  padding: 32px 26px;
  text-align: center;
}

.testi-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 16px auto 10px;
}

.stars { color: var(--rating-color); letter-spacing: 2px; }

/* Pricing */
.card-pricing {
  background-color: var(--dark-color);
  padding: 36px 30px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-pricing .pricing-title {
  color: var(--primary-color);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-pricing .pricing-title::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--text-color);
}

.card-pricing .price {
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-family: var(--font-heading);
  line-height: 1;
}

.card-pricing .price small {
  font-size: 1rem;
  color: var(--paragraph-color);
  display: block;
  font-family: var(--font-text);
  font-weight: 500;
  margin-bottom: 6px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--paragraph-color);
}

.feature-list i { color: var(--primary-color); }

.pdf-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  margin: 18px 0;
  font-size: 0.95rem;
}

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

.shop-item {
  background: var(--dark-color);
}

.shop-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.shop-item .body { padding: 24px; }

.shop-item .price-tag {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

/* FAQ */
.accordion-item {
  background: var(--border-color);
  margin-bottom: 12px;
}

.accordion-btn {
  width: 100%;
  background: var(--border-color);
  color: #fff;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item.open .accordion-btn,
.accordion-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.accordion-panel {
  display: none;
  padding: 0 24px 22px;
  background: var(--border-color);
}

.accordion-item.open .accordion-panel { display: block; }

/* CTA */
.cta-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.cta-band img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(1);
}

.cta-copy {
  background-color: var(--primary-color);
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-copy p { color: rgba(255,255,255,0.92); }

/* Marquee */
.marquee-bar {
  background: var(--primary-color);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
  color: #fff;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Forms */
.form .form-control,
.form select.form-control,
.form textarea.form-control {
  background-color: var(--secondary-color);
  border: 2px solid var(--border-color);
  border-radius: 0;
  font-size: 1.05rem;
  padding: 18px 22px;
  color: var(--text-color);
  width: 100%;
  font-family: var(--font-text);
  outline: none;
}

.form textarea.form-control { min-height: 140px; resize: vertical; }

.form .form-control::placeholder { color: #6d6f72; }

.form .form-control:focus { border-color: var(--primary-color); }

.form select.form-control option {
  background: var(--secondary-color);
  color: var(--text-color);
}

.form .form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group { margin-bottom: 18px; }

.field-error {
  color: #ff8a65;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-control.is-invalid { border-color: #ff5252 !important; }

.gdpr-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 22px;
}

.gdpr-container input[type="checkbox"] {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 0;
  accent-color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.form-success {
  display: none;
  background: var(--primary-color);
  color: #fff;
  padding: 18px 20px;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.form-success.show { display: block; }

.contact-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.info-box {
  background: var(--dark-color);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.info-box .icon-box { width: 60px; height: 60px; font-size: 1.4rem; flex-shrink: 0; }
.info-box h6 { margin: 0 0 4px; text-transform: uppercase; letter-spacing: 1px; }
.info-box p { margin: 0; }

/* Blog */
.card-blog { background: transparent; }
.card-blog .card-image { overflow: hidden; }
.card-blog .card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}
.card-blog:hover .card-image img { transform: scale(1.15); }
.card-blog .card-body {
  margin-top: -4.5rem;
  background-color: var(--border-color);
  position: relative;
  margin-inline: 1rem;
  padding: 24px 22px 28px;
}
.blog-meta {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.legal-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-content h4 { margin-top: 1.4rem; font-size: 1.4rem; }
.legal-content p, .legal-content li { color: var(--paragraph-color); }
.legal-content ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1rem; }
.legal-content ul li { margin-bottom: 0.45rem; }
.legal-content ol { padding-left: 1.3rem; color: var(--paragraph-color); }

.article-wrap { max-width: 900px; margin: 0 auto; }
.article-wrap img.featured {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  background: var(--dark-color);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .brand-mark { width: 70px; height: 70px; }
.footer-brand .brand-mark img { width: 48px; height: 48px; }
.footer-brand .brand-text { height: 70px; font-size: 1.5rem; padding-right: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links li a { color: var(--text-color); }
.footer-links li a:hover { color: var(--primary-color); }

.footer-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.newsletter-form {
  display: flex;
  border: 2px solid var(--border-color);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 16px;
  color: #fff;
  outline: none;
  font-size: 1rem;
}

.newsletter-form button {
  width: 56px;
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a { color: var(--paragraph-color); }
.footer-legal a:hover { color: var(--primary-color); }

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.partner-box {
  border: 1px solid var(--border-color);
  padding: 22px 28px;
  min-width: 160px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a9a9a;
  font-size: 1.2rem;
}

.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }

.lead { font-size: 1.08rem; }

.icon-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
}

.card-hover:hover .icon-number { -webkit-text-stroke: 1px #fff; }

.pad { padding: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }

.hidden { display: none !important; }

.quote-float {
  position: relative;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-split,
  .page-banner,
  .cta-band,
  .contact-split,
  .testimonial-featured,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-4, .fun-facts { grid-template-columns: repeat(2, 1fr); }
  .page-banner-image { min-height: 280px; }
  .page-banner-image img { position: relative; height: 280px; }
  .header-right { padding-right: 12px; }
}

@media (max-width: 900px) {
  .grid-3, .shop-grid, .gallery-grid, .testimonial-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.4rem; }
  .page-banner-copy { padding: 50px 28px; }
}

@media (max-width: 767px) {
  .section { padding: 4em 0; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 20px;
  }
  .navbar.open { display: flex; }
  .navbar .nav-link { padding: 14px 24px; border-bottom: 1px solid var(--border-color); }
  .grid-3, .shop-grid, .gallery-grid, .testimonial-cards, .grid-4, .fun-facts, .hero-photos {
    grid-template-columns: 1fr;
  }
  .header-social { display: none; }
  .hero-photos img,
  .hero-photos img:first-child,
  .hero-photos img:last-child { height: 220px; margin: 0; }
  .about-images .main-img { width: 100%; height: 320px; }
  .about-images .sub-img { position: relative; width: 100%; height: 200px; bottom: auto; border: 0; margin-top: 12px; }
  .footer-bottom { flex-direction: column; }
  .brand-mark, .brand-text { height: 72px; }
  .brand-mark { width: 72px; }
  .brand-text { font-size: 1.2rem; padding-right: 12px; }
  .btn { padding: 14px 22px; }
  .header-inner { min-height: 88px; }
}
