:root {
  --green: #123f35;
  --green-dark: #0d3029;
  --gold: #c7b58d;
  --cream: #f6f4ed;
  --ink: #203b33;
  --muted: #5c695f;
  --line: #ddded3;
  --white: #fff;
  --bs-body-font-family: "DM Sans", sans-serif;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--cream);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--gold);
  color: var(--green);
}
:focus-visible {
  outline: 3px solid #a78542;
  outline-offset: 5px;
}
.container-xl {
  max-width: 1320px;
  padding-left: 44px;
  padding-right: 44px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1100;
  background: white;
  padding: 12px 22px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(246, 244, 237, 0.97);
  border-bottom: 1px solid #123f3510;
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: 102px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 24px;
}
.navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 0;
}
.navbar-brand img {
  width: 152px;
  height: 65px;
  object-fit: contain;
}
.navbar-nav {
  gap: 22px;
}
.navbar .nav-link {
  padding: 12px 0 !important;
  color: var(--green);
  font-size: 14px;
  font-weight: 550;
  position: relative;
}
.navbar .nav-link:after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.25s;
}
.navbar .nav-link:hover:after,
.navbar .nav-link.active:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-call {
  font-weight: 550;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
}
.header-call i {
  font-size: 16px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 16px 23px;
  min-height: 54px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 3px;
  line-height: 1.45;
  transition:
    background 0.25s,
    transform 0.25s,
    color 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button i {
  font-size: 18px;
}
.button-green {
  background: var(--green);
  color: white;
}
.button-green:hover {
  background: var(--green-dark);
  color: white;
}
.button-gold {
  background: var(--gold);
  color: #183d30;
}
.button-gold:hover {
  background: #d7c69f;
  color: var(--green-dark);
}
.navbar-toggler {
  padding: 8px;
  border: 1px solid #c9d0c7;
  color: var(--green);
  font-size: 26px;
  border-radius: 3px;
  line-height: 1;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px #b7a57e55;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 666px;
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-copy {
  padding: 69px 52px 37px max(44px, calc((100vw - 1232px) / 2));
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-copy:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid #f6f4ed09;
  transform: rotate(35deg);
  left: -220px;
  top: 120px;
  pointer-events: none;
  z-index: -1;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 2.3px;
  line-height: 1.7;
  color: #51614f;
  display: block;
  margin-bottom: 23px;
}
.eyebrow.light {
  color: #d4c6a7;
  display: flex;
  align-items: center;
  gap: 13px;
}
.eyebrow.light span {
  width: 26px;
  height: 1px;
  background: #c7b58d;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
.serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
}
h1 {
  font-size: clamp(52px, 4.68vw, 74px);
  line-height: 1.16;
  letter-spacing: -2.8px;
  margin-bottom: 27px;
}
h1 em {
  font-weight: 500;
  color: #d2bf94;
}
h2 {
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 1.2;
  letter-spacing: -1.4px;
  margin-bottom: 24px;
}
h3 {
  font-size: 23px;
  font-weight: 550;
  line-height: 1.35;
}
.hero-copy > p {
  max-width: 420px;
  color: #d4ded7;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 29px;
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 17px;
  align-items: center;
  border-bottom: 1px solid #9dafa2;
  padding-bottom: 4px;
}
.text-link i {
  transition: transform 0.25s;
}
.text-link:hover i {
  transform: translate(3px, -2px);
}
.light-link {
  color: #f1f2e9;
  border: 0;
  font-weight: 450;
  font-size: 13px;
}
.light-link:hover {
  color: var(--gold);
}
.hero-location {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #d2dcd5;
  font-size: 11px;
  letter-spacing: 0.4px;
  margin-top: auto;
  padding-top: 34px;
}
.hero-location i {
  color: var(--gold);
}
.hero-location span {
  color: #a8b9ad;
  margin: 0 5px;
}
.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  position: absolute;
  inset: 0;
  filter: brightness(0.91) saturate(0.82);
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0c30254a, transparent 55%);
  pointer-events: none;
}
.image-tag {
  position: absolute;
  right: 29px;
  top: 31px;
  font-size: 10px;
  letter-spacing: 2px;
  background: rgba(246, 244, 237, 0.9);
  color: var(--green);
  padding: 9px 15px;
  z-index: 1;
}
.hero-note {
  position: absolute;
  bottom: 39px;
  left: 38px;
  right: 38px;
  display: flex;
  align-items: center;
  gap: 21px;
  background: var(--cream);
  color: var(--green);
  padding: 24px 27px;
  z-index: 1;
  max-width: 440px;
  box-shadow: 0 8px 32px #122e2720;
}
.note-icon {
  font-size: 32px;
  padding: 0 17px 0 0;
  border-right: 1px solid #d4d7cb;
}
.hero-note strong {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 500;
  display: block;
}
.hero-note div > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25px;
  color: var(--muted);
  margin-top: 8px;
}
.note-arrow {
  align-self: flex-start;
  font-size: 21px;
  margin-left: auto;
}
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #eeeee4;
}
.trust-strip > .container-xl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 28px;
  padding-bottom: 28px;
}
.trust-strip > .container-xl > div {
  display: flex;
  align-items: center;
  gap: 21px;
  justify-content: center;
  border-right: 1px solid #cfd3c6;
}
.trust-strip > .container-xl > div:first-child {
  justify-content: flex-start;
}
.trust-strip > .container-xl > div:last-child {
  border: 0;
  justify-content: flex-end;
}
.trust-strip span:not(.trust-number) {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.trust-strip strong {
  font-size: 12px;
  font-weight: 550;
  color: var(--green);
}
.trust-strip .trust-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  color: var(--green);
}
.trust-strip i {
  font-size: 29px;
  color: #667461;
}
.section {
  padding: 100px 0;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  font-size: 12px;
}
.site-footer > .container-xl {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-left: calc((100vw - 1232px) / 2);
    padding-top: 83px;
    padding-bottom: 43px;
  }
  .hero {
    min-height: 710px;
  }
}
@media (max-width: 1199px) {
  .container-xl {
    padding-left: 32px;
    padding-right: 32px;
  }
  .navbar {
    gap: 18px;
  }
  .navbar-nav {
    gap: 17px;
  }
  .header-actions {
    gap: 17px;
  }
  .header-inquiry {
    padding: 13px 17px;
    gap: 12px;
  }
  .hero-copy {
    padding: 62px 30px 33px 32px;
  }
  h1 {
    font-size: 57px;
    letter-spacing: -2px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-note {
    left: 25px;
    right: 25px;
    padding: 22px;
    gap: 15px;
  }
  .hero-note strong {
    font-size: 21px;
  }
  .trust-strip > .container-xl > div {
    gap: 15px;
  }
  .trust-strip strong {
    font-size: 11px;
  }
}
@media (max-width: 991px) {
  .navbar {
    min-height: 85px;
    gap: 20px;
  }
  .navbar-brand img {
    width: 134px;
    height: 56px;
  }
  .header-actions {
    margin-left: auto;
  }
  .navbar-collapse {
    flex-basis: 100%;
    order: 4;
    padding-bottom: 15px;
  }
  .navbar-nav {
    gap: 0;
  }
  .navbar .nav-link {
    padding: 13px 5px !important;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .navbar .nav-link:after {
    display: none;
  }
  .hero {
    min-height: 620px;
    grid-template-columns: 1.05fr 1fr;
  }
  .hero-copy {
    padding: 48px 24px 29px 32px;
  }
  h1 {
    font-size: 49px;
    letter-spacing: -1.8px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions .button {
    padding: 15px 17px;
    font-size: 12px;
    gap: 13px;
  }
  .hero-note {
    left: 20px;
    right: 20px;
    bottom: 30px;
    padding: 20px;
    gap: 13px;
  }
  .hero-note strong {
    font-size: 19px;
  }
  .note-arrow {
    display: none;
  }
  .note-icon {
    font-size: 27px;
    padding-right: 13px;
  }
  .hero-note div > span {
    font-size: 9px;
  }
  .hero-location {
    font-size: 9px;
    gap: 7px;
  }
  .trust-strip > .container-xl {
    gap: 17px;
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .trust-strip > .container-xl > div {
    gap: 12px;
    justify-content: flex-start;
  }
  .trust-strip i {
    font-size: 24px;
  }
  .trust-strip strong {
    font-size: 10px;
  }
  .trust-strip span:not(.trust-number) {
    font-size: 10px;
  }
  .trust-strip .trust-number {
    font-size: 29px;
  }
  .section {
    padding: 76px 0;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 82px;
  }
  .container-xl {
    padding-left: 24px;
    padding-right: 24px;
  }
  .navbar {
    min-height: 77px;
    gap: 14px;
  }
  .navbar-brand img {
    width: 121px;
    height: 51px;
  }
  .header-actions {
    gap: 0;
  }
  .header-inquiry {
    display: none;
  }
  .header-call {
    font-size: 12px;
    gap: 6px;
  }
  .navbar-toggler {
    font-size: 24px;
    padding: 6px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 43px 24px 31px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.9px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(47px, 11.7vw, 69px);
    line-height: 1.13;
    letter-spacing: -1.8px;
    margin-bottom: 21px;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.85;
    max-width: 460px;
    margin-bottom: 24px;
  }
  .hero-actions {
    gap: 14px;
    width: 100%;
  }
  .hero-actions .button {
    min-height: 53px;
    font-size: 12px;
    gap: 16px;
    padding: 15px 18px;
  }
  .hero-location {
    font-size: 10px;
    padding-top: 23px;
  }
  .hero-visual {
    height: 325px;
    min-height: 325px;
  }
  .hero-image {
    object-position: center 52%;
  }
  .image-tag {
    top: 19px;
    right: 20px;
    font-size: 8px;
  }
  .hero-note {
    bottom: 20px;
    left: 24px;
    right: 24px;
    padding: 18px 21px;
    max-width: 330px;
  }
  .hero-note strong {
    font-size: 20px;
  }
  .hero-note div > span {
    font-size: 9px;
  }
  .note-arrow {
    display: block;
  }
  .trust-strip > .container-xl {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .trust-strip > .container-xl > div {
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid #d6d9cd;
    justify-content: flex-start !important;
    gap: 22px;
  }
  .trust-strip > .container-xl > div:last-child {
    border: 0;
  }
  .trust-strip i {
    width: 76px;
    text-align: center;
    font-size: 27px;
  }
  .trust-strip .trust-number {
    font-size: 33px;
    width: 76px;
  }
  .trust-strip span:not(.trust-number) {
    font-size: 11px;
  }
  .trust-strip strong {
    font-size: 12px;
  }
  .section {
    padding: 65px 0;
  }
  h2 {
    font-size: 37px;
  }
  .site-footer > .container-xl {
    flex-direction: column;
    gap: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Property care */
h2 em {
  font-style: italic;
  color: #6b7964;
}
.section-heading {
  margin-bottom: 45px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 465px;
  margin-bottom: 17px;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.care-item {
  padding: 33px 30px 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.care-item:hover {
  background: #ebece2;
}
.care-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}
.care-top i {
  font-size: 30px;
  color: #536b50;
}
.care-top span {
  font-size: 11px;
  color: #65715c;
  font-variant-numeric: tabular-nums;
}
.care-item h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.4px;
}
.care-item p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  max-width: 310px;
}
.property-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 27px;
  font-size: 12px;
  color: var(--muted);
}
.property-bottom span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.property-bottom span i {
  font-size: 18px;
  color: #697959;
}
.property-bottom a {
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
}
.property-bottom a i {
  margin-left: 12px;
}

/* A quiet coastal interlude; fixed background is desktop only. */
.peace-section {
  padding: 109px 0;
  background-image:
    linear-gradient(90deg, rgba(12, 42, 34, 0.91), rgba(12, 42, 34, 0.53)),
    url("../assets/img/boat.webp");
  background-size: cover;
  background-position: center 57%;
  background-attachment: fixed;
  color: var(--cream);
}
.peace-section h2 {
  font-size: 46px;
  line-height: 1.3;
  max-width: 850px;
  margin-bottom: 31px;
}
.peace-section h2 em {
  color: #d0c4a5;
}
.button-outline {
  border-color: #e5e6d585;
  color: var(--cream);
  background: transparent;
}
.button-outline:hover {
  background: var(--cream);
  color: var(--green);
}

/* Full service information remains available on this one page. */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 32px;
  align-items: start;
}
.service-card {
  background: #fff;
  border: 1px solid #e1e1d7;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.service-card:hover {
  box-shadow: 0 15px 35px #233b2c08;
}
.service-image {
  height: 239px;
  position: relative;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.service-card:hover .service-image img {
  transform: scale(1.035);
}
.service-number {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: var(--cream);
  padding: 7px 12px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.4px;
}
.service-content {
  padding: 29px 30px 25px;
}
.service-content > h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.65px;
  max-width: 425px;
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}
.service-content > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 21px;
  min-height: 72px;
  max-width: 450px;
}
.service-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: #4f6154;
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.service-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 0;
  font-weight: 550;
  color: var(--green);
}
summary i {
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] > summary i {
  transform: rotate(45deg);
}
.service-details > div {
  padding: 0 5px 17px 0;
}
.service-details ul {
  padding-left: 17px;
  margin: 0;
}
.service-details li + li {
  margin-top: 7px;
}
.service-details p {
  margin-bottom: 10px;
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 21px;
}
.service-link i {
  font-size: 20px;
  transition: transform 0.3s;
}
.service-link:hover i {
  transform: translate(3px, -3px);
}

/* About */
.about-section {
  background: #e9ecdf;
}
.about-section .row {
  --bs-gutter-x: 7rem;
}
.about-section p {
  max-width: 490px;
  font-size: 14px;
  line-height: 1.9;
  color: #5a6753;
}
.about-section .about-lead {
  font-size: 18px;
  color: #314d39;
  line-height: 1.6;
  margin-bottom: 21px;
}
.about-section .text-link {
  margin-top: 12px;
}
.principle {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px solid #cbd2bd;
}
.principle > span {
  font-size: 12px;
  color: #5d6d52;
  padding-top: 5px;
}
.principle h3 {
  font-size: 21px;
  font-weight: 550;
  margin-bottom: 9px;
}
.principle p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 17px;
  padding-top: 20px;
  border-top: 1px solid #cbd2bd;
}
.about-signature img {
  width: 112px;
  height: auto;
}
.about-signature span {
  font-size: 11px;
  color: #5d6d52;
  font-style: italic;
}

/* FAQ */
.faq-section .row {
  --bs-gutter-x: 5rem;
}
.faq-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.faq-section .text-link {
  margin-top: 13px;
  color: var(--green);
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  padding: 23px 0;
}
.faq-list details p {
  font-size: 13px;
  padding: 0 25px 6px 0;
}

/* Contact */
.contact-section {
  background: var(--green);
  color: var(--cream);
  padding-top: 90px;
  padding-bottom: 92px;
}
.contact-section .row {
  --bs-gutter-x: 6rem;
}
.contact-section h2 {
  font-size: 56px;
  margin-bottom: 23px;
}
.contact-section h2 em {
  color: #d0bf96;
}
.contact-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #d1ded4;
  margin-bottom: 29px;
}
.contact-links {
  max-width: 430px;
}
.contact-links > a {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 19px 0;
  border-top: 1px solid #d3ddce2b;
}
.contact-icon {
  width: 39px;
  font-size: 23px;
  color: #c3b88d;
}
.contact-links small {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #bacbbf;
  display: block;
  margin-bottom: 3px;
}
.contact-links strong {
  font-size: 19px;
  font-weight: 450;
  color: var(--cream);
}
.contact-links > a > i {
  margin-left: auto;
  font-size: 18px;
  color: #c3b88d;
}
.contact-links .address-text {
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.map-label {
  display: block;
  color: #d4c295;
  font-size: 11px;
  margin-top: 8px;
}
.contact-form {
  background: var(--cream);
  color: var(--green);
  padding: 35px 36px;
  border-radius: 3px;
}
.form-eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.3px;
  color: #596b4f;
  margin-bottom: 16px;
}
.form-eyebrow i {
  font-size: 18px;
}
.contact-form h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.7px;
  margin-bottom: 25px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  font-size: 12px;
  font-weight: 550;
  display: block;
  margin-bottom: 8px;
}
.form-field label span {
  color: #65715e;
  font-weight: 400;
  font-size: 10px;
}
.form-control,
.form-select {
  background-color: #fffefb;
  border: 1px solid #d5d9ca;
  border-radius: 2px;
  padding: 12px 13px;
  font-size: 13px;
  min-height: 47px;
  color: var(--ink);
}
.form-select {
  padding-right: 34px;
}
.form-control::placeholder {
  color: #697361;
  font-size: 12px;
  opacity: 1;
}
.form-control:focus,
.form-select:focus {
  border-color: #677f63;
  box-shadow: 0 0 0 3px #6d815e20;
  background-color: #fff;
}
textarea.form-control {
  min-height: 103px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  gap: 12px;
  margin-top: 3px;
  font-size: 13px;
}
.form-submit > i:last-child {
  margin-left: auto;
}
.form-note {
  font-size: 10px;
  color: #67715e;
  text-align: center;
  line-height: 1.7;
  margin: 13px auto 0;
  max-width: 330px;
}
.form-feedback {
  font-size: 12px;
  background: #e7ebda;
  padding: 13px;
  margin: 14px 0 0;
  border-left: 2px solid #637653;
}
.form-feedback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer and persistent contact */
.site-footer {
  padding: 39px 0 95px;
  border: 0;
}
.site-footer > .container-xl {
  display: block;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img {
  width: 122px;
  height: auto;
}
.footer-brand > span {
  color: #63725f;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
  font-size: 11px;
  color: #61705e;
}
.footer-bottom > a {
  text-decoration: none;
  display: flex;
  gap: 12px;
}
.floating-contact {
  position: fixed;
  bottom: 23px;
  right: 27px;
  z-index: 1010;
  display: flex;
  background: var(--cream);
  border: 1px solid #dce0d2;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 4px 27px #0b2e2829;
}
.floating-contact a {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 550;
  border-radius: 3px;
}
.floating-contact a:first-child {
  color: var(--green);
}
.floating-contact a:last-child {
  background: var(--green);
  color: #fff;
}
.floating-contact a:last-child:hover {
  background: var(--green-dark);
}
.floating-contact i {
  font-size: 17px;
}
.header-whatsapp {
  padding: 13px 18px;
  gap: 9px;
  min-height: 47px;
  font-size: 13px;
}
[data-aos]:not(.aos-init) {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1199px) {
  .faq-section .row {
    --bs-gutter-x: 4rem;
  }
  .peace-section {
    background-attachment: scroll;
  }
  .about-section .row,
  .contact-section .row {
    --bs-gutter-x: 4rem;
  }
  .care-item {
    padding: 28px 23px;
  }
  .care-item h3 {
    font-size: 22px;
  }
  .service-image {
    height: 212px;
  }
  .service-content {
    padding: 26px;
  }
  .service-content > h3 {
    font-size: 26px;
  }
  .service-content > p {
    min-height: 96px;
  }
  .contact-form {
    padding: 30px 28px;
  }
  .contact-section h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .care-item p {
    max-width: none;
  }
  .peace-section {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .peace-section h2 {
    font-size: 40px;
  }
  .services-grid {
    gap: 25px;
  }
  .service-image {
    height: 185px;
  }
  .service-content {
    padding: 23px;
  }
  .service-content > h3 {
    font-size: 24px;
    min-height: 65px;
  }
  .service-content > p {
    min-height: 144px;
  }
  .service-details summary {
    font-size: 11px;
    gap: 10px;
  }
  .service-link {
    font-size: 11px;
    gap: 10px;
  }
  .about-section .row,
  .contact-section .row,
  .faq-section .row {
    --bs-gutter-x: 1.5rem;
  }
  .about-section p {
    max-width: 660px;
  }
  .about-principles {
    padding-top: 0;
  }
  .contact-section .row {
    --bs-gutter-y: 3rem;
  }
  .contact-links {
    max-width: none;
  }
  .contact-form {
    padding: 35px;
  }
  .contact-section h2 {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  .header-actions {
    gap: 10px;
  }
  .header-call {
    font-size: 0;
    width: 33px;
    height: 40px;
    justify-content: center;
    gap: 0;
  }
  .header-call i {
    font-size: 18px;
  }
  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .header-call:after {
    content: "Poziv";
    font-size: 9px;
    position: absolute;
    transform: translateY(18px);
  }
  .header-whatsapp {
    padding: 9px 11px;
    gap: 6px;
    min-height: 40px;
    font-size: 10px;
  }
  .header-whatsapp i {
    font-size: 16px;
  }
  .section-heading {
    margin-bottom: 31px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .care-grid {
    grid-template-columns: 1fr;
  }
  .care-item {
    padding: 26px;
  }
  .care-top {
    margin-bottom: 16px;
  }
  .care-top i {
    font-size: 27px;
  }
  .care-item h3 {
    font-size: 25px;
  }
  .care-item p {
    font-size: 13px;
  }
  .property-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 11px;
  }
  .property-bottom span {
    align-items: flex-start;
    gap: 10px;
  }
  .property-bottom span i {
    line-height: 1.4;
  }
  .peace-section {
    padding: 70px 0;
    background-position: 35% center;
  }
  .peace-section h2 {
    font-size: 35px;
    line-height: 1.3;
  }
  .peace-section .eyebrow {
    font-size: 9px;
  }
  .peace-section .button {
    font-size: 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-image {
    height: 205px;
  }
  .service-content {
    padding: 25px;
  }
  .service-content > h3 {
    font-size: 28px;
    min-height: 0;
    margin-bottom: 14px;
  }
  .service-content > p {
    min-height: 0;
    font-size: 13px;
  }
  .service-details summary {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
  }
  .about-section .about-lead {
    font-size: 17px;
  }
  .about-section p {
    font-size: 13px;
  }
  .principle {
    gap: 20px;
  }
  .principle h3 {
    font-size: 20px;
  }
  .about-signature {
    gap: 20px;
  }
  .faq-list summary {
    font-size: 14px;
    gap: 20px;
    padding: 22px 0;
  }
  .contact-section {
    padding: 65px 0;
  }
  .contact-section h2 {
    font-size: 43px;
  }
  .contact-intro {
    font-size: 14px;
  }
  .contact-links strong {
    font-size: 18px;
  }
  .contact-form {
    padding: 27px 23px;
  }
  .contact-form h3 {
    font-size: 27px;
  }
  .form-eyebrow {
    font-size: 8px;
    letter-spacing: 0.9px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .footer-brand > span {
    font-size: 11px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 16px;
    font-size: 10px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .site-footer {
    padding: 34px 0 113px;
  }
  .floating-contact {
    left: 24px;
    right: 24px;
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 5px;
    border-radius: 5px;
  }
  .floating-contact a {
    width: 50%;
    padding: 11px;
    font-size: 12px;
  }
}
@media (max-width: 370px) {
  .navbar {
    gap: 10px;
  }
  .navbar-brand img {
    width: 101px;
  }
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-actions {
    gap: 5px;
  }
  .header-whatsapp {
    padding: 8px;
    font-size: 9px;
  }
  .navbar-toggler {
    padding: 5px;
    font-size: 23px;
  }
  .hero-copy {
    padding-left: 20px;
    padding-right: 20px;
  }
  h1 {
    font-size: 44px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 12px;
    gap: 11px;
  }
  .hero-note {
    left: 20px;
    right: 20px;
    padding: 17px;
  }
  .hero-note strong {
    font-size: 19px;
  }
  .note-arrow {
    display: none;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .form-eyebrow {
    font-size: 7px;
  }
  .care-item {
    padding: 24px;
  }
  .floating-contact {
    left: 20px;
    right: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .peace-section {
    background-attachment: scroll;
  }
}
@media (min-width: 768px) and (max-width: 899px) {
  h1 {
    font-size: 42px;
    letter-spacing: -1.6px;
  }
}
