:root {
  --bg: #f4f0e6;
  --ink: #1c1b18;
  --accent: #d0642e;
  --accent-2: #2c5f6e;
  --muted: #6a635b;
  --card: #fff7e9;
  --line: #d8c9b6;
  --shadow: rgba(28, 27, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-sun {
  position: fixed;
  top: -200px;
  right: -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at center, #f6c57a 0%, #f2a354 55%, rgba(242, 163, 84, 0) 70%);
  opacity: 0.8;
  z-index: 0;
}

.bg-grid {
  display: none;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw;
  gap: 20px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover {
  color: inherit;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0.6px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-items: center;
  position: relative;
  z-index: 60;
}

.nav a,
.dropdown-toggle {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-top: 4px;
  transition: transform 0.25s ease;
  display: none;
}

.nav-item.open .dropdown-toggle::before {
  transform: rotate(180deg);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  display: grid;
  gap: 6px;
  min-width: 260px;
  padding: 18px;
  background: #fff9f1;
  border: 1px solid rgba(28, 27, 24, 0.1);
  box-shadow: 0 24px 50px rgba(28, 27, 24, 0.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 80;
  border-radius: 14px;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 32px;
  width: 18px;
  height: 18px;
  background: #fff9f1;
  border-left: 1px solid rgba(28, 27, 24, 0.1);
  border-top: 1px solid rgba(28, 27, 24, 0.1);
  transform: rotate(45deg);
}

.dropdown a {
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown a:hover {
  background: rgba(208, 100, 46, 0.12);
  transform: translateX(2px);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff7e9;
  cursor: pointer;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7e9;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(28, 27, 24, 0.08);
}

.header-phone span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(208, 100, 46, 0.2);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

main {
  padding-top: 100px;
}

.legal-main {
  padding: 48px 6vw 80px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-content {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 8px;
  line-height: 1.2;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 32px;
}

.legal-content h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  line-height: 1.3;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content strong {
  font-weight: 700;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  padding: 24px 6vw 60px;
  align-items: start;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-bg-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 240, 230, 0.92) 0%, rgba(244, 240, 230, 0.75) 50%, rgba(244, 240, 230, 0.6) 100%);
  pointer-events: none;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-2);
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  margin: 12px 0 16px;
  line-height: 1.05;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn,
a.btn {
  text-decoration: none;
}

.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
  text-decoration: none;
}

.btn {
  border: 1px solid var(--ink);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(208, 100, 46, 0.3);
}

.btn.ghost {
  background: transparent;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}

.roof-body {
  padding: 8px 0 4px;
}

.roof-title {
  font-size: 18px;
  margin: 0 0 8px;
}

.roof-desc {
  margin: 0;
  color: var(--muted);
}

/* Service pages: hero with image + text content block */
.service-hero .hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-hero .hero-image {
  border-radius: 12px;
  max-height: 320px;
  object-fit: cover;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 48px 6vw 72px;
  border-top: 1px solid var(--line);
  background: #fdf8ef;
}

.service-content-inner {
  max-width: 720px;
  margin: 0 auto;
}

.service-content-inner h2 {
  font-size: 28px;
  margin: 0 0 16px;
}

.service-content-inner h3 {
  font-size: 20px;
  margin: 24px 0 12px;
}

.service-content-inner p,
.service-content-inner ul {
  margin: 0 0 16px;
  line-height: 1.6;
}

.service-content-inner ul {
  padding-left: 1.5em;
}

.service-content-inner .btn {
  margin-top: 8px;
  display: inline-block;
  text-decoration: none;
}

.service-process {
  margin: 32px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.service-process-steps {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.service-process-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.service-process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-process-step h4 {
  margin: 0 0 4px;
  font-size: 17px;
}

.service-process-step p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.service-why {
  margin: 32px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.service-why ul {
  margin: 12px 0 0;
}

.service-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 28px 0 0;
  padding: 24px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.service-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.service-trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

@media (max-width: 640px) {
  .service-trust-grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 16px;
  border: 1px dashed var(--line);
  background: rgba(255, 247, 233, 0.7);
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 14px;
}

.strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fdf8ef;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.strip-item {
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: none;
}

/* About us */
.about-section {
  position: relative;
  z-index: 2;
  padding: 64px 6vw 72px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-2);
  margin: 0 0 8px;
}

.about-title {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 24px;
}

.about-content {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}

.about-lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 20px;
}

.about-content p {
  margin: 0 0 18px;
}

.about-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 24px;
}

.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 20px 18px;
  background: linear-gradient(135deg, #fff 0%, #fdfaf5 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-left: 4px solid var(--accent-2);
  font-size: 15px;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.about-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28, 27, 24, 0.08);
  border-left-color: var(--accent);
}

.about-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--accent-2) 0%, #234a54 100%);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 110, 0.25);
}

.about-trust-icon svg {
  display: block;
}

.about-trust-item:nth-child(1) .about-trust-icon { background: linear-gradient(145deg, var(--accent-2) 0%, #234a54 100%); }
.about-trust-item:nth-child(2) .about-trust-icon { background: linear-gradient(145deg, var(--accent) 0%, #b85520 100%); box-shadow: 0 4px 12px rgba(208, 100, 46, 0.25); }
.about-trust-item:nth-child(3) .about-trust-icon { background: linear-gradient(145deg, #3d7c6e 0%, #2a5c51 100%); box-shadow: 0 4px 12px rgba(61, 124, 110, 0.25); }
.about-trust-item:nth-child(4) .about-trust-icon { background: linear-gradient(145deg, #5a6b7d 0%, #3d4d5c 100%); box-shadow: 0 4px 12px rgba(90, 107, 125, 0.25); }

@media (max-width: 640px) {
  .about-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-trust-item {
    padding: 16px 16px 16px 14px;
  }
}

/* Process & Quote blocks */
main .process {
  position: relative;
  z-index: 2;
  padding: 64px 6vw 72px;
  background: #f4f0e6;
  border-top: 1px solid #d8c9b6;
}

main .process-inner {
  max-width: 960px;
  margin: 0 auto;
}

main .process-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: #2c5f6e;
  margin: 0 0 12px;
}

main .process-title {
  font-size: clamp(26px, 3.5vw, 34px);
  margin: 0 0 48px;
  line-height: 1.2;
  color: #1c1b18;
}

main .process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

main .process-step {
  padding: 0 0 0 28px;
  border-left: 2px solid #d8c9b6;
}

main .process-step-num {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #d0642e;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

main .process-step-title {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
  color: #1c1b18;
  letter-spacing: 0.3px;
}

main .process-step-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6a635b;
}

main .quote-block {
  position: relative;
  z-index: 2;
  padding: 56px 6vw 72px;
  background: #fff;
  border-top: 1px solid #d8c9b6;
}

main .quote-inner {
  max-width: 640px;
  margin: 0 auto;
}

main .quote-head {
  margin-bottom: 32px;
}

main .quote-title {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 12px;
  font-weight: 700;
  color: #1c1b18;
  letter-spacing: -0.02em;
}

main .quote-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #6a635b;
}

main .quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

main .quote-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

main .quote-form-full {
  grid-column: 1 / -1;
}

main .quote-label {
  font-size: 13px;
  font-weight: 600;
  color: #1c1b18;
  letter-spacing: 0.3px;
}

main .quote-input {
  padding: 12px 14px;
  font-size: 15px;
  font-family: Georgia, "Times New Roman", serif;
  color: #1c1b18;
  background: #fff;
  border: 1px solid #d8c9b6;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

main .quote-input::placeholder {
  color: #6a635b;
  opacity: 0.8;
}

main .quote-input:focus {
  outline: none;
  border-color: #d0642e;
}

main .quote-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a635b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

main .quote-textarea {
  min-height: 100px;
  resize: vertical;
}

main .quote-submit {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  background: #d0642e;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  justify-self: start;
}

main .quote-submit:hover {
  background: #b85524;
  box-shadow: 0 8px 20px rgba(208, 100, 46, 0.3);
}

/* Projects section */
.projects-section {
  position: relative;
  z-index: 2;
  padding: 64px 6vw 72px;
  background: #fffbf5;
  border-top: 1px solid #d8c9b6;
}

.projects-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.projects-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: #2c5f6e;
  margin: 0 0 10px;
}

.projects-title {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 0 0 14px;
  line-height: 1.15;
  color: #1c1b18;
}

.projects-desc {
  margin: 0 0 40px;
  font-size: 17px;
  line-height: 1.55;
  color: #6a635b;
  max-width: 560px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  display: block;
  background: #fff;
  border: 1px solid #d8c9b6;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 27, 24, 0.12);
  border-color: rgba(208, 100, 46, 0.3);
}

.project-card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f0e6;
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease;
}

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

.project-card-img-2 { object-position: center 50%; }
.project-card-img-3 { object-position: 60% 40%; }
.project-card-img-4 { object-position: 40% 60%; }

.project-card-body {
  padding: 22px 24px;
}

.project-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1c1b18;
  letter-spacing: -0.01em;
}

.project-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #6a635b;
}

.project-card:hover .project-card-text {
  color: #1c1b18;
}

@media (max-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-section {
    padding: 48px 6vw 56px;
  }
}

/* Materials section */
.materials-section {
  position: relative;
  z-index: 2;
  padding: 56px 6vw 64px;
  background: #fff;
  border-top: 1px solid #d8c9b6;
}

.materials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.materials-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: #2c5f6e;
  margin: 0 0 10px;
}

.materials-title {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 0 0 36px;
  line-height: 1.2;
  color: #1c1b18;
}

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

.materials-item {
  text-align: center;
}

.materials-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f0e6;
  margin-bottom: 14px;
}

.materials-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.materials-label {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1c1b18;
}

@media (max-width: 700px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .materials-section {
    padding: 48px 6vw 56px;
  }
}

@media (max-width: 420px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

/* Accordion section */
.accordion-section {
  position: relative;
  z-index: 2;
  padding: 64px 6vw 72px;
  background: #fff;
  border-top: 1px solid #d8c9b6;
}

.accordion-inner {
  max-width: 960px;
  margin: 0 auto;
}

.accordion-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: #2c5f6e;
  margin: 0 0 10px;
}

.accordion-title {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 0 0 40px;
  line-height: 1.2;
  color: #1c1b18;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.accordion-item {
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(28, 27, 24, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 0;
}

.accordion-item:hover {
  box-shadow: 0 8px 28px rgba(28, 27, 24, 0.08);
  border-color: #d8c9b6;
}

.accordion-item.is-open {
  border-color: rgba(208, 100, 46, 0.35);
  box-shadow: 0 8px 32px rgba(208, 100, 46, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #1c1b18;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: rgba(244, 240, 230, 0.5);
}

.accordion-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #d0642e;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(208, 100, 46, 0.3);
}

.accordion-icon svg {
  width: 24px;
  height: 24px;
}

.accordion-label {
  flex: 1;
}

.accordion-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-right: 2px solid #6a635b;
  border-bottom: 2px solid #6a635b;
  transform: rotate(45deg);
  margin-bottom: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accordion-item.is-open .accordion-chevron {
  transform: rotate(-135deg);
  border-color: #d0642e;
}

.accordion-body {
  padding: 0 22px 20px 86px;
}

.accordion-body[hidden] {
  display: none;
}

.accordion-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6a635b;
}

@media (max-width: 700px) {
  .accordion-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 480px) {
  .accordion-section {
    padding: 48px 5vw 56px;
  }

  .accordion-header {
    padding: 16px 18px;
    font-size: 15px;
  }

  .accordion-icon {
    width: 44px;
    height: 44px;
  }

  .accordion-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Calculator section */
.calc-section {
  position: relative;
  z-index: 2;
  padding: 56px 6vw 64px;
  background: #2c2b28;
}

.calc-main-title {
  margin: 0 0 32px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #f4f0e6;
  text-align: center;
  letter-spacing: -0.02em;
}

.calc-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 40px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.calc-label {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1c1b18;
}

.calc-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.calc-material-btn {
  position: relative;
  padding: 12px 18px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: #1c1b18;
  background: #fff;
  border: 1px solid #d8c9b6;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.calc-material-btn:hover {
  border-color: #d0642e;
  color: #d0642e;
}

.calc-material-btn.is-selected {
  background: #d0642e;
  border-color: #d0642e;
  color: #fff;
}

.calc-material-btn.is-selected::after {
  content: "✓";
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 12px;
  color: #fff;
}

.calc-works-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  margin-bottom: 32px;
}

.calc-works-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.calc-work-item:last-child {
  border-bottom: none;
}

.calc-work-name {
  font-size: 14px;
  color: #1c1b18;
  flex: 1;
}

.calc-work-toggles {
  display: flex;
  gap: 6px;
}

.calc-toggle {
  padding: 6px 14px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 600;
  color: #6a635b;
  background: #f0ede8;
  border: 1px solid #e0ddd6;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.calc-toggle:hover {
  background: #e8e4dc;
}

.calc-toggle.is-selected {
  background: #d0642e;
  border-color: #d0642e;
  color: #fff;
}

.calc-cost-box {
  padding: 20px;
  background: #f8f6f2;
  border-radius: 12px;
  border: 1px solid #e8e4dc;
  text-align: center;
  align-self: start;
}

.calc-cost-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6a635b;
}

.calc-cost-value {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #1c1b18;
}

.calc-cost-num {
  display: block;
  font-size: 36px;
  color: #d0642e;
  line-height: 1.1;
}

.calc-cost-from,
.calc-cost-currency {
  font-size: 14px;
  font-weight: 600;
  color: #6a635b;
}

.calc-request-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1c1b18;
  text-align: center;
}

.calc-request-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.calc-request-input {
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #1c1b18;
  background: #f4f0e6;
  border: 1px solid #d8c9b6;
  border-radius: 8px;
  min-width: 160px;
}

.calc-request-input::placeholder {
  color: #6a635b;
}

.calc-request-input:focus {
  outline: none;
  border-color: #d0642e;
}

.calc-request-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #fff;
  background: #d0642e;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.calc-request-btn:hover {
  background: #b85524;
  box-shadow: 0 6px 16px rgba(208, 100, 46, 0.35);
}

.calc-request-success {
  margin: 0;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1c1b18;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  text-align: center;
}

.calc-request-success[hidden],
.quote-form-success[hidden] {
  display: none !important;
}

.quote-form-success {
  margin: 24px 0 0;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1c1b18;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 10px;
  text-align: center;
}

@media (max-width: 780px) {
  .calc-works-row {
    grid-template-columns: 1fr;
  }

  .calc-cost-box {
    max-width: 240px;
    margin: 0 auto;
  }

  .calc-request-form {
    flex-direction: column;
  }

  .calc-request-input {
    width: 100%;
    min-width: 0;
  }

  .calc-request-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .calc-card {
    padding: 24px 20px 32px;
  }

  .calc-materials {
    flex-direction: column;
  }

  .calc-material-btn {
    width: 100%;
  }

  .calc-work-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Reviews section */
.reviews-section {
  position: relative;
  z-index: 2;
  padding: 64px 6vw 72px;
  background: linear-gradient(180deg, #fdf8ef 0%, #f8f4ec 100%);
  border-top: 1px solid #d8c9b6;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: #2c5f6e;
  margin: 0 0 10px;
}

.reviews-title {
  font-size: clamp(26px, 3.2vw, 34px);
  margin: 0 0 44px;
  line-height: 1.2;
  color: #1c1b18;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid #e8e4dc;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(28, 27, 24, 0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  box-shadow: 0 12px 36px rgba(28, 27, 24, 0.08);
  border-color: #d8c9b6;
  transform: translateY(-2px);
}

.review-quote {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #d0642e;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.review-text {
  position: relative;
  margin: 0 0 24px;
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #1c1b18;
}

.review-author {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.review-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  color: #1c1b18;
  margin-bottom: 4px;
}

.review-meta {
  display: block;
  font-size: 13px;
  color: #6a635b;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-section {
    padding: 48px 6vw 56px;
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 48px 6vw 28px;
  background: #1c1b18;
  color: #f9f4ea;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 28px;
}

.footer-brand .brand-mark {
  border-color: #f9f4ea;
  color: #f9f4ea;
}

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

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  margin: 6px 0;
  color: rgba(249, 244, 234, 0.7);
}

.footer-col a {
  color: rgba(249, 244, 234, 0.7);
  text-decoration: none;
}

.footer-col a:hover {
  color: #f9f4ea;
}

.footer-disclaimer {
  margin: 0;
  padding-top: 20px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(249, 244, 234, 0.5);
  max-width: 900px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 12px;
  color: rgba(249, 244, 234, 0.6);
}

@media (max-width: 980px) {
  .header-bar {
    border-bottom-color: var(--line);
    z-index: 150;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5vw;
    gap: 16px;
  }

  .site-header {
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
    justify-content: space-between;
    align-items: center;
  }

  .header-bar .brand {
    flex-shrink: 0;
  }

  .header-bar .menu-toggle {
    flex-shrink: 0;
  }

  .header-phone {
    display: none !important;
  }

  .float-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(208, 100, 46, 0.4);
    z-index: 130;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .float-phone:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(208, 100, 46, 0.5);
  }

  .float-phone:active {
    transform: scale(0.98);
  }

  .nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 24px 8vw 40px;
    background-color: #f4f0e6;
    background-image:
      radial-gradient(circle at 85% 10%, rgba(240, 170, 96, 0.12), transparent 50%);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    z-index: 120;
    overflow-y: auto;
    overflow-x: hidden;
    isolation: isolate;
    box-shadow: 8px 0 40px rgba(28, 27, 24, 0.15);
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(208, 100, 46, 0.08) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  .nav > * {
    position: relative;
    z-index: 1;
  }

  .dropdown-toggle::before {
    display: block;
  }

  .nav > a,
  .nav-item > .dropdown-toggle {
    font-size: 18px;
    letter-spacing: 1.4px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: 1px dashed rgba(28, 27, 24, 0.2);
    transform: none;
    opacity: 0;
    pointer-events: none;
    margin-top: 0;
    width: 100%;
    border-radius: 14px;
    background: #fff9f1;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  }

  .dropdown::before {
    display: none;
  }

  .nav-item.open .dropdown {
    max-height: 260px;
    padding: 14px 16px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 8px;
  }

  .dropdown a {
    font-size: 16px;
    padding: 12px 10px;
  }

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

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

  .strip-item:nth-child(2n) {
    border-right: none;
  }

  main .process {
    padding: 48px 6vw 56px;
  }

  main .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  main .process-step {
    padding-left: 24px;
  }

  main .quote-block {
    padding: 44px 6vw 56px;
  }

  main .quote-form {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

.float-phone {
  display: none;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 27, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .nav {
    gap: 12px;
  }

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

  .service-content {
    padding: 32px 5vw 56px;
  }

  .service-content-inner h2 {
    font-size: 24px;
  }

  .service-content-inner h3 {
    font-size: 18px;
  }

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

  main .process-title {
    margin-bottom: 32px;
  }

  main .quote-submit {
    width: 100%;
  }

  .strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: none;
  }
}

/* Cookie consent modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 24, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cookie-modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 36px 32px;
  background: linear-gradient(165deg, #fffbf5 0%, #fff7e9 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(28, 27, 24, 0.25), 0 0 0 1px rgba(208, 100, 46, 0.15);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-modal.is-visible .cookie-modal-box {
  transform: scale(1) translateY(0);
}

.cookie-modal-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(208, 100, 46, 0.35);
}

.cookie-modal-title {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cookie-modal-desc {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-modal-desc a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-modal-desc a:hover {
  color: var(--ink);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:active {
  transform: scale(0.98);
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(208, 100, 46, 0.35);
}

.cookie-btn-accept:hover {
  box-shadow: 0 12px 32px rgba(208, 100, 46, 0.45);
}

.cookie-btn-necessary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}

.cookie-btn-necessary:hover {
  border-color: var(--ink);
  background: rgba(28, 27, 24, 0.04);
}

@media (max-width: 520px) {
  .cookie-modal-box {
    padding: 28px 22px;
  }

  .cookie-modal-title {
    font-size: 22px;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-btn {
    min-width: 0;
  }
}

/* Quote success modal */
.quote-success-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-success-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 24, 0.6);
}

.quote-success-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 40px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(28, 27, 24, 0.2);
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.quote-success-modal.is-visible .quote-success-box {
  transform: scale(1);
}

.quote-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d8a6e;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
}

.quote-success-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.quote-success-text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.quote-success-close {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.quote-success-close:hover {
  background: #b85524;
}
