* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #6f4b2c;
  --accent-dark: #55361f;
  --sand: #f2eee8;
  --stone: #e2dbd1;
  --panel: #ffffff;
  --line: #d6cec4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  padding: 48px 6vw;
}

.bg-woodgrain {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-balcony {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1496309732348-3627f3f040ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background-color: rgba(17, 14, 11, 0.78);
  padding: 36px;
  border-radius: 18px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: #1f1b17;
  color: #f6f1eb;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2 {
  margin-top: 0;
}

.panel {
  background: var(--panel);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(40, 32, 21, 0.08);
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.ghost-button {
  border: 1px solid var(--accent);
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
}

.ghost-button:hover {
  background: rgba(111, 75, 44, 0.08);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover {
  color: var(--accent-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  align-items: center;
}

.service-card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 6px;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 0.96rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type="submit"] {
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
}

button[type="submit"]:hover {
  background: var(--accent-dark);
}

.meta-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-card {
  flex: 1 1 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

footer {
  background: #14110e;
  color: #e5ded6;
  padding: 40px 6vw;
}

footer a {
  color: #e5ded6;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.disclaimer {
  font-size: 0.88rem;
  color: #c7bfb6;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
}

.sticky-cta a {
  background: #1f1b17;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
}

.sticky-cta a:hover {
  background: #2d2620;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(30, 25, 18, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #efe7dd;
  color: #3d2d1f;
}

.cookie-actions button:hover {
  filter: brightness(0.95);
}

.hero-note {
  font-size: 0.96rem;
  color: var(--muted);
}

.bg-matte {
  background: var(--sand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plain-card {
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  background: #fff;
}

.stacked-card {
  margin-top: 16px;
}
