/* ============================================================
   Perfectly Placed — interim landing page
   Palette sampled directly from the brand's business card.
   ============================================================ */

:root {
  --ivory: #F8F4EA;
  --ivory-deep: #EFE6D3;
  --gold: #8C6530;
  --gold-light: #C79A54;
  --gold-pale: #E7D5AE;
  --charcoal: #2F2C27;
  --ink: #17140F;
  --stone: #6E644F;
  --line: #DCCFA9;
  --white: #FFFDF9;

  --serif-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 680px;
  --edge: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

/* ---------- Site header ---------- */

.site-header {
  display: flex;
  justify-content: center;
  padding: 32px 0 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.brand-monogram {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Header / Hero ---------- */

.hero {
  padding: 32px 0 36px;
  text-align: center;
}

.hero-rule {
  position: relative;
  width: 56px;
  height: 1px;
  background: var(--line);
  margin: 22px auto;
  opacity: 0;
  animation: rise 900ms ease-out 200ms forwards;
}

.hero-rule .diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: translate(-50%, -50%) rotate(45deg);
}

.tagline {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--stone);
  margin: 0 0 40px;
  opacity: 0;
  animation: rise 900ms ease-out 80ms forwards;
}

.headline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0;
  color: var(--charcoal);
  margin: 0 0 18px;
  opacity: 0;
  animation: rise 900ms ease-out 280ms forwards;
}

.subhead {
  font-size: 18px;
  color: var(--stone);
  max-width: 42ch;
  margin: 0 auto 14px;
  opacity: 0;
  animation: rise 900ms ease-out 380ms forwards;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 4px 0 28px;
  padding: 10px 20px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5C3F1C;
  opacity: 0;
  animation: rise 900ms ease-out 430ms forwards;
}

.coming-soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2200ms ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.35); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: rise 900ms ease-out 480ms forwards;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta.primary {
  background: var(--gold);
  color: var(--white);
}
.cta.primary:hover { background: #74531F; border-color: #74531F; }

.cta.secondary {
  background: transparent;
  color: var(--charcoal);
  border: none;
  padding: 14px 4px;
  letter-spacing: 0.06em;
  text-transform: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.cta.secondary:hover { border-color: var(--gold); color: var(--gold); }

.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Services ---------- */

.services {
  padding: 28px 0;
}

.section-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0 0 24px;
  color: var(--charcoal);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 180ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  padding-left: 10px;
}

.service-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.service-item:hover .service-name {
  color: var(--gold);
}

.service-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  transition: color 160ms ease;
}

.service-chevron {
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* ---------- Inquiry form ---------- */

.inquiry {
  padding: 20px 0 36px;
}

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

label {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 16px;
  transition: border-color 160ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E644F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}
.form-submit:hover { transform: translateY(-1px); }
.form-submit:hover { background: #74531F; }
.form-submit:disabled { background: var(--stone); cursor: not-allowed; }

.form-submit:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-note {
  font-size: 13px;
  color: var(--stone);
  margin-top: 14px;
  text-align: center;
}

.form-status {
  display: none;
  text-align: center;
  padding: 28px var(--edge);
  border: 1px solid var(--line);
}

.form-status.visible { display: block; }

.form-status.success p:first-child {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--charcoal);
}

.form-status.error p:first-child {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--charcoal);
}

.form-status p:last-child {
  margin: 0;
  color: var(--stone);
  font-size: 15px;
}

/* honeypot field, hidden from real visitors */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Instagram QR ---------- */

.follow {
  padding: 0 0 36px;
  text-align: center;
}

.qr-card {
  display: inline-block;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  line-height: 0;
  transition: border-color 160ms ease;
}
.qr-card:hover { border-color: var(--gold); }
.qr-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.qr-image {
  display: block;
  width: 220px;
  height: auto;
  border-radius: 2px;
}

.qr-caption {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--stone);
  margin: 18px 0 0;
}

/* ---------- Footer ---------- */

footer {
  padding: 32px 0 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-monogram {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  color: var(--gold);
}
.footer-monogram svg { width: 100%; height: 100%; }

.footer-name {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.footer-contact {
  font-size: 15px;
  color: var(--stone);
  margin: 0 0 14px;
}

.footer-contact a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 160ms ease, color 160ms ease;
}
.footer-contact a:hover { color: var(--gold); border-color: var(--gold); }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }

.footer-copy {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.03em;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (min-width: 560px) {
  body { font-size: 19px; }
  .headline { font-size: 44px; }
  .wordmark { font-size: 34px; }
}

@media (min-width: 720px) {
  .hero { padding: 56px 0 48px; }
  .headline { font-size: 50px; }
  .subhead { font-size: 19px; }
  .services { padding: 44px 0; }
  .section-title { font-size: 30px; }
  .qr-image { width: 240px; }
}
