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

:root {
  --bg: #f5f1eb;
  --bg-soft: #fff9f1;
  --card: #ffffff;
  --ink: #1e1b18;
  --ink-soft: #5f5a52;
  --brand: #e07a3f;
  --brand-deep: #b35421;
  --accent: #e07a3f;
  --line: rgba(30, 27, 24, 0.12);
  --shadow: 0 24px 60px rgba(30, 27, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  background: radial-gradient(circle at top left, rgba(224, 122, 63, 0.1), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(224, 122, 63, 0.06), transparent 40%),
    var(--bg);
  color: var(--ink);
  font-family: "Sora", "Helvetica Neue", sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--brand);
}

main {
  min-height: 70vh;
}

.container {
  margin: 0 auto;
  width: min(1120px, 100% - 48px);
}

.section {
  padding: 36px 0px 90px 0px;
}

.section-soft {
  background: #1e1b18;
  color: #f5f1eb;
}

.section-soft .section-header p,
.section-soft .eyebrow,
.section-soft p {
  color: #e07a3f;
}

.section-soft .card,
.section-soft .stat {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 241, 235, 0.12);
  box-shadow: none;
  color: #f5f1eb;
}

.section-soft .card p,
.section-soft .stat {
  color: rgba(245, 241, 235, 0.75);
}

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

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--ink-soft);
  font-size: 16px;
}

.section-header-left {
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.is-visible.card,
.reveal.is-visible.stat,
.reveal.is-visible.hero-panel {
  box-shadow: 0 28px 70px rgba(30, 27, 24, 0.2);
  border-color: rgba(224, 122, 63, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-left: 2px;
}

.btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 30px rgba(224, 122, 63, 0.35);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 27, 24, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 241, 235, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 70px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.nav-links a {
  color: rgba(245, 241, 235, 0.7);
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-cta {
  padding: 10px 22px !important;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(224, 122, 63, 0.28);
}

.nav-cta:hover {
  background: var(--brand-deep);
  color: #fff;
}

.hero {
  background-image: linear-gradient(120deg, rgba(16, 16, 18, 0.72), rgba(16, 16, 18, 0.38)),
    url(/assets/hero-renovation-0e446cca33e226aa4315d8039e03814bd9a7add6a39b8d35184647c627f3a6fc.png);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero .lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.cta-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
  color: var(--ink);
  padding-top: 11px;
  padding-bottom: 43px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.16);
  display: grid;
  gap: 16px;
  text-align: center;
  align-items: center;
  border: 2px solid rgba(224, 122, 63, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-logo {
  max-width: 254px;
  justify-self: center;
}

.panel-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  justify-items: center;
}

.panel-list li::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
  flex-shrink: 0;
  margin-right: 12px;
  transform: translateY(2px);
}

.panel-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(30, 27, 24, 0.12);
  pointer-events: none;
}

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

.realizations {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.carousel-block {
  background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
  border-radius: 22px;
  border: 2px solid rgba(224, 122, 63, 0.18);
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.16);
  padding: 24px;
  position: relative;
}

.carousel-block h3 {
  font-size: 22px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.carousel-block h3::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

.carousel-block p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.carousel-item {
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 27, 24, 0.08);
}

.carousel-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.realizations-section .carousel-block {
  background: #2a2521;
  border-color: rgba(245, 241, 235, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.realizations-section .carousel-block h3,
.realizations-section .carousel-block p {
  color: rgba(245, 241, 235, 0.9);
}

.realizations-section .carousel-block p {
  color: rgba(245, 241, 235, 0.7);
}

.realizations-section .carousel-item {
  background: #1f1b18;
  border-color: rgba(245, 241, 235, 0.14);
}

.realizations-section .carousel-btn {
  background: #1e1b18;
  color: #fff;
  border-color: rgba(245, 241, 235, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.realizations-section .carousel-btn:hover {
  border-color: rgba(224, 122, 63, 0.7);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(224, 122, 63, 0.35);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(30, 27, 24, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.02);
  border-color: rgba(224, 122, 63, 0.6);
}

.carousel-btn[data-carousel-prev] {
  left: 12px;
}

.carousel-btn[data-carousel-next] {
  right: 12px;
}

@media (max-width: 640px) {
  .carousel-btn {
    display: none;
  }

  .carousel-item img {
    height: 240px;
  }
}

.artisan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.artisan-card {
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  overflow: visible;
  flex: 1 1 240px;
  max-width: 280px;
}

.artisan-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(30, 27, 24, 0.18);
}

.artisan-card p {
  padding: 14px 4px 0;
  color: var(--ink-soft);
  text-align: center;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
  padding: 34px 32px 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 2px solid rgba(224, 122, 63, 0.18);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(30, 27, 24, 0.2);
  border-color: rgba(224, 122, 63, 0.45);
}

.card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(30, 27, 24, 0.12);
  pointer-events: none;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card h3::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

.card p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.split h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 16px;
}

.split p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.stat-row {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.stat-row-tight {
  margin-top: -24px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  border: 2px solid rgba(224, 122, 63, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.16);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(30, 27, 24, 0.12);
  pointer-events: none;
}

.stat strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.reveal.is-visible.stat strong::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  margin-right: 10px;
  transform: translateY(-4px);
}

.page-hero {
  padding: 80px 0 40px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 48px);
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 640px;
  color: var(--ink-soft);
}

.page-hero .lead {
  font-size: 16px;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 64px 0 56px;
  border-top: 1px solid rgba(245, 241, 235, 0.08);
  background: rgba(30, 27, 24, 0.96);
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  color: rgba(245, 241, 235, 0.7);
  font-size: 14px;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 140px;
  height: auto;
}

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

.footer-links a,
.footer-social a {
  color: rgba(245, 241, 235, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(224, 122, 63, 0.18);
  border: 1px solid rgba(224, 122, 63, 0.55);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 122, 63, 0.5);
  background: rgba(224, 122, 63, 0.12);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 32px));
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  border: 1px solid rgba(30, 27, 24, 0.12);
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.18);
  padding: 18px 20px;
  z-index: 200;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-direction: column;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(224, 122, 63, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cookie-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--brand);
}

.cookie-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.cookie-text {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .cookie-banner {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .nav {
    justify-content: center;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-panel {
    justify-self: center;
  }

  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .split-cta {
    justify-content: center;
  }

  .cta-stack {
    justify-content: center;
  }

  .panel-list li {
    justify-content: center;
  }

  .realizations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 100% - 32px);
  }

  .nav {
    flex-direction: column;
  }

  .nav-links {
    justify-content: center;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-stack {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-panel {
    padding: 28px;
  }

  .card,
  .stat {
    padding: 24px;
  }

  .realizations {
    grid-template-columns: 1fr;
  }

  .card h3 {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .card h3::after {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
    display: inline-block;
  }

  .card p,
  .stat {
    text-align: center;
  }

  .reveal.is-visible.stat strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .reveal.is-visible.stat strong::after {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand);
    display: inline-block;
    transform: translateY(-4px);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}
