:root {
  --green: #0d453b;
  --green2: #123f37;
  --cream: #f6efe5;
  --coral: #ef765d;
  --ink: #18322d;
  --white: #fffaf4;
  --line: #d8c9b8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 0 4vw;
  background: #fffaf4;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e7dbcd;
}
.brand {
  display: flex;
  flex-direction: column;
  min-width: 210px;
  color: var(--green);
}
.brand-name {
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1;
}
.brand-sub {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 10px;
  color: var(--coral);
}
.brand-sub i {
  display: inline-block;
  width: 26px;
  border-top: 1px solid var(--coral);
  margin: 0 5px;
}
.site-header nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
}
.site-header nav a:hover {
  color: var(--coral);
}
.tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tools select {
  border: 1px solid var(--line);
  background: white;
  padding: 10px;
  border-radius: 3px;
}
.btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 15px 24px;
  border-radius: 2px;
  font-weight: 700;
}
.btn.small {
  padding: 11px 17px;
}
.btn.ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #f8f0e5;
}
.hero > div:first-child {
  padding: 9vw 6vw;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 6vw, 85px);
  line-height: 1.02;
  margin: 0.25em 0;
}
.lead {
  font-size: 20px;
  max-width: 740px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  font-weight: 800;
  font-size: 13px;
}
.hero-img {
  background:
    linear-gradient(90deg, rgba(13, 69, 59, 0.2), rgba(13, 69, 59, 0)),
    url("/images/hero-premium-warm.webp") center/cover;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.note {
  font-size: 14px;
}
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  color: #fff;
  padding: 30px 5vw;
}
.proof div {
  padding: 12px 30px;
  border-inline-end: 1px solid #ffffff35;
}
.proof b,
.proof span {
  display: block;
}
.proof span {
  opacity: 0.75;
  font-size: 14px;
}
.section,
.page-hero {
  padding: 90px 8vw;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.intro h2,
.dark h2,
.cta h2 {
  font:
    52px/1.1 Georgia,
    serif;
  margin: 0.2em 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 8vw 100px;
  gap: 1px;
  background: var(--line);
}
.service-card {
  background: #fffaf4;
  padding: 44px;
  min-height: 260px;
}
.service-card:hover {
  background: white;
}
.service-card > span {
  color: var(--coral);
  font-weight: 800;
}
.service-card h3 {
  font:
    30px Georgia,
    serif;
}
.service-card b {
  font-size: 13px;
  color: var(--coral);
}
.dark {
  background: var(--green);
  color: white;
  padding: 90px 8vw;
}
.four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid #ffffff35;
}
.four div {
  padding: 35px 25px;
  border-inline-end: 1px solid #ffffff35;
}
.four b {
  color: var(--coral);
}
.cta {
  text-align: center;
  padding: 90px 8vw;
  background: #ead7c5;
}
.page-hero {
  background: var(--green);
  color: white;
}
.page-hero h1 {
  max-width: 1050px;
}
.page-hero .lead {
  color: #f7eade;
}
.page-hero .ghost {
  color: white;
  border-color: white;
}
.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8vw;
  padding: 90px 8vw;
}
.content h2 {
  font:
    40px Georgia,
    serif;
}
.content li {
  margin: 15px;
}
.content aside {
  background: white;
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: max-content;
}
.faq {
  padding: 70px 15vw;
}
.faq details {
  background: white;
  margin: 12px 0;
  padding: 24px;
}
.faq summary {
  font:
    24px Georgia,
    serif;
  cursor: pointer;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  padding: 2px;
}
.contact-options a {
  background: white;
  padding: 55px;
}
.contact-options b,
.contact-options span {
  display: block;
}
.article-grid {
  padding: 70px 8vw;
}
.article-card {
  display: block;
  background: white;
  padding: 50px;
  max-width: 760px;
}
.article-card h2 {
  font:
    40px Georgia,
    serif;
}
.article {
  max-width: 900px;
  margin: auto;
  padding: 80px 25px;
}
.article h1 {
  font:
    58px/1.06 Georgia,
    serif;
}
.article h2 {
  font:
    32px Georgia,
    serif;
  margin-top: 55px;
}
.article p {
  font-size: 18px;
}
.article-cta {
  background: var(--green);
  color: white;
  padding: 40px;
  margin-top: 60px;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #169b68;
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  font-weight: bold;
}
footer {
  background: #082f29;
  color: white;
  padding: 65px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
footer strong {
  font:
    30px Georgia,
    serif;
}
footer div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer small {
  grid-column: 1/-1;
  opacity: 0.65;
}
[dir="rtl"] body {
  font-family: Arial, sans-serif;
}
[dir="rtl"] .wa {
  right: auto;
  left: 20px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background: transparent;
}
.article-card {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.article-card .article-excerpt {
  display: block;
  margin: 0 0 22px;
  color: #49645e;
}
.article-card b {
  margin-top: auto;
  color: var(--coral);
  font-size: 13px;
}
.article-faq {
  margin-top: 60px;
}
.article-faq details {
  background: white;
  margin: 12px 0;
  padding: 22px;
}
.article-faq summary {
  font:
    22px Georgia,
    serif;
  cursor: pointer;
}
.related-service a {
  color: var(--coral);
  font-weight: 700;
}
.latest-insight {
  background: #fffaf4;
}
.latest-insight > div {
  max-width: 900px;
}
.latest-insight h2 {
  font:
    48px/1.12 Georgia,
    serif;
}
.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  grid-column: 1/-1;
  font-size: 14px;
}
.footer-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.policy-updated {
  font-size: 14px;
  opacity: 0.7;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: auto;
  padding: 24px;
  background: #fffaf4;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px #082f2940;
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}
.cookie-copy h2,
.cookie-modal h2 {
  font:
    28px Georgia,
    serif;
  margin: 0 0 8px;
}
.cookie-copy p {
  margin: 0;
  max-width: 740px;
}
.cookie-copy a,
.cookie-modal a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  border: 1px solid var(--green);
  border-radius: 3px;
  padding: 12px 17px;
  font-weight: 700;
  cursor: pointer;
}
.cookie-btn.primary {
  background: var(--green);
  color: white;
}
.cookie-btn.secondary {
  background: transparent;
  color: var(--green);
}
.cookie-btn.full {
  width: 100%;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #082f297a;
}
.cookie-modal-card {
  position: relative;
  width: min(650px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fffaf4;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 18px 60px #0005;
}
.cookie-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}
.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.cookie-option p {
  margin: 5px 0 0;
}
.cookie-option input {
  width: 23px;
  height: 23px;
  accent-color: var(--green);
}
.cookie-modal-open {
  overflow: hidden;
}
[dir="rtl"] .cookie-close {
  right: auto;
  left: 15px;
}
.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: 7vw;
  align-items: start;
  background: #f6efe5;
}
.form-intro {
  position: sticky;
  top: 125px;
}
.form-intro h2 {
  font:
    46px/1.1 Georgia,
    serif;
  margin: 0.2em 0;
}
.contact-form {
  position: relative;
  background: #fffaf4;
  padding: 42px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px #082f2912;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bba998;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 3px;
  font:
    16px Arial,
    sans-serif;
}
.contact-form textarea {
  resize: vertical;
  min-height: 145px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid #ef765d33;
  border-color: var(--coral);
}
.form-note {
  font-size: 13px;
  color: #49645e;
}
.privacy-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 11px !important;
  align-items: start;
  margin: 22px 0;
  font-weight: 400 !important;
}
.privacy-check input {
  width: 20px;
  height: 20px;
  margin: 2px 0;
  accent-color: var(--green);
}
.privacy-check a {
  text-decoration: underline;
}
.form-submit {
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.success-card {
  max-width: 820px;
  margin: 80px auto;
  background: white;
  padding: 55px;
  border: 1px solid var(--line);
  text-align: center;
}
.success-card h1 {
  font:
    52px/1.08 Georgia,
    serif;
}
.success-card .btn {
  margin-top: 18px;
}
.property-care-page {
  --property: #2f8178;
  --property-soft: #dcece7;
}
.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: 680px;
  background: linear-gradient(135deg, #f8f0e5 0%, #edf5f1 100%);
}
.property-hero > div:first-child {
  padding: 8vw 7vw;
}
.property-hero h1 {
  margin: 0.2em 0 0.12em;
  color: var(--green);
  font:
    clamp(54px, 7vw, 94px)/0.98 Georgia,
    serif;
}
.property-descriptor {
  margin: 0 0 24px;
  color: var(--property);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.property-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 7vw 4vw;
  background:
    linear-gradient(135deg, rgba(8, 47, 41, 0.78), rgba(13, 69, 59, 0.38)),
    url("/images/property-care-malaga.webp") center/cover;
}
.property-hero-panel span {
  display: block;
  padding: 28px 26px;
  border: 1px solid #ffffff30;
  color: #fff;
  font:
    34px Georgia,
    serif;
}
.property-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: #b8d5ce;
}
.property-audience div {
  padding: 34px 5vw;
  background: var(--property-soft);
}
.property-audience b,
.property-audience span {
  display: block;
}
.property-audience b {
  margin-bottom: 6px;
  color: var(--green);
}
.property-audience span {
  font-size: 14px;
}
.property-intro,
.property-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.property-intro h2,
.property-plans h2 {
  margin: 0.2em 0;
  font:
    50px/1.1 Georgia,
    serif;
}
.property-intro > p,
.property-plans > div > p {
  font-size: 18px;
}
.property-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 8vw 100px;
  background: var(--line);
}
.property-services article {
  min-height: 300px;
  padding: 44px;
  background: #fffaf4;
}
.property-services article > span {
  color: var(--property);
  font-weight: 800;
}
.property-services h3 {
  margin: 0.7em 0 0.4em;
  font:
    32px Georgia,
    serif;
}
.property-services strong {
  display: block;
  margin-top: 24px;
  color: var(--property);
  font-size: 14px;
}
.property-process .eyebrow,
.property-process .four b {
  color: #8ed1c2;
}
.property-process .four p {
  color: #ffffffbd;
  font-size: 14px;
}
.property-plans aside {
  padding: 38px;
  background: white;
}
.property-plans aside h3 {
  margin-top: 0;
  font:
    30px Georgia,
    serif;
}
.property-plans aside .btn {
  margin-top: 14px;
}
.property-cta {
  background: var(--property-soft);
}
.property-teaser {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6vw;
  align-items: center;
  background: var(--property-soft);
}
.property-teaser h2 {
  margin: 0.2em 0;
  font:
    50px/1.1 Georgia,
    serif;
}
.property-teaser-card {
  padding: 38px;
  background: var(--green);
  color: #fff;
}
.property-teaser-card strong {
  display: block;
  margin-bottom: 8px;
  color: #8ed1c2;
}
@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 18px 20px;
    flex-wrap: wrap;
  }
  .site-header nav {
    display: none;
  }
  .brand {
    min-width: 150px;
  }
  .tools {
    margin-left: auto;
  }
  .tools .small {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero > div:first-child {
    padding: 70px 25px;
  }
  .hero-img {
    height: 380px;
  }
  .proof,
  .intro,
  .services,
  .four,
  .contact-options,
  .content {
    grid-template-columns: 1fr;
  }
  .proof div {
    border: 0;
    border-bottom: 1px solid #ffffff35;
  }
  .section,
  .page-hero,
  .dark,
  .cta {
    padding: 65px 25px;
  }
  .intro h2,
  .dark h2,
  .cta h2 {
    font-size: 40px;
  }
  .services {
    padding: 1px;
  }
  .service-card {
    min-height: auto;
    padding: 35px 25px;
  }
  .four div {
    border-bottom: 1px solid #ffffff35;
  }
  .content {
    padding: 55px 25px;
  }
  .faq {
    padding: 45px 20px;
  }
  .article h1 {
    font-size: 44px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .wa {
    font-size: 13px;
  }
  .tools select {
    max-width: 86px;
  }
  .article-grid,
  .contact-form-section,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .article-grid {
    padding: 45px 20px;
  }
  .article-card h2 {
    font-size: 31px;
  }
  .latest-insight h2 {
    font-size: 40px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .cookie-btn {
    flex: 1;
  }
  .cookie-modal-card {
    padding: 28px 20px;
  }
  .form-intro {
    position: static;
  }
  .form-intro h2 {
    font-size: 38px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .success-card {
    margin: 45px 20px;
    padding: 38px 24px;
  }
  .success-card h1 {
    font-size: 40px;
  }
  .property-hero,
  .property-intro,
  .property-plans,
  .property-teaser {
    grid-template-columns: 1fr;
  }
  .property-hero {
    min-height: auto;
  }
  .property-hero > div:first-child {
    padding: 70px 25px;
  }
  .property-hero-panel {
    padding: 35px 25px;
  }
  .property-hero-panel span {
    font-size: 28px;
  }
  .property-audience,
  .property-services {
    grid-template-columns: 1fr;
  }
  .property-services {
    padding: 1px;
  }
  .property-services article {
    min-height: auto;
    padding: 35px 25px;
  }
  .property-intro h2,
  .property-plans h2,
  .property-teaser h2 {
    font-size: 40px;
  }
}
