/* Belluni Clean — website one-page v2 */

:root {
  --bg: #fbfaf6;
  --bg-soft: #f3efe6;
  --white: #ffffff;
  --ink: #25302f;
  --muted: #65716e;
  --line: rgba(37, 48, 47, 0.12);
  --gold: #c8a96a;
  --gold-dark: #9a7b3d;
  --sage: #8fa79a;
  --sage-dark: #536b61;
  --shadow: 0 24px 70px rgba(37, 48, 47, 0.10);
  --shadow-soft: 0 14px 34px rgba(37, 48, 47, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(143, 167, 154, 0.22), transparent 28rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img {
  max-width: 100%;
  display: block;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 5.8rem); }

h2 { font-size: clamp(2rem, 4vw, 3.6rem); }

h3 { font-size: 1.25rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 96px 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--gold));
  box-shadow: 0 10px 24px rgba(154, 123, 61, 0.22);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
}

.brand strong,
.brand small { display: block; }

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: -2px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(143, 167, 154, 0.14);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--ink);
  padding-inline: 18px;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--sage-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  padding: 80px 0 104px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-lead {
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  max-width: 760px;
}

.hero-signature {
  display: inline-block;
  margin: 10px 0 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(143, 167, 154, 0.14);
  color: var(--sage-dark);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--ink));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(37, 48, 47, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 660px;
  gap: 12px;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(37, 48, 47, 0.04);
}

.trust-row strong,
.trust-row span { display: block; }

.trust-row strong { font-size: 1.02rem; }

.trust-row span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(243,239,230,0.84));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
}

.hero-photo-card > img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
  background: linear-gradient(135deg, #e8dfcd, #a8baaf);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 18px 18px 96px;
  border-radius: 26px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(37,48,47,0.03), rgba(37,48,47,0.52));
}

.photo-overlay-card {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 120px;
  z-index: 3;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(37,48,47,0.16);
}

.room-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(200,169,106,0.16);
  color: var(--gold-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.photo-overlay-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.photo-overlay-card p { margin-bottom: 0; }

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mini-cards div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}

.mini-cards span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.78rem;
}

.mini-cards p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.reversed {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
}

.two-col p { font-size: 1.04rem; }

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sage-dark);
  font-weight: 900;
  border-bottom: 2px solid rgba(143,167,154,0.42);
}

.feature-panel {
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.photo-feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, #f3efe6, #8fa79a);
}

.feature-content {
  padding: 30px 34px 34px;
}

.feature-panel h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(143,167,154,0.16);
  color: var(--sage-dark);
  font-weight: 900;
  font-size: 0.8rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.services-section {
  background: rgba(255,255,255,0.44);
  border-block: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(37,48,47,0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--ink), var(--sage-dark));
}

.service-card.featured h3,
.service-card.featured p { color: var(--white); }

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  background: rgba(200,169,106,0.16);
  font-size: 1.35rem;
  font-weight: 900;
}

.featured .service-icon {
  color: var(--white);
  background: rgba(255,255,255,0.14);
}

.service-card h3 { margin-bottom: 12px; }

.service-card p { margin-bottom: 0; }

.image-card {
  min-height: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #ece2ce 42%, #8fa79a);
}

.real-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffffff, #8fa79a);
}

.real-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,48,47,0.02), rgba(37,48,47,0.32));
  pointer-events: none;
}

.quote-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.benefits-grid div {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-section h2,
.process-section h3 { color: var(--white); }

.process-section p { color: rgba(255,255,255,0.72); }

.process-section .eyebrow { color: var(--gold); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  border-radius: 16px;
  background: rgba(200,169,106,0.18);
  color: var(--gold);
  font-weight: 900;
}

.process-step h3 { margin-bottom: 10px; }

.process-step p { margin-bottom: 0; }

.areas-box {
  padding: 38px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(243,239,230,0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 750;
  color: var(--sage-dark);
}

.quote-section { padding-top: 70px; }

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 54px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 420px;
}

.contact-cards a {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(37,48,47,0.045);
}

.contact-cards span,
.contact-cards strong { display: block; }

.contact-cards span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-cards strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.quote-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 16px; }

.two-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fffdf9;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(143,167,154,0.75);
  box-shadow: 0 0 0 4px rgba(143,167,154,0.14);
}

.form-note {
  min-height: 24px;
  margin: 4px 0 14px;
  color: #a54545;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-note.success { color: var(--sage-dark); }

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.cta-section { padding: 0 0 96px; }

.cta-box {
  border-radius: var(--radius-xl);
  padding: 42px;
  background: linear-gradient(135deg, var(--sage-dark), var(--ink));
  color: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-box h2,
.cta-box p { color: var(--white); }

.cta-box p {
  opacity: 0.78;
  max-width: 760px;
}

.cta-box .eyebrow { color: var(--gold); }

.footer {
  padding: 58px 0 26px;
  background: #1c2423;
  color: var(--white);
}

.footer p,
.footer a,
.footer small { color: rgba(255,255,255,0.72); }

.footer a:hover { color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr;
  gap: 38px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-brand { margin-bottom: 16px; }

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #092314;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.30);
}

.floating-whatsapp::before {
  content: "✆";
  margin-right: 8px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .section { padding: 72px 0; }

  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .two-col,
  .reversed,
  .quote-grid,
  .areas-box {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-card { max-width: 620px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }

  .section,
  .hero { padding: 58px 0; }

  .nav { min-height: 70px; }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  h1 { font-size: clamp(2.35rem, 12vw, 4rem); }

  h2 { font-size: clamp(1.85rem, 9vw, 3rem); }

  .hero-actions,
  .btn { width: 100%; }

  .trust-row,
  .services-grid,
  .process-grid,
  .benefits-grid,
  .two-fields,
  .mini-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-card > img { height: 420px; }

  .photo-overlay-card {
    left: 32px;
    right: 32px;
    bottom: 142px;
    padding: 20px;
  }

  .photo-overlay-card h2 { font-size: 1.28rem; }

  .feature-content,
  .quote-form,
  .areas-box,
  .cta-box {
    padding: 24px;
    border-radius: 24px;
  }

  .photo-feature img { height: 220px; }

  .service-card { min-height: auto; }

  .image-card,
  .real-image-card img { min-height: 430px; height: 430px; }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp span { display: none; }

  .floating-whatsapp {
    width: 56px;
    padding: 0;
  }

  .floating-whatsapp::before { margin-right: 0; }
}
