:root {
  --gold: #c9a452;
  --gold-hover: #b8922e;
  --dark: #1a1a1a;
  --white: #ffffff;
  --nav-link: rgba(255, 255, 255, 0.88);
  --max-width: 1675px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo', sans-serif;
  overflow-x: hidden;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#hero.nav-open {
  overflow: visible !important;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin-bottom: 0 !important;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}

.hero-slider .slide {
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 28px;
  z-index: 20;
}

.hero-slider .slick-dots li button:before {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: color 0.3s;
}

.hero-slider .slick-dots li.slick-active button:before {
  color: var(--gold);
  opacity: 1;
}

.slick-custom-prev,
.slick-custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0, 0, 0, 0.30);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 54px;
  height: 54px;
  display: none !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  border-radius: 0;
  padding: 0;
}

.slick-custom-prev:hover,
.slick-custom-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.slick-custom-prev {
  left: 50px;
}

.slick-custom-next {
  right: 50px;
}

.hero-controls-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  pointer-events: none;
  z-index: 20;
}

.hero-controls-container * {
  pointer-events: auto;
}

#mainNav {
  position: relative;
  z-index: 100000;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 50px 0;
  gap: 20px;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding-top: 4px;
}

.nav-logo-img {
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: absolute;
}

.page-nav-wrap .nav-logo-img {
  filter: invert(1);
}

.nav-logo-img:hover {
  transform: scale(1.04);
}

.logo-circle {
  width: 76px;
  height: 76px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 0, 0, 0.15);
}

.logo-circle::before,
.logo-circle::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.logo-circle::before {
  inset: 5px;
}

.logo-circle::after {
  inset: 10px;
}

.logo-monogram {
  font-family: "Vend Sans", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.logo-brand-name {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1;
}

.logo-brand-sub {
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-center {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: visible;
  gap: 0;
  padding-top: 28px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.nav-center .nav-item {
  list-style: none;
  flex-shrink: 0;
}

.nav-center .nav-link {
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--nav-link);
  text-decoration: none;
  padding: 6px 16px;
  position: relative;
  transition: color 0.25s;
  letter-spacing: 0.2px;
}

.nav-center .nav-link.active {
  color: var(--gold);
  font-weight: 500;
}

.nav-center .nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold);
  margin-top: 2px;
  border-radius: 1px;
}

.nav-center .nav-link:hover {
  color: var(--gold);
}

.nav-link-bold {
  font-weight: 700 !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-caret {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1a1a1a;
  border: 1px solid rgba(201, 164, 82, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  min-width: 220px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  margin: 0;
}

.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #1a1a1a;
  border-top: 1px solid rgba(201, 164, 82, 0.3);
  border-left: 1px solid rgba(201, 164, 82, 0.3);
}

.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}

.nav-submenu li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-submenu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: left;
  letter-spacing: 0.3px;
}

.nav-submenu li a:hover {
  background: rgba(201, 164, 82, 0.12);
  color: var(--gold);
  padding-left: 24px;
}

.nav-submenu li a.active {
  color: var(--gold);
  font-weight: 600;
  background: rgba(201, 164, 82, 0.08);
}

.nav-phone {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  padding-top: 36px;
  flex-shrink: 0;
}

.nav-phone strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-top: 20px;
  z-index: 100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overflow-item {
  list-style: none;
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.nav-center:has(.nav-overflow-item.overflow-open) {
  overflow: visible;
}

.nav-overflow-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
  font-family: 'Exo', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--nav-link);
  text-decoration: none;
  padding: 6px 16px;
  transition: color 0.25s;
}

.nav-overflow-btn:hover {
  color: var(--gold);
}

.nav-overflow-item.overflow-open .nav-overflow-btn .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-overflow-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(201, 164, 82, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  min-width: 210px;
  padding: 10px 0;
  list-style: none;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  margin: 0;
}

.nav-overflow-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: #1a1a1a;
  border-top: 1px solid rgba(201, 164, 82, 0.3);
  border-left: 1px solid rgba(201, 164, 82, 0.3);
  transform: rotate(45deg);
}

.nav-overflow-item.overflow-open .nav-overflow-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-overflow-menu>.nav-item>.nav-link,
.nav-overflow-menu>li>a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
  letter-spacing: 0.3px;
}

.nav-overflow-menu>.nav-item>.nav-link:hover,
.nav-overflow-menu>li>a:hover {
  background: rgba(201, 164, 82, 0.12);
  color: var(--gold);
  padding-left: 26px;
}

.nav-overflow-menu>.nav-item>.nav-link.active,
.nav-overflow-menu>li>a.active {
  color: var(--gold);
  font-weight: 600;
  background: rgba(201, 164, 82, 0.08);
}

.nav-overflow-menu .nav-submenu {
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: none !important;
  border-left: 2px solid var(--gold) !important;
  box-shadow: none !important;
  min-width: 100% !important;
  margin: 4px 0 4px 16px !important;
  transform: none !important;
  padding: 4px 0 !important;
  border-radius: 0 !important;
}

.nav-overflow-menu .nav-submenu::before {
  display: none !important;
}

.nav-overflow-menu .nav-submenu li a {
  padding: 7px 16px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.70) !important;
}

.nav-overflow-menu .nav-submenu li a:hover {
  padding-left: 20px !important;
  color: var(--gold) !important;
}

.hero-body {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px 60px;
}

.marble-panel {
  background-image: url('https://images.unsplash.com/photo-1517581177684-8db25d3c7c6a?w=900&q=85');
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 810px;
  padding: 52px 56px 52px;
  text-align: center;
  position: relative;
}

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

.panel-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-eyebrow span {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
}

.eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.panel-title {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 67px);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}

.btn-quote {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--white);
  background: var(--gold);
  border: none;
  padding: 13px 44px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}

.btn-quote:hover {
  background: var(--gold-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-social {
  position: absolute;
  bottom: 22px;
  right: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.hero-social a:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.s-fb {
  background: #1877f2;
}

.s-tw {
  background: #1da1f2;
}

.s-rss {
  background: #ee802f;
}

.s-yt {
  background: #ff0000;
}

.s-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

#about {
  position: relative;
  overflow: visible;
  padding: 110px 0 30px;
  background-image: url('../images/marbal_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-watermark-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
}

.about-stone-float {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-10%);
  width: 190px;
  height: auto;
  object-fit: contain;
  z-index: 99999;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  gap: 30px;
}

.about-left {
  flex: 0 0 44%;
  max-width: 44%;
  position: relative;
  z-index: 2;
}

.about-left>* {
  position: relative;
  z-index: 2;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 55px);
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.btn-about {
  display: inline-block;
  margin-top: 50px;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #fff;
  background: #111;
  border: none;
  padding: 14px 38px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-about:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.about-right {
  flex: 1;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 230px 160px;
  gap: 8px;
  width: 100%;
}

.about-stat {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
  background: transparent;
}

.stat-number {
  font-family: "Vend Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 7vw, 88px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -3px;
}

.stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  color: #555;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.about-img-tall {
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
}

.about-img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-tall:hover img {
  transform: scale(1.04);
}

.about-marble-img {
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
}

.about-marble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.about-marble-img:hover img {
  transform: scale(1.05);
}

#process {
  position: relative;
  background: #ffffff;
  padding: 85px 0 100px;
}

.process-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  gap: 60px;
}

.process-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  width: 100%;
}

.process-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 40px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
  max-width: 305px;
}

.process-number {
  font-family: "Vend Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 7vw, 150px);
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px #d8d8d8;
  user-select: none;
  pointer-events: none;
}

.process-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: #666;
  margin: 0;
  font-weight: 400;
}

#services {
  position: relative;
  padding: 80px 0 110px;
  overflow: visible;
}

.services-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
}

.services-heading {
  width: 100%;
  margin-bottom: 45px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.svc-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.svc-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.services-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 55px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.services-slider-wrap {
  width: 100%;
  position: relative;
}

.services-slider {
  margin: 0 -18px;
}

.services-slider .slick-slide {
  padding: 0 18px;
}

.svc-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex !important;
  flex-direction: column;
  border: none;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
}

.svc-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: #eaeaea;
}

.svc-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.05);
}

.svc-footer {
  padding: 15px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-top: none;
}

.svc-name {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 25px;
  color: #111;
  letter-spacing: -0.3px;
}

.svc-link {
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #555;
  text-decoration: none;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s, transform 0.2s;
}

.svc-link:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #ffffff;
  border: 1.5px solid #d2d2d2;
  color: #111111;
  font-size: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.svc-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 14px rgba(201, 164, 82, 0.25);
}

.svc-prev {
  left: -54px;
}

.svc-next {
  right: -54px;
}

.services-slider.static-grid {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  margin: 0;
}

.services-slider.static-grid .svc-card {
  flex: 1 1 calc(33.333% - 24px);
  max-width: calc(33.333% - 24px);
}

#gallery {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
  padding-top: 0;
}

.gallery-watermark {
  position: absolute;
  top: 10%;
  right: 0;
  width: 43%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.gallery-container {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  gap: 30px;
  align-items: flex-end;
}

.gallery-left {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
}

.gallery-featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gallery-featured-img-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #eaeaea;
}

.gallery-featured-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-featured-card:hover .gallery-featured-img-wrap img {
  transform: scale(1.04);
}

.gallery-right {
  flex: 0 0 65%;
  max-width: 65%;
  display: flex;
  flex-direction: column;
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 110px;
  margin-bottom: 25px;
  width: 100%;
}

.gallery-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.gallery-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.gallery-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 55px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.btn-gallery-all {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  background: var(--gold);
  border: none;
  padding: 13px 30px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.btn-gallery-all:hover {
  background: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-slider-wrap {
  width: 100%;
}

.gallery-slider {
  margin: 0 -10px;
}

.gallery-slider .slick-slide {
  padding: 0 10px;
}

.gallery-card {
  display: flex !important;
  flex-direction: column;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #eaeaea;
}

.gallery-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.04);
}

.gallery-footer {
  padding: 15px 0 0 0;
  background: transparent;
}

.gallery-card-title {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  color: #111;
  letter-spacing: -0.2px;
}

.gallery-slider .slick-current .gallery-card-title {
  color: var(--gold);
  transition: color 0.3s ease;
}

.gallery-slider-wrap .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 40px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  width: 100%;
}

.gallery-slider-wrap .slick-dots li {
  margin: 0 !important;
  padding: 0 !important;
  width: 10px !important;
  height: 10px !important;
  display: block !important;
  float: none !important;
}

.gallery-slider-wrap .slick-dots li button::before {
  display: none !important;
  content: '' !important;
}

.gallery-slider-wrap .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #dbdbdb !important;
  border: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer;
  transition: background 0.3s;
  display: block !important;
  opacity: 1 !important;
}

.gallery-slider-wrap .slick-dots li.slick-active button {
  background: var(--gold) !important;
}

#blog {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
  padding-bottom: 40px;
}

.blog-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
}

.blog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
  width: 100%;
}

.blog-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.blog-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.blog-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 55px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.btn-blog-all {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  background: var(--gold);
  border: none;
  padding: 13px 30px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.btn-blog-all:hover {
  background: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-slider-wrap {
  width: 100%;
}

.blog-slider {
  margin: 0 -15px;
}

.blog-slider .slick-slide {
  padding: 0 15px;
}

.blog-card {
  display: flex !important;
  flex-direction: column;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  background: #eaeaea;
  margin-bottom: 20px;
}

.blog-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-meta {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.1px;
}

.blog-card-title {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
  color: #111;
  letter-spacing: -0.2px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #555;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-slider-wrap .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 40px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  width: 100%;
}

.blog-slider-wrap .slick-dots li {
  margin: 0 !important;
  padding: 0 !important;
  width: 10px !important;
  height: 10px !important;
  display: block !important;
  float: none !important;
}

.blog-slider-wrap .slick-dots li button::before {
  display: none !important;
  content: '' !important;
}

.blog-slider-wrap .slick-dots li button {
  width: 10px !important;
  height: 10px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #dbdbdb !important;
  border: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer;
  transition: background 0.3s;
  display: block !important;
  opacity: 1 !important;
}

.blog-slider-wrap .slick-dots li.slick-active button {
  background: var(--gold) !important;
}

#newsletter {
  position: relative;
  background: #ffffff;
  padding: 100px 0;
  padding-top: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 890px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

.newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.newsletter-eyebrow-line {
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.newsletter-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 55px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.newsletter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 580px;
  margin: 0 auto 35px;
}

.newsletter-form {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #d2d2d2;
  padding-bottom: 8px;
  position: relative;
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Exo', sans-serif;
  font-size: 14.5px;
  color: #111;
  outline: none;
  padding-right: 40px;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: var(--gold);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.25s, transform 0.2s;
  border-radius: 2px;
  line-height: 1;
}

.newsletter-btn:hover {
  background: var(--gold-hover);
  transform: scale(1.05);
}

.newsletter-stone {
  position: absolute;
  bottom: 0;
  height: auto;
  max-height: 280px;
  width: 20%;
  max-width: 260px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.stone-left {
  left: 15%;
}

.stone-right {
  right: 15%;
}

#contact {
  position: relative;
  z-index: 8;
  background-image: url('../images/contact_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 0;
  overflow: visible;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  gap: 50px;
}

.contact-info {
  flex: 0 0 45%;
  max-width: 45%;
  color: #ffffff;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.contact-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-title {
  font-family: "Vend Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 55px);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.contact-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.contact-action-wrap {
  margin-bottom: 35px;
}

.contact-action-text {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 25px;
  color: var(--gold);
}

.contact-action-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 14px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-row {
  display: flex;
  width: 100%;
}

.detail-row.split-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.contact-form-wrap {
  flex: 0 0 50%;
  max-width: 658px;
  margin-bottom: -110px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #ffffff;
  padding: 45px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  position: relative;
}

.form-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: var(--gold);
  line-height: 1.55;
  text-align: center;
  margin-bottom: 30px;
}

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

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: none;
  background: #f7f7f7;
  padding: 13px 18px;
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: #111;
  outline: none;
  transition: background 0.3s;
  border-radius: 0;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: #eeeeee;
}

.form-grid select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
}

.form-full-col {
  grid-column: 1 / 3;
}

.form-grid textarea {
  height: 100px;
  resize: none;
}

.form-submit-row {
  display: flex;
  justify-content: flex-start;
}

.btn-submit {
  background: var(--gold);
  border: none;
  padding: 14px 38px;
  color: #ffffff;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: background 0.25s, transform 0.2s;
  cursor: pointer;
  border-radius: 0;
}

.btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.form-floating-tiles {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 130px;
  height: auto;
  z-index: 12;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

#counter-banner {
  background: var(--gold);
  padding: 50px 0;
  position: relative;
  z-index: 5;
}

.counter-banner-container {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
}

.counter-col {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

.counter-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  flex-shrink: 0;
}

.counter-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.counter-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.counter-number {
  font-family: "Vend Sans", sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -1px;
}

.counter-label {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.95;
  white-space: nowrap;
}

.counter-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

























#footer {
  position: relative;
  background-image: url(../images/footer_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 0;
  color: #ffffff;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

.footer-branding-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-logo-wrap {
  width: 100%;
  max-width: 200px;
}

.footer-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: invert(1);
}

.footer-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px rgba(255, 255, 255, 0.15) solid;
  padding: 25px 20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
}

.logo-circle-fallback {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.logo-circle-fallback::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 82, 0.4);
}

.logo-letters {
  font-family: "Vend Sans", sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 2px;
  color: #ffffff;
}

.logo-title-fallback {
  font-family: "Vend Sans", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.logo-sub-fallback {
  font-family: 'Exo', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.footer-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.2s;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours-list li {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.hours-day {
  font-weight: 500;
}

.hours-time {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-phone {
  font-family: "Vend Sans", sans-serif;
  font-size: 35px;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1;
}

.footer-phone:hover {
  color: var(--gold-hover);
}

.footer-email {
  font-family: 'Exo', sans-serif;
  font-size: 25px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.footer-email:hover {
  color: var(--gold);
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-address i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-social-wrap {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  transition: background 0.3s, transform 0.2s;
  background: rgba(255, 255, 255, 0.1);
}

.social-btn.fb {
  background: #3b5998;
}

.social-btn.tw {
  background: #1da1f2;
}

.social-btn.rss {
  background: #f26522;
}

.social-btn.yt {
  background: #ff0000;
}

.social-btn.ig {
  background: #e1306c;
}

.social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
}

.accent-design-by {
  color: var(--gold);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-link {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bottom-link:hover {
  color: var(--gold);
}

.link-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.nav-deals {
  color: var(--gold) !important;
  font-weight: 600 !important;
  position: relative;
}

.nav-deals::before {
  content: 'â˜…';
  font-size: 9px;
  position: absolute;
  top: -2px;
  right: 6px;
  color: var(--gold);
  animation: pulse-star 1.8s ease-in-out infinite;
}

.contact-details-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.contact-details-cta-row .contact-details {
  flex: 1;
  position: relative;
  padding-right: 40px;
  padding-top: 6px;
  padding-bottom: 18px;
}

.contact-details-cta-row .contact-details::after {
  content: '';
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.contact-details-cta-row .btn-call-cta {
  margin-top: 0;
  flex-shrink: 0;
}

.btn-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  padding: 18px 38px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 22px rgba(201, 164, 82, 0.35);
}

.btn-call-cta i {
  font-size: 18px;
  animation: ring-phone 2.5s ease-in-out infinite;
}

.btn-call-cta:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 164, 82, 0.45);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-submit-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-submit-call i {
  animation: ring-phone 2.5s ease-in-out infinite;
}

.btn-submit-call:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.form-radio-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 16px;
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.form-radio-label {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  flex-shrink: 0;
}

.form-radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.form-radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.sticky-call-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(201, 164, 82, 0.45);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, padding 0.3s;
  overflow: hidden;
  white-space: nowrap;
}

.sticky-call-cta .sticky-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 15px;
  animation: ring-phone 2.5s ease-in-out infinite;
}

.sticky-call-cta .sticky-cta-text {
  display: inline-block;
  transition: max-width 0.35s ease, opacity 0.3s ease;
  max-width: 100px;
  opacity: 1;
}

.sticky-call-cta:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(201, 164, 82, 0.55);
}

.sticky-call-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid var(--gold);
  animation: cta-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.page-nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  background: transparent;
  box-shadow: none;
}

.page-nav-wrap #mainNav {
  padding-top: 14px;
  padding-bottom: 14px;
}

.bc-current {
  color: var(--gold);
  font-weight: 600;
}

.port-hero {
  position: relative;
  height: 420px;
  background-image: url('../images/banner2.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.port-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.62) 0%, rgba(26, 26, 26, 0.45) 100%);
  z-index: 1;
}

.port-hero--contact {
  background-image: url('../images/contact_bg.jpg');
  background-position: center 55%;
  height: 400px;
}

.port-hero-watermark {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 2;
}

.port-hero-body {
  position: relative;
  z-index: 3;
  text-align: center;
}

.port-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.port-hero-eyebrow span {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  font-style: italic;
}

.port-hero-eyebrow-dash {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.port-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.port-hero h1 span {
  color: var(--gold);
}

.port-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.port-breadcrumb,
.ct-breadcrumb {
  background: #f6f4f0;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.port-breadcrumb-inner,
.ct-breadcrumb-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  color: #888;
}

.port-breadcrumb-inner a,
.ct-breadcrumb-inner a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.port-breadcrumb-inner a:hover,
.ct-breadcrumb-inner a:hover {
  color: var(--gold);
}

.port-breadcrumb-inner i,
.ct-breadcrumb-inner i {
  font-size: 10px;
  color: var(--gold);
}

@keyframes pulse-star {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.35);
  }
}



@keyframes ring-phone {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-18deg);
  }

  20% {
    transform: rotate(18deg);
  }

  30% {
    transform: rotate(-12deg);
  }

  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}



.port-filter-section {
  background: #fff;
  padding: 55px 0 30px;
}

.port-filter-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.port-section-header {
  text-align: center;
}

.port-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.port-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

.port-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.port-section-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 52px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.port-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  max-width: 560px;
  margin: 14px auto 0;
}

.port-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #555;
  background: #f4f2ee;
  border: 1.5px solid #e8e4dc;
  padding: 9px 24px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-1px);
}

.port-gallery-section {
  background: #fff;
  padding: 20px 0 90px;
}

.port-gallery-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.port-grid {
  width: 100%;
}

.port-grid-sizer,
.port-item {
  width: calc(25% - 10.5px);
  margin-bottom: 14px;
}

.port-gutter-sizer {
  width: 14px;
}

.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #eaeaea;
}

.port-item--wide {
  width: calc(50% - 7px);
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.port-item:not(.port-item--tall) {
  aspect-ratio: 4 / 3;
}

.port-item.port-item--tall {
  aspect-ratio: unset;
}

.port-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}

.port-item:hover .port-item-overlay {
  opacity: 1;
}

.port-item:hover img {
  transform: scale(1.07);
}

.port-item-label {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0 0 4px;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.port-item-cat {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s;
}

.port-item:hover .port-item-label,
.port-item:hover .port-item-cat {
  transform: translateY(0);
}

.port-item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(201, 164, 82, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.port-item:hover .port-item-zoom {
  opacity: 1;
  transform: scale(1);
}

.port-item.hidden {
  display: none;
}

.port-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.port-lightbox.open {
  display: flex;
}

.port-lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.port-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 3px solid rgba(201, 164, 82, 0.4);
  display: block;
  animation: lb-fade-in 0.3s ease;
}

.port-lightbox-caption {
  margin-top: 14px;
  text-align: center;
}

.port-lightbox-caption h4 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
}

.port-lightbox-caption span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gold);
}

.port-lightbox-close {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.port-lightbox-close:hover {
  background: var(--gold-hover);
  transform: scale(1.1) rotate(90deg);
}

.port-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(201, 164, 82, 0.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.port-lightbox-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.port-lightbox-nav.prev {
  left: -70px;
}

.port-lightbox-nav.next {
  right: -70px;
}

.port-stats {
  background-image: url('../images/marbal_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
}

.port-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.port-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.port-stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.port-stat-item:last-child {
  border-right: none;
}

.port-stat-num {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 68px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.port-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  margin-top: 8px;
  text-transform: uppercase;
  display: block;
}

.port-cta {
  background: #fff;
  padding: 60px 0;
}

.port-cta-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.port-cta-text h2 {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.port-cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.port-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 15px 34px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.35);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 164, 82, 0.45);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  background: transparent;
  border: 2px solid #ccc;
  padding: 13px 30px;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

@keyframes lb-fade-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}







/* ============================================================
   CONTACT US PAGE
   ============================================================ */

/* â”€â”€ Main Layout â”€â”€ */
.ct-main {
  background: #fff;
  padding: 90px 0 100px;
}

.ct-main-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

/* â”€â”€ Info Panel â”€â”€ */
.ct-info-panel {
  position: sticky;
  top: 100px;
}

.ct-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ct-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

.ct-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.ct-info-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 44px);
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 18px;
}

.ct-info-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 36px;
}

.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: #faf9f6;
  border: 1px solid #f0ece4;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.2s;
}

.ct-info-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.ct-info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  flex-shrink: 0;
}

.ct-info-card-body h4 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  margin: 0 0 4px;
  letter-spacing: 0.1px;
}

.ct-info-card-body p,
.ct-info-card-body a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.ct-info-card-body a:hover {
  color: var(--gold);
}

.ct-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-hours-list li {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  padding: 3px 0;
  border-bottom: 1px dashed #eee;
}

.ct-hours-list li {
  gap: 20px;
}

.ct-hours-list li:last-child {
  border-bottom: none;
}

.ct-hours-day {
  color: #444;
  font-weight: 500;
}

.ct-hours-time {
  color: var(--gold);
  font-weight: 600;
}

.ct-call-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 28px;
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(201, 164, 82, 0.38);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 6px;
}

.ct-call-btn i {
  font-size: 20px;
  animation: ring-phone 2.5s ease-in-out infinite;
}

.ct-call-btn:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201, 164, 82, 0.48);
}

.ct-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.ct-social-label {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-right: 4px;
}

/* â”€â”€ Form Card â”€â”€ */
.ct-form-card {
  background: #fff;
  border: 1px solid #ede9e0;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.07);
  padding: 52px 50px 48px;
  position: relative;
  overflow: hidden;
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.ct-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: url('../images/bela_background.png') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}

.ct-form-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}

.ct-form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  margin: 0 0 36px;
}

.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ct-form-full {
  grid-column: 1 / -1;
}

.ct-form-grid input:not([type="radio"]),
.ct-form-grid select,
.ct-form-grid textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  background: #faf9f6;
  border: 1.5px solid #e8e3d8;
  padding: 13px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
}

.ct-form-grid input:not([type="radio"]):focus,
.ct-form-grid select:focus,
.ct-form-grid textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 164, 82, 0.12);
}

.ct-form-grid input::placeholder,
.ct-form-grid textarea::placeholder {
  color: #aaa;
}

.ct-form-grid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A452' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.ct-form-grid select option {
  background: #fff;
  color: #333;
}

.ct-form-grid textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.65;
}

.ct-radio-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 13px 16px;
  background: #faf9f6;
  border: 1.5px solid #e8e3d8;
}

.ct-radio-label {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  flex-shrink: 0;
}

.ct-radio-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.ct-radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin: 0;
}

.ct-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ct-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.32);
}

.ct-btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 164, 82, 0.42);
}

.ct-btn-call-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  border-radius: 0;
  white-space: nowrap;
}

.ct-btn-call-form:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.ct-btn-call-form i {
  animation: ring-phone 2.5s ease-in-out infinite;
}

.ct-success-msg {
  display: none;
  background: #f0faf0;
  border: 1.5px solid #4caf50;
  color: #2e7d32;
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 2px;
  align-items: center;
  gap: 10px;
}

.ct-success-msg.show {
  display: flex;
}

/* â”€â”€ Map â”€â”€ */
.ct-map-section {
  background: #f6f4f0;
  padding: 0;
}

.ct-map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* â”€â”€ Why Choose Strip â”€â”€ */
.ct-why {
  background: #fff;
  padding: 90px 0;
}

.ct-why-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.ct-why-header {
  text-align: center;
  margin-bottom: 55px;
}

.ct-why-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ct-why-eyebrow span.text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.ct-why-eyebrow span.line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.ct-why-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  color: #111;
  letter-spacing: -0.4px;
  margin: 0;
}

.ct-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ct-why-card {
  text-align: center;
  padding: 38px 28px 36px;
  border: 1px solid #ede9e0;
  background: #faf9f6;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.ct-why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ct-why-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.ct-why-card:hover::before {
  transform: scaleX(1);
}

.ct-why-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.3);
}

.ct-why-card h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 10px;
}

.ct-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* â”€â”€ Contact Responsive â”€â”€ */






/* ============================================================
   DEALS & SALES PAGE (Sinks + Edges)
   ============================================================ */

.ds-promo-section {
  background: #f6f4f0;
  padding: 60px 0 20px;
}

.ds-promo-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.ds-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ds-promo-card {
  background: #fff;
  border: 1px solid #ede9e0;
  border-left: 4px solid var(--gold);
  padding: 30px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 25px;
}

.ds-promo-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.22);
}

.ds-promo-info h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111;
  margin: 0 0 6px;
}

.ds-promo-info p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.ds-section {
  background: #fff;
  padding: 60px 0;
}

.ds-section--alt {
  background: #faf9f6;
  border-top: 1px solid #ede9e0;
  border-bottom: 1px solid #ede9e0;
}

.ds-container {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.ds-header {
  text-align: center;
  margin-bottom: 40px;
}

.ds-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ds-eyebrow span.text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.ds-eyebrow span.line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.ds-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  color: #111;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.ds-title span {
  color: var(--gold);
}

.ds-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.ds-grid--triple {
  grid-template-columns: repeat(3, 1fr);
}

.ds-grid--2col {
  grid-template-columns: repeat(2, minmax(280px, 400px));
}

.ds-grid--center {
  justify-content: center;
}

.ds-card {
  background: #fff;
  border: 1px solid #ede9e0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.ds-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.ds-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(201, 164, 82, 0.25);
}

.ds-badge--premium {
  background: #111;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.ds-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #faf9f6;
  border-bottom: 1px solid #f0ece4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ds-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ds-card:hover .ds-img-wrap img {
  transform: scale(1.05);
}

.ds-info {
  padding: 22px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ds-card-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 6px;
}

.ds-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Edge drawings styling */
.ds-edge-svg {
  width: 100%;
  height: 100%;
  max-height: 120px;
}

/* Responsive */






/* ============================================================
   STANDALONE BLOG PAGE
   ============================================================ */

.bl-main {
  background: #fff;
}

.bl-main-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 60px 50px 70px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

/* â”€â”€ Blog Grid â”€â”€ */
.bl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Featured Blog Post (Spans both columns) */
.bl-featured-card {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid #ede9e0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  margin-bottom: 20px;
}

.bl-featured-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.bl-featured-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.bl-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bl-featured-card:hover .bl-featured-img-wrap img {
  transform: scale(1.04);
}

.bl-featured-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Standard Blog Card */
.bl-card {
  background: #fff;
  border: 1px solid #ede9e0;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bl-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.bl-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #faf9f6;
  border-bottom: 1px solid #f0ece4;
}

.bl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bl-card:hover .bl-img-wrap img {
  transform: scale(1.05);
}

.bl-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bl-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
}

.bl-meta-item i {
  color: var(--gold);
  margin-right: 5px;
}

.bl-cat-tag {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: inline-block;
}

.bl-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.4;
  transition: color 0.2s;
  text-decoration: none;
}

.bl-title:hover {
  color: var(--gold);
}

.bl-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}

.bl-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  transition: color 0.25s, transform 0.2s;
  margin-top: auto;
}

.bl-readmore:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* â”€â”€ Sidebar â”€â”€ */
.bl-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.bl-widget {
  background: #fff;
  border: 1px solid #ede9e0;
  border-left: 3px solid var(--gold);
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.bl-widget-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 20px;
  border-bottom: 1.5px dashed #f0ece4;
  padding-bottom: 10px;
}

/* Search widget */
.bl-search-form {
  position: relative;
}

.bl-search-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  background: #faf9f6;
  border: 1.5px solid #e8e3d8;
  padding: 12px 48px 12px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.bl-search-input:focus {
  border-color: var(--gold);
  background: #fff;
}

.bl-search-btn {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.bl-search-btn:hover {
  color: var(--gold-hover);
}

/* Categories widget */
.bl-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bl-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #555;
  cursor: pointer;
  padding: 8px 12px;
  background: #faf9f6;
  border: 1px solid #f0ece4;
  transition: all 0.25s;
}

.bl-cat-item:hover,
.bl-cat-item.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.bl-cat-count {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  background: #eae6db;
  color: #666;
  padding: 2px 8px;
  border-radius: 10px;
  transition: all 0.25s;
}

.bl-cat-item:hover .bl-cat-count,
.bl-cat-item.active .bl-cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Recent Posts widget */
.bl-recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-recent-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.bl-recent-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
  border: 1px solid #ede9e0;
}

.bl-recent-content {
  flex-grow: 1;
}

.bl-recent-title {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.35;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bl-recent-item:hover .bl-recent-title {
  color: var(--gold);
}

.bl-recent-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
}

/* Newsletter Widget */
.bl-newsletter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px;
}

.bl-newsletter-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  background: #faf9f6;
  border: 1.5px solid #e8e3d8;
  padding: 10px 14px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.25s, background 0.25s;
}

.bl-newsletter-input:focus {
  border-color: var(--gold);
  background: #fff;
}

.bl-newsletter-btn {
  width: 100%;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 12px;
  cursor: pointer;
  transition: background 0.25s;
}

.bl-newsletter-btn:hover {
  background: var(--gold-hover);
}

/* â”€â”€ Pagination â”€â”€ */
.bl-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.bl-page-link {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #555;
  background: #faf9f6;
  border: 1.5px solid #e8e4dc;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
}

.bl-page-link:hover,
.bl-page-link.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Responsive */






/* â”€â”€ Single Blog Post Styles â”€â”€ */
.bl-post-body {
  background: #fff;
  border: 1px solid #ede9e0;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 40px;
}

.bl-post-img-full {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 35px;
  border-bottom: 1px solid #f0ece4;
}

.bl-post-content {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #444;
  line-height: 1.85;
}

.bl-post-content p {
  margin-bottom: 24px;
}

.bl-post-content h2,
.bl-post-content h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  color: #111;
  margin: 38px 0 18px;
  letter-spacing: -0.2px;
}

.bl-post-content h2 {
  font-size: 26px;
}

.bl-post-content h3 {
  font-size: 21px;
}

.bl-post-content blockquote {
  font-family: 'Exo', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  border-left: 4px solid var(--gold);
  padding: 10px 0 10px 30px;
  margin: 35px 0;
  background: #faf9f6;
}

.bl-post-content blockquote p {
  margin: 0;
  line-height: 1.6;
}

.bl-post-content ul,
.bl-post-content ol {
  margin: 0 0 28px 24px;
  padding: 0;
}

.bl-post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Share & Tags */
.bl-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px dashed #ede9e0;
}

.bl-post-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bl-post-tags span {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
}

.bl-tag-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #666;
  background: #faf9f6;
  border: 1px solid #f0ece4;
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.bl-tag-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.bl-post-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bl-post-share span {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
}

.bl-share-btn {
  width: 34px;
  height: 34px;
  background: #faf9f6;
  border: 1px solid #f0ece4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s;
}

.bl-share-btn:hover {
  color: #fff;
}

.bl-share-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.bl-share-btn.tw:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.bl-share-btn.pin:hover {
  background: #bd081c;
  border-color: #bd081c;
}

.bl-share-btn.ln:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

/* Author Bio Card */
.bl-author-card {
  background: #faf9f6;
  border: 1px solid #ede9e0;
  border-left: 3px solid var(--gold);
  padding: 35px 40px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 50px;
}

.bl-author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bl-author-info h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 10px;
}

.bl-author-info p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 12px;
}

.bl-author-social {
  display: flex;
  gap: 12px;
}

.bl-author-social a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.bl-author-social a:hover {
  color: var(--gold);
}

/* Comments Section */
.bl-comments-wrap {
  margin-bottom: 50px;
}

.bl-comments-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #111;
  margin-bottom: 30px;
  border-bottom: 1.5px dashed #f0ece4;
  padding-bottom: 12px;
}

.bl-comment-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bl-comment-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bl-comment-item.reply {
  margin-left: 60px;
}

.bl-comment-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.bl-comment-box {
  flex-grow: 1;
  background: #fff;
  border: 1px solid #ede9e0;
  padding: 22px 25px;
  position: relative;
}

.bl-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.bl-comment-author {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.bl-comment-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
}

.bl-comment-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.bl-comment-reply-btn {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  transition: color 0.2s;
}

.bl-comment-reply-btn:hover {
  color: var(--gold-hover);
}

/* Comment Form */
.bl-comment-form-card {
  background: #fff;
  border: 1px solid #ede9e0;
  padding: 40px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.04);
}

.bl-comment-form-title {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.bl-comment-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #777;
  margin-bottom: 28px;
}

.bl-comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bl-comment-form-full {
  grid-column: 1 / -1;
}

.bl-comment-form-grid input,
.bl-comment-form-grid textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #333;
  background: #faf9f6;
  border: 1.5px solid #e8e3d8;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.bl-comment-form-grid input:focus,
.bl-comment-form-grid textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 164, 82, 0.1);
}

.bl-comment-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.bl-comment-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 14px 34px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 15px;
}

.bl-comment-btn-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Responsive updates */


/* ============================================================
   SINGLE BLOG PAGE ENHANCEMENTS
   ============================================================ */

/* Comment Text Avatars (removes inline style) */
.bl-comment-avatar-text {
  background: #e8e3d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  color: #666;
}

/* Sidebar & Comments Alerts (removes inline style) */
.bl-alert {
  border-radius: 0 !important;
}

.bl-alert-comment {
  margin-top: 1rem;
  padding: 8px 16px;
}

.bl-alert-sidebar {
  font-size: 13.5px;
  margin-top: 8px;
  padding: 8px 16px;
}

.bl-no-posts-widget {
  grid-column: 1 / -1;
  border-left: none !important;
  border-top: 3px solid var(--gold) !important;
}

/* â”€â”€ Stone Comparison Table â”€â”€ */
.bl-table-container {
  overflow-x: auto;
  margin: 35px 0 40px;
  border: 1px solid #ede9e0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.bl-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #444;
  min-width: 600px;
}

.bl-comparison-table th,
.bl-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #ede9e0;
}

.bl-comparison-table th {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  color: #fff;
  background: #1a1a1a;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.5px;
}

.bl-comparison-table th:first-child {
  border-left: 3px solid var(--gold);
}

.bl-comparison-table tr:last-child td {
  border-bottom: none;
}

.bl-comparison-table tr:nth-child(even) {
  background: #faf9f6;
}

.bl-comparison-table td strong {
  font-family: 'Exo', sans-serif;
  color: #111;
  font-weight: 600;
}

.bl-comparison-table td .bl-cell-highlight {
  color: var(--gold);
  font-weight: 600;
}

/* Responsiveness for comparison table */


/* â”€â”€ Back to Top Button â”€â”€ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  /* Stacked above sticky-call-cta (32px bottom) */
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(201, 164, 82, 0.35);
  cursor: pointer;
  z-index: 9999;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.5);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

font-size: 14px;
}
}

/* ============================================================
   GRANITE COUNTERTOPS SUB-PAGE (.gr- prefix)
   ============================================================ */

/* â”€â”€ Overview Section â”€â”€ */
.gr-overview-section {
  background: #fff;
  padding: 90px 0;
}

.gr-overview-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.gr-overview-text h2 {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.5vw, 38px);
  color: #111;
  margin: 0 0 18px;
  line-height: 1.25;
}

.gr-overview-text h2 span {
  color: var(--gold);
}

.gr-overview-text p.lead {
  font-size: 20px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.gr-overview-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.gr-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  border-top: 1px dashed #ede9e0;
  padding-top: 30px;
}

.gr-stat-item {
  display: flex;
  flex-direction: column;
}

.gr-stat-num {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 2.5vw, 36px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.gr-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gr-overview-img-wrap {
  position: relative;
  border-left: 5px solid var(--gold);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gr-overview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gr-overview-img-wrap:hover img {
  transform: scale(1.05);
}

.gr-benefits-section {
  background: #faf9f6;
  padding: 90px 0;
  border-top: 1px solid #ede9e0;
  border-bottom: 1px solid #ede9e0;
}

.gr-benefits-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.gr-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gr-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gr-eyebrow span.text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

.gr-eyebrow span.line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.gr-section-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  color: #111;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.gr-section-title span {
  color: var(--gold);
}

.gr-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.gr-benefit-card {
  background: #fff;
  border: 1px solid #ede9e0;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.gr-benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.gr-benefit-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.gr-benefit-card:hover::before {
  transform: scaleX(1);
}

.gr-benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.25);
}

.gr-benefit-card h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 0 0 12px;
}

.gr-benefit-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.gr-color-section {
  background: #fff;
  padding: 90px 0;
}

.gr-color-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

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

.gr-color-card {
  background: #fff;
  border: 1px solid #ede9e0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.gr-color-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.gr-color-img-wrap {
  position: relative;
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  background: #faf9f6;
  border-bottom: 1px solid #f0ece4;
}

.gr-color-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gr-color-card:hover .gr-color-img-wrap img {
  transform: scale(1.05);
}

.gr-color-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(201, 164, 82, 0.25);
  z-index: 5;
}

.gr-color-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gr-color-info h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #111;
  margin: 0 0 8px;
}

.gr-color-info p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 18px;
}

.gr-color-meta {
  margin-top: auto;
  border-top: 1px solid #f0ece4;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #777;
}

.gr-color-meta span i {
  color: var(--gold);
  margin-right: 5px;
}

.gr-color-btn {
  text-align: center;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: 10px;
  margin-top: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

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







/* ============================================================
   COLOR INVENTORY GALLERY & MODAL SYSTEM
   ============================================================ */
.gallery-controls-wrap {
  max-width: var(--max-width);
  margin: 40px auto 30px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-search-box {
  position: relative;
  flex: 0 0 320px;
  max-width: 100%;
}

.gallery-search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 15px;
}

.gallery-search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-search-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 164, 82, 0.15);
}

.gallery-filters-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-filter-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-filter-btn {
  background: transparent;
  border: none;
  color: #495057;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.04);
}

.gallery-filter-btn.active {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 164, 82, 0.25);
}

.gallery-dropdown-wrap select {
  padding: 12px 36px 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  /* Custom arrow styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.gallery-dropdown-wrap select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201, 164, 82, 0.15);
}

.gr-color-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}

.gr-color-card.hidden {
  display: none !important;
}

.gallery-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  color: #fff;
  border-radius: 20px;
}

.badge-granite {
  background: linear-gradient(135deg, #4A5D4E, #364439);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-quartz {
  background: linear-gradient(135deg, #2D4C60, #1E3341);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-quartzite {
  background: linear-gradient(135deg, #7C5E43, #5A432F);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Specs modal popup */
.slab-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
}

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

.slab-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
}

.slab-modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  z-index: 2001;
  border-radius: 6px;
  overflow: hidden;
  transform: translateY(-30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slab-modal.open .slab-modal-content {
  transform: translateY(0) scale(1);
}

.slab-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.slab-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.slab-modal-body {
  display: flex;
  flex-direction: row;
}

.slab-modal-img-wrap {
  flex: 0 0 45%;
  position: relative;
  background: #0d0d0d;
}

.slab-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.slab-modal-info {
  flex: 1;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slab-modal-info h2 {
  font-family: 'Vend Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.slab-modal-info h2 span {
  color: var(--gold);
}

.slab-modal-material {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.slab-modal-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* Specs Table */
.slab-modal-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.slab-modal-specs tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slab-modal-specs tr:last-child {
  border-bottom: none;
}

.slab-modal-specs td {
  padding: 10px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.slab-modal-specs td.spec-name {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  color: #aaa;
  width: 40%;
}

.slab-modal-specs td.spec-val {
  color: #fff;
  font-weight: 500;
}

.slab-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(201, 164, 82, 0.25);
  border: none;
  cursor: pointer;
}

.slab-modal-btn:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.35);
}

/* Responsive updates for Gallery controls and modal */




/* ============================================================
   SINKS & EDGES â€” SHARED PAGE COMPONENTS
   ============================================================ */

.ds-section {
  padding: 80px 0;
  background: #0d0d0d;
}

.ds-section--alt {
  background: #111;
}

.ds-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.ds-header {
  text-align: center;
  margin-bottom: 52px;
}

.ds-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.ds-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--gold, #C9A452);
  display: inline-block;
}

.ds-eyebrow .text {
  color: var(--gold, #C9A452);
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ds-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #f0ede6;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ds-title span {
  color: var(--gold, #C9A452);
}

.ds-subtitle {
  color: #999;
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.ds-grid--2col {
  grid-template-columns: repeat(2, minmax(240px, 360px));
}

.ds-grid--center {
  justify-content: center;
}

.ds-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ds-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 164, 82, 0.25);
  border-color: rgba(201, 164, 82, 0.35);
}

.ds-img-wrap {
  background: #1c1c1c;
  border-bottom: 1px solid #252525;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 140px;
}

.ds-edge-svg {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.ds-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 20px;
  flex: 1;
}

.ds-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #f0ede6;
  margin: 0 0 10px;
}

.ds-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #8a8a8a;
  margin-bottom: 18px;
  flex: 1;
}

.ds-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Exo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(201, 164, 82, 0.15);
  color: #C9A452;
  border: 1px solid rgba(201, 164, 82, 0.3);
  z-index: 1;
}

.ds-badge--premium {
  background: rgba(138, 100, 38, 0.2);
  color: #e8c070;
  border-color: rgba(232, 192, 112, 0.4);
}


.ds-card-btn {
  display: inline-block;
  align-self: flex-start;
  text-align: center;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold, #C9A452);
  border: 1.5px solid var(--gold, #C9A452);
  background: transparent;
  padding: 9px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  border-radius: 2px;
  margin-top: auto;
}

.ds-card-btn:hover {
  background: var(--gold, #C9A452);
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(201, 164, 82, 0.3);
  text-decoration: none;
}

.ds-promo-section {
  padding: 40px 0;
  background: #0a0a0a;
  border-bottom: 1px solid #1e1e1e;
}

.ds-promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.ds-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ds-promo-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #161616;
  border: 1px solid #242424;
  border-left: 3px solid var(--gold, #C9A452);
  padding: 24px 20px;
  border-radius: 4px;
}

.ds-promo-icon {
  font-size: 24px;
  color: var(--gold, #C9A452);
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-promo-info h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f0ede6;
  margin: 0 0 6px;
}

.ds-promo-info p {
  font-size: 13.5px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.sinks-section-nav {
  background: #0f0f0f;
  border-bottom: 1px solid #1e1e1e;
  position: sticky;
  top: 70px;
  z-index: 90;
}

.sinks-section-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.sinks-section-nav-inner::-webkit-scrollbar {
  display: none;
}

.sinks-nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #777;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.sinks-nav-tab i {
  font-size: 14px;
}

.sinks-nav-tab:hover,
.sinks-nav-tab.active {
  color: #C9A452;
  border-bottom-color: #C9A452;
  text-decoration: none;
}

/* â”€â”€ Responsive grid â”€â”€ */




.edge-compare-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid #222;
}

.edge-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.edge-compare-table thead tr {
  background: #181818;
  border-bottom: 2px solid #C9A452;
}

.edge-compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A452;
}

.edge-compare-table tbody tr {
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.2s;
}

.edge-compare-table tbody tr:hover {
  background: #1a1a1a;
}

.edge-compare-table tbody td {
  padding: 15px 20px;
  color: #aaa;
  vertical-align: middle;
}

.edge-compare-table tbody td:first-child {
  color: #f0ede6;
}

.badge-free {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(201, 164, 82, 0.12);
  color: #C9A452;
  border: 1px solid rgba(201, 164, 82, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Exo', sans-serif;
  letter-spacing: 0.5px;
}

.badge-premium {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(138, 100, 38, 0.15);
  color: #e8c070;
  border: 1px solid rgba(232, 192, 112, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Exo', sans-serif;
  letter-spacing: 0.5px;
}



/* ============================================================
   DEALS & SALES PAGE â€” WHITE / LIGHT THEME
   ============================================================ */

.deals-countdown-bar {
  background: linear-gradient(90deg, #8a5a1a 0%, #C9A452 50%, #8a5a1a 100%);
  padding: 12px 20px;
  text-align: center;
  top: 70px;
  z-index: 88;
}

.deals-countdown-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.deals-countdown-label {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

.deals-timer {
  display: flex;
  gap: 8px;
}

.timer-block {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 4px 10px;
  min-width: 48px;
  text-align: center;
}

.timer-num {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.timer-unit {
  display: block;
  font-family: 'Exo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.timer-sep {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  align-self: center;
  line-height: 1;
}

.deals-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c1c1c 0%, #000000 100%);
  overflow: hidden;
}

.deals-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 164, 82, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.deals-hero-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
}

.deals-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 30px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
}

.deals-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.deals-hero-eyebrow-dash {
  width: 40px;
  height: 1px;
  background: #C9A452;
}

.deals-hero-eyebrow span:not(.deals-hero-eyebrow-dash) {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #b8922e;
}

.deals-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
}

.deals-hero h1 span {
  color: #C9A452;
}

.deals-hero-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.deals-hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.deals-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C9A452;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(201, 164, 82, 0.35);
}

.deals-hero-btn-primary:hover {
  background: #b8922e;
  color: #fff;
  box-shadow: 0 6px 28px rgba(201, 164, 82, 0.45);
  text-decoration: none;
}

.deals-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #C9A452;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid #C9A452;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.deals-hero-btn-secondary:hover {
  background: #fdf6e8;
  color: #b8922e;
  text-decoration: none;
}

.deals-stats-strip {
  background: #fff;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
  padding: 28px 0;
}

.deals-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.deals-stat-item {
  padding: 10px 20px;
  border-right: 1px solid #e0d8c8;
}

.deals-stat-item:last-child {
  border-right: none;
}

.deals-stat-num {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #C9A452;
  line-height: 1;
  margin-bottom: 4px;
}

.deals-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

.deals-featured-section {
  padding: 80px 0 0;
  background: #f8f5f0;
}

.deals-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.deals-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.deals-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.deals-eyebrow .line {
  width: 50px;
  height: 1px;
  background: #C9A452;
}

.deals-eyebrow .text {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b8922e;
}

.deals-section-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #1a1208;
  margin-bottom: 12px;
}

.deals-section-title span {
  color: #C9A452;
}

.deals-section-sub {
  font-size: 15px;
  color: #7a6a50;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.deals-featured-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.deals-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9A452, #e8c070, #C9A452);
}

.deals-featured-visual {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e8c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.deals-featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 60%, rgba(201, 164, 82, 0.15) 0%, transparent 60%);
}

.deals-big-percent {
  font-family: 'Urbanist', sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.deals-big-number {
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #b8922e 0%, #C9A452 50%, #8a5a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.deals-big-pct {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #b8922e 0%, #C9A452 50%, #8a5a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 2px;
}

.deals-big-percent .off-label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 4px;
  color: #b8922e;
  -webkit-background-clip: unset;
  background-clip: unset;
  background: none;
}

.deals-featured-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #fff;
}

.deals-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: #C9A452;
  padding: 5px 12px;
  border-radius: 2px;
  width: fit-content;
}

.deals-tag.tag-limited {
  background: #c0392b;
  color: #fff;
}

.deals-tag.tag-new {
  background: #27ae60;
  color: #fff;
}

.deals-featured-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1208;
  line-height: 1.2;
  margin: 0;
}

.deals-featured-desc {
  font-size: 14.5px;
  color: #7a6a50;
  line-height: 1.7;
  margin: 0;
}

.deals-featured-terms {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}

.deals-featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C9A452;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(201, 164, 82, 0.3);
}

.deals-featured-btn:hover {
  background: #b8922e;
  color: #fff;
  box-shadow: 0 6px 28px rgba(201, 164, 82, 0.4);
  text-decoration: none;
}

/* â”€â”€ Current Deals Grid â”€â”€ */
.deals-grid-section {
  padding: 0 0 80px;
  background: #f8f5f0;
  padding-top: 50px;
}

.deals-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.deal-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.deal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(201, 164, 82, 0.25);
  border-color: rgba(201, 164, 82, 0.4);
}

.deal-card-accent {
  height: 4px;
  background: linear-gradient(90deg, #C9A452, #e8c070);
}

.deal-card-accent.accent-red {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
}

.deal-card-accent.accent-green {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.deal-card-accent.accent-blue {
  background: linear-gradient(90deg, #2980b9, #3498db);
}

.deal-card-inner {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.deal-card-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.deal-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.deal-card-icon.icon-gold {
  background: rgba(201, 164, 82, 0.12);
  color: #b8922e;
  border: 1px solid rgba(201, 164, 82, 0.25);
}

.deal-card-icon.icon-red {
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.deal-card-icon.icon-green {
  background: rgba(39, 174, 96, 0.08);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.deal-card-icon.icon-blue {
  background: rgba(41, 128, 185, 0.08);
  color: #2980b9;
  border: 1px solid rgba(41, 128, 185, 0.2);
}

.deal-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.deal-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1208;
  line-height: 1.25;
  margin: 0;
}

.deal-card-desc {
  font-size: 14px;
  color: #7a6a50;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.deal-card-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  background: #fdf6e8;
  border: 1px solid rgba(201, 164, 82, 0.2);
  border-radius: 5px;
}

.deal-card-value .val-main {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #b8922e;
}

.deal-card-value .val-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.4;
}

.deal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #f0e8d8;
  margin-top: auto;
}

.deal-card-expiry {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #bbb;
}

.deal-card-expiry i {
  color: #C9A452;
  font-size: 11px;
}

.deal-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #C9A452;
  border: 1.5px solid rgba(201, 164, 82, 0.5);
  padding: 7px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.deal-card-cta:hover {
  background: #C9A452;
  color: #fff;
  border-color: #C9A452;
  text-decoration: none;
}

/* â”€â”€ Package Deals Section â”€â”€ */
.deals-packages-section {
  padding: 80px 0;
  background: #fff;
}

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

.package-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.package-card.card-featured {
  border-color: rgba(201, 164, 82, 0.5);
  box-shadow: 0 4px 24px rgba(201, 164, 82, 0.15);
}

.package-card-top {
  padding: 32px 28px 24px;
  border-bottom: 1px solid #f0e8d8;
  position: relative;
  background: #fdfaf4;
}

.package-popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #C9A452;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 6px 6px;
}

.package-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 164, 82, 0.12);
  border: 1px solid rgba(201, 164, 82, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #b8922e;
  margin: 0 auto 16px;
}

.package-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1208;
  margin: 0 0 8px;
}

.package-tagline {
  font-size: 13px;
  color: #999;
  margin: 0 0 20px;
  line-height: 1.5;
}

.package-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}

.package-price-label {
  font-size: 12px;
  color: #aaa;
  font-family: 'Exo', sans-serif;
  margin-bottom: 4px;
}

.package-price-value {
  font-family: 'Urbanist', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #C9A452;
  line-height: 1;
}

.package-price-unit {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 4px;
}

.package-body {
  padding: 24px 28px;
  flex: 1;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #6b5c3e;
  line-height: 1.4;
}

.package-features li i {
  color: #C9A452;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-features li.strike {
  color: #ccc;
  text-decoration: line-through;
}

.package-features li.strike i {
  color: #ddd;
}

.package-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
  border: 1.5px solid rgba(201, 164, 82, 0.5);
  color: #C9A452;
  background: transparent;
}

.package-btn:hover {
  background: #fdf6e8;
  color: #b8922e;
  text-decoration: none;
}

.package-btn.btn-solid {
  background: #C9A452;
  color: #fff;
  border-color: #C9A452;
}

.package-btn.btn-solid:hover {
  background: #b8922e;
  color: #fff;
  box-shadow: 0 6px 25px rgba(201, 164, 82, 0.35);
}

/* â”€â”€ Referral / Loyalty Section â”€â”€ */
.deals-loyalty-section {
  padding: 80px 0;
  background: #f8f5f0;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loyalty-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.loyalty-card:hover {
  border-color: rgba(201, 164, 82, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.loyalty-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 164, 82, 0.1);
  border: 1px solid rgba(201, 164, 82, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #b8922e;
  flex-shrink: 0;
}

.loyalty-body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a1208;
  margin: 0 0 10px;
}

.loyalty-body p {
  font-size: 14px;
  color: #7a6a50;
  line-height: 1.7;
  margin: 0 0 16px;
}

.loyalty-link {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A452;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.loyalty-link:hover {
  gap: 10px;
  color: #b8922e;
  text-decoration: none;
}

/* â”€â”€ FAQ Section â”€â”€ */
.deals-faq-section {
  padding: 80px 0;
  background: #fff;
}

.deals-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: #fdfaf4;
  border: 1px solid #eee8d8;
  border-radius: 6px;
  padding: 24px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(201, 164, 82, 0.4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.faq-q {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1208;
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-q::before {
  content: 'Q';
  font-size: 12px;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  color: #b8922e;
  background: rgba(201, 164, 82, 0.1);
  border: 1px solid rgba(201, 164, 82, 0.25);
  border-radius: 3px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: 13.5px;
  color: #7a6a50;
  line-height: 1.7;
  margin: 0;
  padding-left: 34px;
}

/* â”€â”€ Responsive â”€â”€ */






/* ============================================================
   SINKS & ACCESSORIES PAGE â€” WHITE / LIGHT THEME
   ============================================================ */

.sinks-page .ds-section {
  background: #fdfbf7;
  /* Warm white background */
}

.sinks-page .ds-section--alt {
  background: #f8f5f0;
  /* Soft warm light cream background */
}

.sinks-page .ds-title {
  color: #1a1208;
  /* Deep dark bronze/charcoal text */
}

.sinks-page .ds-subtitle {
  color: #7a6a50;
  /* Muted gold/charcoal description */
}

.sinks-page .ds-card {
  background: #ffffff;
  border: 1px solid #e8e0d0;
  box-shadow: 0 4px 15px rgba(26, 18, 8, 0.03);
}

.sinks-page .ds-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 18, 8, 0.07), 0 0 0 1px rgba(201, 164, 82, 0.3);
  border-color: rgba(201, 164, 82, 0.45);
}

.sinks-page .ds-img-wrap {
  background: #fcfbf9;
  border-bottom: 1px solid #e8e0d0;
}

.sinks-page .ds-card-title {
  color: #1a1208;
}

.sinks-page .ds-card-desc {
  color: #7a6a50;
}

.sinks-page .ds-card-btn {
  color: #b8922e;
  border-color: #b8922e;
}

.sinks-page .ds-card-btn:hover {
  background: var(--gold, #C9A452);
  color: #ffffff;
  border-color: var(--gold, #C9A452);
  box-shadow: 0 4px 20px rgba(201, 164, 82, 0.2);
}

/* Section Jump Nav tab styling on light theme */
.sinks-page .sinks-section-nav {
  background: #ffffff;
  border-bottom: 1px solid #e8e0d0;
}

.sinks-page .sinks-nav-tab {
  color: #7a6a50;
}

.sinks-page .sinks-nav-tab:hover,
.sinks-page .sinks-nav-tab.active {
  color: #b8922e;
  border-bottom-color: #b8922e;
}

/* Sinks Page Promo / Trust Section */
.sinks-page .ds-promo-section {
  background: #f8f5f0;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
}

.sinks-page .ds-promo-card {
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-left: 3px solid var(--gold, #C9A452);
}

.sinks-page .ds-promo-info h3 {
  color: #1a1208;
}

.sinks-page .ds-promo-info p {
  color: #7a6a50;
}

/* ============================================================
   EDGE PROFILES PAGE â€” WHITE / LIGHT THEME
   ============================================================ */

.edges-page .ds-section {
  background: #fdfbf7;
  /* Warm white background */
}

.edges-page .ds-section--alt {
  background: #f8f5f0;
  /* Soft warm light cream background */
}

.edges-page .ds-title {
  color: #1a1208;
  /* Deep dark bronze/charcoal text */
}

.edges-page .ds-subtitle {
  color: #7a6a50;
  /* Muted gold/charcoal description */
}

.edges-page .ds-card {
  background: #ffffff;
  border: 1px solid #e8e0d0;
  box-shadow: 0 4px 15px rgba(26, 18, 8, 0.03);
}

.edges-page .ds-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 18, 8, 0.07), 0 0 0 1px rgba(201, 164, 82, 0.3);
  border-color: rgba(201, 164, 82, 0.45);
}

.edges-page .ds-img-wrap {
  background: #fcfbf9;
  border-bottom: 1px solid #e8e0d0;
}

.edges-page .ds-card-title {
  color: #1a1208;
}

.edges-page .ds-card-desc {
  color: #7a6a50;
}

.edges-page .ds-card-btn {
  color: #b8922e;
  border-color: #b8922e;
}

.edges-page .ds-card-btn:hover {
  background: var(--gold, #C9A452);
  color: #ffffff;
  border-color: var(--gold, #C9A452);
  box-shadow: 0 4px 20px rgba(201, 164, 82, 0.2);
}

/* Light Theme SVG diagram styling */
.edges-page .ds-edge-svg rect:first-of-type {
  fill: #fdfbf7 !important;
  /* Warm white background matching the card */
}

.edges-page .ds-edge-svg rect:last-of-type {
  fill: #e8e0d0 !important;
  /* Light cream supporting cabinet */
}

.edges-page .ds-edge-svg path {
  fill: #f8f5f0 !important;
  /* Light stone fill */
  stroke: #b8922e !important;
  /* Legible gold/bronze outline */
}

/* Comparison Table Light Theme */
.edges-page .edge-compare-table-wrap {
  border-color: #e8e0d0;
}

.edges-page .edge-compare-table thead tr {
  background: #f8f5f0;
  border-bottom: 2px solid var(--gold, #C9A452);
}

.edges-page .edge-compare-table thead th {
  color: #b8922e;
}

.edges-page .edge-compare-table tbody tr {
  border-bottom: 1px solid #eee8d8;
}

.edges-page .edge-compare-table tbody tr:hover {
  background: #fdfaf4;
}

.edges-page .edge-compare-table tbody td {
  color: #7a6a50;
}

.edges-page .edge-compare-table tbody td:first-child {
  color: #1a1208;
}

/* Edges Page Intro Promo Section */
.edges-page .ds-promo-section {
  background: #f8f5f0;
  border-top: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
}

.edges-page .ds-promo-card {
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-left: 3px solid var(--gold, #C9A452);
}

.edges-page .ds-promo-info h3 {
  color: #1a1208;
}

.edges-page .ds-promo-info p {
  color: #7a6a50;
}

/* Responsive adjustment for wider menu on medium screen sizes (laptops) */


/* ============================================================
   BELLA GRANITE â€” FAQ Page CSS Styles
   Matches index.html and about.html design system
   ============================================================ */

/* â”€â”€ STICKY NAVBAR WRAP â”€â”€ */
.page-nav-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  background: transparent;
  box-shadow: none;
}

.page-nav-wrap #mainNav {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* â”€â”€ PAGE HERO BANNER â”€â”€ */
.port-hero {
  position: relative;
  height: 420px;
  background-image: url('../images/banner2.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.port-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(26, 26, 26, 0.48) 100%);
  z-index: 1;
}

.port-hero-watermark {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 2;
}

.port-hero-body {
  position: relative;
  z-index: 3;
  text-align: center;
}

.port-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.port-hero-eyebrow span {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  font-style: italic;
}

.port-hero-eyebrow-dash {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

#faq-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 14px;
}

#faq-hero h1 span {
  color: var(--gold);
}

.port-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* â”€â”€ BREADCRUMB STRIP â”€â”€ */
.port-breadcrumb {
  background: #f6f4f0;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.port-breadcrumb-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  color: #888;
}

.port-breadcrumb-inner a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.port-breadcrumb-inner a:hover {
  color: var(--gold);
}

.port-breadcrumb-inner i {
  font-size: 10px;
  color: var(--gold);
}

.port-breadcrumb-inner .bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* â”€â”€ FAQ LAYOUT SECTION â”€â”€ */
.faq-section {
  padding: 60px 0;
  background: #fff;
}

.faq-container {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  gap: 50px;
}

/* â”€â”€ Sidebar: contact & details card â”€â”€ */
.faq-sidebar {
  width: 380px;
  flex-shrink: 0;
}

.faq-contact-card {
  background: #111111;
  border: 1px solid rgba(201, 164, 82, 0.3);
  padding: 40px 30px;
  border-radius: 4px;
  color: #fff;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 35px rgba(201, 164, 82, 0.12);
}

.faq-card-eyebrow {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.faq-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.faq-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 30px;
}

.faq-contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.faq-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.faq-contact-info-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.faq-contact-label {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.faq-contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 550;
  transition: color 0.2s;
}

a.faq-contact-value:hover {
  color: var(--gold);
}

.faq-sidebar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.faq-sidebar-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* â”€â”€ FAQ Main Content (Accordion) â”€â”€ */
.faq-main {
  flex-grow: 1;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e1dbcf;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
  border-color: rgba(201, 164, 82, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(201, 164, 82, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s;
}

.faq-question-text {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  transition: color 0.25s;
}

.faq-trigger:hover .faq-question-text {
  color: var(--gold);
}

.faq-item.active .faq-question-text {
  color: var(--gold);
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f6f4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: background 0.3s, transform 0.3s;
}

.faq-icon-box i {
  color: #888;
  font-size: 13px;
  transition: color 0.3s, transform 0.3s;
}

.faq-trigger:hover .faq-icon-box {
  background: rgba(201, 164, 82, 0.1);
}

.faq-trigger:hover .faq-icon-box i {
  color: var(--gold);
}

.faq-item.active .faq-icon-box {
  background: var(--gold);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon-box i {
  color: #fff;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 35px 28px 35px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.faq-content p {
  font-size: 16px;
  margin-bottom: 14px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* â”€â”€ RESPONSIVE STYLING â”€â”€ */






/* ============================================================
   BELLA GRANITE â€” About Page CSS Styles
   Matches index.html and about.html design system
   ============================================================ */

/* â”€â”€ ABOUT PAGE HERO BANNER OVERRIDES â”€â”€ */
#about-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 14px;
}

#about-hero h1 span {
  color: var(--gold);
}

.about-hero-title span {
  color: var(--gold);
}

.about-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: au-fadeInUp 0.9s ease 0.2s both;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  animation: au-fadeInUp 0.9s ease 0.3s both;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.25s;
}

.about-breadcrumb a:hover {
  color: var(--gold);
}

.about-breadcrumb .bc-sep {
  color: var(--gold);
  font-size: 12px;
}

.about-breadcrumb .bc-current {
  color: var(--gold);
  font-weight: 600;
}

/* â”€â”€ KEYFRAMES â”€â”€ */
@keyframes au-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes au-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ STORY SECTION â”€â”€ */
#au-story {
  position: relative;
  background: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
}

#au-story::before {
  content: 'BELLA';
  position: absolute;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 16vw, 240px);
  color: rgba(201, 164, 82, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -8px;
}

.au-story-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.au-story-visuals {
  flex: 0 0 48%;
  max-width: 48%;
  position: relative;
}

.au-story-img-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 290px 200px;
  gap: 12px;
}

.au-story-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  overflow: hidden;
}

.au-story-img-top {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
}

.au-story-img-bottom {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
}

.au-story-img-main img,
.au-story-img-top img,
.au-story-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.au-story-img-main:hover img {
  transform: scale(1.05);
}

.au-story-img-top:hover img {
  transform: scale(1.06);
}

.au-story-img-bottom:hover img {
  transform: scale(1.06);
}

.au-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 12px 35px rgba(201, 164, 82, 0.45);
}

.au-badge-number {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #fff;
  line-height: 1;
}

.au-badge-label {
  font-family: 'Exo', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

.au-story-text {
  flex: 1;
}

.au-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.au-section-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.5px;
}

.au-section-eyebrow-line {
  display: inline-block;
  width: 50px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.au-section-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 52px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.au-section-title span {
  color: var(--gold);
}

.au-light-title {
  color: #fff !important;
}

.au-gold-text {
  color: var(--gold);
}

.au-story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}

.au-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.au-check-list li {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-check-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px 9px;
  background-repeat: no-repeat;
  background-position: center;
}

.au-story-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.btn-au {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  background: #111;
  padding: 15px 38px;
  text-decoration: none;
  transition: background 0.28s, transform 0.2s, box-shadow 0.28s;
  border: 2px solid #111;
}

.btn-au:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 164, 82, 0.38);
}

.btn-au-ghost {
  background: transparent;
  border: 2px solid #111;
  color: #111;
  margin-left: 16px;
}

.btn-au-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-au-shrink {
  white-space: nowrap;
  flex-shrink: 0;
}

/* â”€â”€ STATS BANNER â”€â”€ */
#au-stats {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}

.au-stats-container {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
}

.au-stat-col {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: background 0.3s;
}

.au-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.au-stat-col:hover {
  background: rgba(0, 0, 0, 0.08);
}

.au-stat-icon {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.au-stat-number {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 54px);
  color: #fff;
  line-height: 1;
  display: block;
}

.au-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
}


/* â”€â”€ TEAM SECTION â”€â”€ */
#au-team {
  position: relative;
  background: #f8f6f2;
  padding: 110px 0 100px;
  overflow: hidden;
}

#au-team::after {
  content: 'TEAM';
  position: absolute;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 14vw, 220px);
  color: rgba(201, 164, 82, 0.05);
  bottom: -20px;
  right: -20px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -5px;
}

.au-team-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.au-team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

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

.au-team-card {
  background: #fff;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.au-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.au-team-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.au-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.au-team-card:hover .au-team-img-wrap img {
  transform: scale(1.07);
}

.au-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(201, 164, 82, 0.92) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.35s;
}

.au-team-card:hover .au-team-overlay {
  opacity: 1;
}

.au-team-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  transform: translateY(10px);
}

.au-team-card:hover .au-team-social-btn {
  transform: translateY(0);
}

.au-team-social-btn:hover {
  background: #111;
  color: #fff;
}

.au-team-info {
  padding: 22px 22px 24px;
}

.au-team-name {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #111;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}

.au-team-role {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* â”€â”€ PROCESS â”€â”€ */
#au-process {
  position: relative;
  background: #fff;
  padding: 110px 0 100px;
  overflow: hidden;
}

.au-process-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.au-process-header {
  text-align: center;
  margin-bottom: 80px;
}

.au-process-intro {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #777;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.au-process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.au-process-steps::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 5%, var(--gold) 30%, var(--gold) 70%, transparent 95%);
  z-index: 0;
}

.au-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.au-step-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e0d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ccc;
  margin-bottom: 30px;
  transition: background 0.35s, border-color 0.35s, color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.au-step-icon-inner {
  font-size: 28px;
  color: inherit;
}

.au-process-step:hover .au-step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 12px 35px rgba(201, 164, 82, 0.45);
  transform: scale(1.1);
}

.au-step-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.au-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin: 0;
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
#au-testimonials {
  position: relative;
  background: #111;
  padding: 110px 0 100px;
  overflow: hidden;
}

#au-testimonials::before {
  content: '"';
  position: absolute;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(200px, 30vw, 400px);
  color: rgba(201, 164, 82, 0.04);
  top: -40px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.au-testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

.au-testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

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

.au-testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 36px 36px;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}

.au-testimonial-card:hover {
  background: rgba(201, 164, 82, 0.08);
  border-color: rgba(201, 164, 82, 0.3);
  transform: translateY(-5px);
}

.au-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.au-testimonial-stars i {
  color: var(--gold);
  font-size: 14px;
}

.au-testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  margin-bottom: 30px;
  font-style: italic;
}

.au-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.au-author-avatar-fallback {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.au-author-name {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  display: block;
}

.au-author-location {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

/* â”€â”€ CTA SECTION â”€â”€ */
#au-cta {
  position: relative;
  background-image: url('../images/banner3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}

#au-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
}

.au-cta-container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.au-cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.au-cta-eyebrow span {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
}

.au-cta-eyebrow-dash {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.au-cta-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.au-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 28px;
  margin-bottom: 44px;
}

.au-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-au-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--gold);
  padding: 16px 44px;
  text-decoration: none;
  transition: background 0.28s, transform 0.2s, box-shadow 0.28s;
}

.btn-au-gold:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 164, 82, 0.5);
}

.btn-au-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 14px 40px;
  text-decoration: none;
  transition: background 0.28s, border-color 0.28s, transform 0.2s;
}

.btn-au-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* â”€â”€ RESPONSIVE â”€â”€ */








/* ============================================================
   PORTFOLIO PAGE â€” Additional Styles
   ============================================================ */

/* â”€â”€ Global Port Hero H1 Header (Fallback/Global) â”€â”€ */
.port-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.port-hero h1 span {
  color: var(--gold);
}

/* â”€â”€ Filter Tabs â”€â”€ */
.port-filter-section {
  background: #fff;
  padding: 55px 0 30px;
}

.port-filter-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.port-section-header {
  text-align: center;
}

.port-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.port-eyebrow-text {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.3px;
}

.port-eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.port-section-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 52px);
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.port-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  max-width: 560px;
  margin: 14px auto 0;
}

/* Filter Pills */
.port-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #555;
  background: #f4f2ee;
  border: 1.5px solid #e8e4dc;
  padding: 9px 24px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
  letter-spacing: 0.2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* â”€â”€ Gallery Grid â”€â”€ */
.port-gallery-section {
  background: #fff;
  padding: 20px 0 90px;
}

.port-gallery-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Masonry-style CSS grid */
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Spans for varied heights â€” masonry feel */
.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #eaeaea;
}

.port-item--tall {
  grid-row: span 2;
}

.port-item--wide {
  grid-column: span 2;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Items without tall modifier get a fixed aspect ratio */
.port-item:not(.port-item--tall) {
  aspect-ratio: 4 / 3;
}

.port-item.port-item--tall {
  aspect-ratio: unset;
}

/* Hover overlay */
.port-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}

.port-item:hover .port-item-overlay {
  opacity: 1;
}

.port-item:hover img {
  transform: scale(1.07);
}

.port-item-label {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin: 0 0 4px;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.port-item-cat {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s;
}

.port-item:hover .port-item-label,
.port-item:hover .port-item-cat {
  transform: translateY(0);
}

/* Zoom icon */
.port-item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(201, 164, 82, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 3;
}

.port-item:hover .port-item-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Hidden items (filtered out) */
.port-item.hidden {
  display: none;
}

/* â”€â”€ Lightbox â”€â”€ */
.port-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.port-lightbox.open {
  display: flex;
}

.port-lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.port-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 3px solid rgba(201, 164, 82, 0.4);
  display: block;
  animation: lb-fade-in 0.3s ease;
}

@keyframes lb-fade-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.port-lightbox-caption {
  margin-top: 14px;
  text-align: center;
}

.port-lightbox-caption h4 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
}

.port-lightbox-caption span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gold);
}

.port-lightbox-close {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.port-lightbox-close:hover {
  background: var(--gold-hover);
  transform: scale(1.1) rotate(90deg);
}

.port-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(201, 164, 82, 0.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.port-lightbox-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.port-lightbox-nav.prev {
  left: -70px;
}

.port-lightbox-nav.next {
  right: -70px;
}

.port-stats {
  background-image: url('../images/marbal_bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
}

.port-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.port-stats-inner {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.port-stat-item {
  text-align: center;
  flex: 1 1 200px;
  padding: 20px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.port-stat-item:last-child {
  border-right: none;
}

.port-stat-num {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 68px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
}

.port-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.5px;
  margin-top: 8px;
  text-transform: uppercase;
  display: block;
}

/* â”€â”€ CTA Section â”€â”€ */
.port-cta {
  background: #fff;
  padding: 90px 0;
}

.port-cta-inner {
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.port-cta-text h2 {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.port-cta-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.port-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: var(--gold);
  border: none;
  padding: 15px 34px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(201, 164, 82, 0.35);
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 164, 82, 0.45);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  background: transparent;
  border: 2px solid #ccc;
  padding: 13px 30px;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* â”€â”€ Responsive â”€â”€ */






/* â”€â”€ Our Services Page â”€â”€ */
.services-page-section {
  background: #f8f6f2;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Subtle watermark in background */
.services-page-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 82, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.services-page-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

/* â”€â”€ 2Ã—2 card grid (4 equal service cards) â”€â”€ */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 60px;
}



/* â”€â”€ Individual Service Card â”€â”€ */
.service-page-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ede9e0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 380px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.service-page-card.card-reverse {
  flex-direction: row-reverse;
}

.service-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.10);
  border-color: var(--gold);
}

/* Top gold accent bar that grows on hover */
.service-page-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-page-card:hover::after {
  transform: scaleX(1);
}

/* â”€â”€ Image wrapper (left side) â”€â”€ */
.spc-img-wrap {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

.spc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-page-card:hover .spc-img-wrap img {
  transform: scale(1.06);
}

/* Gold number badge â€” top-left of image */
.spc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  letter-spacing: -1px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(201, 164, 82, 0.4);
}

/* Dark overlay on hover over image */
.spc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.service-page-card:hover .spc-img-overlay {
  opacity: 1;
}

/* â”€â”€ Content area (right side) â”€â”€ */
.spc-content {
  flex: 1;
  padding: 36px 36px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Eyebrow category pill */
.spc-category {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 82, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.spc-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.5vw, 34px);
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.spc-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
  transition: width 0.4s ease;
}

.service-page-card:hover .spc-divider {
  width: 72px;
}

.spc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 22px;
  flex: 1;
}

/* Feature pills list */
.spc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.spc-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #f4f1eb;
  border: 1px solid #e8e2d6;
  padding: 5px 13px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.spc-feature-pill i {
  color: var(--gold);
  font-size: 11px;
}

.service-page-card:hover .spc-feature-pill {
  background: rgba(201, 164, 82, 0.08);
  border-color: rgba(201, 164, 82, 0.3);
}

/* CTA link at bottom of card */
.spc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.2px;
  margin-top: auto;
  transition: color 0.25s, gap 0.25s;
}

.spc-cta .spc-cta-arrow {
  width: 32px;
  height: 32px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: background 0.25s, transform 0.25s;
}

.spc-cta:hover {
  color: var(--gold);
  gap: 12px;
}

.spc-cta:hover .spc-cta-arrow {
  background: var(--gold);
  transform: translateX(3px);
}

.spc-note {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(201, 164, 82, 0.3);
}

/* â”€â”€ Responsive â”€â”€ */


.process-page-section {
  background-image: url('../images/marbal_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
}

/* Gold radial glow â€” bottom left accent */
.process-page-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 82, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.process-page-container {
  position: relative;
  z-index: 2;
  max-width: 1675px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Header overrides for light marble background */
.process-page-section .port-section-header .port-eyebrow-text {
  color: var(--gold);
}

.process-page-section .port-section-header .port-eyebrow-line {
  background: var(--gold);
}

.process-page-section .port-section-header .port-section-title {
  color: #111111;
}

/* â”€â”€ Top connector bar with 6 numbered nodes â”€â”€ */
.process-connector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 70px;
  position: relative;
}

/* Horizontal line behind nodes */
.process-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 164, 82, 0.45) 15%, rgba(201, 164, 82, 0.45) 85%, transparent);
  transform: translateY(-50%);
  z-index: 0;
}

.process-node {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(201, 164, 82, 0.6);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #a07830;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.process-node:hover {
  background: rgba(201, 164, 82, 0.15);
  border-color: var(--gold);
  color: #a07830;
  text-decoration: none;
}

.process-node.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
  box-shadow: 0 0 0 6px rgba(201, 164, 82, 0.18);
  text-decoration: none;
}

.process-page-card {
  scroll-margin-top: 80px;
}

.process-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-page-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: background 0.3s;
}

.process-page-card:last-child {
  border-bottom: none;
}

.process-page-card:hover {
  background: rgba(201, 164, 82, 0.04);
}

.ppc-step-num {
  flex-shrink: 0;
  width: 120px;
  font-family: 'Vend Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 6vw, 90px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(160, 120, 48, 0.25);
  user-select: none;
  padding-top: 4px;
  transition: -webkit-text-stroke 0.3s;
}

.process-page-card:hover .ppc-step-num {
  -webkit-text-stroke: 1px rgba(160, 120, 48, 0.65);
}

.ppc-separator {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(160, 120, 48, 0.4) 20%, rgba(160, 120, 48, 0.4) 80%, transparent);
  margin: 0 40px;
  flex-shrink: 0;
}

.ppc-content {
  flex: 1;
  padding: 6px 0;
}

.ppc-label {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-hover);
  margin-bottom: 10px;
  display: block;
}

.ppc-title {
  font-family: 'Vend Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.ppc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 400;
  max-width: 800px;
}

.ppc-desc:last-of-type {
  margin-bottom: 0;
}

.ppc-thumb {
  flex-shrink: 0;
  width: 250px;
  height: 190px;
  overflow: hidden;
  margin-left: 50px;
  position: relative;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.4s ease;
  align-self: center;
}

.ppc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.process-page-card:hover .ppc-thumb {
  opacity: 1;
  transform: translateY(-4px);
}

.process-page-card:hover .ppc-thumb img {
  transform: scale(1.07);
}

.process-page-card::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.process-page-card:hover::before {
  transform: scaleY(1);
}

.spc-content {
  padding: 34px 34px 34px 34px;
}

.services-page-section {
  padding: 80px 0 80px;
}

.process-page-section {
  padding: 80px 0 60px;
}

.port-section-title {
  font-size: 55px !important;
}

.ppc-desc,
.spc-desc {
  font-size: 17px !important;
}

.ds-card-desc,
.ds-subtitle {
  font-size: 17px !important;
}

.port-cta {
  padding: 80px 0;
}

.ds-title,
.port-cta-text h2 {
  font-size: 55px !important;
}

.gr-color-info p,
.slab-modal-desc,
.gr-benefit-card p,
.gr-section-desc,
.gr-overview-text p {
  font-size: 17px !important;
}

.gr-color-section {
  padding-bottom: 0 !important;
}

.gr-benefits-section,
.gr-color-section {
  padding: 60px 0;
}

.gr-overview-text h2,
.gr-section-title {
  font-size: 55px !important;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (SORTED DESCENDING BY SCREEN WIDTH)
   ============================================================ */


@media (max-width: 1680px) {

  /* Merged block #1 */
  /* Merged block #1 */
  .footer-phone {
    font-size: 30px;
  }

  .footer-email {
    font-size: 20px;
  }

  .footer-address {
    font-size: 16px;
  }

  .process-page-card::before {
    left: -20px;
  }

  .ppc-desc,
  .spc-desc {
    font-size: 16px !important;
  }

  .spc-title {
    font-size: 30px;
  }

  .port-section-desc {
    font-size: 16px;
  }

  .port-section-title {
    font-size: 45px !important;
  }

  .nav-logo-img {
    position: static;
  }

  .ds-card-desc,
  .ds-subtitle,
  .port-cta-text p {
    font-size: 16px !important;
  }

  .ds-title,
  .port-cta-text h2 {
    font-size: 45px !important;
  }

  .gr-color-info p,
  .slab-modal-desc,
  .gr-benefit-card p,
  .gr-section-desc,
  .gr-overview-text p {
    font-size: 16px !important;
  }

  .gr-overview-text h2,
  .gr-section-title {
    font-size: 45px !important;
  }

  .gr-overview-text h2,
  .gr-section-title {
    font-size: 40px !important;
  }
}

@media (max-width: 1550px) {

  /* Merged block #2 */
  /* Merged block #2 */
  .nav-center .nav-link {
    padding: 6px 12px;
    font-size: 17px;
  }

  .nav-phone {
    padding-top: 36px;
    font-size: 17px;
  }

  .nav-phone strong {
    font-size: 17px;
  }

  .hero-slider .slide {
    height: 79vh;
    min-height: 580px;
  }

  #hero {
    height: 79vh;
  }
}

@media (max-width: 1500px) {

  /* Merged block #3 */
  /* Merged block #3 */
  .nav-center .nav-link {
    font-size: 16px;
    padding: 6px 12px;
  }
}

@media (max-width: 1440px) {

  /* Merged block #4 */
  /* Merged block #4 */
  .nav-center .nav-link {
    padding: 6px 10px;
    font-size: 16px;
  }

  .nav-phone {
    font-size: 16px;
  }

  .nav-phone strong {
    font-size: 16px;
  }

  .ppc-desc,
  .spc-desc {
    font-size: 14px !important;
  }

  .spc-title {
    font-size: 26px;
  }

  .ppc-step-num {
    font-size: 70px !important;
  }

  .services-page-grid {
    gap: 25px;
    margin-top: 40px;
  }

  .port-section-title {
    font-size: 40px !important;
  }

  .process-node {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .port-section-desc {
    font-size: 14px !important;
  }

  .ds-card-desc,
  .ds-subtitle,
  .port-cta-text p {
    font-size: 14px !important;
  }

  .ds-title,
  .port-cta-text h2 {
    font-size: 40px !important;
  }

  .gr-color-info p,
  .slab-modal-desc,
  .gr-benefit-card p,
  .gr-section-desc,
  .gr-overview-text p {
    font-size: 14px !important;
  }

  .gr-overview-text h2,
  .gr-section-title {
    font-size: 35px !important;
  }

  /* Merged block #5 */
  /* Merged block #5 */
  #au-story {
    padding: 60px 0 70px;
  }

  #au-team {
    padding: 60px 0 80px;
  }

  #au-process {
    padding: 60px 0 70px;
  }

  #au-testimonials {
    padding: 60px 0 80px;
  }

  .au-story-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .au-check-list li {
    font-size: 14px;
    line-height: 24px;
  }

  .au-stat-number {
    font-size: 40px;
    line-height: 50px;
  }

  .au-process-intro {
    font-size: 16px;
    line-height: 26px;
  }

  .au-testimonial-text {
    font-size: 16px;
    line-height: 26px;
  }

  .au-cta-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .faq-question-text {
    font-size: 16px;
    line-height: 26px;
  }

  .port-stat-num {
    font-size: 48px;
    line-height: 58px;
  }

  .bl-main-inner {
    padding: 90px 50px 0px;
  }

  .contact-form-wrap {
    max-width: 510px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-grid input[type="text"],
  .form-grid input[type="email"],
  .form-grid input[type="tel"],
  .form-grid select,
  .form-grid textarea {
    font-size: 14px;
  }

  #about {
    padding: 60px 0 30px;
  }

  .newsletter-stone {
    width: 13%;
  }

  .about-desc {
    font-size: 16px;
  }
}

@media (max-width: 1367px) {

  /* Merged block #6 */
  /* Merged block #6 */
  .nav-center .nav-link {
    padding: 6px 8px;
    font-size: 15px;
  }

  .btn-call-cta {
    padding: 16px 20px;
  }

}

@media (max-width: 1366px) and (min-width: 769px) {

  /* Merged block #7 */
  /* Merged block #7 */
  .nav-center .nav-link {
    font-size: 14.5px !important;
    padding: 6px 10px !important;
  }

  #mainNav {
    padding-left: 20px !important;
    padding-right: 20px !important;
    gap: 0 !important;
  }
}

@media (max-width: 1366px) {

  /* Merged block #8 */
  /* Merged block #8 */
  .spc-img-wrap img {
    height: 460px;
  }

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

  .process-page-section {
    padding: 50px 0 50px;
  }

  .services-page-section {
    padding: 50px 0 50px;
  }

  .ds-section {
    padding: 50px 0;
  }

  .port-cta {
    padding: 50px 0;
  }

  .gr-benefits-section,
  .gr-color-section,
  .gr-overview-text,
  .gr-overview-section {
    padding: 50px 0;
  }
}

@media (max-width: 1280px) {

  /* Merged block #9 */
  /* Merged block #9 */
  .nav-center .nav-link {
    font-size: 15px;
    padding: 6px 10px;
  }

  /* Merged block #10 */
  /* Merged block #10 */
  #mainNav {
    padding: 18px 30px 0;
    gap: 10px;
  }

  .nav-center .nav-link {
    padding: 6px 6px;
    font-size: 14px;
  }

  .nav-phone {
    font-size: 15px;
  }

  .nav-phone strong {
    font-size: 15px;
  }

  .gr-benefits-grid {
    gap: 10px;
  }

  .gr-section-header {
    margin-bottom: 40px;
  }

  .footer-email {
    font-size: 16px;
  }

  .footer-phone {
    font-size: 22px;
  }

  .contact-details-cta-row {
    display: grid;
  }

  .contact-details-cta-row .btn-call-cta {
    justify-content: center;
  }
}

@media (max-width: 1200px) {

  /* Merged block #11 */
  /* Merged block #11 */
  .port-grid-sizer,
  .port-item {
    width: calc(33.333% - 9.33px);
  }

  .port-item--wide {
    width: calc(66.666% - 4.67px);
  }

  /* Merged block #12 */
  .ds-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Merged block #13 */
  .faq-container {
    gap: 30px;
  }

  .faq-sidebar {
    width: 320px;
  }

  /* Merged block #14 */
  .port-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1150px) {

  /* Merged block #12 */
  /* Merged block #15 */
  #mainNav {
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 0;
    align-items: center;
    row-gap: 0;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
    margin-top: 0;
    align-self: center;
    z-index: 1002;
  }

  .nav-logo {
    padding-top: 0;
  }

  .nav-overflow-item {
    display: none !important;
  }

  .nav-center,
  .nav-phone {
    display: none !important;
    width: 100%;
    flex: none;
  }

  .nav-center.open,
  .nav-phone.open {
    display: flex !important;
  }

  .nav-center.open {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(201, 164, 82, 0.25);
    border-top: 3px solid var(--gold);
    padding: 16px 20px;
    padding-top: 16px;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0 !important;
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    animation: mobileNavSlide 0.22s ease;
  }

  .nav-phone.open {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(201, 164, 82, 0.25);
    border-top: none;
    padding: 14px 20px;
    margin-top: -1px;
    border-radius: 0 0 6px 6px;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    font-size: 16px;
    animation: mobileNavSlide 0.22s ease;
  }

  .nav-center .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 1 !important;
  }

  .nav-center .nav-item:last-child {
    border-bottom: none;
  }

  .nav-center .nav-link {
    display: block !important;
    padding: 13px 12px !important;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.88) !important;
    width: 100%;
    transition: color 0.2s, padding-left 0.2s !important;
  }

  .nav-center .nav-link:hover {
    color: var(--gold) !important;
    padding-left: 18px !important;
  }

  .nav-center .nav-link.active {
    color: var(--gold) !important;
    font-weight: 600 !important;
    border-left: 3px solid var(--gold);
    padding-left: 14px !important;
    background: rgba(201, 164, 82, 0.07);
  }

  .nav-center .nav-link.active::after {
    display: none !important;
  }

  .nav-dropdown-caret {
    display: none !important;
  }

  .nav-center .nav-dropdown {
    width: 100%;
  }

  .nav-center .nav-submenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    border-left: 2px solid var(--gold) !important;
    box-shadow: none !important;
    min-width: 100% !important;
    margin: 4px 0 8px 16px !important;
    transform: none !important;
    padding: 4px 0 !important;
    border-radius: 0 !important;
  }

  .nav-center .nav-submenu::before {
    display: none !important;
  }

  .nav-center .nav-submenu li {
    border-bottom: none;
  }

  .nav-center .nav-submenu li a {
    padding: 9px 16px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    transition: all 0.2s !important;
  }

  .nav-center .nav-submenu li a:hover,
  .nav-center .nav-submenu li a.active {
    padding-left: 22px !important;
    color: var(--gold) !important;
  }

  .marble-panel {
    padding: 36px 28px;
    max-width: 100%;
  }

  .hero-social {
    right: 16px;
    bottom: 16px;
  }

  .panel-title {
    max-width: 740px;
    margin: 0px auto;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #16 */
  .au-process-steps::before {
    background: none;
  }

  .au-process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 30px;
  }

  .au-process-steps {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .au-step-circle {
    width: 65px;
    height: 56px;
  }

  .au-step-title {
    font-size: 16px;
  }

  .au-step-icon-inner {
    font-size: 20px;
  }

  .faq-contact-card {
    padding: 40px 15px;
  }
}

@media (max-width: 1100px) {

  /* Merged block #13 */
  /* Merged block #17 */
  .nav-center .nav-link {
    font-size: 14px;
    padding: 6px 8px;
  }

  .nav-phone {
    font-size: 15px;
  }

  .nav-overflow-btn {
    font-size: 14px;
    padding: 6px 8px;
  }

  /* Merged block #18 */
  .ct-main-inner {
    grid-template-columns: 360px 1fr;
    gap: 40px;
  }

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

  /* Merged block #19 */
  .bl-main-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 30px 80px;
  }

  .bl-sidebar {
    position: static;
  }

  /* Merged block #20 */
  .gr-overview-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  /* Merged block #21 */
  .au-story-container {
    gap: 50px;
  }

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

  /* Merged block #22 */
  .ppc-thumb {
    display: none;
  }

  .process-connector {
    display: none;
  }

  /* Merged block #14 */
  /* Merged block #23 */
  .ppc-thumb {
    display: block;
  }
}

@media (max-width: 1080px) {

  /* Merged block #15 */
  /* Merged block #24 */
  .ppc-step-num {
    font-size: 55px !important;
    width: 70px;
  }

  .gr-overview-text {
    padding-bottom: 0;
  }

  .gr-stat-num {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {

  /* Merged block #16 */
  /* Merged block #25 */
  #mainNav {
    padding: 14px 24px 0;
    gap: 0;
  }

  .nav-center .nav-link {
    font-size: 13px;
    padding: 6px 7px;
  }

  .nav-phone {
    font-size: 14px;
  }

  .nav-overflow-btn {
    font-size: 13px;
    padding: 6px 7px;
  }

  /* Merged block #26 */
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Merged block #28 */
  .au-step-circle {
    width: 65px;
    height: 55px;
    margin-bottom: 20px;
  }

  .faq-question-text {
    font-size: 14px;
    line-height: 24px;
  }

  .au-step-desc {
    font-size: 14px;
    line-height: 24px;
  }

  .btn-au {
    padding: 15px 24px;
  }

  .au-stat-col {
    padding: 60px 20px;
  }

  .au-stat-number {
    font-size: 30px;
    line-height: 40px;
  }

  .au-stat-icon {
    font-size: 28px;
  }

  .au-testimonial-text {
    font-size: 14px;
    line-height: 24px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .port-gallery-section {
    padding: 20px 0 60px;
  }

  .port-cta {
    padding: 50px 0;
  }

  .port-stat-num {
    font-size: 38px;
    line-height: 48px;
  }

  .bl-main-inner {
    padding: 60px 30px 0px;
  }

  .ct-main {
    padding: 50px 0 60px;
  }

  .ct-why {
    padding: 60px 0;
  }

  /* Merged block #17 */
  /* Merged block #27 */
  .spc-img-wrap img {
    height: 470px;
  }

  .services-page-container {
    padding: 0 20px;
  }

  .ds-promo-inner {
    padding: 0 20px;
  }

  .ds-container {
    padding: 0 20px;
  }

  .gallery-controls-wrap {
    padding: 0px 20px;
  }

  .gr-color-inner {
    padding: 0 20px;
  }

  .about-desc {
    font-size: 14px;
  }

  .process-desc {
    font-size: 14px;
  }

  .contact-desc {
    font-size: 14px;
  }

  .process-desc {
    font-size: 14px;
  }

  .blog-excerpt {
    font-size: 14px;
  }

  .newsletter-desc {
    font-size: 14px;
  }

  .process-number {
    font-size: 41px;
  }

  .port-hero-sub {
    font-size: 14px;
    max-width: 480px;
    padding-inline: 20px;
  }

  .ct-info-card {
    gap: 10px;
    padding: 14px 14px;
  }

  .ct-info-card-body p,
  .ct-info-card-body a {
    font-size: 14px;
  }

  .faq-item {
    padding: 14px 14px;
  }
}

@media (max-width: 991px) {

  /* Merged block #18 */
  /* Merged block #29 */
  .process-container {
    gap: 40px;
    padding: 0 40px;
  }

  .services-container {
    padding: 0 40px;
  }

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

  .svc-eyebrow {
    justify-content: center;
  }

  .svc-prev {
    left: -20px;
  }

  .svc-next {
    right: -20px;
  }

  .hero-slider .slide {
    height: auto;
    min-height: 100%;
  }

  #hero {
    height: auto;
  }

  .gallery-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
    gap: 50px;
  }

  .gallery-left {
    display: none;
  }

  .gallery-right {
    flex: none;
    max-width: 100%;
  }

  .gallery-header-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 35px;
    height: auto;
  }

  .gallery-heading {
    width: 100%;
    text-align: center;
  }

  .gallery-eyebrow {
    justify-content: center;
  }

  .btn-gallery-all {
    align-self: center;
  }

  #blog {
    padding: 80px 0;
  }

  .blog-container {
    padding: 0 40px;
  }

  .blog-header-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 35px;
  }

  .blog-eyebrow {
    justify-content: center;
  }

  .btn-blog-all {
    align-self: center;
  }

  #newsletter {
    padding: 80px 0;
    min-height: auto;
  }

  .newsletter-container {
    padding: 0 40px;
  }

  .newsletter-stone {
    display: none;
  }

  .contact-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
    gap: 50px;
  }

  .contact-info {
    max-width: 100%;
    width: 100%;
  }

  .contact-form-wrap {
    max-width: 100%;
    width: 100%;
    margin-bottom: -90px;
  }

  #counter-banner {
    padding: 130px 0 50px;
  }

  .counter-banner-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .counter-divider {
    display: none;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #30 */
  .port-grid-sizer,
  .port-item {
    width: calc(50% - 7px);
  }

  .port-item--wide {
    width: 100%;
  }

  .port-lightbox-nav.prev {
    left: -20px;
  }

  .port-lightbox-nav.next {
    right: -20px;
  }

  .port-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .port-cta-btns {
    justify-content: center;
  }

  .port-cta-text p {
    max-width: 100%;
  }

  /* Merged block #31 */
  .ds-promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  /* Merged block #32 */
  .gallery-controls-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px;
  }

  .gallery-search-box {
    flex: 1;
    width: 100%;
  }

  .gallery-filters-group {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-filter-tabs {
    justify-content: center;
  }

  .gallery-dropdown-wrap select {
    width: 100%;
  }

  .slab-modal-body {
    flex-direction: column;
  }

  .slab-modal-img-wrap {
    flex: 0 0 200px;
  }

  .slab-modal-img-wrap img {
    min-height: 200px;
    height: 220px;
  }

  .slab-modal-info {
    padding: 30px;
  }

  /* Merged block #33 */
  .faq-container {
    flex-direction: column;
    gap: 50px;
  }

  .faq-sidebar {
    width: 100%;
  }

  .faq-contact-card {
    position: static;
    max-width: 580px;
    margin: 0 auto;
  }

  .faq-trigger {
    padding: 22px 25px;
  }

  .faq-content {
    padding: 0 25px 22px 25px;
  }

  /* Merged block #34 */
  .au-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .au-story-container {
    flex-direction: column;
  }

  .au-story-visuals {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .au-process-steps::before {
    display: none;
  }

  .au-process-steps {
    flex-direction: column;
    gap: 50px;
  }

  .au-process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
  }

  .au-step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .au-team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Merged block #35 */
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-item--wide {
    grid-column: span 1;
  }

  .port-lightbox-nav.prev {
    left: -20px;
  }

  .port-lightbox-nav.next {
    right: -20px;
  }

  .port-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .port-cta-btns {
    justify-content: center;
  }

  .port-cta-text p {
    max-width: 100%;
  }

  /* Merged block #37 */
  .au-step-circle {
    width: 65px;
    height: 65px;
  }

  #au-cta {
    padding: 80px 0;
  }

  .au-badge {
    width: 100px;
    height: 100px;
    left: 0;
  }

  .au-badge-number {
    font-size: 22px;
  }

  .au-badge-label {
    font-size: 8px;
  }

  .faq-container {
    flex-direction: column-reverse;
  }

  .ct-call-btn {
    font-size: 16px;
    padding: 18px 22px;
  }

  /* Merged block #19 */
  /* Merged block #36 */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    padding: 0 30px 40px;
  }

  .footer-branding-col {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-logo-wrap {
    margin: 0 auto;
  }

  .footer-col {
    min-width: unset;
    flex: none;
  }

  .footer-phone {
    font-size: 26px;
  }

  .footer-email {
    font-size: 16px;
    word-break: break-all;
  }

  .footer-address {
    font-size: 15px;
  }

  .slab-modal-close {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
  }

  .panel-title {
    max-width: 620px;
  }

  .faq-trigger {
    padding: 0px 12px;
  }

}

@media (max-width: 960px) {

  /* Merged block #20 */
  /* Merged block #38 */
  .about-container {
    flex-direction: column;
    padding: 0 28px;
    gap: 50px;
  }

  .about-left {
    flex: none;
    max-width: 100%;
  }

  .about-watermark-img {
    width: 100%;
    height: 50%;
    object-position: left top;
  }

  .about-stone-float {
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    top: -100px;
  }

  #about {
    padding: 100px 0 70px;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 900px) {

  /* Merged block #21 */
  /* Merged block #39 */
  .ct-main-inner {
    grid-template-columns: 1fr;
  }

  .ct-info-panel {
    position: static;
  }

  .ct-form-card {
    padding: 36px 28px;
  }

  /* Merged block #40 */
  .ds-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

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

  /* Merged block #41 */
  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Merged block #42 */
  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-page-card {
    flex-direction: column;
    min-height: unset;
  }

  .service-page-card.card-reverse {
    flex-direction: column;
  }

  .spc-img-wrap {
    width: 100%;
    height: 260px;
  }

  .spc-content {
    padding: 30px 28px;
  }

  /* Merged block #22 */
  /* Merged block #43 */
  .spc-img-wrap img {
    height: 300px;
  }

  .spc-img-wrap {
    height: 300px;
  }

  .ppc-separator {
    margin: 0 25px;
  }
}

@media (max-width: 768px) {

  /* Merged block #23 */
  /* Merged block #44 */
  .contact-details-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .contact-details-cta-row .contact-details {
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0;
  }

  .contact-details-cta-row .contact-details::after {
    display: none;
  }

  .contact-details-cta-row .btn-call-cta {
    width: 100%;
    justify-content: center;
  }

  /* Merged block #45 */
  .bl-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bl-featured-card {
    grid-template-columns: 1fr;
  }

  .bl-featured-img-wrap {
    min-height: 240px;
  }

  .bl-featured-info {
    padding: 30px;
  }

  /* Merged block #46 */
  .bl-post-body {
    padding: 24px;
  }

  .bl-author-card {
    padding: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bl-comment-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-comment-item.reply {
    margin-left: 30px;
  }

  .bl-comment-box {
    width: 100%;
  }

  .bl-comment-form-card {
    padding: 28px;
  }

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

  /* Merged block #47 */
  .gr-overview-section,
  .gr-benefits-section,
  .gr-color-section {
    padding: 60px 0;
  }

  .gr-overview-inner,
  .gr-benefits-inner,
  .gr-color-inner {
    padding: 0 30px;
  }

  /* Merged block #48 */
  .deals-featured-card {
    grid-template-columns: 1fr;
  }

  .deals-featured-visual {
    min-height: 220px;
  }

  .deals-big-number {
    font-size: 80px;
  }

  .deals-big-pct {
    font-size: 38px;
  }

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

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

  .deals-stat-item:nth-child(2) {
    border-right: none;
  }

  .deals-faq-grid {
    grid-template-columns: 1fr;
  }

  /* Merged block #50 */
  .ct-call-btn {
    justify-content: center;
  }

  .ct-btn-submit {
    width: 100%;
    justify-content: center;
  }

  /* Merged block #24 */
  /* Merged block #49 */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 20px 30px;
    text-align: center;
  }

  .footer-branding-col {
    grid-column: unset;
    margin-bottom: 0;
  }

  .footer-col {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links-list {
    align-items: center;
    width: 100%;
  }

  .footer-links-list li a {
    font-size: 16px;
  }

  .footer-hours-list {
    width: 100%;
  }

  .footer-hours-list li {
    font-size: 16px;
    justify-content: space-between;
    padding-bottom: 6px;
  }

  .footer-contact-info {
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .footer-phone {
    font-size: 24px;
  }

  .footer-email {
    font-size: 15px;
  }

  .footer-address {
    font-size: 15px;
    justify-content: center;
  }

  .footer-social-wrap {
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .gr-overview-text {
    padding-top: 0;
  }
}

@media (max-width: 767px) {

  /* Merged block #25 */
  /* Merged block #51 */
  #process {
    padding: 60px 0 70px;
  }

  .process-container {
    flex-direction: column;
    gap: 50px;
    padding: 0 24px;
  }

  .process-header {
    margin-bottom: 16px;
  }

  .process-number {
    font-size: 72px;
  }

  #services {
    padding: 60px 0 80px;
  }

  .services-container {
    padding: 0 24px;
  }

  .services-slider.static-grid {
    flex-direction: column;
    gap: 30px;
  }

  .services-slider.static-grid .svc-card {
    max-width: 100%;
  }

  .svc-arrow {
    font-size: 13px;
    width: 38px;
    height: 38px;
  }

  .svc-prev {
    left: -10px;
  }

  .svc-next {
    right: -10px;
  }

  #hero {
    height: auto;
  }

  #gallery {
    padding: 70px 0 80px;
  }

  .gallery-container {
    padding: 0 24px;
  }

  .gallery-featured-img-wrap {
    height: 280px;
  }

  .gallery-img-wrap {
    height: 280px;
  }

  #blog {
    padding: 60px 0;
  }

  .blog-container {
    padding: 0 24px;
  }

  #newsletter {
    padding: 60px 0;
  }

  .newsletter-container {
    padding: 0 24px;
  }

  .contact-container {
    padding: 0 24px;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #52 */
  .au-story-container,
  .au-team-container,
  .au-process-container,
  .au-testimonials-container,
  .au-stats-container {
    padding: 0 24px;
  }

  #au-story,
  #au-team,
  #au-process,
  #au-testimonials {
    padding: 80px 0;
  }

  .au-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .au-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .au-stats-container {
    flex-wrap: wrap;
  }

  .au-stat-col {
    flex: 0 0 50%;
  }

  .au-stat-col::after {
    display: none !important;
  }

  .au-check-list {
    grid-template-columns: 1fr;
  }

  .au-story-img-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 150px;
  }

  .au-story-img-main {
    grid-column: 1;
    grid-row: 1;
  }

  .au-story-img-top {
    grid-column: 1;
    grid-row: 2;
  }

  .au-story-img-bottom {
    grid-column: 1;
    grid-row: 3;
  }

  .about-hero-title {
    font-size: 38px;
  }

  /* Merged block #53 */
  .process-page-container {
    padding: 0 24px;
  }

  .ppc-step-num {
    width: 70px;
    font-size: 50px;
  }

  .ppc-separator {
    margin: 0 20px;
  }

  .process-page-card {
    padding: 30px 0;
  }

  .port-stats {
    padding: 40px 0;
  }

  .port-stat-item:nth-child(2) {
    border-right: none;
  }

  .ct-call-btn {
    font-size: 14px;
  }

  /* Merged block #26 */
  /* Merged block #54 */
  .process-page-card {
    padding: 20px 20px;
    gap: 15px;
    flex-direction: column;
  }

  .ppc-thumb {
    width: 100%;
    height: 400px !important;
    margin-left: 0px;
  }

  .spc-content {
    padding: 20px;
  }

  .process-page-container {
    padding: 0 20px;
  }

  .ppc-separator {
    display: none;
  }

  .port-section-title {
    font-size: 34px !important;
  }

  .ds-title,
  .port-cta-text h2 {
    font-size: 34px !important;
  }

  .ds-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .ds-header {
    margin-bottom: 30px;
  }

  .ds-promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

  .edge-compare-table tbody td {
    padding: 10px 10px;
  }

  .gr-overview-text h2,
  .gr-section-title {
    font-size: 34px !important;
  }

  .panel-title {
    max-width: 480px;
  }

  .panel-desc {
    max-width: 400px;
  }

  .about-watermark-img {
    width: 60%;
    height: 50%;
  }

  #about {
    padding: 50px 0 45px;
  }

  .svc-name {
    font-size: 20px;
  }

  .svc-link {
    font-size: 16px;
  }

  .blog-title {
    font-size: clamp(34px, 4vw, 55px);
  }

}

@media (max-width: 640px) {

  /* Merged block #27 */
  /* Merged block #55 */
  .ds-grid,
  .ds-grid--2col {
    grid-template-columns: 1fr;
  }

  .ds-container {
    padding: 0 20px;
  }

  .ds-section {
    padding: 55px 0;
  }

  .sinks-section-nav-inner {
    padding: 0 16px;
  }

  .sinks-nav-tab {
    padding: 14px 16px;
    font-size: 12px;
  }

  /* Merged block #56 */
  .edge-compare-table thead th,
  .edge-compare-table tbody td {
    padding: 12px 14px;
    font-size: 13px;
  }

  #services {
    padding: 60px 0 50px;
  }
}

@media (max-width: 600px) {

  /* Merged block #28 */
  /* Merged block #57 */
  .nav-center.open {
    max-height: 60vh;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #58 */
  .port-grid-sizer,
  .port-item {
    width: calc(50% - 4px);
    margin-bottom: 8px;
  }

  .port-gutter-sizer {
    width: 8px;
  }

  .port-item--wide {
    width: 100%;
  }

  .port-item--tall {
    aspect-ratio: 4 / 3;
  }

  .port-gallery-inner,
  .port-filter-inner,
  .port-breadcrumb-inner,
  .ct-breadcrumb-inner,
  .port-stats-inner,
  .port-cta-inner {
    padding: 0 20px;
  }

  .port-hero,
  .port-hero--contact {
    height: 300px;
  }

  .port-lightbox-nav {
    display: none;
  }

  /* Merged block #59 */
  .ct-breadcrumb-inner,
  .ct-main-inner,
  .ct-why-inner {
    padding: 0 20px;
  }

  .ct-main {
    padding: 60px 0 70px;
  }

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

  .ct-form-full {
    grid-column: 1;
  }

  .ct-why-cards {
    grid-template-columns: 1fr;
  }

  .ct-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-btn-call-form {
    justify-content: center;
  }

  /* Merged block #60 */
  .ds-promo-inner,
  .ds-container {
    padding: 0 20px;
  }

  .ds-promo-card {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
  }

  .ds-grid,
  .ds-grid--triple,
  .ds-grid--2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Merged block #61 */
  .bl-main-inner {
    padding: 50px 20px 60px;
  }

  .bl-info {
    padding: 24px;
  }

  /* Merged block #62 */
  .bl-table-container {
    border: none;
    box-shadow: none;
  }

  .bl-comparison-table,
  .bl-comparison-table tbody,
  .bl-comparison-table tr,
  .bl-comparison-table td,
  .bl-comparison-table th {
    display: block;
    width: 100%;
  }

  .bl-comparison-table th {
    display: none;
    /* Hide header row on stack view */
  }

  .bl-comparison-table tr {
    border: 1px solid #ede9e0;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  }

  .bl-comparison-table tr:nth-child(even) {
    background: #fff;
  }

  .bl-comparison-table td {
    border-bottom: 1px solid #f0ece4;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }

  .bl-comparison-table td:last-child {
    border-bottom: none;
  }

  .bl-comparison-table td::before {
    content: attr(data-label);
    float: left;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-align: left;
  }

  /* Merged block #63 */
  .gr-overview-inner,
  .gr-benefits-inner,
  .gr-color-inner {
    padding: 0 20px;
  }

  .gr-benefits-grid,
  .gr-color-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gr-overview-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  /* Merged block #64 */
  .faq-container {
    padding: 0 20px;
  }

  .port-breadcrumb-inner {
    padding: 0 20px;
  }

  .port-hero {
    height: 300px;
  }

  .faq-content {
    padding: 0 20px 18px 20px;
    font-size: 15px;
  }

  .faq-question-text {
    font-size: 14px;
  }

  /* Merged block #65 */
  .port-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .port-item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .port-gallery-inner,
  .port-filter-inner,
  .port-breadcrumb-inner,
  .port-stats-inner,
  .port-cta-inner {
    padding: 0 20px;
  }

  .port-lightbox-nav {
    display: none;
  }

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

  /* Merged block #29 */
  /* Merged block #66 */
  .footer-phone {
    font-size: 22px;
  }

  .footer-email {
    font-size: 14px;
  }

  .ds-promo-card {
    align-items: center;
  }

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

  .ds-eyebrow .text {
    letter-spacing: 0;
  }

  .about-stone-float {
    width: 95px;
    top: -36px;
  }

  .panel-title {
    max-width: 320px;
  }

  .panel-desc {
    font-size: 15px;
    line-height: 20px;
    margin-top: 14px;
  }

}

@media (max-width: 576px) {

  /* Merged block #30 */
  /* Merged block #67 */
  .gallery-controls-wrap {
    padding: 0 20px;
  }

  .gallery-filter-tabs {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .gallery-filter-btn {
    flex: 1 1 45%;
    text-align: center;
    padding: 8px 10px;
  }

  .hero-social {
    display: none;
  }

  #hero {
    min-height: auto;
  }

  .nav-logo-img {
    max-width: 50%;
  }

  .marble-panel {
    padding: 0;
    max-width: 100%;
  }

  .btn-quote {
    font-size: 14px;
    padding: 10px 25px;
  }

  .panel-title {
    font-size: clamp(25px, 4.5vw, 67px);
  }

  .btn-blog-all {
    font-size: 14px;
    padding: 10px 25px;
  }

  #newsletter {
    padding-top: 0;
  }

  .process-number {
    font-size: 39px;
  }

  #process {
    padding-bottom: 0;
    padding-top: 0;
  }

  #gallery {
    padding-bottom: 0;
  }

  .port-hero {
    padding-top: 40px;
  }

}

@media (max-width: 560px) {

  /* Merged block #31 */
  /* Merged block #68 */
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 240px 130px;
  }

  .about-img-tall {
    grid-column: 1;
    grid-row: 2;
  }

  .about-marble-img {
    grid-column: 1;
    grid-row: 3;
  }

  .about-watermark-img {
    width: 100%;
    height: 45%;
    object-position: left top;
  }

  .about-stone-float {
    width: 100px;
    top: -70px;
  }

  .detail-row.split-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .contact-card {
    padding: 35px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-full-col {
    grid-column: 1;
  }

  .form-floating-tiles {
    display: none;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #69 */
  .sticky-call-cta {
    bottom: 20px;
    right: 16px;
    padding: 12px 16px 12px 14px;
    font-size: 13px;
  }

  .sticky-call-cta .sticky-cta-text {
    display: none;
  }

  .btn-call-cta {
    font-size: 15px;
    padding: 13px 22px;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 540px) {

  /* Merged block #32 */
  /* Merged block #70 */
  .deals-cards-grid {
    grid-template-columns: 1fr;
  }

  .deals-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .deals-hero-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .deals-countdown-bar-inner {
    gap: 10px;
  }
}

@media (max-width: 520px) {

  /* Merged block #33 */
  /* Merged block #71 */
  .port-section-title {
    font-size: 28px !important;
  }

  .ds-title,
  .port-cta-text h2 {
    font-size: 28px !important;
  }

  .gr-overview-text h2,
  .gr-section-title {
    font-size: 28px !important;
  }
}

@media (max-width: 480px) {

  /* Merged block #34 */
  /* Merged block #72 */
  .nav-center.open {
    max-height: 55vh;
    padding: 12px 14px;
  }

  .nav-center .nav-link {
    padding: 11px 10px !important;
    font-size: 15px !important;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #73 */
  .au-team-grid {
    grid-template-columns: 1fr;
  }

  .au-stat-col {
    flex: 0 0 100%;
  }

  /* Merged block #74 */
  .ppc-step-num {
    display: none;
  }

  .ppc-separator {
    display: none;
  }

  .au-stat-col {
    padding: 20px 20px;
  }

  #au-team {
    padding: 40px 0 40px;
  }

  .btn-au {
    font-size: 14px;
  }

  .au-process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .au-process-header {
    margin-bottom: 35px;
  }


  #au-testimonials {
    padding: 50px 0 50px;
  }

  #au-process {
    padding: 50px 0 40px;
  }

  #au-cta {
    padding: 45px 0;
  }

  .btn-au {
    padding: 15px 14px;
  }

  #au-story {
    padding: 40px 0 40px;
  }

  .au-testimonial-card {
    padding: 40px 22px 34px;
  }

  .faq-item {
    padding: 24px 0px;
  }

  .faq-contact-value {
    font-size: 14px;
  }

  .ct-main {
    padding: 30px 0 40px;
  }

  /* Merged block #35 */
  /* Merged block #75 */
  .footer-container {
    gap: 30px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-links-list li a,
  .footer-hours-list li {
    font-size: 15px;
  }

  .footer-phone {
    font-size: 20px;
  }

  .footer-email {
    font-size: 13px;
  }

  .footer-copyright,
  .footer-bottom-link {
    font-size: 13px;
  }

  .ppc-step-num {
    display: block;
  }

  .process-page-card {
    padding: 20px 0;
  }

  .ppc-thumb {
    width: 100%;
    height: 340px !important;
  }

  #hero {
    height: auto;
    min-height: 100%;

  }
}

@media (max-width: 430px) {

  /* Merged block #36 */
  /* Merged block #76 */
  .port-stat-item:nth-child(1),
  .port-stat-item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 390px) {

  /* Merged block #37 */
  /* Merged block #77 */
  .btn-au {
    padding: 10px 8px;
  }
}

@media (max-width: 360px) {

  /* Merged block #38 */
  /* Merged block #78 */
  .nav-center.open {
    max-height: 50vh;
    padding: 10px 10px;
  }

  .nav-center .nav-link {
    padding: 9px 8px !important;
    font-size: 14px !important;
  }

  .nav-center .nav-submenu li a {
    padding: 7px 12px !important;
    font-size: 13px !important;
  }

  @keyframes mobileNavSlide {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Merged block #39 */
  /* Merged block #79 */
  .footer-phone {
    font-size: 18px;
  }

  .footer-email {
    font-size: 12px;
  }
}

/*
new css */
.port-cta {
  padding: 60px 0 !important;
}

.ds-section {
  padding: 60px 0 !important;
}

.ds-header {
  margin-bottom: 40px !important;
}

.gr-benefits-section,
.gr-color-section {
  padding: 60px 0 !important;
}

.gr-section-header {
  margin-bottom: 40px !important;
}

.avalable_sec {
  padding-bottom: 0 !important;
}

@media only screen and (max-width: 1366px) {
  .gr-overview-text {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 1080px) {
  .port-cta {
    padding: 40px 0 !important;
  }

  .ds-section {
    padding: 40px 0 !important;
  }

  .ds-header {
    margin-bottom: 30px !important;
  }

  .gr-benefits-section,
  .gr-color-section {
    padding: 40px 0 !important;
  }

  .gr-section-header {
    margin-bottom: 30px !important;
  }

  .avalable_sec {
    padding-bottom: 0 !important;
  }

  .port-cta-inner {
    gap: 20px !important;
  }

  .gr-benefit-card {
    padding: 20px 20px;
  }

  .gr-color-info {
    padding: 15px;
  }
}