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

:root {
  --ink: #121a21;
  --ink-soft: #4f5c65;
  --brand: #01a0a9;
  --brand-dark: #038d95;
  --surface: #ffffff;
  --surface-soft: #f4f7f8;
  --surface-cream: #f7f3ed;
  --line: #d9e2e6;
  --radius: 6px;
  --shadow: 0 16px 40px rgba(8, 41, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

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

img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 4.25rem 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-cream {
  background: var(--surface-cream);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--brand);
}

.lead {
  font-size: 1.05rem;
}

.stack {
  display: grid;
  gap: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--brand);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background: var(--brand);
  color: #fff;
}

.btn-solid:hover {
  background: var(--brand-dark);
}

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

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.btn-light {
  border-color: #fff;
  color: #fff;
}

.btn-light:hover {
  background: #fff;
  color: var(--brand-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e7ecef;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo svg,
.site-logo-svg {
  display: block;
  width: 180px;
  height: auto;
  max-height: 70px;
}

.header-inner .logo {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .logo svg,
  .site-logo-svg {
    width: 145px;
    max-height: 55px;
  }
}


.logo-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--brand);
}

.logo b {
  display: block;
  letter-spacing: 0.24em;
  font-size: 1.16rem;
}

.logo small {
  display: block;
  margin-top: 0.1rem;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.35;
}

.menu-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.menu-btn {
  display: none;
  justify-self: end;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.2rem;
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #31424c;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.hero {
  position: relative;
  min-height: clamp(440px, 74vh, 670px);
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.58) 58%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
}

.hero-content p {
  max-width: 570px;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #30424d;
}

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-strip article {
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-strip article:last-child {
  border-right: 0;
}

.stat-strip b {
  display: block;
  color: var(--brand);
  font-size: 1.25rem;
}

.stat-strip span {
  font-size: 0.82rem;
  color: #465963;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(8, 41, 52, 0.05);
}

.service-card .icon {
  inline-size: 2.2rem;
  block-size: 2.2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f0f2;
  color: var(--brand);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  margin-top: 0.45rem;
  font-size: 0.94rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.split-content {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.8rem;
  border-radius: var(--radius);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: var(--radius);
  color: #fff;
}

.project-card.tall {
  min-height: 380px;
  grid-row: span 2;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.74) 100%);
}

.project-card figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  line-height: 1.35;
}

.project-card b {
  display: block;
  font-size: 1.02rem;
}

.steps {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
}

.step h3 {
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.step p {
  margin-top: 0.45rem;
  font-size: 0.86rem;
}

.review-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.review-card,
.cta-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.review-card {
  border: 1px solid var(--line);
  padding: 2rem;
  background: #fff;
}

.rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
}

.rating span {
  font-size: 1.35rem;
  color: #4285f4;
}

.review-card blockquote {
  margin: 1.3rem 0;
  color: #1d2b35;
  font-size: 1.03rem;
}

.cta-card {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(7, 55, 66, 0.94), rgba(7, 32, 42, 0.96));
  color: #fff;
  padding: 2.2rem;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

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

.cta-card p,
.cta-card small {
  color: #e3ebee;
}

.cta-card .btn {
  margin-top: 1.2rem;
}

.brand-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand-row .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem 2rem;
  padding: 1rem 0;
}

.brand-row span {
  color: #6c7a82;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-hero {
  min-height: 360px;
}

.cards-2,
.cards-3,
.cards-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.panel h3 {
  margin-bottom: 0.45rem;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.image-panel img {
  border-radius: 0;
  height: 240px;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 1rem;
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline b {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f0f2;
  color: var(--brand);
}

.quote-panel {
  padding: 1.5rem;
  border-left: 4px solid var(--brand);
  background: #f3f8f9;
  border-radius: var(--radius);
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.9rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 0.55rem;
  font-size: 0.93rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

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

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #cdd8dd;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  font-size: 0.94rem;
}

.map-frame {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  min-height: 280px;
}

.site-footer {
  margin-top: 4rem;
  background: #0e161b;
  color: #fff;
}

.footer-inner {
  padding: 2.8rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 1.4rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.site-footer p,
.site-footer a {
  color: #ccd7dc;
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.site-footer .logo {
  color: #fff;
}

.site-footer .logo .logo-mark {
  color: #fff;
}

.footer-note {
  border-top: 1px solid #22333c;
  padding: 0.9rem 0 1.4rem;
  color: #94a4ad;
  font-size: 0.8rem;
}

.hero-home {
  background-image: url("img/hero-kitchen.jpg");
}

.hero-services {
  background-image: url("img/hero-services.jpg");
}

.hero-portfolio {
  background-image: url("img/hero-portfolio.jpg");
}

.hero-materials {
  background-image: url("img/hero-materials.jpg");
}

.hero-about {
  background-image: url("img/hero-about.jpg");
}

.hero-reviews {
  background-image: url("img/hero-reviews.jpg");
}

.hero-financing {
  background-image: url("img/hero-financing.jpg");
}

.hero-areas {
  background-image: url("img/hero-areas.jpg");
}

.hero-contact {
  background-image: url("img/hero-contact.jpg");
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
    gap: 0.8rem 1rem;
  }

  .header-cta {
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 0.2rem;
  }

  .split-layout,
  .review-cta,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: auto auto;
  }

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

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.55rem 0 0;
  }

  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.5rem 0;
    border-bottom-width: 1px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 1.25rem;
  }

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

  .stat-strip article {
    border-bottom: 1px solid var(--line);
  }

  .stat-strip article:nth-child(2n) {
    border-right: 0;
  }

  .service-grid,
  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

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

  .project-card.tall {
    min-height: 260px;
    grid-row: auto;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(94vw, 1200px);
  }

  .section {
    padding: 3.25rem 0;
  }

  .logo b {
    font-size: 0.98rem;
    letter-spacing: 0.2em;
  }

  .logo small {
    font-size: 0.54rem;
    letter-spacing: 0.09em;
  }

  .hero {
    min-height: 410px;
  }

  .hero-content {
    padding: 1.1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    font-size: 0.74rem;
  }

  .stat-strip .container,
  .steps,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .stat-strip article {
    border-right: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.agreement-label {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.agreement-label input[type="checkbox"] {
    margin: 3px 0 0 0;
}
.agreement-label a{
    text-decoration: underline;
}
.policy{
    max-width: 900px; margin: 0 auto; padding: 40px 20px;
}
.policy h1{
    margin-bottom: 30px;
}
.policy p{
    margin-bottom: 10px;
}