:root {
  --ib-ink: #262626;
  --ib-copy: #3c3c3c;
  --ib-accent: #00857a;
  --ib-accent-dark: #006d64;
  --ib-paper: #ffffff;
  --ib-soft: #f4f4f4;
  --ib-line: #e5e5e5;
  --ib-muted: #7e7e7e;
  --ib-max-width: 1280px;
  --ib-section-space: 96px;
  --ib-gap: 24px;
  --ib-radius: 3px;
  --ib-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  --ib-transition: 250ms ease;
  --ib-font-body: "Open Sans", Arial, sans-serif;
  --ib-font-heading: "Lora", Georgia, serif;
  --ib-font-ui: "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ib-site {
  margin: 0;
  color: var(--ib-copy);
  background: var(--ib-paper);
  font-family: var(--ib-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.ib-site a {
  color: inherit;
  text-decoration: none;
}

body.ib-site img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.ib-site h1,
body.ib-site h2,
body.ib-site h3,
body.ib-site h4,
body.ib-site h5,
body.ib-site h6 {
  margin: 0 0 .45em;
  color: var(--ib-ink);
  font-family: var(--ib-font-heading);
  font-weight: 400;
  line-height: 1.16;
}

body.ib-site h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

body.ib-site h2 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
}

body.ib-site h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

body.ib-site p {
  margin: 0 0 1.15em;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  background: var(--ib-paper);
  color: var(--ib-ink);
  box-shadow: var(--ib-shadow);
}

:focus-visible {
  outline: 2px solid var(--ib-accent);
  outline-offset: 4px;
}

.ib-shell {
  width: min(calc(100% - 48px), var(--ib-max-width));
  margin-inline: auto;
}

.ib-main {
  min-height: 54vh;
}

.ib-content {
  padding-block: var(--ib-section-space);
}

.ib-eyebrow,
.ib-kicker,
.elementor .ib-eyebrow .elementor-heading-title {
  color: var(--ib-ink);
  font-family: var(--ib-font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ib-accent {
  color: var(--ib-accent);
}

.ib-button,
.elementor .ib-button .elementor-button,
.wp-element-button,
body.ib-site button[type="submit"] {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 38px;
  border: 1px solid var(--ib-ink);
  border-radius: 0;
  color: #fff;
  background: var(--ib-ink);
  font-family: var(--ib-font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ib-transition), background var(--ib-transition), border-color var(--ib-transition), transform var(--ib-transition);
}

body.ib-site a.ib-button {
  color: #fff;
}

.ib-button:hover,
.elementor .ib-button .elementor-button:hover,
.wp-element-button:hover,
body.ib-site button[type="submit"]:hover {
  color: #fff;
  background: var(--ib-accent);
  border-color: var(--ib-accent);
  transform: translateY(-2px);
}

.ib-button.ib-button-light {
  color: var(--ib-ink);
  background: #fff;
  border-color: #fff;
}

.ib-button.ib-button-outline {
  color: var(--ib-ink);
  background: transparent;
}

body.ib-site a.ib-button.ib-button-light,
body.ib-site a.ib-button.ib-button-outline {
  color: var(--ib-ink);
}

body.ib-site a.ib-button:hover {
  color: #fff;
}

/* Header */
.ib-topbar {
  color: #fff;
  background: var(--ib-ink);
}

.ib-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-family: var(--ib-font-heading);
  font-size: 12px;
  text-transform: uppercase;
}

.ib-topbar a:hover {
  color: #cfe7e4;
}

.ib-site-header {
  position: relative;
  z-index: 100;
  background: #fff;
}

.ib-header-main {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.ib-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.ib-logo img,
.ib-brand-logo,
.custom-logo {
  width: auto;
  max-width: 112px;
  max-height: 72px;
  object-fit: contain;
}

.ib-wordmark {
  display: inline-flex;
  flex-direction: column;
  padding: 4px 7px;
  border: 3px solid var(--ib-ink);
  color: var(--ib-ink);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: .92;
  text-align: center;
  text-transform: lowercase;
}

.ib-wordmark small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .5px;
}

.ib-primary-nav {
  flex: 1;
}

.ib-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.9vw, 42px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.ib-nav-list a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--ib-font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.ib-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--ib-accent);
  transition: right var(--ib-transition);
}

.ib-nav-list a:hover::after,
.ib-nav-list .current-menu-item > a::after {
  right: 0;
}

.ib-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.ib-nav-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--ib-ink);
  transition: transform var(--ib-transition), opacity var(--ib-transition);
}

.ib-nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ib-nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.ib-nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Elementor global classes used by the starter templates */
.elementor .ib-section,
.ib-section {
  padding-block: var(--ib-section-space);
}

.elementor .ib-section-soft,
.ib-section-soft {
  background: var(--ib-soft);
}

.elementor .ib-section-dark,
.ib-section-dark {
  color: #fff;
  background: var(--ib-ink);
}

.elementor .ib-section-dark h1,
.elementor .ib-section-dark h2,
.elementor .ib-section-dark h3,
.ib-section-dark h1,
.ib-section-dark h2,
.ib-section-dark h3 {
  color: #fff;
}

.elementor .ib-hero {
  min-height: min(760px, calc(100vh - 130px));
  overflow: hidden;
}

.elementor .ib-hero-copy {
  position: relative;
  z-index: 2;
  padding: 72px 0 72px clamp(24px, 5vw, 88px);
}

.elementor .ib-hero-title .elementor-heading-title {
  max-width: 660px;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 1.04;
}

.elementor .ib-hero-image,
.elementor .ib-hero-image .elementor-widget-container,
.elementor .ib-hero-image img {
  min-height: 620px;
  height: 100%;
}

.elementor .ib-hero-image img {
  width: 100%;
  object-fit: cover;
}

.elementor .ib-split-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.elementor .ib-number .elementor-heading-title {
  color: var(--ib-accent);
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.elementor .ib-centered-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.elementor .ib-rule .elementor-divider-separator {
  width: 100px;
  border-color: var(--ib-accent);
}

.elementor .ib-image-card {
  position: relative;
  overflow: hidden;
}

.elementor .ib-image-card img {
  transition: transform var(--ib-transition);
}

.elementor .ib-image-card:hover img {
  transform: scale(1.04);
}

/* Content and footer */
.ib-archive-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.ib-post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 28px;
}

.ib-post-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 24px;
}

.ib-post-card h2 {
  font-size: 2rem;
}

.ib-single-post {
  max-width: 940px;
  margin-inline: auto;
}

.ib-featured-image {
  margin: 46px 0;
}

.ib-entry-content {
  max-width: 780px;
  font-size: 17px;
}

.ib-error-page {
  max-width: 900px;
  padding-block: 150px;
  text-align: center;
}

.ib-site-footer {
  margin-top: 0;
  color: #d6d6d6;
  background: var(--ib-ink);
}

.ib-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.ib-footer-cta h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.ib-footer-cta p {
  max-width: 720px;
}

.ib-footer-bottom {
  padding: 38px 0 52px;
  font-size: 13px;
}

.ib-footer-bottom a:hover {
  color: #fff;
}

.ib-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  list-style: none;
  font-family: var(--ib-font-ui);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* Elementor header/footer starter templates */
.elementor .ib-elementor-header {
  position: relative;
  z-index: 100;
}

.elementor .ib-elementor-topbar {
  min-height: 38px;
  color: #fff;
  background: var(--ib-ink);
}

.elementor .ib-elementor-header-main {
  min-height: 92px;
  background: #fff;
}

.elementor .ib-elementor-footer {
  color: #d6d6d6;
  background: var(--ib-ink);
}

@media (max-width: 1023px) {
  :root {
    --ib-section-space: 64px;
  }

  .ib-header-main {
    min-height: 78px;
  }

  .ib-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .ib-primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 24px;
    background: #fff;
    box-shadow: var(--ib-shadow);
  }

  .ib-primary-nav.is-open {
    display: block;
  }

  .ib-nav-list {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .ib-nav-list a {
    width: 100%;
    min-height: 48px;
  }

  .elementor .ib-hero {
    min-height: auto;
  }

  .elementor .ib-hero-copy {
    padding: 56px 32px;
  }

  .elementor .ib-hero-image,
  .elementor .ib-hero-image .elementor-widget-container,
  .elementor .ib-hero-image img {
    min-height: 460px;
  }

  .ib-post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --ib-section-space: 48px;
    --ib-gap: 18px;
  }

  .ib-shell {
    width: min(calc(100% - 32px), var(--ib-max-width));
  }

  .ib-topbar-inner {
    min-height: 34px;
    justify-content: center;
    font-size: 9px;
    letter-spacing: .2px;
  }

  .ib-header-main {
    gap: 18px;
  }

  .ib-logo img,
  .ib-brand-logo,
  .custom-logo {
    max-width: 88px;
    max-height: 58px;
  }

  .elementor .ib-hero-copy {
    padding: 42px 22px;
  }

  .elementor .ib-hero-image,
  .elementor .ib-hero-image .elementor-widget-container,
  .elementor .ib-hero-image img {
    min-height: 340px;
  }

  .elementor .ib-split-image img {
    min-height: 340px;
  }

  .ib-post-list {
    grid-template-columns: 1fr;
  }

  .ib-footer-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
  }

  .ib-footer-cta .ib-button {
    width: 100%;
  }

  .ib-footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Faithful editorial direction: inspired by the reference site while keeping
 * the catalog structure and every Elementor block independently editable. */
body.ib-site .elementor .ib-elementor-header-main {
  min-height: 118px;
  padding-inline: clamp(24px, 6vw, 96px);
  border: 0;
  box-shadow: none;
}

body.ib-site .elementor .ib-elementor-header-main .elementor-nav-menu--main {
  margin-left: auto;
}

body.ib-site .elementor .ib-elementor-header-main .elementor-nav-menu--main .elementor-item {
  min-height: 72px;
  padding-inline: clamp(12px, 1.5vw, 24px);
}

body.ib-site .elementor .ib-hero {
  min-height: min(720px, calc(100vh - 156px));
  background: #fff;
}

body.ib-site .elementor .ib-hero-copy {
  align-items: center;
  padding: 78px clamp(36px, 5vw, 92px);
  text-align: center;
}

body.ib-site .elementor .ib-hero-copy .elementor-widget-text-editor {
  max-width: 620px;
  margin-inline: auto;
}

body.ib-site .elementor .ib-hero-copy > .e-con-inner,
body.ib-site .elementor .ib-hero-copy > .elementor-element {
  width: 100%;
}

body.ib-site .elementor .ib-hero-title .elementor-heading-title {
  margin-inline: auto;
}

body.ib-site .elementor .ib-hero-copy .e-con.e-child {
  justify-content: center;
}

body.ib-site .elementor .ib-hero-media,
body.ib-site .elementor .ib-hero-image,
body.ib-site .elementor .ib-hero-image .elementor-widget-container,
body.ib-site .elementor .ib-hero-image img {
  min-height: min(720px, calc(100vh - 156px));
}

body.ib-site .elementor .ib-hero-image img {
  object-position: center center;
}

body.ib-site .elementor .ib-section {
  padding-block: clamp(78px, 8vw, 120px);
}

body.ib-site .elementor .ib-section-soft {
  background: #f6f6f6;
}

body.ib-site .elementor .ib-section > .e-con-inner {
  width: min(calc(100% - 48px), 1280px);
}

body.ib-site .elementor .ib-section h2.elementor-heading-title,
body.ib-site .elementor .ib-home-room h2.elementor-heading-title {
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 1.2;
}

body.ib-site .elementor .ib-home-style-card h3.elementor-heading-title {
  margin-top: 28px;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.3;
}

body.ib-site .elementor .ib-home-style-card {
  padding: 0 0 64px;
  text-align: center;
}

body.ib-site .elementor .ib-home-style-card .elementor-button {
  margin-top: 16px;
}

body.ib-site .elementor .ib-home-room {
  padding-block: 0;
}

body.ib-site .elementor .ib-home-room .ib-split-image img {
  min-height: 620px;
}

body.ib-site .elementor .ib-number .elementor-heading-title {
  color: #262626;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
}

body.ib-site .elementor .ib-final-cta {
  text-align: center;
}

@media (max-width: 1023px) {
  body.ib-site .elementor .ib-elementor-header-main {
    min-height: 88px;
    padding-inline: 24px;
  }

  body.ib-site .elementor .ib-hero-copy {
    padding: 64px 34px;
  }

  body.ib-site .elementor .ib-hero,
  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-image,
  body.ib-site .elementor .ib-hero-image .elementor-widget-container,
  body.ib-site .elementor .ib-hero-image img {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-hero-copy {
    align-items: flex-start;
    padding: 52px 22px;
    text-align: left;
  }

  body.ib-site .elementor .ib-hero-title .elementor-heading-title {
    margin-inline: 0;
  }

  body.ib-site .elementor .ib-hero-copy .e-con.e-child {
    justify-content: flex-start;
  }

  body.ib-site .elementor .ib-section > .e-con-inner {
    width: min(calc(100% - 32px), 1280px);
  }

  body.ib-site .elementor .ib-home-room .ib-split-image img {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Visual alignment with ilborgoarredamenti.it.
 * These selectors intentionally outrank Elementor Site Settings so imported
 * content keeps the reference typography without locking Elementor editing.
 */
body.ib-site,
body.ib-site .elementor-widget-text-editor,
body.ib-site .elementor-widget-text-editor p {
  color: #3c3c3c;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

body.ib-site .elementor .elementor-heading-title,
body.ib-site .elementor h1.elementor-heading-title,
body.ib-site .elementor h2.elementor-heading-title,
body.ib-site .elementor h3.elementor-heading-title {
  color: #262626;
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.ib-site .elementor .ib-hero-title .elementor-heading-title {
  max-width: 660px;
  color: #262626;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(46px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

body.ib-site .elementor .ib-eyebrow .elementor-heading-title,
body.ib-site .elementor .ib-kicker .elementor-heading-title {
  color: #262626;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.ib-site .elementor .elementor-button,
body.ib-site .elementor .ib-button .elementor-button {
  min-height: 54px;
  border-radius: 0;
  color: #fff;
  background: #262626;
  border-color: #262626;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

body.ib-site .elementor .ib-button-outline .elementor-button {
  color: #262626;
  background: transparent;
}

body.ib-site .elementor .elementor-nav-menu a,
body.ib-site .elementor .elementor-nav-menu--main .elementor-item,
body.ib-site .elementor .ib-elementor-header a {
  color: #262626;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* Institutional restyling 2026 */
body.ib-site {
  overflow-x: hidden;
}

body.ib-site.admin-bar .ib-elementor-header {
  top: 32px;
}

.ib-shortcode-nav {
  width: 100%;
}

.ib-shortcode-nav .ib-nav-list {
  gap: clamp(14px, 1.6vw, 28px);
}

.ib-nav-list > li {
  position: relative;
}

.ib-nav-list .menu-item-has-children > a {
  gap: 7px;
}

.ib-nav-list .menu-item-has-children > a::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  order: 2;
}

.ib-nav-list .sub-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% - 2px);
  left: -22px;
  min-width: 230px;
  padding: 14px 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  transform: translateY(8px);
  transition: opacity var(--ib-transition), transform var(--ib-transition), visibility var(--ib-transition);
}

.ib-nav-list .sub-menu a {
  display: flex;
  width: 100%;
  min-height: 40px;
  padding: 8px 22px;
  white-space: nowrap;
}

.ib-nav-list .sub-menu a::after {
  display: none;
}

.ib-nav-list .sub-menu a:hover {
  color: var(--ib-accent);
}

.ib-nav-list li:hover > .sub-menu,
.ib-nav-list li:focus-within > .sub-menu,
.ib-nav-list li.is-submenu-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.elementor .ib-hero .ib-hero-copy .elementor-widget-text-editor p {
  max-width: 570px;
  margin-inline: auto;
  font-size: 16px;
}

.elementor .ib-hero-actions {
  margin-top: 14px;
}

.elementor .ib-network-intro {
  position: relative;
  color: #fff;
  background: var(--ib-ink);
  text-align: center;
}

.elementor .ib-network-intro .elementor-heading-title,
.elementor .ib-network-intro .elementor-widget-text-editor,
.elementor .ib-network-intro .elementor-widget-text-editor p {
  color: #fff;
}

.elementor .ib-network-intro h2.elementor-heading-title {
  max-width: 980px;
  margin-inline: auto;
}

.elementor .ib-network-intro .elementor-widget-text-editor {
  max-width: 700px;
  margin-inline: auto;
}

.elementor .ib-network-intro .elementor-button {
  color: var(--ib-ink);
  background: #fff;
  border-color: #fff;
}

.elementor .ib-network-count .elementor-heading-title {
  color: rgba(255, 255, 255, .16);
  font-size: clamp(82px, 12vw, 170px);
  line-height: .8;
}

.elementor .ib-home-styles {
  padding: clamp(64px, 7vw, 108px) max(24px, calc((100vw - 1280px) / 2));
  gap: clamp(22px, 3vw, 46px) !important;
}

.elementor .ib-home-style-card {
  overflow: hidden;
  background: #fff;
}

.elementor .ib-home-style-card .ib-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.elementor .ib-home-style-card > .e-con-inner,
.elementor .ib-home-style-card.e-con {
  align-items: center;
}

.elementor .ib-home-style-card .elementor-widget-heading,
.elementor .ib-home-style-card .elementor-widget-text-editor,
.elementor .ib-home-style-card .elementor-widget-button {
  width: min(calc(100% - 42px), 530px);
}

.elementor .ib-room-copy {
  padding: clamp(46px, 6vw, 88px);
}

.elementor .ib-room-copy .elementor-widget-text-editor {
  max-width: 470px;
}

.elementor .ib-process {
  text-align: center;
}

.elementor .ib-process-intro {
  max-width: 760px;
  margin-inline: auto;
}

.elementor .ib-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--ib-line);
  border-left: 1px solid var(--ib-line);
}

.elementor .ib-process-card {
  min-height: 290px;
  padding: 38px;
  align-content: start;
  border-right: 1px solid var(--ib-line);
  border-bottom: 1px solid var(--ib-line);
  background: #fff;
  text-align: left;
}

.elementor .ib-process-card .ib-number .elementor-heading-title {
  color: var(--ib-accent);
  font-size: 13px;
}

.elementor .ib-process-card h3.elementor-heading-title {
  font-size: 29px;
}

.elementor .ib-brand-section {
  overflow: hidden;
  text-align: center;
}

.elementor .ib-brand-intro {
  max-width: 720px;
  margin-inline: auto;
}

.elementor .ib-brand-carousel {
  position: relative;
  width: 100%;
  margin-top: 44px;
}

.elementor .ib-brand-track > .e-con-inner,
.elementor .ib-brand-track.e-con {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.elementor .ib-brand-track::-webkit-scrollbar,
.elementor .ib-brand-track > .e-con-inner::-webkit-scrollbar {
  display: none;
}

.elementor .ib-brand-card {
  flex: 0 0 20%;
  min-width: 210px;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--ib-line);
  border-right: 0;
  background: #fff;
  scroll-snap-align: start;
}

.elementor .ib-brand-card:last-child {
  border-right: 1px solid var(--ib-line);
}

.elementor .ib-brand-card .elementor-widget-container,
.elementor .ib-brand-card a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.elementor .ib-brand-card img {
  width: 100%;
  max-width: 155px;
  max-height: 76px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .76;
  transition: filter var(--ib-transition), opacity var(--ib-transition), transform var(--ib-transition);
}

.elementor .ib-brand-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.ib-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.ib-carousel-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ib-ink);
  color: var(--ib-ink);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.ib-carousel-button:hover {
  color: #fff;
  background: var(--ib-ink);
}

.elementor .ib-news-section {
  text-align: center;
}

.ib-latest-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 42px;
  text-align: left;
}

.ib-latest-post {
  background: #fff;
}

.ib-latest-post-image {
  display: block;
  overflow: hidden;
  background: #e9e9e9;
}

.ib-latest-post-image img,
.ib-latest-post-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--ib-transition);
}

.ib-latest-post:hover .ib-latest-post-image img {
  transform: scale(1.035);
}

.ib-latest-post-placeholder {
  display: grid;
  place-items: center;
  color: var(--ib-muted);
  font-family: var(--ib-font-heading);
  font-size: 28px;
}

.ib-latest-post-body {
  padding: 25px 0 0;
}

.ib-latest-post-date {
  margin-bottom: 8px;
  color: var(--ib-accent);
  font-family: var(--ib-font-ui);
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.ib-latest-post h3 {
  margin-bottom: 11px;
  font-size: clamp(24px, 2vw, 31px);
}

.ib-latest-post-link {
  display: inline-flex;
  margin-top: 7px;
  border-bottom: 1px solid var(--ib-ink);
  font-family: var(--ib-font-ui);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ib-news-empty {
  max-width: 760px;
  padding: 36px;
  margin: 42px auto 0;
  border: 1px solid var(--ib-line);
  background: #fff;
  text-align: center;
}

.elementor .ib-showrooms {
  color: #fff;
  background: var(--ib-ink);
}

.elementor .ib-showrooms .elementor-heading-title,
.elementor .ib-showrooms .elementor-widget-text-editor,
.elementor .ib-showrooms .elementor-widget-text-editor p {
  color: #fff;
}

.elementor .ib-showrooms-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.elementor .ib-showroom-grid > .e-con-inner,
.elementor .ib-showroom-grid.e-con {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.elementor .ib-showroom-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111;
}

.elementor .ib-showroom-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 25%, rgba(0, 0, 0, .88) 100%);
  transition: background var(--ib-transition);
}

.elementor .ib-showroom-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 14%, rgba(0, 0, 0, .92) 100%);
}

.elementor .ib-showroom-card > .e-con-inner,
.elementor .ib-showroom-card.e-con {
  justify-content: flex-end;
}

.elementor .ib-showroom-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(32px, 5vw, 58px);
}

.elementor .ib-showroom-card .ib-showroom-label .elementor-heading-title {
  color: #a9d8d3;
  font-family: var(--ib-font-ui);
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.elementor .ib-showroom-card h3.elementor-heading-title {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}

.elementor .ib-showroom-card .elementor-widget-text-editor,
.elementor .ib-showroom-card .elementor-widget-text-editor p,
.elementor .ib-showroom-card .elementor-widget-text-editor a {
  color: #fff;
}

.elementor .ib-showroom-card .elementor-widget-text-editor a {
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.elementor .ib-showroom-card .elementor-button {
  margin-top: 10px;
  color: var(--ib-ink);
  background: #fff;
  border-color: #fff;
}

.elementor .ib-showroom-card.ib-headquarters {
  grid-column: 1 / -1;
  min-height: 520px;
}

.elementor .ib-showroom-card.ib-headquarters .ib-showroom-card-content {
  max-width: 720px;
}

.elementor .ib-contact-layout {
  align-items: stretch;
  gap: clamp(44px, 7vw, 96px);
}

.elementor .ib-contact-copy {
  padding-top: 18px;
}

.elementor .ib-contact-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--ib-soft);
}

.ib-contact-fallback {
  padding: 24px;
  border: 1px solid var(--ib-line);
  background: #fff;
}

.ib-contact-fallback .ib-button {
  margin-top: 10px;
}

.elementor .ib-about-intro .ib-split-image img {
  min-height: 700px;
}

.elementor .ib-about-values {
  text-align: center;
}

.elementor .ib-about-manifesto {
  max-width: 900px;
  margin-inline: auto;
}

.elementor .ib-source-note {
  color: var(--ib-muted);
  font-size: 11px;
}

.elementor .ib-elementor-footer .elementor-heading-title,
.elementor .ib-elementor-footer .elementor-widget-text-editor,
.elementor .ib-elementor-footer .elementor-widget-text-editor p,
.elementor .ib-elementor-footer a {
  color: #fff;
}

.elementor .ib-elementor-footer .ib-footer-info {
  color: #d6d6d6;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .ib-shortcode-nav .ib-nav-list {
    gap: 12px;
  }

  .ib-shortcode-nav .ib-nav-list a {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1023px) {
  body.ib-site.admin-bar .ib-elementor-header {
    top: 46px;
  }

  .elementor .ib-elementor-header-main .ib-shortcode-nav {
    position: absolute;
    z-index: 200;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100vh - 120px);
    padding: 18px 24px 26px;
    overflow-y: auto;
    background: #fff;
    box-shadow: var(--ib-shadow);
  }

  .elementor .ib-elementor-header-main .ib-shortcode-nav.is-open {
    display: block;
  }

  .ib-shortcode-nav .ib-nav-list {
    display: block;
  }

  .ib-shortcode-nav .ib-nav-list > li {
    border-bottom: 1px solid var(--ib-line);
  }

  .ib-shortcode-nav .ib-nav-list a {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
  }

  .ib-nav-list .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 12px 16px;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }

  .ib-nav-list li.is-submenu-open > .sub-menu {
    display: block;
  }

  .ib-nav-list .sub-menu a {
    min-height: 38px;
    padding: 5px 0;
  }

  .elementor .ib-home-room,
  .elementor .ib-about-intro {
    flex-wrap: wrap;
  }

  .elementor .ib-home-room > .e-con-inner > .e-con,
  .elementor .ib-home-room.e-con > .e-con,
  .elementor .ib-about-intro > .e-con-inner > .e-con,
  .elementor .ib-about-intro.e-con > .e-con {
    width: 100%;
  }

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

  .elementor .ib-brand-card {
    flex-basis: 33.333%;
  }

  .elementor .ib-showroom-card {
    min-height: 540px;
  }
}

@media (max-width: 767px) {
  body.ib-site.admin-bar .ib-elementor-header {
    top: 0;
  }

  .elementor .ib-home-styles {
    flex-wrap: wrap;
    padding-inline: 16px;
  }

  .elementor .ib-home-style-card {
    width: 100%;
  }

  .elementor .ib-process-grid,
  .ib-latest-posts,
  .elementor .ib-showroom-grid > .e-con-inner,
  .elementor .ib-showroom-grid.e-con {
    grid-template-columns: 1fr;
  }

  .elementor .ib-process-card {
    min-height: 0;
  }

  .elementor .ib-brand-card {
    flex-basis: 62%;
    min-width: 190px;
  }

  .elementor .ib-showroom-card,
  .elementor .ib-showroom-card.ib-headquarters {
    grid-column: auto;
    min-height: 500px;
  }

  .elementor .ib-showroom-card-content {
    padding: 30px 24px;
  }

  .elementor .ib-contact-layout {
    flex-wrap: wrap;
  }

  .elementor .ib-contact-layout > .e-con-inner > .e-con,
  .elementor .ib-contact-layout.e-con > .e-con {
    width: 100%;
  }
}

body.ib-site .elementor .ib-elementor-topbar,
body.ib-site .elementor .ib-elementor-topbar p,
body.ib-site .elementor .ib-elementor-topbar a {
  color: #fff;
  background: #262626;
  font-family: "Lora", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-hero-title .elementor-heading-title {
    font-size: clamp(38px, 11vw, 50px);
  }

  body.ib-site .elementor .ib-eyebrow .elementor-heading-title,
  body.ib-site .elementor .ib-kicker .elementor-heading-title {
    font-size: 12px;
  }
}

/* Restyling 2.1 — struttura fedele al sito istituzionale */
body.ib-site .elementor .ib-hero {
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  min-height: 540px;
  margin: 72px auto 104px;
  padding: 0;
  overflow: visible;
  background: #fff;
}

body.ib-site .elementor .ib-hero > .e-con-inner,
body.ib-site .elementor .ib-hero.e-con {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 540px;
}

body.ib-site .elementor .ib-hero-copy {
  width: 34%;
  min-height: 540px;
  padding: 54px 40px;
  background: #f6f6f5;
  text-align: center;
}

body.ib-site .elementor .ib-hero-copy > .e-con-inner,
body.ib-site .elementor .ib-hero-copy.e-con {
  align-items: center;
}

body.ib-site .elementor .ib-hero-copy .ib-eyebrow .elementor-heading-title {
  color: #6e6e6b;
  font: 400 13px/1.5 "Poppins", Arial, sans-serif;
  letter-spacing: 2px;
}

body.ib-site .elementor .ib-hero-title .elementor-heading-title {
  max-width: 360px;
  margin-inline: auto;
  color: #262626;
  font: 400 clamp(43px, 4.2vw, 61px)/1.06 "Lora", Georgia, serif;
  letter-spacing: -1.8px;
}

body.ib-site .elementor .ib-hero-copy .elementor-button {
  min-width: 204px;
  margin-top: 10px;
}

body.ib-site .elementor .ib-hero-media,
body.ib-site .elementor .ib-hero-slider {
  position: relative;
  width: 66%;
  min-height: 540px;
  overflow: hidden;
  background: #e9e9e7;
}

body.ib-site .elementor .ib-hero-slider > .e-con-inner,
body.ib-site .elementor .ib-hero-slider.e-con {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 540px;
  overflow: hidden;
}

body.ib-site .elementor .ib-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 5.8s ease;
  pointer-events: none;
}

body.ib-site .elementor .ib-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

body.ib-site .elementor .ib-hero-slide .elementor-widget-container,
body.ib-site .elementor .ib-hero-slide a,
body.ib-site .elementor .ib-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

body.ib-site .elementor .ib-hero-slide img {
  object-fit: cover;
  object-position: center;
}

body.ib-site .elementor .ib-hero-controls {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(25, 25, 25, 0.72);
  font: 500 10px/1 "Poppins", Arial, sans-serif;
  letter-spacing: 1.2px;
}

body.ib-site .elementor .ib-hero-controls button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

body.ib-site .elementor .ib-network-showrooms {
  width: min(calc(100% - 48px), 1280px);
  max-width: 1280px;
  margin: 0 auto 88px;
  padding: 48px 32px 38px;
  background: #f5f5f3;
}

body.ib-site .elementor .ib-network-intro,
body.ib-site .elementor .ib-network-intro > .e-con-inner,
body.ib-site .elementor .ib-network-intro.e-con {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  width: 100%;
  max-width: none;
  gap: 28px;
}

body.ib-site .elementor .ib-network-count,
body.ib-site .elementor .ib-network-count .elementor-heading-title {
  margin: 0;
  color: var(--ib-accent);
  font: 400 64px/1 "Lora", Georgia, serif;
  letter-spacing: -3px;
}

body.ib-site .elementor .ib-network-title h2.elementor-heading-title {
  margin: 0;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.12;
}

body.ib-site .elementor .ib-network-title h3.elementor-heading-title {
  margin: 5px 0 0;
  color: var(--ib-accent);
  font: 400 20px/1.25 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor,
body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor p {
  margin: 0;
  color: #686865;
  font-size: 14px;
  line-height: 1.75;
}

body.ib-site .elementor .ib-showroom-grid,
body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
body.ib-site .elementor .ib-showroom-grid.e-con {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  gap: 12px;
}

body.ib-site .elementor .ib-network-showrooms .ib-showroom-grid {
  margin-top: 30px;
}

body.ib-site .elementor .ib-showroom-card,
body.ib-site .elementor .ib-showroom-card.ib-headquarters {
  position: relative;
  grid-column: auto;
  min-height: 270px;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  box-shadow: none;
}

body.ib-site .elementor .ib-showroom-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 8%, rgba(0, 0, 0, 0.78) 100%);
  transition: background 260ms ease;
}

body.ib-site .elementor .ib-showroom-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 8%, rgba(0, 0, 0, 0.86) 100%);
}

body.ib-site .elementor .ib-showroom-card > .e-con-inner,
body.ib-site .elementor .ib-showroom-card.e-con {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: none;
  height: 100%;
}

body.ib-site .elementor .ib-showroom-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: 24px 22px 22px;
  color: #fff;
  background: transparent;
}

body.ib-site .elementor .ib-showroom-card .ib-showroom-label .elementor-heading-title {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.78);
  font: 500 9px/1.4 "Poppins", Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

body.ib-site .elementor .ib-showroom-card h3.elementor-heading-title {
  margin: 0 0 8px;
  color: #fff;
  font: 400 clamp(24px, 2.1vw, 32px)/1.1 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor,
body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor p,
body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1.55;
}

body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor a:hover {
  color: #fff;
}

body.ib-site .elementor .ib-showroom-card .elementor-button {
  min-height: 34px;
  margin-top: 7px;
  padding: 9px 13px;
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
  font-size: 9px;
}

body.ib-site .elementor .ib-kitchen-showcase {
  width: min(100%, 1280px);
  max-width: 1280px;
  margin: 0 auto 82px;
  padding: 0;
}

body.ib-site .elementor .ib-kitchen-showcase > .e-con-inner,
body.ib-site .elementor .ib-kitchen-showcase.e-con,
body.ib-site .elementor .ib-kitchen-cards > .e-con-inner,
body.ib-site .elementor .ib-kitchen-cards.e-con {
  display: flex;
  width: 100%;
  max-width: none;
}

body.ib-site .elementor .ib-kitchen-cards {
  width: 76%;
}

body.ib-site .elementor .ib-kitchen-card {
  position: relative;
  width: 50%;
  min-height: 500px;
  padding: 0 38px 34px;
  overflow: hidden;
  isolation: isolate;
}

body.ib-site .elementor .ib-kitchen-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.92) 58%);
}

body.ib-site .elementor .ib-kitchen-card > .e-con-inner,
body.ib-site .elementor .ib-kitchen-card.e-con {
  position: relative;
  z-index: 1;
  align-items: center;
}

body.ib-site .elementor .ib-kitchen-card h3.elementor-heading-title {
  margin: 0;
  color: #292929;
  font: 400 clamp(27px, 2.6vw, 40px)/1.15 "Lora", Georgia, serif;
  text-align: center;
}

body.ib-site .elementor .ib-button-minimal .elementor-button {
  min-height: auto;
  padding: 6px 0;
  border: 0;
  color: #148e84;
  background: transparent;
  font-size: 10px;
}

body.ib-site .elementor .ib-kitchen-copy {
  width: 24%;
  padding: 46px 32px;
  text-align: center;
}

body.ib-site .elementor .ib-kitchen-copy h2.elementor-heading-title {
  font: 400 clamp(41px, 4vw, 58px)/1.08 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-kitchen-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-kitchen-copy .elementor-widget-text-editor p {
  color: #6a6a67;
  font-size: 13px;
  line-height: 1.8;
}

body.ib-site .elementor .ib-home-section-title {
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 22px 0 28px;
}

body.ib-site .elementor .ib-home-section-title h2.elementor-heading-title {
  font: 400 clamp(42px, 5vw, 66px)/1.1 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-home-section-title .elementor-divider {
  width: 100px;
  margin-left: auto;
}

body.ib-site .elementor .ib-home-room {
  width: min(100%, 1280px);
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto 34px;
  padding: 0;
}

body.ib-site .elementor .ib-home-room > .e-con-inner,
body.ib-site .elementor .ib-home-room.e-con {
  display: flex;
  width: 100%;
  max-width: none;
}

body.ib-site .elementor .ib-home-room .ib-room-copy {
  width: 36%;
  min-height: 560px;
  padding: 54px 58px;
  text-align: center;
  background: #fff;
}

body.ib-site .elementor .ib-home-room .ib-room-media {
  width: 64%;
  min-height: 560px;
}

body.ib-site .elementor .ib-home-room .ib-number .elementor-heading-title {
  margin-bottom: 20px;
  color: var(--ib-accent);
  font: 400 58px/1 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-home-room h2.elementor-heading-title {
  font: 400 clamp(43px, 4.3vw, 62px)/1.05 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-home-room .elementor-widget-text-editor,
body.ib-site .elementor .ib-home-room .elementor-widget-text-editor p {
  color: #696966;
  font-size: 13px;
  line-height: 1.75;
}

body.ib-site .elementor .ib-home-room .ib-split-image,
body.ib-site .elementor .ib-home-room .ib-split-image .elementor-widget-container,
body.ib-site .elementor .ib-home-room .ib-split-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

body.ib-site .elementor .ib-home-room .ib-split-image img {
  object-fit: cover;
}

body.ib-site .elementor .ib-button-arrow .elementor-button {
  min-width: 0;
  min-height: 0;
  padding: 8px 4px;
  border: 0;
  color: #747471;
  background: transparent;
  font-size: 10px;
}

body.ib-site .elementor .ib-process {
  width: 100%;
  max-width: none;
  margin: 90px 0 0;
  padding: 88px max(24px, calc((100vw - 1180px) / 2)) 80px;
  background: #f5f5f4;
  text-align: center;
}

body.ib-site .elementor .ib-process-intro {
  max-width: 720px;
  margin: 0 auto 42px;
}

body.ib-site .elementor .ib-process-intro h2.elementor-heading-title {
  font-size: clamp(35px, 3.6vw, 49px);
}

body.ib-site .elementor .ib-process-grid,
body.ib-site .elementor .ib-process-grid > .e-con-inner,
body.ib-site .elementor .ib-process-grid.e-con {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  gap: 0;
}

body.ib-site .elementor .ib-process-card {
  min-height: 230px;
  padding: 22px 42px 30px;
  border: 0;
  border-right: 1px solid #dededb;
  background: transparent;
  box-shadow: none;
}

body.ib-site .elementor .ib-process-card:nth-child(3n) {
  border-right: 0;
}

body.ib-site .elementor .ib-process-card .ib-number .elementor-heading-title {
  margin-bottom: 10px;
  color: var(--ib-accent);
  font: 400 39px/1 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-process-card h3.elementor-heading-title {
  margin-bottom: 13px;
  font: 400 clamp(24px, 2.1vw, 31px)/1.15 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-process-card .elementor-widget-text-editor,
body.ib-site .elementor .ib-process-card .elementor-widget-text-editor p {
  color: #686865;
  font-size: 13px;
  line-height: 1.7;
}

body.ib-site .elementor .ib-process-finale {
  max-width: 900px;
  margin: 44px auto 0;
}

body.ib-site .elementor .ib-process-finale h3.elementor-heading-title {
  text-transform: uppercase;
  font-size: clamp(29px, 3vw, 42px);
}

body.ib-site .elementor .ib-brand-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px max(24px, calc((100vw - 1180px) / 2)) 96px;
}

body.ib-site .elementor .ib-brand-intro {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 35px;
  text-align: left;
}

body.ib-site .elementor .ib-brand-intro h2.elementor-heading-title {
  font-size: clamp(42px, 4.8vw, 62px);
}

body.ib-site .elementor .ib-brand-grid,
body.ib-site .elementor .ib-brand-grid > .e-con-inner,
body.ib-site .elementor .ib-brand-grid.e-con {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  gap: 0;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card {
  display: flex;
  width: auto;
  min-width: 0;
  min-height: 165px;
  padding: 25px;
  border-right: 1px solid #dededb;
  border-bottom: 1px solid #dededb;
  background: #fff;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(4n + 1) {
  border-left: 1px solid #dededb;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(-n + 4) {
  border-top: 1px solid #dededb;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card > .e-con-inner,
body.ib-site .elementor .ib-brand-grid .ib-brand-card.e-con {
  align-items: center;
  justify-content: center;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card .elementor-widget-container,
body.ib-site .elementor .ib-brand-grid .ib-brand-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card img {
  width: auto;
  max-width: 185px;
  max-height: 82px;
  object-fit: contain;
}

body.ib-site .elementor .ib-news-section,
body.ib-site .elementor .ib-news-archive {
  width: 100%;
  max-width: none;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
}

body.ib-site .elementor .ib-news-archive {
  padding-top: 28px;
}

body.ib-site .ib-latest-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  gap: 34px 24px;
}

body.ib-site .ib-latest-post {
  border: 0;
  background: #fff;
  box-shadow: none;
}

body.ib-site .ib-latest-post-image {
  height: 260px;
  overflow: hidden;
}

body.ib-site .ib-latest-post-image img,
body.ib-site .ib-latest-post-placeholder {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

body.ib-site .ib-latest-post-body {
  padding: 23px 0 0;
}

body.ib-site .ib-latest-post h3 {
  font-size: 25px;
  line-height: 1.25;
}

body.ib-site .elementor .ib-page-hero {
  width: min(calc(100% - 48px), 1200px);
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 76px 30px;
  text-align: center;
}

body.ib-site .elementor .ib-page-hero h1.elementor-heading-title {
  font: 400 clamp(42px, 4.7vw, 62px)/1.12 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-page-hero .elementor-divider {
  width: 100px;
  margin-inline: auto;
}

body.ib-site .elementor .ib-about-story {
  width: min(calc(100% - 48px), 1200px);
  max-width: 1200px;
  min-height: 390px;
  margin: 0 auto 24px;
  padding: 0;
}

body.ib-site .elementor .ib-about-story > .e-con-inner,
body.ib-site .elementor .ib-about-story.e-con {
  display: flex;
  width: 100%;
  max-width: none;
}

body.ib-site .elementor .ib-about-story-copy {
  width: 50%;
  min-height: 390px;
  padding: 48px 54px;
  background: #f5f5f4;
}

body.ib-site .elementor .ib-about-story-copy::before {
  display: block;
  width: 100px;
  height: 1px;
  margin-bottom: 34px;
  content: "";
  background: var(--ib-accent);
}

body.ib-site .elementor .ib-about-story-copy h2.elementor-heading-title {
  font: 400 clamp(23px, 2.4vw, 33px)/1.22 "Lora", Georgia, serif;
  text-transform: uppercase;
}

body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p {
  color: #62625f;
  font-size: 14px;
  line-height: 1.78;
}

body.ib-site .elementor .ib-about-story-media {
  width: 50%;
  min-height: 390px;
}

body.ib-site .elementor .ib-about-story-image,
body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
body.ib-site .elementor .ib-about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
}

body.ib-site .elementor .ib-about-story-image img {
  object-fit: cover;
}

body.ib-site .elementor .ib-about-cta {
  width: min(calc(100% - 48px), 1200px);
  max-width: 1200px;
  margin: 54px auto 96px;
  padding: 0;
}

body.ib-site .elementor .ib-about-cta .elementor-button {
  width: 100%;
}

body.ib-site .elementor .ib-contact-showrooms {
  width: min(calc(100% - 48px), 1280px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 32px;
}

body.ib-site .elementor .ib-contact-showrooms h1.elementor-heading-title {
  margin-bottom: 34px;
  font-size: clamp(42px, 4.6vw, 60px);
}

body.ib-site .elementor .ib-contact-form-only {
  width: 100%;
  max-width: none;
  padding: 88px max(24px, calc((100vw - 840px) / 2));
}

body.ib-site .elementor .ib-contact-form-only > .e-con-inner,
body.ib-site .elementor .ib-contact-form-only.e-con {
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
}

body.ib-site .elementor .ib-contact-form-only h2.elementor-heading-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(39px, 4vw, 54px);
}

@media (max-width: 1023px) {
  body.ib-site .elementor .ib-hero {
    min-height: 480px;
    margin-top: 36px;
  }

  body.ib-site .elementor .ib-hero > .e-con-inner,
  body.ib-site .elementor .ib-hero.e-con,
  body.ib-site .elementor .ib-hero-copy,
  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider,
  body.ib-site .elementor .ib-hero-slider > .e-con-inner,
  body.ib-site .elementor .ib-hero-slider.e-con {
    min-height: 480px;
  }

  body.ib-site .elementor .ib-network-intro,
  body.ib-site .elementor .ib-network-intro > .e-con-inner,
  body.ib-site .elementor .ib-network-intro.e-con {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  body.ib-site .elementor .ib-network-intro > .elementor-widget-text-editor,
  body.ib-site .elementor .ib-network-intro > .e-con-inner > .elementor-widget-text-editor {
    grid-column: 1 / -1;
  }

  body.ib-site .elementor .ib-showroom-grid,
  body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
  body.ib-site .elementor .ib-showroom-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ib-site .elementor .ib-showroom-card,
  body.ib-site .elementor .ib-showroom-card.ib-headquarters {
    min-height: 330px;
  }

  body.ib-site .elementor .ib-kitchen-showcase > .e-con-inner,
  body.ib-site .elementor .ib-kitchen-showcase.e-con {
    flex-wrap: wrap;
  }

  body.ib-site .elementor .ib-kitchen-cards,
  body.ib-site .elementor .ib-kitchen-copy {
    width: 100%;
  }

  body.ib-site .elementor .ib-kitchen-copy {
    padding-block: 52px;
  }

  body.ib-site .elementor .ib-process-grid,
  body.ib-site .elementor .ib-process-grid > .e-con-inner,
  body.ib-site .elementor .ib-process-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ib-site .elementor .ib-process-card:nth-child(3n) {
    border-right: 1px solid #dededb;
  }

  body.ib-site .elementor .ib-process-card:nth-child(2n) {
    border-right: 0;
  }

  body.ib-site .elementor .ib-brand-grid,
  body.ib-site .elementor .ib-brand-grid > .e-con-inner,
  body.ib-site .elementor .ib-brand-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(4n + 1) {
    border-left: 0;
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(2n + 1) {
    border-left: 1px solid #dededb;
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(-n + 4) {
    border-top: 0;
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card:nth-child(-n + 2) {
    border-top: 1px solid #dededb;
  }

  body.ib-site .ib-latest-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-hero {
    width: 100%;
    min-height: 0;
    margin: 0 auto 58px;
  }

  body.ib-site .elementor .ib-hero > .e-con-inner,
  body.ib-site .elementor .ib-hero.e-con {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.ib-site .elementor .ib-hero-copy,
  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider {
    width: 100%;
  }

  body.ib-site .elementor .ib-hero-copy {
    min-height: 420px;
    padding: 52px 26px;
  }

  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider,
  body.ib-site .elementor .ib-hero-slider > .e-con-inner,
  body.ib-site .elementor .ib-hero-slider.e-con {
    min-height: 390px;
  }

  body.ib-site .elementor .ib-network-showrooms,
  body.ib-site .elementor .ib-contact-showrooms {
    width: 100%;
    margin-bottom: 58px;
    padding: 42px 16px;
  }

  body.ib-site .elementor .ib-network-intro,
  body.ib-site .elementor .ib-network-intro > .e-con-inner,
  body.ib-site .elementor .ib-network-intro.e-con {
    display: block;
  }

  body.ib-site .elementor .ib-network-count,
  body.ib-site .elementor .ib-network-count .elementor-heading-title {
    margin-bottom: 15px;
    font-size: 54px;
  }

  body.ib-site .elementor .ib-network-title {
    margin-bottom: 14px;
  }

  body.ib-site .elementor .ib-showroom-grid,
  body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
  body.ib-site .elementor .ib-showroom-grid.e-con {
    grid-template-columns: 1fr;
  }

  body.ib-site .elementor .ib-showroom-card,
  body.ib-site .elementor .ib-showroom-card.ib-headquarters {
    min-height: 360px;
  }

  body.ib-site .elementor .ib-kitchen-showcase,
  body.ib-site .elementor .ib-home-room {
    width: 100%;
  }

  body.ib-site .elementor .ib-kitchen-cards > .e-con-inner,
  body.ib-site .elementor .ib-kitchen-cards.e-con {
    flex-wrap: wrap;
  }

  body.ib-site .elementor .ib-kitchen-card {
    width: 100%;
    min-height: 430px;
  }

  body.ib-site .elementor .ib-home-section-title {
    width: calc(100% - 32px);
    padding-top: 8px;
    text-align: center;
  }

  body.ib-site .elementor .ib-home-room > .e-con-inner,
  body.ib-site .elementor .ib-home-room.e-con {
    flex-direction: column;
  }

  body.ib-site .elementor .ib-home-room .ib-room-copy,
  body.ib-site .elementor .ib-home-room .ib-room-media {
    width: 100%;
  }

  body.ib-site .elementor .ib-home-room .ib-room-copy {
    min-height: 420px;
    padding: 46px 28px;
  }

  body.ib-site .elementor .ib-home-room .ib-room-media,
  body.ib-site .elementor .ib-home-room .ib-split-image,
  body.ib-site .elementor .ib-home-room .ib-split-image .elementor-widget-container,
  body.ib-site .elementor .ib-home-room .ib-split-image img {
    min-height: 390px;
  }

  body.ib-site .elementor .ib-process {
    margin-top: 58px;
    padding-block: 64px;
  }

  body.ib-site .elementor .ib-process-grid,
  body.ib-site .elementor .ib-process-grid > .e-con-inner,
  body.ib-site .elementor .ib-process-grid.e-con {
    grid-template-columns: 1fr;
  }

  body.ib-site .elementor .ib-process-card,
  body.ib-site .elementor .ib-process-card:nth-child(2n),
  body.ib-site .elementor .ib-process-card:nth-child(3n) {
    min-height: 0;
    padding: 25px 12px 34px;
    border-right: 0;
    border-bottom: 1px solid #dededb;
  }

  body.ib-site .elementor .ib-brand-grid,
  body.ib-site .elementor .ib-brand-grid > .e-con-inner,
  body.ib-site .elementor .ib-brand-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card {
    min-height: 130px;
    padding: 18px;
  }

  body.ib-site .elementor .ib-brand-grid .ib-brand-card img {
    max-width: 125px;
    max-height: 65px;
  }

  body.ib-site .ib-latest-posts {
    grid-template-columns: 1fr;
  }

  body.ib-site .elementor .ib-page-hero {
    width: 100%;
    margin-bottom: 56px;
    padding: 56px 20px;
  }

  body.ib-site .elementor .ib-about-story {
    width: calc(100% - 32px);
    min-height: 0;
  }

  body.ib-site .elementor .ib-about-story > .e-con-inner,
  body.ib-site .elementor .ib-about-story.e-con {
    flex-direction: column;
  }

  body.ib-site .elementor .ib-about-story-copy,
  body.ib-site .elementor .ib-about-story-media {
    width: 100%;
  }

  body.ib-site .elementor .ib-about-story-copy {
    min-height: 0;
    padding: 42px 28px;
  }

  body.ib-site .elementor .ib-about-story-media,
  body.ib-site .elementor .ib-about-story-image,
  body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
  body.ib-site .elementor .ib-about-story-image img {
    min-height: 320px;
  }

  body.ib-site .elementor .ib-about-cta {
    width: calc(100% - 32px);
  }
}

/* Restyling 2.3 — replica strutturale del sito istituzionale.
 * Le regole finali sono volutamente robuste rispetto agli stili inline
 * generati dalle diverse versioni di Elementor Free. */
body.ib-site .elementor .ib-elementor-header-main {
  min-height: 92px;
  padding-inline: max(34px, calc((100vw - 1280px) / 2));
}

body.ib-site .elementor .ib-hero {
  width: 100%;
  max-width: none;
  min-height: 491px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.ib-site .elementor .ib-hero > .e-con-inner,
body.ib-site .elementor .ib-hero.e-con {
  display: flex !important;
  width: 100%;
  max-width: none;
  min-height: 491px;
  padding: 0;
}

body.ib-site .elementor .ib-hero-copy {
  width: 33.333% !important;
  min-height: 491px;
  padding: 26px 40px 28px 24px;
  align-items: flex-end !important;
  justify-content: center;
  background: #f6f6f5;
  text-align: right;
}

body.ib-site .elementor .ib-hero-copy > .e-con-inner,
body.ib-site .elementor .ib-hero-copy.e-con {
  align-items: flex-end !important;
}

body.ib-site .elementor .ib-hero-copy .elementor-widget-heading,
body.ib-site .elementor .ib-hero-copy .elementor-widget-button,
body.ib-site .elementor .ib-hero-copy .elementor-widget-text-editor {
  width: 100%;
  text-align: right;
}

body.ib-site .elementor .ib-hero-copy .ib-eyebrow {
  position: relative;
  width: 100%;
}

body.ib-site .elementor .ib-hero-copy .ib-eyebrow::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  width: 110px;
  height: 1px;
  content: "";
  background: #d8d8d5;
}

body.ib-site .elementor .ib-hero-copy .ib-eyebrow .elementor-heading-title,
body.ib-site .elementor .ib-hero-copy > .ib-eyebrow {
  color: #666663;
  font: 400 13px/1.5 "Open Sans", Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

body.ib-site .elementor .ib-hero-title .elementor-heading-title,
body.ib-site .elementor h1.ib-hero-title {
  width: 100%;
  max-width: 423px;
  margin: 5px 0 14px auto;
  font: 400 clamp(44px, 4.45vw, 60px)/1.1 "Lora", Georgia, serif;
  letter-spacing: -1.3px;
  text-align: right;
}

body.ib-site .elementor .ib-hero-copy .elementor-widget-button {
  display: flex;
  justify-content: flex-end;
}

body.ib-site .elementor .ib-hero-copy .elementor-button,
body.ib-site .elementor .ib-hero-copy > p .ib-button {
  min-width: 205px;
}

body.ib-site .elementor .ib-hero-media,
body.ib-site .elementor .ib-hero-slider {
  position: relative;
  width: 66.667% !important;
  min-height: 491px;
  overflow: hidden;
  background: #e8e8e6;
}

body.ib-site .elementor .ib-hero-slider > .e-con-inner,
body.ib-site .elementor .ib-hero-slider.e-con {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 491px;
  overflow: hidden;
}

body.ib-site .elementor .ib-hero-slide {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: calc(83.333% - 5px) !important;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: translateX(106%);
  transition: opacity 650ms ease, transform 650ms ease;
  pointer-events: none;
}

body.ib-site .elementor .ib-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

body.ib-site .elementor .ib-hero-slide.is-next {
  z-index: 1;
  opacity: 1;
  transform: translateX(calc(100% + 10px));
}

body.ib-site .elementor .ib-hero-slide .elementor-widget-container,
body.ib-site .elementor .ib-hero-slide a,
body.ib-site .elementor .ib-hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 491px;
}

body.ib-site .elementor .ib-hero-slide img {
  object-fit: cover;
}

body.ib-site .elementor .ib-hero-controls {
  right: 18.5%;
  bottom: 16px;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.ib-site .elementor .ib-hero-slider:hover .ib-hero-controls,
body.ib-site .elementor .ib-hero-slider:focus-within .ib-hero-controls {
  opacity: 1;
}

body.ib-site .elementor .ib-hero-social {
  width: 50%;
  max-width: none;
  min-height: 122px;
  margin: 0 0 70px 50%;
  padding: 0;
  background: #f5f5f4;
}

body.ib-site .elementor .ib-hero-social > .e-con-inner,
body.ib-site .elementor .ib-hero-social.e-con {
  width: 100%;
  max-width: none;
  min-height: 122px;
  padding: 0;
}

body.ib-site .elementor .ib-hero-social .elementor-widget-html {
  width: 100%;
}

.ib-hero-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 122px;
  align-items: center;
  color: #676764;
  font: 400 13px/1.4 "Open Sans", Arial, sans-serif;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.ib-hero-social-links {
  display: flex;
  min-height: 122px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: #f2f2f1;
}

.ib-hero-social-links a {
  color: #262626;
  font: 500 22px/1 Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

body.ib-site .elementor .ib-network-showrooms {
  width: min(calc(100% - 48px), 1280px);
  max-width: 1280px;
  margin: 0 auto 82px;
  padding: 0;
  background: #fff;
}

body.ib-site .elementor .ib-network-intro,
body.ib-site .elementor .ib-network-intro > .e-con-inner,
body.ib-site .elementor .ib-network-intro.e-con {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) minmax(230px, 330px);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 116px;
  gap: 24px;
  padding: 19px 26px;
  color: #262626;
  background: #f5f5f3;
  text-align: left;
}

body.ib-site .elementor .ib-network-intro .elementor-heading-title,
body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor,
body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor p {
  color: #262626;
}

body.ib-site .elementor .ib-network-count,
body.ib-site .elementor .ib-network-count .elementor-heading-title {
  margin: 0;
  color: var(--ib-accent);
  font: 400 56px/1 "Lora", Georgia, serif;
  letter-spacing: -2px;
}

body.ib-site .elementor .ib-network-title h2.elementor-heading-title,
body.ib-site .elementor .ib-network-title > h2 {
  margin: 0;
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.12;
}

body.ib-site .elementor .ib-network-title h3.elementor-heading-title,
body.ib-site .elementor .ib-network-title > h3 {
  margin: 4px 0 0;
  color: var(--ib-accent);
  font: 400 19px/1.25 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor,
body.ib-site .elementor .ib-network-intro .elementor-widget-text-editor p,
body.ib-site .elementor .ib-network-intro > p:last-child {
  margin: 0;
  color: #686865;
  font-size: 13px;
  line-height: 1.7;
}

body.ib-site .elementor .ib-showroom-grid,
body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
body.ib-site .elementor .ib-showroom-grid.e-con {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: none !important;
  gap: 16px !important;
}

body.ib-site .elementor .ib-network-showrooms .ib-showroom-grid {
  margin-top: 16px;
}

body.ib-site .elementor .ib-showroom-grid .ib-showroom-card,
body.ib-site .elementor .ib-showroom-grid .ib-showroom-card.ib-headquarters {
  grid-column: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 315px;
  flex: none !important;
}

body.ib-site .elementor .ib-showroom-card-content {
  padding: 27px 30px 25px;
}

body.ib-site .elementor .ib-showroom-card h3.elementor-heading-title,
body.ib-site .elementor .ib-showroom-card h3 {
  font-size: clamp(31px, 3vw, 42px);
}

body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor,
body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor p,
body.ib-site .elementor .ib-showroom-card .elementor-widget-text-editor a {
  font-size: 12px;
  line-height: 1.65;
}

body.ib-site .elementor .ib-showroom-card .elementor-button,
body.ib-site .elementor .ib-showroom-card .ib-button {
  min-height: 36px;
  padding: 9px 0;
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
  background: transparent;
}

body.ib-site .elementor .ib-kitchen-showcase {
  width: 100%;
  max-width: none;
  margin: 0 auto 66px;
}

body.ib-site .elementor .ib-kitchen-cards {
  width: 75% !important;
}

body.ib-site .elementor .ib-kitchen-copy {
  width: 25% !important;
}

body.ib-site .elementor .ib-kitchen-card {
  min-height: clamp(320px, 25vw, 380px);
}

body.ib-site .elementor .ib-home-room {
  width: 100%;
  max-width: 1348px;
}

body.ib-site .elementor .ib-home-room .ib-room-copy {
  width: 35% !important;
}

body.ib-site .elementor .ib-home-room .ib-room-media {
  width: 65% !important;
}

body.ib-site .elementor .ib-process-card h3.elementor-heading-title,
body.ib-site .elementor .ib-process-card h3 {
  font-size: clamp(24px, 2.1vw, 30px);
}

body.ib-site .elementor .ib-brand-grid,
body.ib-site .elementor .ib-brand-grid > .e-con-inner,
body.ib-site .elementor .ib-brand-grid.e-con {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: 1180px !important;
  gap: 0 !important;
}

body.ib-site .elementor .ib-brand-grid .ib-brand-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
}

body.ib-site .elementor .ib-page-hero {
  width: min(calc(100% - 48px), 1100px);
  max-width: 1100px;
  margin: 0 auto 54px;
  padding: 58px 28px;
}

body.ib-site .elementor .ib-about-story {
  width: min(calc(100% - 48px), 1080px);
  max-width: 1080px;
  min-height: 330px;
  margin: 0 auto 18px;
}

body.ib-site .elementor .ib-about-story-copy {
  width: 56% !important;
  min-height: 330px;
  padding: 36px 44px;
}

body.ib-site .elementor .ib-about-story-copy::before {
  display: none;
}

body.ib-site .elementor .ib-about-number,
body.ib-site .elementor .ib-about-number .elementor-heading-title {
  margin: 0 0 10px;
  color: var(--ib-accent);
  font: 400 36px/1 "Lora", Georgia, serif;
}

body.ib-site .elementor .ib-about-story-copy h2.elementor-heading-title,
body.ib-site .elementor .ib-about-story-copy > h2 {
  margin-bottom: 16px;
  font: 400 clamp(24px, 2.15vw, 31px)/1.2 "Lora", Georgia, serif;
  text-transform: none;
}

body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p,
body.ib-site .elementor .ib-about-story-copy > p:not(.ib-about-number) {
  font-size: 13px;
  line-height: 1.7;
}

body.ib-site .elementor .ib-about-story-media {
  width: 44% !important;
  min-height: 330px;
}

body.ib-site .elementor .ib-about-story-image,
body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
body.ib-site .elementor .ib-about-story-image img {
  min-height: 330px;
}

body.ib-site .elementor .ib-about-cta {
  width: min(calc(100% - 48px), 1080px);
  max-width: 1080px;
  margin: 36px auto 78px;
}

body.ib-site .elementor .ib-contact-showrooms {
  width: min(calc(100% - 48px), 1280px);
  max-width: 1280px;
  padding: 66px 0 76px;
}

body.ib-site .elementor .ib-contact-intro {
  max-width: 680px;
  margin: -22px auto 34px;
  text-align: center;
}

@media (max-width: 1023px) {
  body.ib-site .elementor .ib-hero-copy {
    width: 40% !important;
  }

  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider {
    width: 60% !important;
  }

  body.ib-site .elementor .ib-network-intro,
  body.ib-site .elementor .ib-network-intro > .e-con-inner,
  body.ib-site .elementor .ib-network-intro.e-con {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  body.ib-site .elementor .ib-network-intro > .elementor-widget-text-editor,
  body.ib-site .elementor .ib-network-intro > .e-con-inner > .elementor-widget-text-editor,
  body.ib-site .elementor .ib-network-intro > p:last-child {
    grid-column: 1 / -1;
  }

  body.ib-site .elementor .ib-showroom-grid,
  body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
  body.ib-site .elementor .ib-showroom-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.ib-site .elementor .ib-brand-grid,
  body.ib-site .elementor .ib-brand-grid > .e-con-inner,
  body.ib-site .elementor .ib-brand-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-elementor-header-main {
    min-height: 78px;
    padding-inline: 16px;
  }

  body.ib-site .elementor .ib-hero {
    min-height: 0;
  }

  body.ib-site .elementor .ib-hero > .e-con-inner,
  body.ib-site .elementor .ib-hero.e-con {
    flex-direction: column;
    min-height: 0;
  }

  body.ib-site .elementor .ib-hero-copy,
  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider {
    width: 100% !important;
  }

  body.ib-site .elementor .ib-hero-copy {
    min-height: 390px;
    padding: 46px 24px;
    align-items: flex-start !important;
    text-align: left;
  }

  body.ib-site .elementor .ib-hero-copy > .e-con-inner,
  body.ib-site .elementor .ib-hero-copy.e-con {
    align-items: flex-start !important;
  }

  body.ib-site .elementor .ib-hero-copy .elementor-widget-heading,
  body.ib-site .elementor .ib-hero-copy .elementor-widget-button,
  body.ib-site .elementor .ib-hero-copy .elementor-widget-text-editor,
  body.ib-site .elementor .ib-hero-title .elementor-heading-title,
  body.ib-site .elementor h1.ib-hero-title {
    margin-left: 0;
    text-align: left;
  }

  body.ib-site .elementor .ib-hero-copy .elementor-widget-button {
    justify-content: flex-start;
  }

  body.ib-site .elementor .ib-hero-copy .ib-eyebrow::before {
    display: none;
  }

  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider,
  body.ib-site .elementor .ib-hero-slider > .e-con-inner,
  body.ib-site .elementor .ib-hero-slider.e-con {
    min-height: 330px;
  }

  body.ib-site .elementor .ib-hero-slide .elementor-widget-container,
  body.ib-site .elementor .ib-hero-slide a,
  body.ib-site .elementor .ib-hero-slide img {
    min-height: 330px;
  }

  body.ib-site .elementor .ib-hero-slide {
    width: calc(90% - 5px) !important;
  }

  body.ib-site .elementor .ib-hero-social {
    width: 100%;
    min-height: 84px;
    margin: 0 0 46px;
  }

  body.ib-site .elementor .ib-hero-social > .e-con-inner,
  body.ib-site .elementor .ib-hero-social.e-con,
  .ib-hero-social-row,
  .ib-hero-social-links {
    min-height: 84px;
  }

  body.ib-site .elementor .ib-network-showrooms,
  body.ib-site .elementor .ib-contact-showrooms {
    width: 100%;
    padding-inline: 16px;
  }

  body.ib-site .elementor .ib-network-intro,
  body.ib-site .elementor .ib-network-intro > .e-con-inner,
  body.ib-site .elementor .ib-network-intro.e-con {
    display: block !important;
    padding: 24px;
  }

  body.ib-site .elementor .ib-showroom-grid,
  body.ib-site .elementor .ib-showroom-grid > .e-con-inner,
  body.ib-site .elementor .ib-showroom-grid.e-con {
    grid-template-columns: 1fr !important;
  }

  body.ib-site .elementor .ib-kitchen-cards,
  body.ib-site .elementor .ib-kitchen-copy,
  body.ib-site .elementor .ib-home-room .ib-room-copy,
  body.ib-site .elementor .ib-home-room .ib-room-media {
    width: 100% !important;
  }

  body.ib-site .elementor .ib-brand-grid,
  body.ib-site .elementor .ib-brand-grid > .e-con-inner,
  body.ib-site .elementor .ib-brand-grid.e-con {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.ib-site .elementor .ib-about-story-copy,
  body.ib-site .elementor .ib-about-story-media {
    width: 100% !important;
  }
}

/* Restyling 2.4 — correzioni finali richieste su pulsanti, Home,
 * Footer, Chi siamo e Contatti. Queste regole restano in fondo al file
 * per prevalere sia sugli stili globali sia sul CSS generato da Elementor. */

/* Elementor assegna le classi personalizzate al widget esterno. Il widget
 * deve rimanere neutro: bordo, sfondo e dimensioni appartengono soltanto
 * al vero link .elementor-button. */
body.ib-site .elementor .elementor-widget-button.ib-button {
  display: flex !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: 100%;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: inherit !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.ib-site .elementor .elementor-widget-button.ib-button > .elementor-widget-container {
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.ib-site .elementor .elementor-widget-button.ib-button .elementor-button {
  width: auto !important;
  margin: 0 !important;
  transform: none !important;
}

/* Hero */
body.ib-site .elementor .ib-hero {
  flex: 0 0 auto !important;
  min-height: clamp(540px, 36vw, 610px);
  margin-top: 28px;
}

body.ib-site .elementor .ib-hero > .e-con-inner,
body.ib-site .elementor .ib-hero.e-con,
body.ib-site .elementor .ib-hero-copy,
body.ib-site .elementor .ib-hero-media,
body.ib-site .elementor .ib-hero-slider,
body.ib-site .elementor .ib-hero-slider > .e-con-inner,
body.ib-site .elementor .ib-hero-slider.e-con {
  min-height: clamp(540px, 36vw, 610px);
}

body.ib-site .elementor .ib-hero-slide .elementor-widget-container,
body.ib-site .elementor .ib-hero-slide a,
body.ib-site .elementor .ib-hero-slide img {
  min-height: clamp(540px, 36vw, 610px);
}

body.ib-site .elementor .ib-hero-copy .ib-hero-button {
  align-self: flex-end;
}

body.ib-site .elementor .ib-hero-copy .ib-hero-button .elementor-button {
  min-width: 178px !important;
  min-height: 50px;
  padding: 0 28px;
  color: #fff;
  background: #262626;
  border: 1px solid #262626;
}

body.ib-site .elementor .ib-hero-copy .ib-hero-button .elementor-button:hover,
body.ib-site .elementor .ib-hero-copy .ib-hero-button .elementor-button:focus-visible {
  color: #262626;
  background: transparent;
  border-color: #262626;
}

body.ib-site .elementor .ib-hero-social {
  flex: 0 0 auto !important;
  width: 50% !important;
  max-width: 50% !important;
  margin-left: 50% !important;
}

/* Cucine classiche e moderne */
body.ib-site .elementor .ib-kitchen-card,
body.ib-site .elementor .ib-kitchen-card > .e-con-inner,
body.ib-site .elementor .ib-kitchen-card.e-con {
  justify-content: flex-end !important;
  align-items: center !important;
}

body.ib-site .elementor .ib-kitchen-card {
  padding: 0 34px 32px;
}

body.ib-site .elementor .ib-kitchen-card::before {
  top: auto;
  height: 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .93) 58%, rgba(255, 255, 255, .97));
}

body.ib-site .elementor .ib-kitchen-card h3.elementor-heading-title {
  margin: 0 0 12px;
}

body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button {
  align-self: center;
}

body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button {
  min-width: 164px !important;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid #262626;
  color: #fff;
  background: #262626;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.35px;
}

body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button:hover,
body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button:focus-visible {
  color: #262626;
  background: transparent;
  border-color: #262626;
}

/* Zona giorno e Zona notte */
body.ib-site .elementor .ib-home-room .elementor-widget-text-editor,
body.ib-site .elementor .ib-home-room .elementor-widget-text-editor p {
  font-size: 16px;
  line-height: 1.72;
}

body.ib-site .elementor .ib-home-room .ib-room-button {
  align-self: center;
}

body.ib-site .elementor .ib-home-room .ib-room-button .elementor-button {
  min-width: 184px !important;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid #262626;
  color: #fff;
  background: #262626;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.35px;
}

body.ib-site .elementor .ib-home-room .ib-room-button .elementor-button:hover,
body.ib-site .elementor .ib-home-room .ib-room-button .elementor-button:focus-visible {
  color: #262626;
  background: #fff;
  border-color: #262626;
}

/* News e CTA: un solo contorno, applicato al pulsante reale. */
body.ib-site .elementor .ib-news-section .ib-news-button,
body.ib-site .elementor .ib-final-cta .ib-final-button {
  align-self: center;
}

body.ib-site .elementor .ib-news-section .ib-news-button .elementor-button {
  min-width: 228px !important;
  min-height: 54px;
  border: 1px solid #262626;
  color: #262626;
  background: transparent;
}

body.ib-site .elementor .ib-news-section .ib-news-button .elementor-button:hover,
body.ib-site .elementor .ib-news-section .ib-news-button .elementor-button:focus-visible {
  color: #fff;
  background: #262626;
  border-color: #262626;
}

body.ib-site .elementor .ib-final-cta .ib-final-button .elementor-button {
  min-width: 252px !important;
}

/* Footer */
body.ib-site .elementor .ib-elementor-footer .ib-footer-cta .elementor-heading-title,
body.ib-site .elementor .ib-elementor-footer .ib-footer-cta .ib-eyebrow .elementor-heading-title,
body.ib-site .elementor .ib-elementor-footer .ib-footer-cta .elementor-widget-text-editor,
body.ib-site .elementor .ib-elementor-footer .ib-footer-cta .elementor-widget-text-editor p {
  color: #fff !important;
}

body.ib-site .elementor .ib-elementor-footer .ib-footer-button {
  align-self: flex-end;
}

body.ib-site .elementor .ib-elementor-footer .ib-footer-button .elementor-button {
  min-width: 260px !important;
  min-height: 54px;
  border: 1px solid #fff;
  color: #262626;
  background: #fff;
}

body.ib-site .elementor .ib-elementor-footer .ib-footer-button .elementor-button:hover,
body.ib-site .elementor .ib-elementor-footer .ib-footer-button .elementor-button:focus-visible {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

/* Chi siamo */
body.ib-site .elementor .ib-about-hero {
  flex: 0 0 auto !important;
  width: min(calc(100% - 48px), 1080px);
  max-width: 1080px;
  margin: 26px auto 38px;
  padding: 54px 0 38px;
  align-self: center;
  background: #fff !important;
  border-bottom: 1px solid #e5e5e2;
  text-align: left;
}

body.ib-site .elementor .ib-about-hero > .e-con-inner,
body.ib-site .elementor .ib-about-hero.e-con {
  align-items: flex-start !important;
}

body.ib-site .elementor .ib-about-hero h1.elementor-heading-title {
  max-width: 760px;
  font-size: clamp(42px, 4.2vw, 58px);
}

body.ib-site .elementor .ib-about-hero .elementor-divider {
  width: 92px;
  margin: 8px 0 0;
}

body.ib-site .elementor .ib-about-story {
  flex: 0 0 auto !important;
  width: min(calc(100% - 48px), 1080px) !important;
  max-width: 1080px !important;
  min-height: 360px;
  margin: 0 auto 28px;
  align-self: center;
  overflow: hidden;
  border: 1px solid #ececea;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .055);
}

body.ib-site .elementor .ib-about-story > .e-con-inner,
body.ib-site .elementor .ib-about-story.e-con {
  display: flex !important;
  width: 100%;
  max-width: none;
}

body.ib-site .elementor .ib-about-story-copy {
  flex: 0 0 55% !important;
  width: 55% !important;
  min-height: 360px;
  padding: 38px 44px;
  background: #f8f8f6;
}

body.ib-site .elementor .ib-about-story-media {
  flex: 0 0 45% !important;
  width: 45% !important;
  min-height: 360px;
}

body.ib-site .elementor .ib-about-story-image,
body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
body.ib-site .elementor .ib-about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

body.ib-site .elementor .ib-about-story-image img {
  object-fit: cover;
}

body.ib-site .elementor .ib-about-number,
body.ib-site .elementor .ib-about-number .elementor-heading-title {
  font-size: 34px;
}

body.ib-site .elementor .ib-about-story-copy h2.elementor-heading-title {
  font-size: clamp(26px, 2.25vw, 32px);
}

body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p {
  color: #555552;
  font-size: 16px;
  line-height: 1.72;
}

/* Contatti: stessa gabbia a due colonne del portale, con form fluido. */
body.ib-site .elementor .ib-contact-form-section {
  flex: 0 0 auto !important;
  width: min(calc(100% - 48px), 1180px);
  max-width: 1180px;
  margin: 28px auto 54px;
  padding: 64px 0 72px;
  align-self: center;
  background: #fff;
}

body.ib-site .elementor .ib-contact-layout > .e-con-inner,
body.ib-site .elementor .ib-contact-layout.e-con {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  width: 100%;
  max-width: none;
  align-items: stretch;
  gap: clamp(42px, 6vw, 76px) !important;
}

body.ib-site .elementor .ib-contact-copy,
body.ib-site .elementor .ib-contact-form {
  width: 100% !important;
  min-width: 0;
}

body.ib-site .elementor .ib-contact-copy {
  padding: 12px 12px 12px 0;
}

body.ib-site .elementor .ib-contact-copy h1.elementor-heading-title {
  max-width: 500px;
  margin: 12px 0 32px;
  font-size: clamp(46px, 4.5vw, 62px);
  line-height: 1.12;
}

body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor p {
  color: #5f5f5c;
  font-size: 16px;
  line-height: 1.72;
}

body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor p + p {
  margin-top: 26px;
}

body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor strong {
  color: #262626;
  font-weight: 500;
}

body.ib-site .elementor .ib-contact-form {
  padding: 42px;
  background: #f5f5f3;
}

body.ib-site .elementor .ib-contact-form .elementor-widget-shortcode,
body.ib-site .elementor .ib-contact-form .elementor-shortcode,
body.ib-site .elementor .ib-contact-form .wpforms-container,
body.ib-site .elementor .ib-contact-form form {
  width: 100% !important;
  max-width: none !important;
}

body.ib-site .elementor .ib-contact-showrooms {
  flex: 0 0 auto !important;
  align-self: center;
}

@media (max-width: 1023px) {
  body.ib-site .elementor .ib-contact-layout > .e-con-inner,
  body.ib-site .elementor .ib-contact-layout.e-con {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 38px !important;
  }

  body.ib-site .elementor .ib-contact-form {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-hero {
    margin-top: 20px;
  }

  body.ib-site .elementor .ib-hero-copy {
    min-height: 420px;
    padding: 48px 24px;
    align-items: center !important;
    text-align: center;
  }

  body.ib-site .elementor .ib-hero-copy > .e-con-inner,
  body.ib-site .elementor .ib-hero-copy.e-con {
    align-items: center !important;
  }

  body.ib-site .elementor .ib-hero-copy .elementor-widget-heading,
  body.ib-site .elementor .ib-hero-copy .elementor-widget-text-editor,
  body.ib-site .elementor .ib-hero-title .elementor-heading-title,
  body.ib-site .elementor h1.ib-hero-title {
    margin-inline: auto;
    text-align: center;
  }

  body.ib-site .elementor .ib-hero-copy .ib-hero-button {
    align-self: center;
  }

  body.ib-site .elementor .ib-hero-media,
  body.ib-site .elementor .ib-hero-slider,
  body.ib-site .elementor .ib-hero-slider > .e-con-inner,
  body.ib-site .elementor .ib-hero-slider.e-con,
  body.ib-site .elementor .ib-hero-slide .elementor-widget-container,
  body.ib-site .elementor .ib-hero-slide a,
  body.ib-site .elementor .ib-hero-slide img {
    min-height: 370px;
  }

  body.ib-site .elementor .ib-hero-social {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  body.ib-site .elementor .ib-kitchen-card {
    min-height: 430px;
    padding-inline: 24px;
  }

  body.ib-site .elementor .ib-home-room .elementor-widget-text-editor,
  body.ib-site .elementor .ib-home-room .elementor-widget-text-editor p {
    font-size: 15px;
  }

  body.ib-site .elementor .ib-about-hero {
    width: calc(100% - 32px);
    margin-top: 18px;
    padding: 42px 0 30px;
  }

  body.ib-site .elementor .ib-about-story {
    width: calc(100% - 32px) !important;
    min-height: 0;
    margin-bottom: 24px;
  }

  body.ib-site .elementor .ib-about-story > .e-con-inner,
  body.ib-site .elementor .ib-about-story.e-con {
    flex-direction: column !important;
  }

  body.ib-site .elementor .ib-about-story-copy,
  body.ib-site .elementor .ib-about-story-media {
    flex: 0 0 auto !important;
    width: 100% !important;
  }

  body.ib-site .elementor .ib-about-story-copy {
    min-height: 0;
    padding: 34px 26px 38px;
  }

  body.ib-site .elementor .ib-about-story-media,
  body.ib-site .elementor .ib-about-story-image,
  body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
  body.ib-site .elementor .ib-about-story-image img {
    min-height: 310px;
  }

  body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
  body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p {
    font-size: 15px;
  }

  body.ib-site .elementor .ib-contact-form-section {
    width: calc(100% - 32px);
    margin-top: 18px;
    padding: 42px 0 54px;
  }

  body.ib-site .elementor .ib-contact-layout > .e-con-inner,
  body.ib-site .elementor .ib-contact-layout.e-con {
    grid-template-columns: 1fr;
    gap: 34px !important;
  }

  body.ib-site .elementor .ib-contact-copy {
    padding: 0;
  }

  body.ib-site .elementor .ib-contact-copy h1.elementor-heading-title {
    font-size: 44px;
  }

  body.ib-site .elementor .ib-contact-form {
    padding: 26px 22px;
  }

  body.ib-site .elementor .ib-contact-form .wpforms-field-medium,
  body.ib-site .elementor .ib-contact-form input,
  body.ib-site .elementor .ib-contact-form textarea,
  body.ib-site .elementor .ib-contact-form select {
    width: 100% !important;
    max-width: none !important;
  }

  body.ib-site .elementor .ib-elementor-footer .ib-footer-button {
    align-self: flex-start;
  }
}

/* Restyling 2.6 — rifiniture richieste sull'output Elementor reale e
 * compatibilità con entrambe le strutture dei Container di Elementor. */

/* Header: la fascia appuntamenti parte dal bordo pagina, senza vuoti bianchi,
 * e usa lo stesso carattere del menu principale. */
body.ib-site .elementor .ib-elementor-header {
  --gap: 0px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

body.ib-site .elementor .ib-elementor-header > .e-con-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
}

body.ib-site .elementor .ib-elementor-topbar {
  --gap: 0px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 max(24px, calc((100vw - 1280px) / 2)) !important;
  gap: 0 !important;
}

body.ib-site .elementor .ib-elementor-topbar > .e-con-inner {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 38px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.ib-site .elementor .ib-elementor-topbar,
body.ib-site .elementor .ib-elementor-topbar p,
body.ib-site .elementor .ib-elementor-topbar a {
  font-family: "Open Sans", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase;
}

/* Cucine: fotografia leggibile, overlay nero leggero e testi bianchi. */
body.ib-site .elementor .ib-kitchen-card::before {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .08) 0%,
    rgba(0, 0, 0, .20) 48%,
    rgba(0, 0, 0, .54) 100%
  ) !important;
}

body.ib-site .elementor .ib-kitchen-card h3.elementor-heading-title {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button {
  color: #fff !important;
  background: rgba(20, 20, 20, .82) !important;
  border-color: rgba(255, 255, 255, .82) !important;
}

body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button:hover,
body.ib-site .elementor .ib-kitchen-card .ib-kitchen-button .elementor-button:focus-visible {
  color: #262626 !important;
  background: #fff !important;
  border-color: #fff !important;
}

/* Chi siamo: sequenza editoriale alternata, senza riquadri, ombre o fondi. */
body.ib-site .elementor .ib-about-hero {
  width: 100% !important;
  max-width: none !important;
  min-height: 390px;
  margin: 0 auto 84px !important;
  padding: clamp(82px, 8vw, 116px) 24px clamp(88px, 8vw, 122px) !important;
  border: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.ib-site .elementor .ib-about-hero > .e-con-inner {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: flex-start !important;
}

body.ib-site .elementor .ib-about-hero h1.elementor-heading-title {
  max-width: 900px;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.08;
}

body.ib-site .elementor .ib-about-hero .elementor-divider {
  width: 112px;
  margin-top: 18px;
}

body.ib-site .elementor .ib-about-story {
  width: min(calc(100% - 48px), 1180px) !important;
  max-width: 1180px !important;
  min-height: 0 !important;
  margin: 0 auto clamp(72px, 7vw, 104px) !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.ib-site .elementor .ib-about-story.e-con {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: clamp(42px, 6vw, 88px) !important;
}

body.ib-site .elementor .ib-about-story > .e-con-inner {
  display: grid !important;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  gap: clamp(42px, 6vw, 88px) !important;
}

body.ib-site .elementor .ib-about-story > .e-con-inner > .ib-about-story-copy,
body.ib-site .elementor .ib-about-story > .e-con-inner > .ib-about-story-media,
body.ib-site .elementor .ib-about-story.e-con > .ib-about-story-copy,
body.ib-site .elementor .ib-about-story.e-con > .ib-about-story-media {
  --width: 100% !important;
  --flex-grow: 1 !important;
  --flex-shrink: 1 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.ib-site .elementor .ib-about-story-copy {
  min-height: 0 !important;
  padding: clamp(18px, 3vw, 44px) 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.ib-site .elementor .ib-about-story-media {
  min-height: 0 !important;
  overflow: hidden;
  border: 0 !important;
  background: transparent !important;
}

body.ib-site .elementor .ib-about-story-image,
body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
body.ib-site .elementor .ib-about-story-image img {
  width: 100% !important;
  height: clamp(330px, 31vw, 440px) !important;
  min-height: 0 !important;
}

body.ib-site .elementor .ib-about-story-image img {
  object-fit: cover;
}

body.ib-site .elementor .ib-about-number .elementor-heading-title {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #00857a;
  font-size: 26px;
}

body.ib-site .elementor .ib-about-number .elementor-heading-title::after {
  width: 64px;
  height: 1px;
  content: "";
  background: rgba(0, 133, 122, .46);
}

body.ib-site .elementor .ib-about-story-copy h2.elementor-heading-title {
  max-width: 520px;
  margin: 18px 0 24px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p {
  color: #50504d;
  font-size: 17px;
  line-height: 1.78;
}

body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}

body.ib-site .elementor .ib-about-cta {
  margin-top: 8px;
  padding-top: 0;
}

/* Contatti: stessa proporzione 40/60 del portale, senza pannello stretto. */
body.ib-site .elementor .ib-contact-form-section {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(70px, 7vw, 100px) 32px clamp(84px, 8vw, 116px) !important;
  align-self: stretch !important;
  background: #fff !important;
}

body.ib-site .elementor .ib-contact-form-section > .e-con-inner {
  display: grid !important;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr) !important;
  width: min(100%, 1280px) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: start;
  gap: clamp(54px, 7vw, 96px) !important;
}

body.ib-site .elementor .ib-contact-form-section > .e-con-inner > .ib-contact-copy,
body.ib-site .elementor .ib-contact-form-section > .e-con-inner > .ib-contact-form,
body.ib-site .elementor .ib-contact-form-section.e-con > .ib-contact-copy,
body.ib-site .elementor .ib-contact-form-section.e-con > .ib-contact-form {
  --width: 100% !important;
  --flex-grow: 1 !important;
  --flex-shrink: 1 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.ib-site .elementor .ib-contact-copy {
  min-height: 0 !important;
  padding: 0 !important;
}

body.ib-site .elementor .ib-contact-copy h1.elementor-heading-title {
  max-width: 510px;
  margin: 30px 0 42px;
  font-size: clamp(52px, 5.2vw, 72px);
  line-height: 1.08;
}

body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor,
body.ib-site .elementor .ib-contact-copy .elementor-widget-text-editor p {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.75;
}

body.ib-site .elementor .ib-contact-form {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.ib-site .elementor .ib-contact-form .elementor-widget-shortcode,
body.ib-site .elementor .ib-contact-form .elementor-widget-container,
body.ib-site .elementor .ib-contact-form .elementor-shortcode,
body.ib-site .elementor .ib-contact-form .wpforms-container,
body.ib-site .elementor .ib-contact-form .wpforms-form,
body.ib-site .elementor .ib-contact-form .wpforms-field-container,
body.ib-site .elementor .ib-contact-form form {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

body.ib-site .elementor .ib-contact-form .wpforms-field-medium,
body.ib-site .elementor .ib-contact-form .wpforms-field-large,
body.ib-site .elementor .ib-contact-form input[type="text"],
body.ib-site .elementor .ib-contact-form input[type="email"],
body.ib-site .elementor .ib-contact-form input[type="tel"],
body.ib-site .elementor .ib-contact-form textarea,
body.ib-site .elementor .ib-contact-form select {
  width: 100% !important;
  max-width: none !important;
}

body.ib-site .elementor .ib-contact-form .wpforms-field {
  padding-bottom: 24px;
}

body.ib-site .elementor .ib-contact-form textarea {
  min-height: 150px;
}

@media (max-width: 900px) {
  body.ib-site .elementor .ib-contact-form-section,
  body.ib-site .elementor .ib-contact-form-section > .e-con-inner {
    grid-template-columns: 1fr !important;
    gap: 52px !important;
  }

  body.ib-site .elementor .ib-contact-copy h1.elementor-heading-title {
    max-width: 640px;
  }
}

@media (max-width: 767px) {
  body.ib-site .elementor .ib-elementor-topbar {
    padding-inline: 18px !important;
  }

  body.ib-site .elementor .ib-elementor-topbar,
  body.ib-site .elementor .ib-elementor-topbar p,
  body.ib-site .elementor .ib-elementor-topbar a {
    font-size: 9px !important;
    letter-spacing: .75px !important;
  }

  body.ib-site .elementor .ib-about-hero {
    min-height: 320px;
    margin-bottom: 58px !important;
    padding: 68px 20px 76px !important;
  }

  body.ib-site .elementor .ib-about-story {
    width: calc(100% - 32px) !important;
    margin-bottom: 66px !important;
  }

  body.ib-site .elementor .ib-about-story.e-con,
  body.ib-site .elementor .ib-about-story > .e-con-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.ib-site .elementor .ib-about-story:not(.is-reverse) .ib-about-story-media {
    order: -1;
  }

  body.ib-site .elementor .ib-about-story-copy {
    padding: 8px 4px 0 !important;
  }

  body.ib-site .elementor .ib-about-story-image,
  body.ib-site .elementor .ib-about-story-image .elementor-widget-container,
  body.ib-site .elementor .ib-about-story-image img {
    height: 310px !important;
  }

  body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor,
  body.ib-site .elementor .ib-about-story-copy .elementor-widget-text-editor p {
    font-size: 16px;
  }

  body.ib-site .elementor .ib-contact-form-section {
    padding: 62px 20px 76px !important;
  }

  body.ib-site .elementor .ib-contact-copy h1.elementor-heading-title {
    margin: 22px 0 32px;
    font-size: 48px;
  }
}
