:root {
  --bg: #ffffff;
  --bg-deep: #fffffe;
  --ink: #1a232d;
  --muted: #556171;
  --accent: #FF4F47;
  --accent-2: #c77843;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(26, 35, 45, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 40%, #f2ede6 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 35, 45, 0.08);
}

.top-bar {
  background: #0f1115;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.top-bar-inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  padding-top: 0.6rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.cta-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(31, 95, 91, 0.35);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: grid;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle-label span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

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


.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, rgba(26, 35, 45, 0.78), rgba(31, 95, 91, 0.65)),
    url("images/hero\ bg.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(31, 95, 91, 0.25), transparent 55%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(199, 120, 67, 0.25), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.lead {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(31, 95, 91, 0.3);
}

.primary-btn.small {
  padding: 0.7rem 1.2rem;
}

.ghost-btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  color: #fff;
}

.hero-stats {
  display: grid;
  gap: 1.2rem;
}

.hero-stats h3 {
  font-size: 1.6rem;
  color: var(--accent-2);
}

.hero-stats p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  animation: floatIn 0.9s ease both;
  animation-delay: 0.15s;
  color: #1a232d;
}

.card-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-list {
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
}

.card-list i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.6rem;
}

.section-head h2,
.process h2,
.coverage h2,
.contact-panel h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.6rem;
}

.eyebrow.dark {
  color: var(--accent-2);
}

.services {
  background: #ffffff;
}

.about {
  background: #0f1115;
  color: #f2f4f7;
}

.about .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.about-wrap {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.about-intro h2 {
  color: #ffffff;
}

.about-sub {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1rem;
}

.about-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0f1115;
  font-weight: 600;
  text-decoration: none;
}

.about-cards {
  display: grid;
  gap: 1.2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.about-card h3 {
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.about-card p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floatIn 0.7s ease both;
}

.service-card i {
  font-size: 1.6rem;
  color: var(--accent);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(26, 35, 45, 0.18);
}

.process {
  background: var(--bg-deep);
}

.process-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.steps {
  display: grid;
  gap: 1.4rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.projects {
  background: #fdfbf7;
}

.project-grid {
  display: grid;
  gap: 1.6rem;
}

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  animation: floatIn 0.7s ease both;
}

.project-card div {
  padding: 1.4rem;
}

.reviews {
  background: var(--bg-deep);
}

.review-grid {
  display: grid;
  gap: 1.4rem;
}

.review-card {
  background: var(--card);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-style: italic;
  animation: floatIn 0.7s ease both;
}

.review-card h4 {
  margin-top: 1rem;
  font-style: normal;
  color: var(--muted);
}

.coverage {
  background: #fdf7f2;
}

.coverage-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.coverage-list span {
  background: var(--card);
  padding: 0.9rem 1rem;
  border-radius: 999px;
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--accent);
}

.contact-section {
  background: white;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  display: grid;
  gap: 1.5rem;
}

.contact-text .eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #FF4F47;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.contact-text h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 0;
  colsor: #000000;
}

.contact-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.contact-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background-color: #FF4F47;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}

.contact-button:hover {
  background-color: #1f5f5b;
}

.footer-black {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #FF4F47;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #FF4F47;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f1c49b;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
  color: #f1c49b;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: floatIn 0.8s ease both;
}

.service-card:nth-child(2),
.project-card:nth-child(2),
.review-card:nth-child(2) {
  animation-delay: 0.08s;
}

.service-card:nth-child(3),
.project-card:nth-child(3),
.review-card:nth-child(3) {
  animation-delay: 0.16s;
}

.service-card:nth-child(4) {
  animation-delay: 0.24s;
}

.service-card:nth-child(5) {
  animation-delay: 0.32s;
}

.service-card:nth-child(6) {
  animation-delay: 0.4s;
}

@media (min-width: 720px) {
  .top-bar-inner {
    padding: 0.6rem 0;
  }

  .site-nav {
    flex-direction: row;
    display: flex;
    width: auto;
    padding-top: 0;
    gap: 1.5rem;
  }

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

  .nav-toggle-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-wrap {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

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

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

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

  .contact-hero {
    padding: 3.6rem;
  }

  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .footer-top > div {
    flex: 1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0 6.5rem;
  }
}
