/* 
 * Pillowh - Interior Design
 * Custom CSS Framework
 * Scandi Light Wood Theme with Floating Card Islands Layout
 */


@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;600&display=swap');


:root {
  --hh-primary: #F9F7F4;
  --hh-secondary: #E5E1DC;
  --hh-accent: #8CA6B5;
  --hh-dark-accent: #4A5D68;
  --hh-text-primary: #333333;
  --hh-text-secondary: #666666;
  --hh-highlight: #D9C7B8;
  --hh-wood: #D4B896;
  --hh-shadow: rgba(0, 0, 0, 0.08);
  --hh-shadow-hover: rgba(0, 0, 0, 0.15);
  --hh-white: #FFFFFF;
  --hh-spacing-xs: 0.5rem;
  --hh-spacing-sm: 1rem;
  --hh-spacing-md: 2rem;
  --hh-spacing-lg: 3rem;
  --hh-spacing-xl: 4rem;
  --hh-radius-sm: 0.25rem;
  --hh-radius-md: 0.5rem;
  --hh-radius-lg: 1rem;
  --hh-radius-xl: 2rem;
  --hh-radius-full: 9999px;
  --hh-transition: all 0.3s ease;
  --hh-font-sans: 'Inter', sans-serif;
  --hh-font-mono: 'JetBrains Mono', monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--hh-font-sans);
  background-color: var(--hh-primary);
  color: var(--hh-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: var(--hh-dark-accent);
  text-decoration: none;
  transition: var(--hh-transition);
}

a:hover, a:focus {
  color: var(--hh-accent);
}

ul, ol {
  list-style-position: inside;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--hh-font-mono);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--hh-dark-accent);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.015em;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: 1.5rem;
}

.hh-text-sm {
  font-size: 0.875rem;
}

.hh-text-lg {
  font-size: 1.125rem;
}

.hh-text-xl {
  font-size: 1.25rem;
}

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

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

.hh-text-light {
  color: var(--hh-text-secondary);
}

.hh-text-mono {
  font-family: var(--hh-font-mono);
}


.hh-page {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--hh-spacing-md);
  flex: 1;
}

@media (min-width: 768px) {
  .hh-page {
    padding: 0 var(--hh-spacing-lg);
  }
}

.hh-island-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
  padding: var(--hh-spacing-md) 0;
}

@media (min-width: 768px) {
  .hh-island-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hh-spacing-lg);
    padding: var(--hh-spacing-lg) 0;
  }
}

@media (min-width: 1024px) {
  .hh-island-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hh-spacing-xl);
    padding: var(--hh-spacing-xl) 0;
  }
}

.hh-island-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-island-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--hh-spacing-lg);
  }
}

.hh-island {
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  padding: var(--hh-spacing-md);
  box-shadow: 0 10px 30px var(--hh-shadow);
  transition: var(--hh-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hh-island:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--hh-shadow-hover);
}

.hh-island-accent {
  border-top: 4px solid var(--hh-accent);
}

.hh-island-wood {
  border-top: 4px solid var(--hh-wood);
}

.hh-island-highlight {
  border-top: 4px solid var(--hh-highlight);
}

.hh-island-lg {
  grid-column: 1 / -1;
  padding: var(--hh-spacing-lg);
}

.hh-island-header {
  margin-bottom: var(--hh-spacing-md);
  border-bottom: 1px solid var(--hh-secondary);
  padding-bottom: var(--hh-spacing-sm);
}

.hh-island-body {
  flex: 1;
}

.hh-island-footer {
  margin-top: var(--hh-spacing-md);
  padding-top: var(--hh-spacing-sm);
  border-top: 1px solid var(--hh-secondary);
}

.hh-float-right {
  float: right;
  margin-left: var(--hh-spacing-md);
  margin-bottom: var(--hh-spacing-md);
  shape-outside: margin-box;
  max-width: 40%;
}

@media (max-width: 767px) {
  .hh-float-right {
    float: none;
    margin-left: 0;
    max-width: 100%;
  }
}

.hh-float-left {
  float: left;
  margin-right: var(--hh-spacing-md);
  margin-bottom: var(--hh-spacing-md);
  shape-outside: margin-box;
  max-width: 40%;
}

@media (max-width: 767px) {
  .hh-float-left {
    float: none;
    margin-right: 0;
    max-width: 100%;
  }
}


.hh-mt-xs { margin-top: var(--hh-spacing-xs); }
.hh-mt-sm { margin-top: var(--hh-spacing-sm); }
.hh-mt-md { margin-top: var(--hh-spacing-md); }
.hh-mt-lg { margin-top: var(--hh-spacing-lg); }
.hh-mt-xl { margin-top: var(--hh-spacing-xl); }

.hh-mb-xs { margin-bottom: var(--hh-spacing-xs); }
.hh-mb-sm { margin-bottom: var(--hh-spacing-sm); }
.hh-mb-md { margin-bottom: var(--hh-spacing-md); }
.hh-mb-lg { margin-bottom: var(--hh-spacing-lg); }
.hh-mb-xl { margin-bottom: var(--hh-spacing-xl); }

.hh-mx-auto { margin-left: auto; margin-right: auto; }
.hh-my-auto { margin-top: auto; margin-bottom: auto; }

.hh-pt-xs { padding-top: var(--hh-spacing-xs); }
.hh-pt-sm { padding-top: var(--hh-spacing-sm); }
.hh-pt-md { padding-top: var(--hh-spacing-md); }
.hh-pt-lg { padding-top: var(--hh-spacing-lg); }
.hh-pt-xl { padding-top: var(--hh-spacing-xl); }

.hh-pb-xs { padding-bottom: var(--hh-spacing-xs); }
.hh-pb-sm { padding-bottom: var(--hh-spacing-sm); }
.hh-pb-md { padding-bottom: var(--hh-spacing-md); }
.hh-pb-lg { padding-bottom: var(--hh-spacing-lg); }
.hh-pb-xl { padding-bottom: var(--hh-spacing-xl); }


.hh-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.hh-nav-toggle {
  position: fixed;
  top: var(--hh-spacing-md);
  right: var(--hh-spacing-md);
  z-index: 1001;
  width: 50px;
  height: 50px;
  border-radius: var(--hh-radius-full);
  background-color: var(--hh-white);
  box-shadow: 0 4px 10px var(--hh-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--hh-transition);
}

.hh-nav-toggle:hover {
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

.hh-nav-toggle i {
  font-size: 1.5rem;
}

.hh-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: var(--hh-white);
  box-shadow: -5px 0 30px var(--hh-shadow);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  display: flex;
  flex-direction: column;
  padding: var(--hh-spacing-xl) var(--hh-spacing-md);
  overflow-y: auto;
  pointer-events: auto;
  z-index: 1000;
}

.hh-nav.hh-active {
  transform: translateX(0);
}

.hh-nav-logo {
  margin-bottom: var(--hh-spacing-lg);
  display: block;
  width: 100%;
  max-width: 180px;
}

.hh-nav-links {
  list-style: none;
}

.hh-nav-link {
  margin-bottom: var(--hh-spacing-md);
}

.hh-nav-link a {
  display: block;
  font-family: var(--hh-font-mono);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--hh-text-primary);
  padding: var(--hh-spacing-xs) 0;
  border-bottom: 1px solid transparent;
  transition: var(--hh-transition);
}

.hh-nav-link a:hover, 
.hh-nav-link a:focus,
.hh-nav-link a.hh-active {
  color: var(--hh-accent);
  border-bottom-color: var(--hh-accent);
}

.hh-nav-footer {
  margin-top: auto;
  padding-top: var(--hh-spacing-lg);
}

.hh-nav-contact {
  font-family: var(--hh-font-mono);
  margin-bottom: var(--hh-spacing-md);
}

.hh-nav-contact a {
  display: block;
  margin-bottom: var(--hh-spacing-xs);
  color: var(--hh-dark-accent);
}

.hh-nav-contact i {
  width: 20px;
  text-align: center;
  margin-right: var(--hh-spacing-xs);
}

.hh-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--hh-transition);
  pointer-events: auto;
  z-index: 999;
}

.hh-nav-overlay.hh-active {
  opacity: 1;
  visibility: visible;
}


.hh-header {
  padding: var(--hh-spacing-xl) 0;
  text-align: center;
  margin-top: 60px;
}

.hh-header-title {
  font-size: 3rem;
  margin-bottom: var(--hh-spacing-md);
  color: var(--hh-dark-accent);
}

.hh-header-subtitle {
  font-size: 1.25rem;
  color: var(--hh-text-secondary);
  max-width: 800px;
  margin: 0 auto var(--hh-spacing-lg);
}

.hh-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

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

.hh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(249, 247, 244, 0.3), rgba(249, 247, 244, 0.9));
  z-index: -1;
}

.hh-hero-content {
  max-width: 800px;
  padding: var(--hh-spacing-lg);
  text-align: center;
  z-index: 1;
}

.hh-hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--hh-spacing-md);
  color: var(--hh-dark-accent);
}

.hh-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--hh-spacing-lg);
  color: var(--hh-text-primary);
}


.hh-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--hh-radius-md);
  font-family: var(--hh-font-mono);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--hh-transition);
  border: none;
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

.hh-btn:hover, .hh-btn:focus {
  background-color: var(--hh-dark-accent);
  color: var(--hh-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--hh-shadow);
}

.hh-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.hh-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.hh-btn-outline {
  background-color: transparent;
  border: 2px solid var(--hh-accent);
  color: var(--hh-accent);
}

.hh-btn-outline:hover, .hh-btn-outline:focus {
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

.hh-btn-wood {
  background-color: var(--hh-wood);
  color: var(--hh-text-primary);
}

.hh-btn-wood:hover, .hh-btn-wood:focus {
  background-color: var(--hh-highlight);
  color: var(--hh-text-primary);
}

.hh-btn-block {
  display: block;
  width: 100%;
}


.hh-form-group {
  margin-bottom: var(--hh-spacing-md);
}

.hh-form-label {
  display: block;
  margin-bottom: var(--hh-spacing-xs);
  font-family: var(--hh-font-mono);
  font-weight: 500;
  color: var(--hh-dark-accent);
}

.hh-form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--hh-font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--hh-text-primary);
  background-color: var(--hh-white);
  background-clip: padding-box;
  border: 1px solid var(--hh-secondary);
  border-radius: var(--hh-radius-md);
  transition: var(--hh-transition);
}

.hh-form-control:focus {
  border-color: var(--hh-accent);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(140, 166, 181, 0.25);
}

.hh-form-control::placeholder {
  color: var(--hh-text-secondary);
  opacity: 0.7;
}

.hh-form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--hh-text-secondary);
}

.hh-form-check {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: var(--hh-spacing-sm);
}

.hh-form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.75rem;
}

.hh-form-check-label {
  margin-bottom: 0;
}

.hh-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.hh-form-col {
  flex: 1 0 0%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

textarea.hh-form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.hh-form-required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.25rem;
}


.hh-img-fluid {
  width: 100%;
  height: auto;
}

.hh-img-rounded {
  border-radius: var(--hh-radius-md);
}

.hh-img-circle {
  border-radius: var(--hh-radius-full);
}

.hh-img-shadow {
  box-shadow: 0 5px 15px var(--hh-shadow);
}

.hh-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-img-container {
  overflow: hidden;
  position: relative;
}

.hh-aspect-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hh-aspect-ratio::before {
  content: "";
  display: block;
  padding-top: 66.67%; 
}

.hh-aspect-ratio-square::before {
  padding-top: 100%; 
}

.hh-aspect-ratio-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.hh-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--hh-spacing-sm);
}

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

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

.hh-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--hh-radius-md);
  box-shadow: 0 5px 15px var(--hh-shadow);
  transition: var(--hh-transition);
}

.hh-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--hh-shadow-hover);
}

.hh-gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--hh-transition);
}

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

.hh-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--hh-spacing-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--hh-white);
  opacity: 0;
  transition: var(--hh-transition);
}

.hh-gallery-item:hover .hh-gallery-overlay {
  opacity: 1;
}

.hh-gallery-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--hh-white);
}

.hh-gallery-desc {
  font-size: 0.875rem;
  margin-bottom: 0;
}


.hh-card {
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 10px 30px var(--hh-shadow);
  overflow: hidden;
  transition: var(--hh-transition);
}

.hh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--hh-shadow-hover);
}

.hh-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hh-card-body {
  padding: var(--hh-spacing-md);
}

.hh-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hh-card-text {
  color: var(--hh-text-secondary);
  margin-bottom: var(--hh-spacing-sm);
}

.hh-card-footer {
  padding: var(--hh-spacing-sm) var(--hh-spacing-md);
  background-color: var(--hh-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.hh-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.hh-feature {
  padding: var(--hh-spacing-md);
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 10px 30px var(--hh-shadow);
  transition: var(--hh-transition);
}

.hh-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--hh-shadow-hover);
}

.hh-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--hh-accent);
  color: var(--hh-white);
  border-radius: var(--hh-radius-full);
  margin-bottom: var(--hh-spacing-sm);
}

.hh-feature-icon i {
  font-size: 1.5rem;
}

.hh-feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--hh-spacing-sm);
}

.hh-feature-text {
  color: var(--hh-text-secondary);
  margin-bottom: 0;
}


.hh-footer {
  background-color: var(--hh-secondary);
  padding: var(--hh-spacing-lg) 0;
  margin-top: var(--hh-spacing-xl);
}

.hh-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hh-footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hh-footer-logo {
  display: block;
  max-width: 150px;
  margin-bottom: var(--hh-spacing-sm);
}

.hh-footer-about {
  color: var(--hh-text-secondary);
  margin-bottom: var(--hh-spacing-sm);
}

.hh-footer-heading {
  font-size: 1.25rem;
  margin-bottom: var(--hh-spacing-sm);
  color: var(--hh-dark-accent);
}

.hh-footer-links {
  list-style: none;
  padding-left: 0;
}

.hh-footer-link {
  margin-bottom: var(--hh-spacing-xs);
}

.hh-footer-link a {
  color: var(--hh-text-secondary);
  transition: var(--hh-transition);
}

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

.hh-footer-contact {
  color: var(--hh-text-secondary);
}

.hh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--hh-spacing-xs);
}

.hh-footer-contact-icon {
  margin-right: var(--hh-spacing-xs);
  color: var(--hh-accent);
  width: 20px;
  text-align: center;
}

.hh-footer-bottom {
  margin-top: var(--hh-spacing-lg);
  padding-top: var(--hh-spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--hh-text-secondary);
  font-size: 0.875rem;
}

.hh-footer-bottom a {
  color: var(--hh-dark-accent);
}


.hh-text-center {
  text-align: center;
}

.hh-text-right {
  text-align: right;
}

.hh-text-left {
  text-align: left;
}

.hh-d-flex {
  display: flex;
}

.hh-align-items-center {
  align-items: center;
}

.hh-justify-content-between {
  justify-content: space-between;
}

.hh-justify-content-center {
  justify-content: center;
}

.hh-flex-column {
  flex-direction: column;
}

.hh-w-100 {
  width: 100%;
}

.hh-h-100 {
  height: 100%;
}

.hh-position-relative {
  position: relative;
}

.hh-position-absolute {
  position: absolute;
}

.hh-bg-primary {
  background-color: var(--hh-primary);
}

.hh-bg-secondary {
  background-color: var(--hh-secondary);
}

.hh-bg-accent {
  background-color: var(--hh-accent);
}

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

.hh-rounded {
  border-radius: var(--hh-radius-md);
}

.hh-rounded-lg {
  border-radius: var(--hh-radius-lg);
}

.hh-rounded-circle {
  border-radius: var(--hh-radius-full);
}

.hh-shadow {
  box-shadow: 0 5px 15px var(--hh-shadow);
}

.hh-shadow-lg {
  box-shadow: 0 10px 30px var(--hh-shadow);
}

.hh-overflow-hidden {
  overflow: hidden;
}


.hh-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--hh-white);
  box-shadow: 0 -5px 20px var(--hh-shadow);
  padding: var(--hh-spacing-md);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.hh-cookie-consent.hh-active {
  transform: translateY(0);
}

.hh-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hh-cookie-text {
  flex: 1;
  margin-right: var(--hh-spacing-md);
  margin-bottom: var(--hh-spacing-sm);
}

.hh-cookie-text h3 {
  margin-bottom: 0.5rem;
}

.hh-cookie-text p {
  margin-bottom: 0;
}

.hh-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hh-spacing-xs);
}

.hh-cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 10px 40px var(--hh-shadow);
  padding: var(--hh-spacing-lg);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hh-cookie-settings.hh-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.hh-cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--hh-spacing-md);
  padding-bottom: var(--hh-spacing-sm);
  border-bottom: 1px solid var(--hh-secondary);
}

.hh-cookie-settings-title {
  margin-bottom: 0;
}

.hh-cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--hh-text-secondary);
}

.hh-cookie-category {
  margin-bottom: var(--hh-spacing-md);
}

.hh-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--hh-spacing-xs);
}

.hh-cookie-category-title {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.hh-cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.hh-cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.hh-cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--hh-secondary);
  transition: .4s;
  border-radius: 34px;
}

.hh-cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .hh-cookie-category-slider {
  background-color: var(--hh-accent);
}

input:focus + .hh-cookie-category-slider {
  box-shadow: 0 0 1px var(--hh-accent);
}

input:checked + .hh-cookie-category-slider:before {
  transform: translateX(26px);
}

.hh-cookie-category-description {
  font-size: 0.9rem;
  color: var(--hh-text-secondary);
}

.hh-cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--hh-spacing-xs);
  margin-top: var(--hh-spacing-md);
  padding-top: var(--hh-spacing-sm);
  border-top: 1px solid var(--hh-secondary);
}

.hh-cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hh-cookie-overlay.hh-active {
  opacity: 1;
  visibility: visible;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hh-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hh-slide-in-up {
  animation: slideInUp 0.5s ease forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hh-pulse {
  animation: pulse 2s infinite;
}


@media (max-width: 991.98px) {
  h1, .hh-header-title, .hh-hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hh-header-subtitle, .hh-hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hh-hero {
    height: 70vh;
    min-height: 500px;
  }
}

@media (max-width: 767.98px) {
  h1, .hh-header-title, .hh-hero-title {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hh-header-subtitle, .hh-hero-subtitle {
    font-size: 1rem;
  }
  
  .hh-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .hh-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hh-cookie-text {
    margin-right: 0;
    margin-bottom: var(--hh-spacing-md);
  }
}

@media (max-width: 575.98px) {
  h1, .hh-header-title, .hh-hero-title {
    font-size: 1.75rem;
  }
  
  .hh-header {
    padding: var(--hh-spacing-lg) 0;
  }
  
  .hh-hero {
    height: 50vh;
    min-height: 350px;
  }
}


.hh-divider {
  width: 100%;
  height: 1px;
  background-color: var(--hh-secondary);
  margin: var(--hh-spacing-md) 0;
}

.hh-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--hh-secondary);
  color: var(--hh-text-primary);
  border-radius: var(--hh-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.hh-tag-accent {
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

.hh-tag-wood {
  background-color: var(--hh-wood);
  color: var(--hh-text-primary);
}

.hh-progress {
  height: 8px;
  background-color: var(--hh-secondary);
  border-radius: var(--hh-radius-full);
  overflow: hidden;
  margin-bottom: var(--hh-spacing-sm);
}

.hh-progress-bar {
  height: 100%;
  background-color: var(--hh-accent);
  border-radius: var(--hh-radius-full);
  transition: width 0.5s ease;
}

.hh-timeline {
  position: relative;
  padding-left: 30px;
}

.hh-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  height: 100%;
  width: 2px;
  background-color: var(--hh-secondary);
}

.hh-timeline-item {
  position: relative;
  margin-bottom: var(--hh-spacing-md);
}

.hh-timeline-dot {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: var(--hh-radius-full);
  background-color: var(--hh-accent);
  border: 3px solid var(--hh-white);
  z-index: 1;
}

.hh-timeline-content {
  padding-bottom: var(--hh-spacing-sm);
}

.hh-timeline-date {
  font-size: 0.875rem;
  color: var(--hh-text-secondary);
  margin-bottom: 0.25rem;
}

.hh-timeline-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.hh-timeline-text {
  color: var(--hh-text-secondary);
}


.hh-testimonial {
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  padding: var(--hh-spacing-md);
  box-shadow: 0 10px 30px var(--hh-shadow);
  margin-bottom: var(--hh-spacing-md);
  position: relative;
}

.hh-testimonial::before {
  content: """;
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--hh-accent);
  opacity: 0.2;
  font-family: serif;
}

.hh-testimonial-text {
  font-style: italic;
  margin-bottom: var(--hh-spacing-sm);
  position: relative;
  z-index: 1;
}

.hh-testimonial-author {
  display: flex;
  align-items: center;
}

.hh-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--hh-radius-full);
  margin-right: var(--hh-spacing-sm);
}

.hh-testimonial-info {
  flex: 1;
}

.hh-testimonial-name {
  font-weight: 600;
  margin-bottom: 0;
}

.hh-testimonial-title {
  font-size: 0.875rem;
  color: var(--hh-text-secondary);
}


.hh-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hh-stat {
  text-align: center;
  padding: var(--hh-spacing-md);
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 10px 30px var(--hh-shadow);
}

.hh-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hh-accent);
  margin-bottom: 0.25rem;
  font-family: var(--hh-font-mono);
}

.hh-stat-label {
  color: var(--hh-text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.hh-price-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-price-tables {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hh-price-table {
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  box-shadow: 0 10px 30px var(--hh-shadow);
  overflow: hidden;
  transition: var(--hh-transition);
}

.hh-price-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--hh-shadow-hover);
}

.hh-price-table-header {
  padding: var(--hh-spacing-md);
  background-color: var(--hh-secondary);
  text-align: center;
}

.hh-price-table-popular .hh-price-table-header {
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

.hh-price-table-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hh-price-table-price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--hh-font-mono);
}

.hh-price-table-period {
  font-size: 0.875rem;
  color: var(--hh-text-secondary);
}

.hh-price-table-popular .hh-price-table-period {
  color: rgba(255, 255, 255, 0.8);
}

.hh-price-table-features {
  padding: var(--hh-spacing-md);
  list-style: none;
}

.hh-price-table-feature {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--hh-secondary);
  display: flex;
  align-items: center;
}

.hh-price-table-feature:last-child {
  border-bottom: none;
}

.hh-price-table-feature i {
  color: var(--hh-accent);
  margin-right: 0.5rem;
}

.hh-price-table-footer {
  padding: 0 var(--hh-spacing-md) var(--hh-spacing-md);
  text-align: center;
}


.hh-alert {
  padding: var(--hh-spacing-sm) var(--hh-spacing-md);
  border-radius: var(--hh-radius-md);
  margin-bottom: var(--hh-spacing-md);
  display: flex;
  align-items: flex-start;
}

.hh-alert-icon {
  margin-right: var(--hh-spacing-sm);
  font-size: 1.25rem;
}

.hh-alert-content {
  flex: 1;
}

.hh-alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hh-alert-text {
  margin-bottom: 0;
}

.hh-alert-info {
  background-color: rgba(140, 166, 181, 0.15);
  border-left: 4px solid var(--hh-accent);
}

.hh-alert-info .hh-alert-icon {
  color: var(--hh-accent);
}

.hh-alert-success {
  background-color: rgba(72, 187, 120, 0.15);
  border-left: 4px solid #48bb78;
}

.hh-alert-success .hh-alert-icon {
  color: #48bb78;
}

.hh-alert-warning {
  background-color: rgba(237, 137, 54, 0.15);
  border-left: 4px solid #ed8936;
}

.hh-alert-warning .hh-alert-icon {
  color: #ed8936;
}

.hh-alert-error {
  background-color: rgba(229, 62, 62, 0.15);
  border-left: 4px solid #e53e3e;
}

.hh-alert-error .hh-alert-icon {
  color: #e53e3e;
}


.hh-range-slider {
  margin: var(--hh-spacing-md) 0;
}

.hh-range-slider .noUi-target {
  background: var(--hh-secondary);
  border-radius: var(--hh-radius-full);
  border: none;
  box-shadow: none;
  height: 8px;
}

.hh-range-slider .noUi-connect {
  background: var(--hh-accent);
}

.hh-range-slider .noUi-handle {
  border: none;
  background: var(--hh-white);
  box-shadow: 0 0 10px var(--hh-shadow);
  height: 20px;
  width: 20px;
  border-radius: var(--hh-radius-full);
  right: -10px;
  top: -7px;
}

.hh-range-slider .noUi-handle:before,
.hh-range-slider .noUi-handle:after {
  display: none;
}

.hh-range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--hh-text-secondary);
}


.hh-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hh-spacing-md);
}

@media (min-width: 768px) {
  .hh-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hh-service {
  position: relative;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--hh-shadow);
  height: 250px;
}

.hh-service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--hh-transition);
}

.hh-service:hover .hh-service-bg {
  transform: scale(1.05);
}

.hh-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.hh-service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--hh-spacing-md);
  z-index: 3;
  color: var(--hh-white);
}

.hh-service-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--hh-white);
}

.hh-service-desc {
  margin-bottom: var(--hh-spacing-sm);
}

.hh-process {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--hh-spacing-lg);
}

.hh-process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--hh-accent);
  color: var(--hh-white);
  border-radius: var(--hh-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--hh-font-mono);
}

.hh-process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hh-process-desc {
  color: var(--hh-text-secondary);
}

.hh-contact-info {
  background-color: var(--hh-white);
  border-radius: var(--hh-radius-lg);
  padding: var(--hh-spacing-md);
  box-shadow: 0 10px 30px var(--hh-shadow);
  margin-bottom: var(--hh-spacing-md);
}

.hh-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--hh-spacing-sm);
}

.hh-contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--hh-accent);
  color: var(--hh-white);
  border-radius: var(--hh-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--hh-spacing-sm);
}

.hh-contact-text {
  flex: 1;
}

.hh-contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hh-map {
  height: 400px;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--hh-shadow);
  margin-bottom: var(--hh-spacing-md);
}

.hh-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hh-float-animation {
  animation: float 6s ease-in-out infinite;
}

.hh-float-animation-delay-1 {
  animation-delay: 1s;
}

.hh-float-animation-delay-2 {
  animation-delay: 2s;
}

.hh-float-animation-delay-3 {
  animation-delay: 3s;
}


::selection {
  background-color: var(--hh-accent);
  color: var(--hh-white);
}

:focus {
  outline: 2px solid var(--hh-accent);
  outline-offset: 2px;
}

.hh-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--hh-accent);
  color: var(--hh-white);
  border-radius: var(--hh-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--hh-transition);
  z-index: 99;
}

.hh-scroll-top.hh-active {
  opacity: 1;
  visibility: visible;
}

.hh-scroll-top:hover {
  background-color: var(--hh-dark-accent);
  transform: translateY(-5px);
}