:root {
  --ink: #0d1216;
  --slate: #3f4a56;
  --sand: #f6f1ea;
  --mint: #d4efe4;
  --gold: #f0c26a;
  --wine: #5a2b2f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 18, 22, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fef8f1 0%, #f4efe9 45%, #f0f4f6 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 18, 22, 0.08);
  z-index: 10;
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
  box-shadow: none;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--slate);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate);
}

.hero-badges span {
  background: var(--mint);
  padding: 6px 12px;
  border-radius: 999px;
}


label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(13, 18, 22, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--slate);
}

.status-success {
  color: #1a7f37;
}

.status-error {
  color: #b42318;
}

.section {
  padding: 64px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.trusted {
  padding: 30px 0 10px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  text-align: center;
}

.stats strong {
  font-size: 1.8rem;
  display: block;
  font-family: "Fraunces", serif;
}

.service-grid,
.feature-grid,
.portfolio-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.service-grid article,
.feature-grid div,
.portfolio-grid article,
.testimonial-grid article {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.features {
  background: var(--sand);
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.process-grid div {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf3e6, #f7f7f8);
}

.process-grid span {
  font-weight: 700;
  color: var(--wine);
}


.tag {
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonials {
  background: var(--sand);
}

.testimonial-grid p {
  margin-bottom: 12px;
  color: var(--slate);
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--sand);
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  background: var(--white);
  padding: 0 18px;
}

.faq-panel p {
  padding: 10px 0 16px;
  color: var(--slate);
}

.contact {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.cta {
  padding: 50px 0 70px;
}

.cta-grid {
  background: var(--wine);
  color: var(--white);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.footer-grid a {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: 70px;
    right: 16px;
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}
