
  .tariff-page-hero {
    background: var(--green);
    padding: 80px 10vw 90px;
  }
  .tariff-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 400;
    color: white;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .tariff-page-hero h1 em { font-style: italic; color: rgba(255,255,255,.45); }
  .tariff-page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.8;
  }

  .tariff-page-wrap {
    padding: 72px 10vw 96px;
    max-width: 1100px;
  }

  .tariff-page-intro {
    max-width: 660px;
    margin-bottom: 56px;
  }
  .tariff-page-intro p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .tariff-page-intro p:last-child { margin-bottom: 0; }

  /* Key callout */
  .tariff-key-callout {
    background: rgba(13,61,40,.05);
    border-left: 3px solid var(--green-a);
    padding: 20px 24px;
    margin-bottom: 56px;
    max-width: 660px;
  }
  .tariff-key-callout p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
  }
  .tariff-key-callout strong { color: var(--ink); font-weight: 500; }

  /* Table section */
  .tariff-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .tariff-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .tariff-full-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-family: 'DM Sans', sans-serif;
  }
  .tariff-full-table thead tr {
    background: var(--green);
  }
  .tariff-full-table thead th {
    padding: 14px 20px;
    text-align: left;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    font-family: 'Inter', sans-serif;
  }
  .tariff-full-table thead th:last-child { text-align: right; }
  .tariff-full-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background .15s;
  }
  .tariff-full-table tbody tr:hover { background: rgba(13,61,40,.03); }
  .tariff-full-table tbody tr.tariff-group-start td {
    padding-top: 24px;
  }
  .tariff-full-table td {
    padding: 13px 20px;
    font-size: 14px;
    color: var(--body);
    font-weight: 300;
    line-height: 1.4;
    vertical-align: middle;
  }
  .tariff-full-table td:first-child {
    font-weight: 400;
    color: var(--ink);
    max-width: 280px;
  }
  .tariff-full-table td.tariff-band {
    color: var(--muted);
    font-size: 13px;
  }
  .tariff-full-table td.tariff-amount {
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--green-a);
    white-space: nowrap;
  }
  .tariff-group-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 3px;
  }

  /* What's not included */
  .tariff-not-included {
    background: #f0ede5;
    padding: 40px 44px;
    margin-bottom: 48px;
    max-width: 800px;
  }
  .tariff-not-included h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -.2px;
  }
  .tariff-not-included p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .tariff-not-included p:last-child { margin-bottom: 0; }
  .tariff-extras-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
  }
  .tariff-extras-list li {
    font-size: 13px;
    color: var(--body);
    padding-left: 18px;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
  }
  .tariff-extras-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-a);
  }

  /* Prognosis explainer */
  .tariff-prognosis-box {
    border: 1px solid var(--border);
    padding: 36px 40px;
    margin-bottom: 48px;
    max-width: 800px;
  }
  .tariff-prognosis-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -.2px;
  }
  .tariff-prognosis-box p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 12px;
  }
  .tariff-prognosis-box p:last-child { margin-bottom: 0; }

  @media (max-width: 768px) {
    .tariff-page-wrap { padding: 48px 6vw 72px; }
    .tariff-full-table td, .tariff-full-table th { padding: 11px 12px; }
    .tariff-not-included, .tariff-prognosis-box { padding: 28px 24px; }
  }
