* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b19;
  --muted: #6b625a;
  --sand: #f4efe9;
  --clay: #d8c9b8;
  --stone: #faf7f3;
  --accent: #8f6f56;
  --accent-dark: #5f4634;
  --leaf: #a7b59a;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 60px 6vw 90px;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 12px 22px;
  border-radius: 999px;
}

.hero-visual {
  flex: 1 1 380px;
  min-width: 300px;
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-overlay {
  position: absolute;
  right: -16px;
  bottom: -20px;
  background: var(--sand);
  padding: 18px 20px;
  border-radius: 16px;
  width: 180px;
  font-size: 0.9rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.offset-band {
  background: var(--sand);
  padding: 60px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  position: relative;
}

.offset-band::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 12vw;
  width: 180px;
  height: 180px;
  background: var(--leaf);
  border-radius: 24px;
  opacity: 0.35;
}

.offset-band .copy {
  flex: 1 1 280px;
}

.offset-band .visual {
  flex: 1 1 320px;
  position: relative;
}

.offset-band .visual img {
  border-radius: 20px;
}

.floating-tag {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services {
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.cta-inline {
  color: var(--accent-dark);
  font-weight: 600;
}

.studio-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 6vw 80px;
  align-items: stretch;
}

.studio-strip .panel {
  flex: 1 1 250px;
  background: var(--clay);
  border-radius: 22px;
  padding: 26px;
}

.panel img {
  border-radius: 16px;
  margin-top: 16px;
}

.process {
  padding: 60px 6vw;
  background: var(--sand);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.process-step {
  flex: 1 1 220px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  min-width: 210px;
}

.testimonials {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.form-section {
  padding: 80px 6vw;
  background: var(--stone);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cfc7;
  font-size: 0.95rem;
  background: #fff;
}

.trust {
  padding: 70px 6vw;
  background: var(--sand);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.trust-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

.footer {
  padding: 50px 6vw;
  background: var(--accent-dark);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  flex-direction: column;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 60px 6vw 40px;
  background: var(--sand);
}

.page-content {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-content ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dual-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.dual-columns .col {
  flex: 1 1 260px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

@media (max-width: 720px) {
  .hero-overlay {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
