/* ─── HOME CONTENT (below cinematic) ─────────────── */
#hcont { background: var(--white); }

.istrip {
  background: var(--beige); padding: 26px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
}
.istrip p { font-size: 13.5px; color: #2a2520; font-weight: 500; flex: 1; }

.sitems { display: flex; gap: 36px; flex-shrink: 0; }

.si {
  display: flex; align-items: center; gap: 9px; font-size: 10px;
  font-weight: 800; color: #2a2520; letter-spacing: 1.5px; text-transform: uppercase;
}
.si::before {
  content: '✓'; width: 19px; height: 19px; background: #2a2520;
  color: var(--beige); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 9.5px; flex-shrink: 0;
}

.svcsec { padding: 112px 56px; }

.sgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.sc2 {
  background: var(--dark); padding: 50px 38px; position: relative;
  overflow: hidden; cursor: pointer; transition: background .35s;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
}
.sc2::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--beige); transition: height .4s;
}
.sc2:hover::before { height: 100%; }
.sc2:hover { background: #1e1e1e; }

.scn {
  position: absolute; top: 30px; right: 34px; font-size: 72px;
  font-weight: 900; color: rgba(255, 255, 255, 0.024); line-height: 1; font-style: italic;
}

.sico {
  width: 46px; height: 46px; border: 1px solid rgba(223, 208, 183, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--beige); font-size: 19px; margin-bottom: 24px;
}

.sc2 h3 {
  font-size: 19px; font-weight: 800; color: #F5F5F5;
  letter-spacing: -0.2px; margin-bottom: 11px;
}
.sc2 p {
  font-size: 13px; color: rgba(255, 255, 255, 0.42);
  line-height: 1.75; margin-bottom: 32px; font-weight: 400;
}

.slnk {
  font-size: 10px; font-weight: 800; color: var(--beige);
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 9px;
  cursor: pointer; transition: color .25s;
  background: none; border: none; font-family: 'Archivo', sans-serif;
}
.slnk::after { content: '→'; font-size: 14px; transition: transform .25s; }
.sc2:hover .slnk { color: var(--beige); }
.sc2:hover .slnk::after { transform: translateX(5px); }

/* ─── MOBILE RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .istrip {
    flex-direction: column;
    padding: 22px 24px;
    gap: 18px;
    text-align: center;
  }
  .sitems {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .svcsec { padding: 64px 24px; }

  .sgrid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .sc2 {
    min-height: auto;
    padding: 36px 28px;
  }
  .scn { font-size: 48px; top: 20px; right: 22px; }
}

@media (max-width: 480px) {
  .svcsec { padding: 48px 16px; }
  .istrip { padding: 18px 16px; }
  .sc2 { padding: 30px 22px; }
}

/* ─── ENQUIRY SECTION ────────────────────────────── */
.enqsec { background: var(--dark); padding: 100px 56px; }
.enq-inner { max-width: 880px; margin: 0 auto; }

.enq-head { margin-bottom: 52px; }
.enq-head .eye { margin-bottom: 14px; }
.enq-head h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 900;
  color: #F5F5F5; letter-spacing: -1.5px; line-height: 1; margin-bottom: 12px;
}
.enq-head p {
  font-size: 10px; color: var(--muted); font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
}

.enq-types {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 36px;
}
.etype { cursor: pointer; }
.etype input[type="radio"] { display: none; }
.etype-card {
  border: 1px solid rgba(255,255,255,0.07); padding: 22px 18px;
  transition: all .2s; display: flex; flex-direction: column; gap: 4px;
}
.etype input:checked + .etype-card {
  border-color: var(--beige); background: rgba(229, 213, 183, 0.05);
}
.etype-card:hover { border-color: rgba(229, 213, 183, 0.25); }
.etype-ico { font-size: 18px; margin-bottom: 10px; display: block; }
.etype-card strong { font-size: 12px; font-weight: 800; color: #F5F5F5; display: block; margin-bottom: 2px; }
.etype-card span { font-size: 10px; color: var(--muted); font-weight: 500; }

.enq-form { display: flex; flex-direction: column; }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.enq-form .fg { margin-bottom: 10px; }
.enq-form .fg label {
  display: block; font-size: 8.5px; font-weight: 800; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 7px;
}
.enq-form input, .enq-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03); font-family: 'Archivo', sans-serif; font-size: 13px;
  color: #F5F5F5; outline: none; transition: border-color .2s; border-radius: 0; font-weight: 400;
}
.enq-form input::placeholder, .enq-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.enq-form input:focus, .enq-form textarea:focus {
  border-color: var(--beige); background: rgba(229, 213, 183, 0.03);
}
.enq-form textarea { height: 100px; resize: vertical; }

.enq-check { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; margin-top: 4px; }
.enq-check input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--beige); cursor: pointer; flex-shrink: 0; }
.enq-check label { font-size: 12px; color: var(--muted); font-weight: 500; cursor: pointer; line-height: 1.5; }

.enq-form .bsub {
  background: var(--beige); color: var(--dark); padding: 16px; width: 100%;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Archivo', sans-serif;
  transition: background .2s; margin-bottom: 14px; border-radius: 0;
}
.enq-form .bsub:hover { background: #F5F5F5; }
.enq-note {
  font-size: 9px; color: var(--muted); letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; text-align: center;
}

@media (max-width: 768px) {
  .enqsec { padding: 64px 24px; }
  .enq-types { grid-template-columns: 1fr; gap: 8px; }
  .enq-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .enqsec { padding: 48px 16px; }
}
