/* Lelyn Reyes | Simply Digital
   Landing page styling matched to the supplied reference screenshot. */

:root {
  --gold: #d4af37;
  --gold-button: #e2bc4b;
  --gold-dark: #9a7612;
  --gold-soft: #ead9a5;
  --text: #111111;
  --body-text: #4f4b48;
  --muted: #77716c;
  --border: #e7e5e4;
  --page-width: 930px;
  --card-width: 620px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 247, 220, .94) 0%, rgba(253, 248, 235, .88) 28%, rgba(255, 252, 244, .72) 54%, rgba(255, 255, 255, .96) 82%),
    #fffdf8;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.page {
  width: 100%;
  margin: 0;
  padding: 0 0 55px;
}

/* Header */
.topbar {
  width: min(var(--page-width), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid #e9dfc7;
  background: rgba(248, 244, 235, .82);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0 0 auto;
  height: 76px;
  background: rgba(247, 243, 234, .88);
  border-bottom: 1px solid rgba(225, 212, 184, .48);
}

.brand-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 181px;
  height: 61px;
  padding: 6px 17px 6px 19px;
  border: 1.5px solid var(--gold-soft);
  border-radius: 999px;
  background: #fffdf9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .045);
}

.brand-chip img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  margin-right: 9px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 5px;
  color: #9b7610;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  white-space: nowrap;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #eee0bf;
  border-radius: 999px;
  color: #936d0a;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 5px 16px rgba(180, 145, 50, .08);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #71d6b0;
}

.facebook-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 258px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(180, 139, 37, .15);
  border-radius: 999px;
  background: var(--gold-button);
  color: #17120a;
  box-shadow: 0 8px 22px rgba(212, 175, 55, .18);
  font-size: 14px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.facebook-button:hover,
.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, .27);
}

.facebook-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}

.arrow {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  margin-left: 2px;
}

/* Main */
main {
  width: min(var(--page-width), calc(100% - 36px));
  margin: 0 auto;
}

.hero-section {
  text-align: center;
  padding: 76px 0 48px;
}

.hero-section h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.038em;
}

.hero-section h1 span { display: block; }

.hero-accent {
  margin-top: 3px;
  color: #caa437;
  font-weight: 500;
}

.hero-description {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--body-text);
  font-size: 18px;
  line-height: 1.52;
  letter-spacing: .005em;
}

.inquiry-jump {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 34px;
  padding: 8px 15px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 700;
}

/* Form card */
.form-card {
  width: min(var(--card-width), 100%);
  margin: 0 auto;
  padding: 45px 31px 43px;
  border: 1.5px solid #e0ad16;
  border-radius: 25px;
  background:
    radial-gradient(circle at 50% 14%, rgba(212, 175, 55, .035), transparent 36%),
    rgba(255, 255, 255, .91);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, .045),
    0 0 0 1px rgba(212, 175, 55, .07);
}

.form-heading {
  text-align: center;
  margin-bottom: 38px;
}

.form-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
}

.form-heading p {
  margin: 16px 0 4px;
  color: #6a625c;
  font-size: 14px;
  line-height: 1.4;
}

.form-heading strong {
  color: #403b36;
  font-size: 13px;
}

.inquiry-form { width: 100%; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #403c39;
  font-size: 13px;
  font-weight: 700;
}

.form-group label span { color: #b91c1c; }
.form-group label em { font-style: normal; font-weight: 400; }

.form-group input,
.form-group textarea {
  width: 100%;
  display: block;
  border: 1px solid #ddd9d6;
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.96);
  color: #3e3a37;
  padding: 0 16px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.015);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-group input { height: 51px; }

.form-group textarea {
  min-height: 145px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #918b86; opacity: 1; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

.submit-button {
  width: 100%;
  min-height: 57px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-button);
  color: #17120a;
  box-shadow: 0 10px 26px rgba(212,175,55,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}

.no-spam {
  text-align: center;
  margin-top: 28px;
}

.no-spam h3 { margin: 0 0 9px; font-size: 17px; }
.no-spam p { margin: 0; color: #514c48; font-size: 13px; line-height: 1.45; }

.manual-note {
  margin: 27px auto 0;
  text-align: center;
  color: #5c5753;
  font-size: 13px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  width: min(var(--page-width), calc(100% - 36px));
  margin: 88px auto 0;
  text-align: center;
}

.footer-divider { height: 1px; margin-bottom: 39px; background: #e8dcc0; }

.footer-brand { display: flex; justify-content: center; align-items: center; gap: 12px; }

.footer-brand-chip {
  display: inline-flex;
  align-items: center;
  height: 49px;
  padding: 4px 18px 4px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  background: #fffdf9;
}

.footer-brand-chip img { width: 26px; height: 26px; object-fit: contain; margin-right: 10px; }
.footer-brand-chip span { font-family: Georgia, "Times New Roman", serif; font-size: 14px; }
.footer-simply { color: #9b7610; font-size: 12px; font-weight: 700; }
.copyright { margin: 22px 0 8px; font-size: 14px; font-weight: 700; }
.footer-schedule { font-size: 13px; }

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 24px);
    min-height: 0;
    padding: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  body::before { height: 126px; }

  .brand-chip { min-width: 181px; }
  .schedule-badge { order: 3; width: auto; }
  .facebook-button { min-width: 230px; height: 46px; }

  main { width: calc(100% - 24px); }
  .hero-section { padding-top: 52px; }
  .hero-section h1 { font-size: 40px; }
  .hero-description { font-size: 17px; }
  .form-card { padding: 38px 21px 36px; border-radius: 22px; }
  .form-heading h2 { font-size: 28px; }
  .site-footer { width: calc(100% - 24px); margin-top: 65px; }
}

@media (max-width: 430px) {
  .topbar { flex-direction: column; }
  .facebook-button, .schedule-badge { width: 100%; }
  .brand-chip { width: auto; }
  .hero-section h1 { font-size: 34px; }
  .hero-description { font-size: 16px; line-height: 1.5; }
  .form-group input { height: 55px; }
  .form-group textarea { min-height: 145px; }
  .submit-button { min-height: 62px; font-size: 14px; }
}
