.sky-climate{
  --header-bg:#5E0006;
  --section-bg:#EED9B9;
  --card-bg:#FFF8F1;
  --accent-btn:#D53E0F;
  --primary-btn:#2C1A1D;
  --heading-color:#2C1A1D;
  --text-color:#4A2B2B;
  --light-text:#FFF8F4;
  --border-color:rgba(44,26,29,0.12);
  --accent-hover:#B52E08;
  --primary-hover:#140B0C;

  width:100%;
  padding:85px 20px;
  background:
    radial-gradient(circle at top right, rgba(213,62,15,0.10), transparent 38%),
    linear-gradient(180deg, #fff7ec 0%, var(--section-bg) 100%);
  font-family:'Inter', sans-serif;
  overflow:hidden;
}

.sky-climate-wrap{
  max-width:1220px;
  margin:0 auto;
}

.sky-climate-grid{
  display:grid;
  grid-template-columns:0.92fr 1.08fr;
  gap:55px;
  align-items:center;
}

.sky-climate-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 17px;
  border-radius:50px;
  background:var(--header-bg);
  color:var(--light-text);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:28px;
}

.sky-climate-badge svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:var(--light-text);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.sky-climate-content h2{
  margin:0;
  max-width:540px;
  font-family:'Cormorant Garamond', serif;
  font-size:56px;
  line-height:1.03;
  font-weight:800;
  color:var(--heading-color);
}

.sky-climate-line{
  display:block;
  width:70px;
  height:4px;
  background:var(--accent-btn);
  border-radius:20px;
  margin:24px 0 26px;
}

.sky-climate-content p{
  margin:0 0 24px;
  max-width:570px;
  font-size:17px;
  line-height:1.65;
  font-weight:600;
  color:var(--text-color);
}

.sky-climate-note{
  max-width:540px;
  display:grid;
  grid-template-columns:58px 1fr;
  align-items:center;
  gap:18px;
  padding:18px 20px;
  margin:25px 0;
  border:1.5px solid rgba(213,62,15,0.45);
  border-radius:15px;
  background:rgba(255,248,241,0.75);
}

.sky-note-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--accent-btn);
  display:flex;
  align-items:center;
  justify-content:center;
}

.sky-note-icon svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.sky-climate-note strong{
  font-size:16px;
  line-height:1.45;
  color:var(--heading-color);
}

.sky-climate-visual{
  position:relative;
}

.sky-climate-arc{
  position:absolute;
  top:-28px;
  left:28px;
  right:10px;
  height:380px;
  border:2px solid rgba(213,62,15,0.65);
  border-bottom:0;
  border-radius:400px 400px 0 0;
  pointer-events:none;
}

.sky-climate-arc::before,
.sky-climate-arc::after{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent-btn);
  top:150px;
}

.sky-climate-arc::before{left:-6px;}
.sky-climate-arc::after{right:-6px;}

.sky-climate-image{
  width:100%;
  height:310px;
  border-radius:330px 330px 26px 26px;
  overflow:hidden;
  position:relative;
  z-index:2;
  box-shadow:0 18px 45px rgba(44,26,29,0.12);
}

.sky-climate-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.sky-climate-cards{
  position:relative;
  z-index:3;
  margin-top:-10px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.sky-climate-card{
  min-height:265px;
  padding:24px 15px;
  border-radius:14px;
  text-align:center;
  background:
    radial-gradient(circle at top, rgba(213,62,15,0.18), transparent 42%),
    linear-gradient(180deg, #3b2021 0%, var(--primary-btn) 100%);
  color:var(--light-text);
  box-shadow:0 14px 35px rgba(44,26,29,0.25);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.sky-climate-card svg{
  width:58px;
  height:58px;
  fill:none;
  stroke:#F28A4B;
  stroke-width:3.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-bottom:18px;
}

.sky-climate-card h3{
  margin:0;
  font-size:17px;
  line-height:1.25;
  font-weight:900;
  color:#fff;
  text-transform:uppercase;
}

.sky-climate-card span{
  width:28px;
  height:2px;
  background:#E9B27B;
  margin:15px 0;
  border-radius:20px;
}

.sky-climate-card p{
  margin:0;
  font-size:14.5px;
  line-height:1.5;
  font-weight:500;
  color:rgba(255,248,244,0.92);
}

.sky-serving-bar{
  margin-top:36px;
  padding:22px 28px;
  border:1px solid rgba(213,62,15,0.30);
  border-radius:10px;
  background:rgba(255,248,241,0.72);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.sky-serving-title{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
  font-weight:900;
  color:var(--heading-color);
}

.sky-serving-title svg{
  width:30px;
  height:30px;
  fill:var(--accent-btn);
}

.sky-serving-bar span{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  font-weight:900;
  color:var(--heading-color);
  text-transform:uppercase;
}

.sky-serving-bar span::before{
  content:"";
  width:15px;
  height:15px;
  display:inline-block;
  background:var(--accent-btn);
  clip-path:polygon(50% 0%, 85% 35%, 68% 35%, 92% 67%, 63% 67%, 63% 100%, 37% 100%, 37% 67%, 8% 67%, 32% 35%, 15% 35%);
}

@media(max-width:1100px){
  .sky-climate-grid{
    grid-template-columns:1fr;
    gap:45px;
  }

  .sky-climate-content h2,
  .sky-climate-content p,
  .sky-climate-note{
    max-width:100%;
  }
}

@media(max-width:768px){
  .sky-climate{
    padding:65px 16px;
  }

  .sky-climate-content h2{
    font-size:42px;
  }

  .sky-climate-image{
    height:250px;
  }

  .sky-climate-cards{
    grid-template-columns:1fr 1fr;
  }

  .sky-serving-bar{
    justify-content:flex-start;
  }
}

@media(max-width:520px){
  .sky-climate-content h2{
    font-size:36px;
  }

  .sky-climate-badge{
    font-size:11px;
  }

  .sky-climate-note{
    grid-template-columns:1fr;
  }

  .sky-climate-cards{
    grid-template-columns:1fr;
  }

  .sky-climate-card{
    min-height:auto;
  }

  .sky-climate-arc{
    display:none;
  }
}