/* ============================================================
   SAY THE WORD — Enquire & About Pages
   ============================================================ */

/* ── ENQUIRE ───────────────────────────────────────────────── */
.enquire-page {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left panel — photo with pink mask */
.enquire-left {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.enquire-left__top {}

.enquire-left__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.enquire-left__title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.enquire-left__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 320px;
}

.enquire-left__contact {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.enquire-left__contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Right panel — form */
.enquire-right {
  background: var(--surface);
  padding: 72px 56px;
  overflow-y: auto;
}

.enquire-form {
  max-width: 480px;
}

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

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

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(155,73,119,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: rgba(155,73,119,0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option { background: var(--surface); }

.form-group textarea {
  height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 15px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(155,73,119,0.15);
  border: 1px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success__icon svg { width: 28px; height: 28px; stroke: var(--pink); fill: none; stroke-width: 2; }
.form-success__title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.form-success__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 56px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(155,73,119,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.about-hero__content { position: relative; z-index: 2; }

.about-hero__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.about-hero__title {
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.9;
}

.about-body {
  background: var(--bg);
  padding: 80px 40px;
}

.about-body__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-body__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-body__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.about-body__text p + p { margin-top: 16px; }

.about-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .enquire-page { grid-template-columns: 1fr; }
  .enquire-left { position: static; height: auto; padding: 56px 28px 48px; }
  .enquire-right { padding: 48px 28px; }
  .enquire-form { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .about-body__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .about-hero { padding: 0 20px 40px; }
  .about-body { padding: 56px 20px; }
}
