 
@font-face {
    font-family: 'Night Mango';
    src: url('../fonts/Night Mango.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700; /* variable weight range */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
:root{
  --teal:#0b4c5f;
  --gold:#b89b5e;
  --bg:#fafaf6;
  --border:#e7e4dc;
  --text:#2f2f2f;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, sans-serif;
  background:var(--bg);
  color:var(--text);
}


/* PAGE */
.wrapper{
  max-width:1100px;
  margin:120px auto 80px;
  padding:0 20px;
  text-align:center;
}

.eyebrow{
  font-size:12px;
  letter-spacing:2px;
  color:var(--gold);
  margin-bottom:10px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #084a61b3;
  color: #b4a46f;
  letter-spacing: 2px;
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
  font-family: Cormorant Garamond, Georgia, serif;
  text-align: center;
  color: rgb(155 144 104 / var(--tw-text-opacity, 1));
}
h1{

font-size:42px;

color:var(--teal);

margin:0;

font-size: 48px;

color: #0b4c5f;

margin-bottom: 15px;

font-family: 'Cormorant Garamond', serif;

font-weight: 500;

font-size: 2.25rem;

line-height: 2.5rem;

font-family: Runalto, Georgia, serif;

text-align: center;

font-size: 1.125rem;

line-height: 1.75rem;

font-family: Runalto, Georgia, serif;

font-weight: 100;

font-size: 2.25rem;

line-height: 2.5rem;
}
.subtitle{
  color:#777;
  margin: 0px 0 40px;
  font-size: 17px;
  line-height: 1.7;
  color: grey;
  font-family: Cormorant Garamond, Georgia, serif;
}

/* STEPS */
.steps{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}
.step{
  padding:10px 18px;
  border-radius:30px;
  background:#e9ecef;
  color:#777;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight: 600;
  font-family: Cormorant Garamond, Georgia, serif;
}
.step.active{
  background:var(--teal);
  color:#fff;
}

/* CARD */
.card{
  background:#fff;
  border-radius:16px;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  text-align:left;
  padding: 2.5rem;
}
.card h2{

font-size:26px;

color:var(--teal);

margin-bottom: 10px;

font-size: 1.125rem;

line-height: 2rem;

font-family: Runalto, Georgia, serif;

font-weight: 500;

font-family: Cormorant Garamond, Georgia, serif;

font-size: 1.5rem;

line-height: 2rem;
}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
input, textarea{
  width:100%;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid var(--border);
  font-size:14px;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: Cormorant Garamond, Georgia, serif;
  padding-left: .75rem;
  padding-right: .75rem;
  padding-bottom: .75rem;
  padding-top: .75rem;
  /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -4px rgb(0 0 0 / 0%); */
}
textarea{grid-column:1/-1;resize:none;}

/* PLOT CARDS */
.plot-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.plot{
  border:1px solid var(--border);
  border-radius:14px;
  padding:30px;
  text-align:center;
}
.plot h3{margin:0;color:var(--teal);font-family: Runalto, Georgia, serif;font-weight: 500;font-size: 1.25rem;line-height: 1.75rem;}
.plot .size{font-size:22px;margin:10px 0;color:var(--gold);color: rgb(155 144 104 / var(--tw-text-opacity, 1));font-size: 1.125rem;line-height: 2.25rem;margin-bottom: .25rem;font-family: Cormorant Garamond, Georgia, serif;font-size: 1.875rem;}
.plot .price{font-weight:500;font-size: 1.125rem;line-height: 1.75rem;font-family: Cormorant Garamond, Georgia, serif;color: rgb(8 74 97 / var(--tw-text-opacity, 1));font-weight: 700;margin-top: 10px;}

/* PAYMENT */
.payment-box{
  border:1px solid var(--border);
  border-radius:12px;
  padding:20px;
  margin-bottom:20px;
}

/* TERMS */
.terms-box{
  height:220px;
  overflow:auto;
  border:1px solid var(--border);
  padding:20px;
  border-radius:10px;
  font-size:13px;
  line-height:1.7;
}

/* BUTTONS */
.actions{
  display:flex;
  justify-content:space-between;
  margin-top:30px;
}
.btn{
  padding:12px 26px;
  border-radius:8px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: Cormorant Garamond, Georgia, serif;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: .5rem;
  padding-top: .5rem;
}
.btn.primary{
  background:var(--teal);
  color:#fff;
  border:none;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: Cormorant Garamond, Georgia, serif;
}

/* STEPS VISIBILITY */
.step-content{display:none}
.step-content.active{display:block}

/* FOOTER */
.footer{
  margin-top:40px;
  font-size:12px;
  color:#777;
  text-align:center;
  font-size: .875rem;
  line-height: 1.25rem;
  margin-top: 2rem;
  font-family: Cormorant Garamond, Georgia, serif;
}
/* HEADER */
.header {
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);padding:10px;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  padding-left: 2rem;
  padding-right: 2rem;
}

.nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #234a57;
  font-weight: 500;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 1.1rem;
  font-size: 1.125rem;
  letter-spacing: .025em;
  font-weight: 500;
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 4px solid #7b4b2a;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}


.back-link .arrow {
  font-size: 22px;
  position: relative;
  top: -1px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap img {
  width: 200px;
  height: auto;
}

.logo-text strong {
  display: block;

  font-size: 18px;
  letter-spacing: 1px;
  color: #0d4f63;
}

.logo-text span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #9a9a9a;
}
.back-link .arrow {
  font-size: 22px;
  position: relative;
  top: -1px;
}
    .back-link
    {   margin: 0 18px;
    text-decoration: none;
    color: #234a57;
    font-weight: 500;
    font-family: Cormorant Garamond, Georgia, serif;
    font-size: 1.1rem;
    font-size: 1.125rem;
    letter-spacing: .025em;
    font-weight: 500;}/* BACK LINK */

    .footer p
    {    margin-top: .5rem;}

    svg
    {
    width:  1rem;
    height: 1rem;
 }
 .choose
 {    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-family: Cormorant Garamond, Georgia, serif;
    margin-top: 0px;
    margin-bottom: 25px;}

    .mb-6
    {    font-size: .875rem;
    line-height: 1.25rem;
    text-align: center;
    font-family: Cormorant Garamond, Georgia, serif;}
    .size span
    {    font-size: .875rem;
    line-height: 1.25rem;}
    .financing-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.financing-title {
  font-size: 28px;
  color: #0a3d62;
  margin-bottom: 30px;
}

.financing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.finance-card {
  padding: 26px 20px;
  text-align: center;
  font-size: 24px;
  color: #0a3d62;
  border-radius: 18px;
  border: 2px solid #e1e5ea;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: .75rem;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 1.125rem;
}

/* Active (Self Funding) */
.finance-card.active {
  border-color: #9c8a5b;
  background: #fbfaf7;
}

/* Hover effect */
.finance-card:hover {
  border-color: #9c8a5b;
}
.payment-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border-radius: 22px;
  background: #fff;
  border: 2px solid #e3e6ea;
  position: relative;
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.payment-card.active {
  border-color: #9c8a5b;
  background: #fbfaf7;
}

.payment-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-text h3 {
  font-size: 24px;
  color: #0a3d62;
  margin: 0 0 6px;
  color: rgb(8 74 97 / var(--tw-text-opacity, 1));
  font-size: 1.125rem;
  font-family: Cormorant Garamond, Georgia, serif;
}





.payment-text p {
  margin: 0;
  font-size: 16px;
  color: #6b7280;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: Cormorant Garamond, Georgia, serif;
}

.payment-check {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #9c8a5b;
  color: #9c8a5b;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover polish */
.payment-card:hover {
  border-color: #9c8a5b;
}
.bank-details-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #0a3d62;
}

/* Bank Card */
.bank-card {
  background: #f6f9f9;
  border-radius: 18px;
  padding: 30px 35px;
  margin-bottom: 40px;
  padding: 1.5rem;
}

.bank-card h3 {
  margin-bottom: 14px;
  font-size: 1.125rem;
  font-family: Cormorant Garamond, Georgia, serif;
}

.bank-subtext {
  color: #5c6b75;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: Cormorant Garamond, Georgia, serif;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 60px;
}

.bank-grid label {
  font-size: 15px;
  color: #6b7280;
}

.bank-grid p {
  margin-top: 6px;
  font-size: 0.9rem;
}

/* Payment Instrument */
.payment-instrument h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.125rem;
  font-family: Cormorant Garamond, Georgia, serif;
}

.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-grid input {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #e6e1d8;
  font-size: 16px;
  padding-bottom: .75rem;
  padding-top: .75rem;
}

.full-width {
  grid-column: span 2;
}

/* Important Notes */
.important-notes {
  margin-top: 40px;
  background: #fff8e6;
  border: 1px solid #f1c97a;
  border-radius: 14px;
  padding: 30px;
  padding: 1rem;
}

.note-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0px;
}

.note-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffedd5;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.important-notes h4 {
  color: #d97706;
  font-size: 1.125rem;
  margin-bottom: .5rem;
  margin-top: 5px;
}

.important-notes ol {
  padding-left: 20px;
}

.important-notes li {
  margin-bottom: 14px;
  color: #92400e;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .bank-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}
.terms-wrapper {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #0a3d62;
}

/* Header */
.terms-header h2 {
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: Runalto, Georgia, serif;
}

.terms-header p {
  color: #6b7280;
  margin-top: 6px;
  margin-bottom: 1.5rem;
}

/* Terms Box */
.terms-box {
  background: #f8fafb;
  border-radius: 14px;
  padding: 30px;
  margin: 30px 0;
  max-height: 420px;
  overflow-y: auto;
  border-right: 6px solid #0a3d62;
}

.terms-box ol > li {
  margin-bottom: 22px;
}

.terms-box strong {
  display: block;
  margin-bottom: 10px;
}

.terms-box ul {
  padding-left: 18px;
}

.terms-box ul li {
  margin-bottom: 8px;
  color: #4b5563;
}

/* Signature Section */
.signature-section h3 {
  margin: 40px 0 20px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.signature-card {
  border: 2px dashed #cfd8e3;
  border-radius: 14px;
  padding: 20px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.signature-card span {
  display: block;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.signature-card input {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  text-align: center;
  font-size: 16px;
}

/* Consent */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0;
  color: #374151;
}

.consent input {
  margin-top: 5px;
}

/* Buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-outline {
  padding: 12px 28px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0a3d62;
  cursor: pointer;
}

.btn-primary {
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  background: #cfc7b2;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    gap: 20px;
  }
}
.consent
{    font-size: .875rem;
    line-height: 1.25rem;}

    .terms-content {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;
  color: #374151;
  height: 400px;
  overflow-y: scroll;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding: 1rem;
}
.terms-content h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem; /* slightly bigger for headings */
  font-weight: 600;
  color: #0a3d62;
}
.terms-content ul li {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.8;
}
.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* STEP */
.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Cormorant Garamond", Georgia, serif;

  background: #e5e7eb;        /* grey */
  color: #6b7280;
  white-space: nowrap;
}

/* ACTIVE STEP */
.step.active {
  background: #0b4a5a;
  color: #ffffff;
}

/* CONNECTOR LINE DEFAULT (GREY) */
.step:not(:last-child)::after {
  content: "";
    position: absolute;
    right: -115px;
    top: 50%;
    width: 90px;
    height: 2px;
    background: #d1d5db;
    transform: translateY(-50%);
}

/* CONNECTOR LINE WHEN STEP IS ACTIVE */
.step.active::after {
  background: #0b4a5a;       /* active line */
}

/* ICON SIZE */
.step svg {
  width: 18px;
  height: 18px;
}
  

  /* HEADER */
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    font-size: 14px;
  }


  
  .top-bar a {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* TITLE */
  .page-title {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-family: Runalto, Georgia, serif;
    color: rgb(8 74 97 / var(--tw-text-opacity, 1));
  }

  .page-title span {
    font-size: 1rem;
    color: var(--muted);
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-family: Cormorant Garamond, Georgia, serif;
  }

  /* CARD */
  .policy-wrapper {
    max-width: 52rem;
    margin: 0px auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 36px 42px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    background: #fff;
  }

  .policy-wrapper p {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 16px;
    color: #444;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    font-family: Cormorant Garamond, Georgia, serif;
  }

  .policy-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin: 28px 0 10px;
    color: var(--primary);
    font-family: Runalto, Georgia, serif;
    color: rgb(8 74 97 / var(--tw-text-opacity, 1));
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }

  ul {
    padding-left: 18px;
    margin-bottom: 20px;
  }

  ul li {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: Cormorant Garamond, Georgia, serif;
  }

  /* HIGHLIGHT BOX */
  .highlight {
    background: #fff8e1;
    border: 1px solid #f0d48c;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: #6a5a2b;
    margin: 24px 0;
    padding: 1rem;
    font-family: Cormorant Garamond, Georgia, serif;
  }

  /* CONTACT BOX */
  .contact-box {
    background: #f2f6f7;
    border-radius: 8px;
    padding: 16px 18px;
    font-size: 14px;
    padding: 1.5rem;
  }

  .contact-box strong {
    display: block;
    margin-bottom: 6px;
  }

  /* FOOTER BUTTON */
  .footer-btn {
    text-align: center;
    margin: 30px 0 50px;
  }

  .footer-btn a {
    background: var(--primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgb(8 74 97 / var(--tw-bg-opacity, 1));
    gap: .5rem;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-family: Cormorant Garamond, Georgia, serif;
    font-size: 1.125rem;
    text-decoration: none;
    padding-bottom: .75rem;
    padding-top: .75rem;
  }

  @media (max-width: 768px) {
    .policy-wrapper {
      margin: 30px 16px;
      padding: 28px 24px;
    }

    .page-title h1 {
      font-size: 30px;
    }
  }

  
.side-cta {
    right: 0px;
}
.side-cta {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background: #a8996e;
    padding: 20px 15px;
    writing-mode: vertical-rl;
    text-align: center;
    border-radius: 10px 0 0 10px;
    font-family: Cormorant Garamond, Georgia, serif;
    height: 385px;
}.side-cta a {
    text-decoration: none;
    color: #fff;
}.side-cta span {
    letter-spacing: 0.025em;
    font-size: 1.125rem;
    font-weight: 500;
}


/* ===== STEPS ===== */
.steps {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.step {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-bottom: 3px solid #ddd;
}
.step.active {
  border-color: #9B9068;
  font-weight: bold;
}

/* ===== STEP CONTENT ===== */
.step-content {
  display: none;
}
.step-content.active {
  display: block;
}

/* ===== FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
input, textarea {
  padding: 10px;
  width: 100%;
}

/* ===== ACTIONS ===== */
.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.btn {
  padding: 12px 24px;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.btn.primary {
  background: #9B9068;
  color: #fff;
}
/* ===== FINANCE ===== */
.financing-options {
  display: flex;
  gap: 20px;
}
.finance-card {
  flex: 1;
  padding: 20px;
  text-align: center;
  border: 2px solid #ddd;
  cursor: pointer;
}
.finance-card.active {
  border-color: #9B9068;
  background: #fbfaf7;
}

.error {
  color: red;
  display: none;
}.step-content { display:none; }
.step-content.active { display:block; }

.plot-card .tick { display:none; }
.plot-card.active .tick { display:block; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.step {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-bottom: 3px solid #ddd;
}
.step.active {
  border-color: #9B9068;
  font-weight: bold;
}

/* ===== STEP CONTENT ===== */
.step-content {
  display: none;
}
.step-content.active {
  display: block;
}

/* ===== FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
input, textarea {
  padding: 10px;
  width: 100%;
}

/* ===== ACTIONS ===== */
.actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.btn {
  padding: 12px 24px;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.btn.primary {
  background: #9B9068;
  color: #fff;
}

/* ===== PLOTS ===== */
.plot-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin: 20px 0;
}
.plot-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.plot-card.active {
  border-color: #9B9068;
  background: #fbfaf7;
}
.plot-card .tick {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #9B9068;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 26px;
  color: #9B9068;
}
.plot-card.active .tick {
  display: block;
}

/* ===== FINANCE ===== */
.financing-options {
  display: flex;
  gap: 20px;
}
.finance-card {
  flex: 1;
  padding: 20px;
  text-align: center;
  border: 2px solid #ddd;
  cursor: pointer;
}
.finance-card.active {
  border-color: #9B9068;
  background: #fbfaf7;
}

.error {
  color: red;
  display: none;
}.step-content { display:none; }
.step-content.active { display:block; }

.plot-card .tick { display:none; }
.plot-card.active .tick { display:block; }

@media (max-width: 768px) {
   .page-title h1 {
        font-size: 1.125rem;
    }.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 2.5rem;
    font-family: Runalto, Georgia, serif;
    color: rgb(8 74 97 / var(--tw-text-opacity, 1));
}.page-title {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 0rem;
    padding-top: 3rem;
}
    .policy-wrapper {
        margin: 30px 30px;
        padding: 28px 24px;
    }.policy-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    margin: 28px 0 10px;
    color: var(--primary);
    font-family: Runalto, Georgia, serif;
    color: rgb(8 74 97 / var(--tw-text-opacity, 1));
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

.footer-btn a {
    background: var(--primary);
    color: #fff;
    padding: 12px 26px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgb(8 74 97 / var(--tw-bg-opacity, 1));
    gap: .5rem;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-family: Cormorant Garamond, Georgia, serif;
    font-size: 1rem;
    text-decoration: none;
    padding-bottom: .75rem;
    padding-top: .75rem;
}
.side-cta span {
    letter-spacing: 0.025em;
    font-size: 1rem;
    font-weight: 500;
}

}