@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 0%;
  --card: 0 0% 97%;
  --card-foreground: 0 0% 0%;
  --primary: 0 0% 0%;
  --primary-foreground: 0 0% 100%;
  --muted-foreground: 0 0% 40%;
  --border: 0 0% 88%;
  --brown: 30 52% 36%;
  --brown-foreground: 0 0% 100%;
  --silver: 0 0% 75%;
  --radius: 0.25rem;
  --font-display: "Oswald", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --led-brown: 30 52% 42%;
  --led-brown-bright: 32 58% 55%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-brown {
  color: hsl(var(--brown));
}

/* Nav */
.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(0 0% 100% / 0.98);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: clamp(5.75rem, 28vw, 12.5rem);
  height: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 768px) {
  .nav-end {
    gap: 1.25rem;
  }
}

.nav-lang {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-lang {
    display: flex;
  }
}

.nav-lang-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: hsl(var(--foreground) / 0.72);
  transition: color 0.15s;
}

.nav-lang-link:hover {
  color: hsl(var(--brown));
}

.nav-lang-link--active {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.nav-lang-sep {
  color: hsl(var(--foreground) / 0.3);
  user-select: none;
  padding: 0 0.1rem;
}

.nav-lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.nav-mobile-lang {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0 0.75rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .nav-mobile-lang {
    display: none;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo--image img {
  height: clamp(4.25rem, 20vw, 11rem);
  width: auto;
  max-width: min(880px, 90vw);
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.88);
  transition: color 0.15s;
}

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

.nav-dd {
  position: relative;
}

.nav-dd-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.88);
  transition: color 0.15s;
  padding: 0;
}

.nav-dd-btn:hover {
  color: hsl(var(--brown));
}

.nav-dd-btn svg.chevron {
  transition: transform 0.2s;
}

.nav-dd:hover .nav-dd-btn svg.chevron,
.nav-dd:focus-within .nav-dd-btn svg.chevron {
  transform: rotate(180deg);
}

.nav-dd-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding-top: 0.5rem;
  width: 18rem;
  background: hsl(0 0% 100%);
  border: 1px solid hsl(var(--border));
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.18);
}

.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  display: block;
}

.nav-dd-panel a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.82);
  font-family: var(--font-body);
  transition: color 0.15s, background 0.15s;
}

.nav-dd-panel a:hover {
  color: hsl(var(--brown));
  background: hsl(var(--foreground) / 0.05);
}

.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: none;
  background: none;
  color: hsl(var(--foreground));
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}

.nav-mobile {
  display: none;
  background: hsl(0 0% 100%);
  border-top: 1px solid hsl(var(--border));
  padding: 0 1.5rem 1.5rem;
}

.nav-mobile.is-open {
  display: block;
}

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

.nav-mobile a,
.nav-mobile .nav-mobile-services-toggle {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.88);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.nav-mobile-services-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-mobile-services-toggle .chevron-m {
  transition: transform 0.2s;
}

.nav-mobile-sub a {
  padding: 0.5rem 0 0.5rem 1rem;
  text-transform: none;
  letter-spacing: normal;
  color: hsl(var(--foreground) / 0.72);
}

.nav-mobile-sub a:hover {
  color: hsl(var(--brown));
}

.nav-mobile-sub {
  display: none;
}

.nav-mobile-sub.is-open {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.7);
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.25;
  color: hsl(var(--primary-foreground));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero .tagline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: hsl(var(--silver));
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-cta {
  display: inline-block;
  margin-top: 2.5rem;
  background: hsl(var(--brown));
  color: hsl(var(--brown-foreground));
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.btn-cta:hover {
  background: hsl(var(--brown) / 0.8);
}

/* Section headings */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-head .rule {
  width: 4rem;
  height: 2px;
  background: hsl(var(--brown));
  margin-left: auto;
  margin-right: auto;
}

.section-head.light h2 {
  color: hsl(var(--primary-foreground));
}

.section-head.dark h2 {
  color: hsl(var(--foreground));
}

.section-head.about .rule {
  margin-bottom: 2rem;
}

/* About */
.about {
  padding: 6rem 0;
  background: hsl(var(--background));
}

.about-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.625;
}

.about p + p {
  margin-top: 1.5rem;
}

/* Services */
.services {
  padding: 6rem 0;
  background: hsl(var(--primary));
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

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

@keyframes led-brown-shine {
  0%,
  100% {
    box-shadow:
      0 0 4px 1px hsl(var(--led-brown) / 0.45),
      0 0 14px 2px hsl(var(--brown) / 0.3),
      0 0 24px 4px hsl(var(--brown) / 0.15),
      inset 0 0 12px hsl(var(--led-brown-bright) / 0.08);
  }
  50% {
    box-shadow:
      0 0 10px 2px hsl(var(--led-brown-bright) / 0.7),
      0 0 22px 4px hsl(var(--led-brown) / 0.45),
      0 0 36px 8px hsl(var(--brown) / 0.28),
      inset 0 0 18px hsl(var(--led-brown-bright) / 0.18);
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  background: hsl(var(--primary-foreground) / 0.05);
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  padding: 2rem;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: hsl(var(--led-brown-bright) / 0.85);
  animation: led-brown-shine 1.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .testimonial-card:hover {
    animation: none;
    box-shadow: 0 0 14px 3px hsl(var(--brown) / 0.35);
  }
}

.service-card .icon-wrap {
  color: hsl(var(--brown));
  margin-bottom: 1.25rem;
  transition: transform 0.15s;
}

.service-card:hover .icon-wrap {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: hsl(var(--silver) / 0.7);
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: hsl(var(--background));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.testimonial-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  padding: 2rem;
  background: hsl(var(--card));
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: hsl(var(--led-brown-bright) / 0.75);
  animation: led-brown-shine 1.6s ease-in-out infinite;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--brown));
}

.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Gallery */
.gallery {
  padding: 6rem 0;
  background: hsl(var(--primary));
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: slide-gallery var(--gallery-marquee-duration, 30s) linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes slide-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-item {
  flex-shrink: 0;
  width: 20rem;
  height: 14rem;
  margin: 0 0.75rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s;
}

.gallery-item img:hover {
  filter: grayscale(0);
}

/* Footer */
.footer {
  background: hsl(var(--primary));
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem;
}

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

.footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1rem;
}

.footer-brand p {
  color: hsl(var(--silver) / 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--silver) / 0.65);
  border: 1px solid hsl(var(--silver) / 0.25);
  border-radius: var(--radius);
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}

.footer-social:hover {
  color: hsl(var(--brown-foreground));
  background: hsl(var(--brown));
  border-color: hsl(var(--brown));
}

.footer a.footer-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--silver) / 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}

.footer a.footer-line:hover {
  color: hsl(var(--brown));
}

.footer span.footer-line {
  cursor: default;
}

.footer-line span.muted {
  color: hsl(var(--silver) / 0.6);
}

.footer-links a {
  display: block;
  color: hsl(var(--silver) / 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: hsl(var(--brown));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: hsl(var(--silver) / 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.icon-inline {
  flex-shrink: 0;
}

/* FAQ page */
.faq-page {
  padding: 6rem 0 4rem;
  min-height: 60vh;
  background: hsl(var(--background));
}

.faq-page .section-head {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  margin-bottom: 0.75rem;
  background: hsl(var(--card));
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(var(--foreground));
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid hsl(var(--brown));
  border-bottom: 2px solid hsl(var(--brown));
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item[open] summary {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.faq-item .faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.625;
}

.faq-page .faq-contact-cta {
  text-align: center;
  margin-top: 2.5rem;
  color: hsl(var(--muted-foreground));
}

.faq-page .faq-contact-cta a {
  color: hsl(var(--brown));
  text-decoration: underline;
}

/* Privacy & Terms pages */
.legal-page {
  padding: 6rem 0 4rem;
  min-height: 60vh;
  background: hsl(var(--background));
}

.legal-page .section-head {
  margin-bottom: 2rem;
}

.legal-page .legal-meta {
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.legal-page .legal-prose {
  max-width: 48rem;
  margin: 0 auto;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.65;
}

.legal-page .legal-prose h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.legal-page .legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-page .legal-prose p {
  margin: 0 0 1rem;
}

.legal-page .legal-prose ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-page .legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-page .legal-prose strong {
  color: hsl(var(--foreground));
}

.legal-page .legal-prose a {
  color: hsl(var(--brown));
  text-decoration: underline;
}

.legal-page .legal-disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
}
