:root {
  --bg: #F7F6F2;
  --surface: #FFFFFF;
  --base-dark: #0F1115;
  --ink: #0F1115;
  --muted: #6B7280;
  --line: #E7E7EA;
  --white: #FFFFFF;

  --accent: #B87333;
  --accent-hover: #A0651F;
  --state: #0EA5E9;

  --shadow-sm: 0 2px 8px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 17, 21, 0.08);
  --shadow-lg: 0 8px 24px rgba(15, 17, 21, 0.12);
  --shadow-xl: 0 20px 50px rgba(15, 17, 21, 0.15);
  --shadow-accent: 0 4px 16px rgba(184, 115, 51, 0.2);
  --shadow-accent-lg: 0 8px 24px rgba(184, 115, 51, 0.3);

  --text-xs: 14px;
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 24px;
  --text-xl: 32px;
  --text-2xl: 40px;
  --text-3xl: 56px;

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--base-dark);
  background: var(--white);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-base);
}

section {
  scroll-margin-top: 120px;
  padding-top: 64px;
  padding-bottom: 64px;
}

section.hero-section {
  padding-top: 120px;
  padding-bottom: 0;
}

#top-banner {
  z-index: 50;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 40;
}


nav > div {
  width: 100%;
}

.nav-link {
  color: var(--base-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 8px 16px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown navigation */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-button {
  color: var(--base-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 8px 16px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.nav-dropdown-button:hover {
  color: var(--accent);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(15, 17, 21, 0.12);
  border-radius: 12px;
  padding: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.active .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 12px 16px;
  color: var(--base-dark);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 8px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-link:hover {
  background: var(--accent);
  color: white;
  transform: translateX(4px);
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.btn-gold {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-accent);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
}

.btn-gold:active {
  transform: scale(0.95);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: var(--text-sm);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--base-dark);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.95);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.40) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: overlay;
}

.hero-content-container {
  max-width: 56rem;
}

.mobile-menu-button {
  min-width: 44px;
  min-height: 44px;
}


.hamburger {
  padding: 0;
  display: inline-flex;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  background: rgba(184, 115, 51, 0.1);
  border-radius: 8px;
}

.hamburger-box {
  width: 28px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 28px;
  height: 3px;
  background-color: var(--base-dark);
  border-radius: 3px;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}


.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.om-oss-image {
  height: 450px;
}

@media (min-width: 768px) {
  .om-oss-image {
    height: 550px;
  }
}

h1 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  font-weight: 600;
}

.lead {
  font-size: 20px;
  line-height: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 17, 21, 0.12);
}

.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #f3f4f6;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card .p-6 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.service-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  color: var(--base-dark);
}

.service-icon-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--base-dark);
  padding: 10px 20px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--text-xs);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: #f3f4f6;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 17, 21, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-close:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-accent), 0 0 0 4px var(--base-dark);
  position: relative;
}

.before-after-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}

.before-after-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-slider .after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--shadow-accent);
}

.slider-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
}

.video-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 9/16;
  background: #f3f4f6;
}

.video-container:hover {
  box-shadow: 0 12px 32px rgba(15, 17, 21, 0.12);
  transform: translateY(-4px);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

footer {
  background: var(--white);
  color: var(--muted);
}

footer h3,
footer h4 {
  color: var(--base-dark);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 16px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-xs);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
  color: var(--accent);
}

footer .bg-base-dark.text-white {
  background: var(--base-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

footer .bg-base-dark.text-white:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.sticky-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
}

.sticky-cta-button {
  background: var(--accent);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent-lg);
}

.sticky-cta-button:active {
  transform: scale(0.95);
}

.mobile-dropdown {
  position: fixed;
  top: -500px;
  left: 0;
  right: 0;
  z-index: 45;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 0s 300ms;
}

.mobile-dropdown.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 300ms ease;
}

.dropdown-wrapper {
  background: #FFFFFF;
  width: 100%;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(15, 17, 21, 0.15);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropdown-link {
  color: #0F1115;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 250ms ease;
  display: block;
}

.dropdown-link:hover {
  background: rgba(184, 115, 51, 0.1);
  color: #B87333;
}

.dropdown-link-accent {
  color: #B87333;
}

.dropdown-btn {
  background: #B87333;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  text-align: center;
  display: block;
  transition: all 250ms ease;
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.2);
}

.dropdown-btn:hover {
  background: #A0651F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.3);
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
}

.mobile-submenu button {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu button svg {
  transition: transform 250ms ease;
}

.mobile-submenu.active button svg {
  transform: rotate(180deg);
}

.mobile-submenu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.mobile-submenu.active .mobile-submenu-content {
  max-height: 300px;
}

@media (min-width: 768px) {
  .mobile-dropdown {
    display: none !important;
  }
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted);
}

.text-white {
  color: var(--white);
}

.text-base-dark {
  color: var(--base-dark);
}

.bg-surface {
  background: var(--surface);
}

.bg-white {
  background: var(--white);
}

.bg-bg {
  background: var(--bg);
}

.bg-base-dark {
  background: var(--base-dark);
}

.bg-accent-10 {
  background: rgba(184, 115, 51, 0.1);
}

.hover\:bg-accent:hover {
  background: var(--accent);
}

.hover\:text-accent:hover {
  color: var(--accent);
}

.font-display {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.content-wrapper {
  max-width: 68ch;
}

.text-size-xl {
  font-size: var(--text-xl);
}

.text-size-lg {
  font-size: var(--text-lg);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 2px solid #E5E7EB;
  color: var(--base-dark);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.12);
}

input:hover:not(:focus),
textarea:hover:not(:focus) {
  border-color: #D1D5DB;
}

.shadow-xl {
  box-shadow: 0 20px 50px rgba(15, 17, 21, 0.15);
}

.contact-card {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.bg-white.rounded-lg.p-6.border.hover\:border-accent {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.bg-white.rounded-lg.p-6.border.hover\:border-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 17, 21, 0.08);
  border-color: var(--accent);
}

svg {
  flex-shrink: 0;
}

.w-5.h-5 {
  width: 20px;
  height: 20px;
}

.w-6.h-6 {
  width: 24px;
  height: 24px;
}

.rounded-2xl.shadow-2xl {
  box-shadow: 0 20px 50px rgba(15, 17, 21, 0.15);
}

.text-gray-600.hover\:text-accent,
.text-gray-400.hover\:text-accent {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gray-600.hover\:text-accent:hover,
.text-gray-400.hover\:text-accent:hover {
  transform: scale(1.15);
}

.rounded {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded-xl {
  border-radius: 12px;
}

.rounded-2xl {
  border-radius: 16px;
}

.bg-base-dark.text-white.px-6.py-3.rounded,
.bg-white.border-2.border-base-dark.text-base-dark.px-6.py-3.rounded {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.bg-base-dark.text-white.px-6.py-3.rounded:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.bg-white.border-2.border-base-dark.text-base-dark.px-6.py-3.rounded:hover {
  background: var(--bg);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

footer .bg-gray-50.rounded.border {
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

footer .bg-gray-50.rounded.border.hover\:border-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  :root {
    --text-3xl: 40px;
    --text-2xl: 32px;
    --text-xl: 24px;
  }

  nav {
    top: 0;
    margin-top: 55px;
    z-index: 40;
    height: 60px;
  }

  #top-banner {
    z-index: 50;
    position: fixed;
    top: 0;
    height: 55px;
    display: flex;
    align-items: center;
  }

  .hero-section {
    height: 100vh;
    padding-top: 100px;
  }

  section:first-of-type:not(.hero-section) {
    margin-top: 100px;
  }

  .lg\:hidden button {
    padding: 10px;
    border-radius: 8px;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lg\:hidden button:hover {
    background: rgba(184, 115, 51, 0.1);
    transform: scale(1.05);
  }

  .lg\:hidden button:active {
    transform: scale(0.95);
  }

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

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

  .sticky-cta-button span {
    display: none;
  }

  .sticky-cta-button {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

@media (min-width: 640px) {
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

.btn-gold,
.btn-outline,
button[type="submit"],
.bg-base-dark.text-white.px-6.py-3.rounded,
.bg-white.border-2.border-base-dark.text-base-dark.px-6.py-3.rounded {
  min-height: 44px;
  min-width: 44px;
}

/* Mobile navbar fixes */
@media (max-width: 767px) {
  nav {
    background: rgb(255, 255, 255);
    backdrop-filter: none;
  }

  #top-banner.hide {
    transform: translateY(-100%);
  }

  nav.scrolled {
    top: 0;
  }
}

/* Service page hero heights */
.service-hero-section {
  min-height: 500px;
}

@media (min-width: 768px) {
  .service-hero-section {
    min-height: 600px;
  }
}

.service-detail-image {
  height: 600px;
}

