:root {
  --bg: #f6f1ea;
  --bg-warm: #faf6f0;
  --text: #20211f;
  --muted: #605d58;
  --line: #dacfc0;
  --accent: #b29259;
  --field: rgba(255,255,255,.24);
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top center, rgba(255,255,255,.9) 0%, #f7f1ea 44%, #f1e7de 100%);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
.site {
  width: min(100%, 1280px);
  margin: 0 auto;
  overflow: hidden;
}

/* Header */
.hero-header {
  padding: clamp(66px, 8.7vw, 120px) 24px clamp(24px, 3vw, 36px);
  text-align: center;
}
.hero-header h1,
.services h2,
.contact h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.028em;
}
.hero-header h1 {
  font-size: clamp(4.05rem, 8.1vw, 7.05rem);
  line-height: .88;
}
.design-label {
  margin: 12px 0 0;
  font-size: clamp(1.1rem, 2.3vw, 1.82rem);
  letter-spacing: .52em;
  text-indent: .52em;
  font-weight: 400;
}
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 23px auto 25px;
  background: var(--accent);
}
.tagline {
  margin: 0 auto;
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.45;
}

/* Hero image */
.hero-image {
  padding: 0 clamp(18px, 5.8vw, 82px);
}
.hero-image img {
  width: 100%;
  height: clamp(560px, 68vw, 765px);
  object-fit: cover;
  object-position: center center;
}

/* Services */
.services {
  padding: clamp(42px, 5.1vw, 58px) 24px clamp(46px, 5.8vw, 74px);
  background: rgba(246, 241, 234, .76);
}
.services h2,
.contact h2 {
  text-align: center;
  font-size: clamp(2.6rem, 4.7vw, 4rem);
  line-height: 1;
}
.service-grid {
  max-width: var(--max);
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service {
  min-height: 125px;
  padding: 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service + .service { border-left: 1px solid var(--line); }
.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service h3 {
  margin: 0;
  font-size: clamp(.98rem, 1.55vw, 1.1rem);
  line-height: 1.3;
  font-weight: 400;
}

/* Contact */
.contact {
  padding: clamp(48px, 6vw, 78px) 24px clamp(42px, 5vw, 62px);
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(246,241,234,.66) 100%);
}
.contact-form {
  max-width: 830px;
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
}
.contact-form label { display: block; }
.contact-form label span,
.hidden {
  position: absolute;
  left: -9999px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbbfad;
  border-radius: 4px;
  background: var(--field);
  color: var(--text);
  font: 400 1rem/1.4 "Inter", Arial, sans-serif;
  padding: 18px 20px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f6a63;
  opacity: .92;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(178,146,89,.14);
  background: rgba(255,255,255,.42);
}
.contact-form button {
  justify-self: center;
  margin-top: 10px;
  min-width: 188px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  padding: 20px 34px;
  font: 700 1rem/1 "Inter", Arial, sans-serif;
  letter-spacing: .22em;
  cursor: pointer;
  transition: transform .18s ease, opacity .18s ease;
}
.contact-form button:hover {
  transform: translateY(-1px);
  opacity: .94;
}
.direct-email {
  margin: 20px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .98rem;
}

/* Footer */
.footer {
  padding: 0 24px 32px;
  text-align: center;
}
.footer-rule {
  max-width: calc(var(--max) + 40px);
  height: 1px;
  background: var(--line);
  margin: 0 auto 18px;
}
.footer-seal {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.footer p {
  margin: 0;
  font-size: .84rem;
  color: #7b746d;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero-header { padding-top: 52px; padding-bottom: 24px; }
  .hero-image { padding: 0 18px; }
  .hero-image img {
    height: 56vh;
    min-height: 430px;
    object-position: center center;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
  }
  .service {
    padding: 26px 18px;
    border-top: 1px solid var(--line);
  }
  .service:nth-child(1),
  .service:nth-child(2) { border-top: 0; }
  .service:nth-child(3) { border-left: 0; }
  .footer-seal { width: 106px; height: 106px; }
}
@media (max-width: 480px) {
  .hero-header h1 { font-size: 3.45rem; }
  .design-label { font-size: 1.05rem; }
  .tagline { max-width: 340px; }
  .service-grid { grid-template-columns: 1fr; }
  .service,
  .service:nth-child(1),
  .service:nth-child(2) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .service:first-child { border-top: 0; }
  .contact-form input,
  .contact-form textarea { padding: 16px; }
  .footer p { font-size: .72rem; line-height: 1.6; }
}


/* v6 production polish: mobile refinement */
@media (max-width: 760px) {
  .hero-header {
    padding-top: 46px;
    padding-bottom: 22px;
  }

  .hero-image {
    padding: 0 18px;
  }

  .hero-image img {
    height: 58vh;
    min-height: 430px;
    object-position: center center;
  }

  .services {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    margin-top: 30px;
    border: 0;
  }

  .service,
  .service:nth-child(1),
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    min-height: 142px;
    padding: 22px 14px;
    border: 0;
  }

  .service:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .service:nth-child(3),
  .service:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .contact {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .contact-form {
    margin-top: 24px;
    gap: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-form button {
    min-width: 170px;
    padding: 18px 28px;
  }
}

@media (max-width: 480px) {
  .hero-header h1 {
    font-size: 3.38rem;
  }

  .design-label {
    font-size: 1.02rem;
  }

  .tagline {
    max-width: 330px;
  }

  /* Keep services compact as 2x2 even on phones. */
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service,
  .service:nth-child(1),
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    border: 0;
  }

  .service:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .service:nth-child(3),
  .service:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .service h3 {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .footer p {
    font-size: .72rem;
    line-height: 1.6;
  }
}
