:root {
  --green: #4f5c40;
  --green-dark: #25301f;
  --green-deep: #182014;
  --green-soft: #dfe6d4;
  --green-pale: #eef3e9;

  --cream: #f7f3ea;
  --cream-light: #fffdf8;
  --sand: #e8ddcc;
  --sand-light: #f1eadf;
  --stone: #d8d1c3;

  --clay: #b97854;
  --brown: #4b3d31;
  --text: #5f6658;
  --dark: #1f241c;

  --border: rgba(79, 92, 64, 0.14);
  --shadow: 0 28px 90px rgba(38, 48, 31, 0.12);

  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;

  --font-title: "Marcellus", serif;
  --font-text: "Manrope", sans-serif;

  --container: 1240px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-title);
  color: var(--green-dark);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(42px, 5.2vw, 76px);
}

h2 {
  font-size: clamp(38px, 4.4vw, 66px);
}

h3 {
  font-size: clamp(30px, 3vw, 46px);
}

p {
  font-size: 17px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-title {
  max-width: 850px;
  margin-bottom: 54px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.section-title.center .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-title p {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 18px;
}

/* Section backgrounds */
.section-light {
  background: var(--cream-light);
}

.section-sage {
  background:
    radial-gradient(circle at right top, rgba(79, 92, 64, 0.10), transparent 30%),
    var(--green-pale);
}

.section-cream {
  background:
    linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
}

.section-white {
  background: var(--cream-light);
}

.section-dark {
  background: var(--green-deep);
}

.section-contact {
  background:
    radial-gradient(circle at left bottom, rgba(79, 92, 64, 0.16), transparent 32%),
    var(--sand-light);
}

/* Buttons */
.btn,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(79, 92, 64, 0.26);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(79, 92, 64, 0.22);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--green-dark);
}

.btn.full {
  width: 100%;
}

/* Image placeholders */
.media-frame {
  position: relative;
  overflow: hidden;
  background: #dfe6d4;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  text-align: center;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(79, 92, 64, 0.08) 25%, transparent 25%) -10px 0 / 20px 20px,
    linear-gradient(225deg, rgba(79, 92, 64, 0.08) 25%, transparent 25%) -10px 0 / 20px 20px,
    linear-gradient(315deg, rgba(79, 92, 64, 0.08) 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(45deg, rgba(79, 92, 64, 0.08) 25%, #edf3e7 25%) 0 0 / 20px 20px;
}

.img-placeholder strong {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.img-placeholder span {
  font-size: 13px;
  font-weight: 700;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 22px 0;
  transition: 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(79, 92, 64, 0.1);
}

.header-inner {
  min-height: 74px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(38, 48, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 270px;
  max-height: 58px;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-family: var(--font-title);
  color: var(--green);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--clay);
}

.header-cta {
  color: #fff;
  background: var(--green);
}

.header-cta:hover {
  background: var(--green-dark);
}

.menu-button {
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
}

.menu-button span {
  width: 21px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

.menu-button.active span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 48, 31, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  gap: 22px;
  text-align: center;
}

.mobile-menu a {
  color: #fff;
  font-family: var(--font-title);
  font-size: 44px;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  padding: 155px 0 80px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(79, 92, 64, 0.14), transparent 30%),
    linear-gradient(135deg, #f9f5ed 0%, #fffaf1 45%, #edf2e8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 62px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy p {
  max-width: 600px;
  margin-top: 24px;
  font-size: 18px;
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-frame {
  width: 100%;
  height: 620px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-floating-card {
  position: absolute;
  left: -32px;
  bottom: 58px;
  width: min(330px, 82%);
  padding: 26px;
  border-radius: 26px;
  color: #fff;
  background: rgba(79, 92, 64, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(38, 48, 31, 0.28);
}

.hero-floating-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 400;
}

.hero-small-img {
  position: absolute;
  right: -28px;
  top: 46px;
  width: 230px;
  height: 160px;
  padding: 8px;
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.75);
  box-shadow: 0 18px 54px rgba(38, 48, 31, 0.16);
  backdrop-filter: blur(12px);
}

.hero-small-img img,
.hero-small-img .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Quick Info */
.quick-info {
  padding: 85px 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quick-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(38, 48, 31, 0.06);
}

.quick-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 800;
  font-size: 13px;
}

.quick-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
}

.quick-card p {
  font-size: 15px;
}

/* Project */
.project-section {
  padding: 100px 0;
}

.project-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.project-image {
  min-height: 580px;
  border-radius: 32px;
}

.project-content {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-content h3 {
  margin-bottom: 22px;
}

.project-content p {
  margin-bottom: 18px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 800;
}

/* Typologies */
.typologies-section {
  padding: 110px 0;
}

.villa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 34px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--cream-light);
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(38, 48, 31, 0.08);
}

.villa-row.reverse .villa-image {
  order: 2;
}

.villa-image {
  min-height: 520px;
  border-radius: 32px;
}

.villa-image img {
  transition: 0.6s ease;
}

.villa-row:hover .villa-image img {
  transform: scale(1.04);
}

.villa-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-kicker {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.villa-content h3 {
  margin-bottom: 20px;
}

.villa-content p {
  margin-bottom: 24px;
}

.villa-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  list-style: none;
}

.villa-list li {
  position: relative;
  padding-left: 28px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 15px;
}

.villa-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.villa-link {
  width: fit-content;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: 0.3s ease;
}

.villa-link:hover {
  color: var(--clay);
}

/* Gallery Preview */
.gallery-preview {
  padding: 110px 0;
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-header p {
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.gallery-item {
  height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(38, 48, 31, 0.09);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  height: 420px;
  margin-top: 70px;
}

/* Position */
.position-section {
  padding: 105px 0;
}

.position-box {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.position-content {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.position-content h2 {
    color: #fff;
    font-size: 50px;
}


.position-content p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.position-content .eyebrow {
  color: var(--sage);
}

.position-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.position-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.position-points strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
}

.position-points span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.position-image {
  min-height: 560px;
  border-radius: 32px;
}

/* Contact */
.contact-section {
  padding: 110px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-copy {
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--sand);
}

.contact-copy h2 {
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.08;
}

.contact-copy p {
  margin-top: 22px;
}

.contact-form {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: var(--cream-light);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: none;
  color: var(--green-dark);
  background: #fbf8f0;
  transition: 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 6px 0 22px;
}

.privacy input {
  margin-top: 5px;
  accent-color: var(--green);
}

.privacy label {
  font-size: 13px;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.footer-logo img {
    width: 250px;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
  display: none;
  color: #fff;
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 1;
}

.footer-inner h3 {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-inner a {
  display: block;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.footer-inner a:hover,
.footer-bottom a:hover {
  color: var(--green-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  font-size: 13px;
}

.footer-bottom a {
  color: #fff;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 45px rgba(38, 48, 31, 0.24);
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* Form */
button[type='submit'] {
    margin-top: 1rem;
}
.alert {
    padding: 1rem;
    border: 1px solid #e7e0e1;
    position: relative;
    border-radius: 0.375rem;
}
.alert-danger {
    color: #58151c;
    background-color: #f8d7da;
    border-color: #f1aeb5;
}
.alert-success {
    color: #0a3622;
    background-color: #d1e7dd;
    border-color: #a3cfbb;
}
/** Fine Footer **/

/* Badge unità disponibili sulle foto tipologie */
.villa-preview-media,
.typology-card-media,
.type-card-media,
.home-type-media {
  position: relative;
}

.availability-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 35px rgba(38, 48, 31, 0.28));
  transform: rotate(6deg);
}

.availability-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.availability-badge svg path {
  fill: #ca1111;
}

.availability-badge::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.availability-badge-text {
  position: relative;
  z-index: 2;
  width: 88px;
  text-align: center;
  color: #fff;
  transform: rotate(-6deg);
}

.availability-badge-text span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-badge-text strong {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 46px;
  line-height: 0.9;
  font-weight: 400;
}

/* Variante più chiara se la foto è molto scura */
.availability-badge.light svg path {
  fill: #d9c8a4;
}

.availability-badge.light .availability-badge-text,
.availability-badge.light .availability-badge-text strong {
  color: var(--green-dark);
}

.availability-badge.light .availability-badge-text span {
  color: rgba(37, 48, 31, 0.78);
}

.footer-bottom a {
    font-size: 17px;
}

/* Responsive */
@media (max-width: 1160px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .project-box,
  .position-box,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-main-frame {
    height: 560px;
  }

  .quick-info-grid {
    grid-template-columns: 80%;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    align-content: start;

  }

  .gallery-header {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding: 130px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-main-frame {
    height: 450px;
    border-radius: 30px;
  }

  .hero-floating-card {
    left: 18px;
    bottom: 18px;
  }

  .hero-small-img {
    display: none;
  }

  .quick-info,
  .project-section,
  .typologies-section,
  .gallery-preview,
  .position-section,
  .contact-section {
    padding: 40px 0;
  }

  .project-content,
  .villa-content,
  .position-content,
  .contact-copy,
  .contact-form {
    padding: 32px;
  }

  .project-image,
  .villa-image,
  .position-image {
    min-height: 380px;
  }

  .villa-row,
  .villa-row.reverse {
    grid-template-columns: 1fr;
  }

  .villa-row.reverse .villa-image {
    order: 0;
  }

  .gallery-grid {
    grid-template-columns: 80%;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    align-content: start;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    height: 340px;
    margin-top: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
        gap: 8px;
    }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 230px;
  }

  .brand-fallback {
    font-size: 26px;
  }

  .hero-main-frame {
    height: 380px;
  }

  .hero-floating-card {
    width: calc(100% - 36px);
  }

  .quick-card,
  .project-content,
  .villa-content,
  .contact-copy,
  .contact-form {
    padding: 26px;
  }
  .position-content {
    padding: 26px 13px;
  }

  .project-box,
  .villa-row,
  .position-box {
    padding: 12px;
    border-radius: 30px;
  }

  .project-image,
  .villa-image,
  .position-image {
    border-radius: 22px;
  }

  .mobile-menu a {
    font-size: 38px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
   .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner h3 {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .footer-inner a,
  .footer-inner p {
    font-size: 14px;
  }
}

.footer-heart {
    color: #d92727;
    margin: 0 4px;
}