:root {
  --ink: #171717;
  --soft-ink: #545454;
  --cream: #fbf7f1;
  --white: #ffffff;
  --sand: #eadfce;
  --accent: #c87954;
  --accent-dark: #9f5939;
  --line: rgba(23,23,23,.11);
  --shadow: 0 24px 60px rgba(24, 19, 15, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,241,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  letter-spacing: .04em;
}

.brand-text { font-size: 1.05rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
  font-weight: 600;
}

.nav a:hover { color: var(--accent-dark); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  padding: 90px 0 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .74rem;
  color: var(--accent-dark);
  margin: 0 0 18px;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.06;
  margin: 0;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--soft-ink);
  max-width: 670px;
  margin: 26px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: white;
}

.btn-secondary {
  border-color: var(--ink);
  background: transparent;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 36px;
  color: var(--soft-ink);
  font-size: .86rem;
  font-weight: 600;
}

.hero-card {
  position: relative;
  min-height: 480px;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.75), rgba(234,223,206,.6)),
    radial-gradient(circle at 20% 20%, rgba(200,121,84,.32), transparent 40%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero-card h2 { font-size: 3rem; }
.hero-card p { color: var(--soft-ink); }

.hero-badge {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 700;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23,23,23,.15);
  border-radius: 50%;
}

.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 430px; height: 430px; }

.section { padding: 90px 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  color: var(--soft-ink);
  margin-top: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.04);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--accent-dark);
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card p {
  color: var(--soft-ink);
  font-size: .92rem;
  margin-bottom: 0;
}

.about {
  background: var(--ink);
  color: white;
}

.about .eyebrow { color: #e7b499; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-copy {
  font-size: 1.03rem;
  color: rgba(255,255,255,.78);
}

.about-copy p:first-child { margin-top: 0; }

.signature {
  color: white;
  font-weight: 700;
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-tile {
  min-height: 260px;
  padding: 22px;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(to top, rgba(0,0,0,.45), transparent 55%),
    radial-gradient(circle at 25% 15%, rgba(200,121,84,.58), transparent 36%),
    linear-gradient(135deg, #eee2d1, #cfc1ad);
  overflow: hidden;
}

.gallery-tile:nth-child(2n) {
  background:
    linear-gradient(to top, rgba(0,0,0,.45), transparent 55%),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(135deg, #c9b7a0, #f5ede3);
}

.gallery-tile span {
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

.custom-order { background: white; }

.order-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.order-copy > p:not(.eyebrow) {
  color: var(--soft-ink);
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.steps strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
}

.order-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 16px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.13);
  border-radius: 14px;
  background: white;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,121,84,.12);
}

textarea { resize: vertical; }

.full { width: 100%; }

.form-note,
.small-note {
  font-size: .76rem;
  color: var(--soft-ink);
  margin: 12px 0 0;
}

.cta-section { padding: 70px 0 100px; }

.cta-card {
  padding: 64px;
  border-radius: 34px;
  background: var(--accent-dark);
  color: white;
  text-align: center;
}

.cta-card .eyebrow { color: #ffe4d5; }
.cta-card p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.cta-actions { justify-content: center; }

.btn-light {
  background: white;
  color: var(--ink);
}

.btn-outline-light {
  border-color: rgba(255,255,255,.65);
  color: white;
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #f4ede4;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer-wrap p {
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-size: .8rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: .85rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open { display: flex; }
  .menu-toggle { display: block; }

  .hero-grid,
  .split,
  .order-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

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

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }

  .hero { padding-top: 58px; }

  h1 { font-size: 3.25rem; }

  .hero-card { min-height: 390px; padding: 26px; }

  .card-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-tile { min-height: 210px; }
  .section { padding: 70px 0; }
  .cta-card { padding: 44px 22px; }
}
