/* ===================================
   HAMMER TAKST - Brand Styles
   Colors: Kobber #A05822, Sort #222222
   =================================== */

:root {
  /* Brand Colors */
  --ht-primary: #A05822;
  --ht-primary-light: #c87a3d;
  --ht-primary-dark: #7a4219;
  --ht-dark: #222222;
  --ht-dark-rgb: 34, 34, 34;

  /* Neutrals */
  --ht-white: #FFFFFF;
  --ht-light: #FAF9F5;
  --ht-gray: #B0AEA5;
  --ht-gray-light: #E8E6DC;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 10rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ===================================
   RESET & BASE
   =================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ht-dark);
  background: var(--ht-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ht-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--ht-gray);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ht-primary);
  margin-bottom: var(--space-sm);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
  background: var(--ht-primary);
  color: var(--ht-white);
}

.btn-primary:hover {
  background: var(--ht-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(160, 88, 34, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ht-dark);
  border: 2px solid var(--ht-gray-light);
}

.btn-secondary:hover {
  border-color: var(--ht-primary);
  color: var(--ht-primary);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ht-gray-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ht-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ht-dark);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--ht-primary);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background: var(--ht-primary);
  color: var(--ht-white) !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--ht-primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ht-dark);
  transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xxl) var(--space-md);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--ht-light) 0%, var(--ht-white) 50%, var(--ht-light) 100%);
  z-index: -2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(160, 88, 34, 0.08) 0%, transparent 60%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  margin-bottom: var(--space-md);
}

.headline-main {
  display: block;
  color: var(--ht-dark);
}

.headline-accent {
  display: block;
  color: var(--ht-primary);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--ht-gray);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ht-primary);
}

.trust-label {
  font-size: 0.875rem;
  color: var(--ht-gray);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--ht-gray-light);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ht-gray);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--ht-gray-light);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--ht-primary);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===================================
   PROBLEMS SECTION
   =================================== */

.problems {
  padding: var(--space-xxl) 0;
  background: var(--ht-white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.problem-card {
  padding: var(--space-lg);
  background: var(--ht-light);
  border-radius: 8px;
  transition: transform var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.problem-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--ht-dark);
}

.problem-card p {
  color: var(--ht-gray);
}

.problem-transition {
  text-align: center;
  font-size: 1.25rem;
  color: var(--ht-dark);
  padding: var(--space-lg);
  border-left: 4px solid var(--ht-primary);
  background: var(--ht-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  padding: var(--space-xxl) 0;
  background: var(--ht-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--ht-white);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--ht-primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
  border-color: var(--ht-primary);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background: var(--ht-primary);
  color: var(--ht-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card>p {
  color: var(--ht-gray);
  margin-bottom: var(--space-md);
}

.service-features {
  margin-bottom: var(--space-md);
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--ht-dark);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ht-primary);
  font-weight: bold;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ht-primary);
}

.service-prices {
  border-top: 1px solid var(--ht-gray-light);
  padding-top: var(--space-sm);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.price-row span:last-child {
  font-weight: 600;
  color: var(--ht-primary);
}

.price-notes {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--ht-gray);
  font-size: 0.875rem;
}

.price-notes p {
  margin-bottom: 0.5rem;
}

/* ===================================
   ADDONS SECTION
   =================================== */

.addons-section {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--ht-gray-light);
}

.addons-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ht-dark);
  margin-bottom: var(--space-md);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.addon-card {
  padding: var(--space-md);
  background: var(--ht-white);
  border: 1px solid var(--ht-gray-light);
  border-radius: 8px;
  transition: all var(--transition-base);
}

.addon-card:hover {
  border-color: var(--ht-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.addon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.addon-icon {
  font-size: 1.5rem;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ht-dark);
}

.addon-desc {
  font-size: 0.85rem;
  color: var(--ht-gray);
  margin-bottom: var(--space-sm);
}

.addon-prices {
  border-top: 1px solid var(--ht-gray-light);
  padding-top: var(--space-sm);
}

.addon-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.addon-price-row span:last-child {
  font-weight: 600;
  color: var(--ht-primary);
}

.addon-price-single {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ht-primary);
  margin-top: var(--space-xs);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
  padding: var(--space-xxl) 0;
  background: var(--ht-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg);
  background: var(--ht-light);
  border-radius: 8px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ht-primary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ht-dark);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--ht-dark);
}

.author-context {
  font-size: 0.875rem;
  color: var(--ht-gray);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
  padding: var(--space-xxl) 0;
  background: linear-gradient(to right, var(--ht-light) 50%, var(--ht-white) 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-lead {
  font-size: 1.25rem;
  color: var(--ht-dark);
  margin-bottom: var(--space-md);
}

.about-content>p {
  color: var(--ht-gray);
  margin-bottom: var(--space-md);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credential-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ht-primary);
  color: var(--ht-white);
  border-radius: 50%;
  font-size: 0.75rem;
}

.expertise-areas h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.expertise-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-areas li {
  padding: 0.5rem 1rem;
  background: var(--ht-white);
  border: 1px solid var(--ht-gray-light);
  border-radius: 20px;
  font-size: 0.875rem;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.profile-image {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
  text-align: center;
}

.caption-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ht-dark);
}

.caption-title {
  font-size: 0.875rem;
  color: var(--ht-primary);
}

/* Media Feature */
.media-feature {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--ht-light);
  border-radius: 8px;
  text-align: center;
}

.media-feature h3 {
  margin-bottom: var(--space-sm);
  color: var(--ht-gray);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.media-link {
  display: block;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.media-link:hover {
  color: var(--ht-primary);
}

.media-source {
  display: block;
  font-weight: 600;
  color: var(--ht-primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.media-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ht-dark);
}

.media-desc {
  color: var(--ht-gray);
  font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: var(--space-xxl) 0;
  background: var(--ht-dark);
  color: var(--ht-white);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--ht-primary);
  border-radius: 50%;
  border: 3px solid var(--ht-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-text {
  font-size: 0.875rem;
  color: var(--ht-gray);
}

.cta-section h2 {
  color: var(--ht-white);
  margin-bottom: var(--space-sm);
}

.cta-section>.container>.cta-content>p {
  color: var(--ht-gray);
  margin-bottom: var(--space-md);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ht-white);
  transition: color var(--transition-fast);
}

.contact-item:hover {
  color: var(--ht-primary);
}

.contact-icon {
  font-size: 1.25rem;
}

.cta-note {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--ht-gray);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  padding: var(--space-xl) 0 var(--space-md);
  background: var(--ht-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
  margin-bottom: var(--space-sm);
  display: block;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ht-primary);
  margin-bottom: var(--space-sm);
}

.footer-description {
  color: var(--ht-gray);
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--ht-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ht-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--ht-gray-light);
  font-size: 0.875rem;
  color: var(--ht-gray);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a:hover {
  color: var(--ht-primary);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about {
    background: var(--ht-light);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ht-white);
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--ht-gray-light);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

  .trust-divider {
    display: none;
  }

  .trust-signals {
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xxl: 5rem;
  }

  .problems-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}