@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,600&display=swap");

:root{
  --ink: #1f2a3b;
  --ink-soft: #2a3446;
  --gold: #c7b27a;

  /* flyer vibe */
  --flyer-w: 980px;
  --paper-bg: #e8e2d6;

  /* lavender/grey band colour seen in flyer */
  --subband: #d9d7e2;

  --white: #ffffff;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  color: var(--ink);
  background: var(--paper-bg);
  font-family: "Cormorant Garamond", serif;
}

/* Centered flyer canvas */
.page{
  padding: 18px;
  display: flex;
  justify-content: center;
}

.flyer{
  width: min(var(--flyer-w), 100%);
  background:
    url("assets/texture-parchment.jpg") center/cover no-repeat,
    linear-gradient(180deg, #f2eadc 0%, #eadfcd 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* MASTHEAD -- compact, logo, slogan, thin bottom rule */
.masthead{
  background:
    url("assets/texture-blue.jpg") center/cover no-repeat,
    linear-gradient(180deg, #35507f 0%, #2a3f66 100%);
  color: #fff;
}

.masthead__inner{
  height: 240px;
  padding: 18px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.masthead__logo{
  width: 590px;
  max-width: 94%;
  height: auto;
  display: block;
  background: transparent !important;
  filter: none !important;
  box-shadow: none !important;
  margin-top: 6px;
}

/* slogan row */
.slogan{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slogan__text{
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.slogan__line{
  width: 220px;
  height: 2px;
  background: var(--gold);
  opacity: 0.95;
}

/* Website-only CTA row (kept subtle + on-brand) */
.masthead__cta{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta{
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta--ghost{
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(199,178,122,0.75);
  background: rgba(0,0,0,0.10);
}

.cta--ghost:hover{
  background: rgba(0,0,0,0.18);
}

.cta--solid{
  color: #1f2a3b;
  background: rgba(199,178,122,0.95);
  border: 1px solid rgba(199,178,122,0.95);
}

.cta--solid:hover{
  filter: brightness(0.98);
}

/* thin gold rule along bottom of blue header */
.masthead__bottomrule{
  width: 92%;
  height: 2px;
  background: var(--gold);
  opacity: 0.85;
  margin-top: 14px;
}

/* BODY */
.body{
  padding: 0 32px 24px;
}

/* lavender/grey band */
.subband{
  background: linear-gradient(180deg, rgba(217,215,226,0.95) 0%, rgba(217,215,226,0.85) 100%);
  border-top: 1px solid rgba(199,178,122,0.25);
  border-bottom: 1px solid rgba(199,178,122,0.25);
  margin: 0 -32px;
  padding: 16px 32px 14px;
}

.subhead{
  margin: 0;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

/* Feature image framed */
.feature{
  margin: 18px auto 0;
  padding: 12px;
  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(0,0,0,0.10);
}

.feature img{
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0,0,0,0.10);
}

/* thin divider line below image */
.body__rule{
  height: 2px;
  background: var(--gold);
  opacity: 0.75;
  width: 92%;
  margin: 16px auto 12px;
}

/* SERVICES */
.services{
  padding: 4px 6px 0;
}

.services__cols{
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  gap: 0;
  align-items: start;
}

.services__divider{
  width: 2px;
  background: rgba(199,178,122,0.55);
  justify-self: center;
  height: 100%;
  margin-top: 6px;
}

.svc{
  padding: 8px 10px;
}

.svc h3{
  margin: 0 0 4px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 16px;
  color: var(--ink);
  text-transform: uppercase;
}

.svc p{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink-soft);
}

.dot{
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}

/* REQUEST SERVICE (new) */
.request{
  margin-top: 18px;
  padding: 18px 10px 6px;
  border-top: 1px solid rgba(199,178,122,0.55);
}

.request__title{
  margin: 0 0 6px;
  text-align: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--ink);
}

.request__lead{
  margin: 0 auto 12px;
  max-width: 720px;
  text-align: center;
  font-size: 18px;
  color: var(--ink-soft);
}

.service-form{
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 14px 10px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(0,0,0,0.10);
}

.hp-field{
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

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

.field label{
  display: block;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--ink);
}

.field input,
.field textarea{
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 10px;
  border-radius: 6px;
  border: 1px solid rgba(31,42,59,0.25);
  background: rgba(255,255,255,0.65);
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(199,178,122,0.95);
  box-shadow: 0 0 0 3px rgba(199,178,122,0.22);
}

.field textarea{
  resize: vertical;
}

.hint{
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: rgba(42,52,70,0.9);
}

.span-2{ grid-column: span 2; }

.button.primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(199,178,122,0.95);
  background: rgba(199,178,122,0.95);
  color: #1f2a3b;
  cursor: pointer;
}

.button.primary:hover{
  filter: brightness(0.98);
}

.form-status{
  margin-top: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.form-status.is-sending{ opacity: 0.85; }
.form-status.is-success{ color: #1f5a2b; }
.form-status.is-error{ color: #7a1d1d; }

.privacy{
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  color: rgba(42,52,70,0.95);
}

.privacy a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,42,59,0.30);
}

.privacy a:hover{
  border-bottom-color: rgba(31,42,59,0.75);
}

/* CONTACT */
.contact{
  padding: 16px 10px 10px;
  text-align: center;
}

.contact__row{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 10px;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}

.contact__icon{
  opacity: 0.9;
  font-size: 22px;
}

.contact__link{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,42,59,0.30);
}

.contact__link:hover{
  border-bottom-color: rgba(31,42,59,0.75);
}

.contact__area{
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: var(--ink);
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 760px){
  .page{ padding: 10px; }
  .body{ padding: 0 16px 22px; }

  .masthead__inner{
    height: auto;
    padding: 18px 16px 14px;
  }

  .masthead__logo{
    width: 88vw;
    max-width: 620px;
  }

  .slogan{
    margin-top: 10px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .slogan__text{
    font-size: 22px;
    white-space: normal;
    text-align: center;
  }

  .slogan__line{
    width: 140px;
  }

  .masthead__cta{
    margin-top: 12px;
    gap: 10px;
  }

  .masthead__bottomrule{
    width: 94%;
    margin-top: 12px;
  }

  .subband{
    margin: 0 -16px;
    padding: 14px 16px 12px;
  }

  .subhead{ font-size: 20px; }

  .services__cols{
    grid-template-columns: 1fr;
  }

  .services__divider{ display: none; }

  .svc{ padding: 8px 4px; }
  .svc h3{ font-size: 15px; }
  .svc p{ font-size: 18px; }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .span-2{ grid-column: auto; }

  .contact__row{ font-size: 22px; }
  .contact__area{ font-size: 13px; }
}
