* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #fffdfb;
  color: #dfeeea;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: inherit;
}
strong {
  color: #241c1c;
  font-weight: 600;
}
/* --- HEADER & NAV --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: rgba(1, 35, 34, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  color: #fff;
}
.header-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo {
  position: relative;
  top: -6px;
  width: 200px;
  height: 40px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-weight: 400;
  padding: 12px 2px;
}
nav a:hover {
  padding-bottom: 9px;
  border-bottom: 3px solid #f1d298;
}
nav a.active {
  padding-bottom: 9px;
  border-bottom: 3px solid #f1d298;
}
.dropdown {
  position: relative;
  z-index: 1001; /* ensure dropdown is above other content */
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  background-color: #012322;
  padding: 22px 18px;
  margin-top: 12px;
  min-width: 260px;
  border-radius: 9px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  z-index: 1002;
}
.dropdown-menu a {
  display: block;
  padding: 6px 12px;
  color: #fff;
  transition: all 0.25s ease;
}
.dropdown-menu a:hover {
  color: #f1d298;
  border: 0;
  padding: 6px 12px;
  transform: translateX(5px);
}
.btn-pay {
  background: #295747;
  color: #fff;
  border-radius: 66px;
  padding: 14px 24px;
}
.btn-pay:hover {
  background: #f1d298;
  color: #012322;
  padding: 14px 24px;
  border: 0;
  transform: scale(1.02);
}

/* --- HERO --- */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero {
  background-color: #012322;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: contain;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/pexels-asphotography-1002703.jpg') no-repeat center center / cover;
  z-index: -1;
  opacity: 0.6; /* opcjonalnie: półprzezroczystość */
}
.hero-inner {
  height: 100%;
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
}
.hero-text {
  width: 50%;
  animation: fadeSlideUp 1s ease both;
  animation-delay: 0.3s;
}
.hero-text h1 {
  font-family: "Playfair", serif;
  font-weight: 600;
  font-size: 66px;
  line-height: 1;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 40px 0px;
  color: #fff;
}
.hero-text h1,
.hero-text p {
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-text h1,
.hero-text p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.hero-text a {
  display: inline-block;
  padding: 16px 28px;
  background-color: #295747;
  color: #f1d298;
  border-radius: 36px;
}
.hero-text a:hover {
  background-color: #012322;
  color: #f1d298;
  transform: scale(1.02);
}
.hero-image {
  flex: 1;
  text-align: center;
  animation: fadeSlideUp 1s ease both;
  animation-delay: 0.6s;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* --- ABOUT --- */
.about {
  background-color: #fffdfb;
  width: 100%;
  text-align: center;
}
.about-inner {
  padding: 120px 0;
  width: 60%;
  margin: 0 auto;
  color: #133431;
}
.about-icon span {
  font-size: 42px;
  color: #133431;
  margin-bottom: 16px;
  display: inline-block;
  
  background: #ebf4e4;
  padding: 16px;
  border-radius: 60px;
}
.about h2 {
  font-family: "Playfair", serif;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 4px;
}
.about p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  color: #133431;
  text-align: center;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-stats div {
  flex: 1;
  min-width: 200px;
}
.stat-number {
  font-family: "Playfair", serif;
  font-size: 60px;
  color: #133431;
  margin-bottom: 2px;
}
.stat-label {
  font-family: "Playfair", serif;
  font-size: 20px;
  font-style: italic;
  color: #295747;
  letter-spacing: 1px;
}

/* --- QUOTE --- */
.quote {
  background: url('img/pexels-vijay-richhiya-2155208704-34111386.jpg') no-repeat center center/cover;
  width: 100%;
  padding: 160px 0;
  color: white;
  text-align: center;
  position: relative;
}
.quote::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(1, 35, 34, 0.2);
}
.quote-inner {
  position: relative;
  width: 80%;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 1;
}
.quote-inner h2 {
  font-family: 'DM Serif Text', serif;
  font-size: 60px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.quote-inner p {
  font-size: 16px;
  color: #dfeeea;
  margin-top: 20px;
}

/* --- TASKS --- */
.tasks {
  background: #fffdfb;
  padding: 100px 0;
  width: 100%;
}
.tasks-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  color: #241c1c;
  text-align: center;
}
.tasks-header {
  text-align: center;
  margin-bottom: 60px;
}
.tasks-header h2 {
  font-family: "Playfair", serif;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 4px;
}
.tasks-header p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}
.tasks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}
.task-tile {
  background-color: #fffdfb;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.task-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}
.task-tile > div {
  display: flex;
  flex-direction: column;
}
.task-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  min-width: 66px;
}
.task-time {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #012322;
  gap: 4px;
}
.task-time .material-symbols-outlined {
  font-size: 16px;
  color: #3ca78c;
}
.task-tile span {
  font-size: 32px;
  background: #3ca78c;
  padding: 6px;
  border-radius: 60px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 4px;
}
.task-tile p {
  font-size: 14px;
  line-height: 1.4;
  color: #012322;
}
.task-tile p b {
  font-size: 18px;
  line-height: 1.8;
  color: #012322;
}
.task-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background-color: #3ca78c;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}
.task-btn:hover {
  background-color: #318b74;
  transform: translateY(-2px);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: linear-gradient(to bottom,  #fffdfb 0%,#dfeeea 70%);
  padding: 100px 0;
  width: 100%;
  color: #012322;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header h2 {
  font-family: "Playfair", serif;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonials-header p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
}
.testimonial {
  padding: 20px;
  text-align: center;
}
.testimonial img {
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  object-fit: cover;
  margin-bottom: 16px;
}
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #012322;
  margin-bottom: 16px;
}
.testimonial .stars {
  color: #f1d298;
  font-size: 24px;
  margin-bottom: 8px;
}
.testimonial .name {
  font-size: 14px;
  color: #345648;
}

/* --- MAP --- */
.map iframe {
  background: #012322;
  display: block;
  width: 100%;
  height: 540px;
  padding: 3px 0 0;
  margin: 0 auto;
}

/* --- CONTACT & FOOTER --- */
.contact-footer {
  background-color: #295747;
  color: #EEFCF8;
  padding: 60px 0 30px;
  width: 100%;
}
.contact-footer-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-box {
  flex: 1;
  max-width: 320px;
}
.contact-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #f1d298;
  margin-bottom: 16px;
}
.contact-box p,
.contact-box a {
  font-size: 14px;
  line-height: 1.8;
}
.contact-box a:hover {
  color: #f1d298;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  color: #EEFCF8;
}
.contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-box li a {
  color: #EEFCF8;
  transition: color 0.3s ease;
}
.footer-logo {
  max-width: 200px;
  margin-bottom: 8px;
}
.footer-bottom {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #8ca89a;
  font-size: 14px;
  line-height: 1.6;
  color: #8ca89a;
}
.material-symbols-outlined {
  font-variation-settings:
	'FILL' 0,
	'wght' 300,
	'GRAD' -25,
	'opsz' 24;
  vertical-align: middle;
  font-size: 18px;
  margin-right: 4px;
}

/* --- PAGES --- */
.page-header {
  background: linear-gradient(to bottom,  #dfeeea 0%,#fffdfb 100%);
  width: 100%;
}
.page-header-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  padding: 160px 0 20px;
}
.page-header h1 {
  font-family: "Playfair", serif;
  font-weight: 600;
  font-size: 66px;
  color: #012322;
}
.page-header p {
  font-size: 18px;
  color: #012322;
  line-height: 1.6;
}
.page-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background-color: #3ca78c;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}
.page-btn:hover {
  background-color: #318b74;
  transform: translateY(-2px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}
.page-section {
  background-color: #fffdfb;
  padding: 20px 0 60px;
  width: 100%;
}
.page-section-inner {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  color: #241c1c;
  text-align: center;
  padding: 40px 0 40px;
}
.page-section-inner-full {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  color: #241c1c;
  text-align: center;
  padding: 20px 0 40px;
}
.page-section-icon span {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
  background: #133431;
  padding: 16px;
  border-radius: 60px;
}
.page-section h2 {
  font-family: "Playfair", serif;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-section h3 {
  margin: 10px 0 20px;
  font-weight: 600;
  color: #462d2d;
}
.page-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: #665050;
}
.page-section ul {
  margin-bottom: 28px;
}
.page-section li {
  font-size: 18px;
  line-height: 1.8;
  color: #665050;
  padding-left: 12px;
  margin-left: 32px;
}
.page-quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 0 20px;
}
.page-quick {
  background-color: transparent;
  text-align: left;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.page-quick:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}
.page-quick .page-item h3 {
  font-size: 16px;
  margin: 0 0 8px 0;
}
.page-quick .page-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #605050;
}
.page-quick .page-item span {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' -25,
    'opsz' 24;
  font-size: 28px;
  color: #fff;
  background: #3ca78c;
  padding: 12px;
  border-radius: 66px;
}
.page-quick .page-item ul li {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0px 0px 20px;
}
.page-soft-sage-section {
  background: #dfeeea;
  width: 86%;
  max-width: 1440px;
  margin: 60px auto;
  padding: 60px 0 60px;
  border-radius: 12px;
}
.page-soft-sage-section h3 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 600;
  color: #462d2d;
}
.page-soft-sage-section h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #462d2d;
}
.page-soft-sage-section p,
.page-soft-sage-section ul li {
  text-align: left;
  font-size: 16px;
}
.page-soft-sage-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 30px 60px 0px;
}
.page-soft-sage-section-box {
  background-color: transparent;
  text-align: left;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.page-column-section {
  width: 86%;
  max-width: 1440px;
  margin: 60px auto 30px;
  padding: 0;
  border-radius: 12px;
}
.page-column-section h3 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 600;
  color: #462d2d;
}
.page-column-section h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #462d2d;
}
.page-column-section p {
  text-align: left;
  font-size: 16px;
  margin: 0px;
}
.page-column-section ul li {
  text-align: left;
  font-size: 16px;
  margin: 0px 0px 0px 20px;
}
.page-column-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 30px 60px 0px;
}
.page-column-section-box {
  background-color: transparent;
  text-align: left;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.page-column-section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}
.page-column-section-box span {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' -25,
    'opsz' 24;
  font-size: 18px;
  color: #fff;
  background: #3ca78c;
  padding: 8px;
  border-radius: 66px;  
}
.page-golden-sand-section {
  width: 100%;
  padding: 60px 0 60px;
}
.page-golden-sand-section-inner {
  background: #fefcea;
  border: 1px solid #fcf097;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  color: #241c1c;
  border-radius: 12px;
  padding: 30px 40px;
}
.page-golden-sand-section-inner h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #462d2d;
}
.page-golden-sand-section-inner ul li {
  font-size: 16px;
}
.page-golden-sand-section-inner span {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' -25,
    'opsz' 24;
  font-size: 18px;
  color: #462d2d;
  background: #fcf097;
  padding: 8px;
  border-radius: 66px;  
}

/* === Sekcja cennika === */
.pricing-section {
  background-color: #fffdfb;
  padding: 80px 0;
  width: 100%;
}

.pricing-inner {
  width: 86%;
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-title {
  font-family: "Playfair", serif;
  font-size: 46px;
  font-weight: 600;
  color: #012322;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid #e3e3e3;
  align-items: center;
  transition: background 0.3s ease;
}

.pricing-item:hover {
  background-color: #f9f4ec;
}

.pricing-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #012322;
}

.pricing-info p {
  font-size: 15px;
  color: #665050;
  line-height: 1.5;
}

.pricing-time {
  font-size: 16px;
  color: #3ca78c;
  font-weight: 500;
  text-align: center;
}

.pricing-price {
  font-size: 18px;
  font-weight: 600;
  color: #012322;
  text-align: center;
}

/* === PROMOCJE === */
.promotion .pricing-price {
  color: #c94e4e;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  color: #8c8c8c;
  font-size: 14px;
}

.new-price {
  color: #c94e4e;
  font-size: 20px;
  font-weight: bold;
}

.promo-description {
  margin-top: 12px;
  font-size: 14px;
  color: #295747;
  background: #ebf4e4;
  padding: 12px 16px;
  border-left: 4px solid #3ca78c;
  border-radius: 6px;
  line-height: 1.5;
}
.promo-description strong {
  display: block;
  color: #133431;
  font-weight: 600;
}

.pricing-time ul,
.pricing-price ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* domyślnie układ kolumnowy */
.pricing-time-list,
.pricing-price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.pricing-time-list li {
  font-size: 16px;
  color: #3ca78c;
  font-weight: 500;
  text-align: center;
}

.pricing-price-list li {
  font-size: 18px;
  font-weight: 600;
  color: #012322;
  text-align: center;
}

.pricing-time span,
.pricing-price span {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
  .pricing-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .pricing-time,
  .pricing-price {
    font-size: 16px;
  }

  .pricing-info h3 {
    font-size: 18px;
  }

  .pricing-info p {
    font-size: 14px;
  }

  .pricing-price {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  
  .pricing-time-list li,
  .pricing-price-list li {
    text-align: center;
  }

  .pricing-time span,
  .pricing-price span {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.8;
  }
}

/* --- ACCORDION --- */
.accordion-section {
  background: #dfeeea;
  padding: 80px 0 80px;
  width: 100%;
}
.accordion-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
}
.accordion-inner h2 {
  font-family: "DM Serif Text", serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #462d2d;
}
.accordion-inner p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #665050;
}
.accordion-item {
  border-top: 1px solid #bdcac6;
}
.accordion-item:last-of-type {
  border-bottom: 1px solid #bdcac6;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  color: #241c1c;
  cursor: pointer;
  transition: color 0.3s;
  text-align: left;
}
.accordion-header:hover {
  color: #c7a552;
}
.accordion-header .icon {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' -25,
    'opsz' 24;
  transition: transform 0.3s;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content ul {
  list-style: disc inside;
  padding-left: 1em;
  margin: 12px 0 24px;
}
.accordion-content li {
  margin-bottom: 8px;
  color: #665050;
  font-size: 18px;
}
.accordion-item.active .accordion-content {
  max-height: 500px; /* powinno wystarczyć na kilka punktów */
}
.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

/* --- IMAGES & VIDEOS --- */
.image-section {
  position: relative;
  background: #dfeeea;
  padding: 30px 0;
  width: 100%;
}
.image-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.image-inner img {
  background-color: #fff;
  max-width: 600px;
  height: auto;
  margin: 30px;
  padding: 0px;
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-inner img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.08);
}
.image-max-section {
  position: relative;
  background: transparent;
  padding: 10px 0;
  width: 100%;
}
.image-max-inner {
  width: 80%;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.image-max-inner img {
  background-color: transparent;
  max-width: 800px;
  height: auto;
  margin: 0px;
  padding: 0px;
}

/* --- CONTACT PAGE: LAYOUT --- */
.contact-page-header {
  background: url('img/pexels-asphotography-1002703.jpg') no-repeat center center/cover;
  background-color: #012322;
  width: 100%;
}
.contact-page-header-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
  padding: 140px 0 80px;
}
.contact-page-header h1 {
  font-family: "Playfair", serif;
  font-weight: 600;
  font-size: 66px;
  color: #fff;
}
.contact-page-header p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}
.contact-page {
  background: #F9F4EC;
  padding: 0px 0 30px;
  width: 100%;
}
.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 0 100px;
}
/* lewa kolumna */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-card,
.bank-card {
  background-color: transparent;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card a:hover {
  color: #3ca78c !important;
}
/* prawa kolumna – szybki kontakt */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-quick-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0 20px;
}
.contact-quick {
  background-color: transparent;
  border: 1px solid #3ca78c;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.contact-quick:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.06);
}
.contact-quick .quick-item strong {
  font-size: 18px;
}
.contact-quick .quick-item {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: #605050;
}
.contact-quick .quick-item span {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' -25,
    'opsz' 24;
  font-size: 28px;
  color: #fff;
  background: #3ca78c;
  padding: 12px;
  border-radius: 66px;
}
.contact-quick .quick-item ul {
  margin: 6px 0px 0px 20px;
}
/* prawa kolumna – formularz */
.contact-form-wrapper {
  background-color: #012322;
  padding: 30px;
  border-radius: 12px;
}
.contact-form-wrapper h3 {
  font-family: "Playfair", serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
}
.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 18px 16px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
}
.contact-form-wrapper button {
  align-self: flex-end;
  padding: 16px 28px;
  background: none;
  background: #f1d298;
  color: #012322;
  border-radius: 66px;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}
.contact-form-wrapper button:hover {
  background-color: #3ca78c;
  color: #fff;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(199,165,82,0.3);
}

/* --- SIMPLE MODAL --- */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 24px;
  cursor: pointer;
}
.info-card h3,
.bank-card h3 {
  font-family: "Playfair", serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #241c1c;
}
.info-card p,
.bank-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #665050;
  margin-bottom: 16px;
}
.info-card a,
.bank-card a {
  color: #241c1c;
  text-decoration: underline;
}
.info-card a:hover,
.bank-card a:hover {
  color: #f1d298;
}

/* --- HAMBURGER & MOBILE NAV --- */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  position: absolute;
  top: calc(50% - 20px);
  top: 28px;
  right: 30px;
  width: 25px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle-label span {
  display: block;
  width: 100%;
  height: 4px;
  top: 10px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === KEYFRAMES === */

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === STAN POCZĄTKOWY === */

.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  visibility: visible;
}

/* === ANIMACJE (bez delayów) === */

.fadeInUp.animated {
  animation-name: fadeInUp;
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.fadeIn.animated {
  animation-name: fadeIn;
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.zoomIn.animated {
  animation-name: zoomIn;
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.fadeInRight.animated {
  animation-name: fadeInRight;
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.fadeInLeft.animated {
  animation-name: fadeInLeft;
  animation-duration: 0.9s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* === OPÓŹNIENIA SEKWENCYJNE === */

.delay-1.animated { animation-delay: 0.3s; }
.delay-2.animated { animation-delay: 0.6s; }
.delay-3.animated { animation-delay: 0.9s; }
.delay-4.animated { animation-delay: 1.2s; }
.delay-5.animated { animation-delay: 1.5s; }
.delay-6.animated { animation-delay: 1.8s; }
.delay-7.animated { animation-delay: 2.1s; }
.delay-8.animated { animation-delay: 2.4s; }
.delay-9.animated { animation-delay: 2.7s; }
.delay-10.animated { animation-delay: 3.0s; }

/* mobile */
@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .office-info { display: none; }
  .logo { width: 160px; height: auto; top: -3px; }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #012322;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 44px 30px 40px;
    z-index: 1050;
  }
  .nav-toggle:checked + .nav-toggle-label + .header-inner nav {
    transform: translateY(0);
  }
  nav a {
    width: 100%;
    padding: 0px 16px;
    margin-bottom: 10px;
    border-bottom: 0px solid rgba(36,28,28,0.1);
  }
  .dropdown {
    width: 100%;
    padding: 14px 0px;
    margin-bottom: 10px;
    border-bottom: 0px solid rgba(36,28,28,0.1);
  }
  nav a:hover, .dropdown > a:hover {
    padding: 0px 16px;
    border-bottom: 0px solid rgba(36,28,28,0.1);
  }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    padding-left: 20px;
    background: none;
  }
  .dropdown > a::after {
    content: '';
    float: right;
    transition: transform 0.3s;
  }
  .dropdown.open > .dropdown-menu {
    display: block;
  }
  
  .hero {
    height: 100svh; /* pełna wysokość mobilnego ekranu, działa idealnie */
    padding: 20px 0;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center; /* aby nagłówek wyglądał premium */
    gap: 20px;
  }

  .hero-text {
    width: 100%;
    max-height: none;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }

  .hero-text h1 {
    font-size: clamp(28px, 8vw, 42px); /* idealna skala na telefony */
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: clamp(15px, 4vw, 18px);
    margin: 16px 0 28px;
    max-width: 90%;
  }

  .hero-image {
    order: -1; /* obraz idzie na górę → ładniejszy layout */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 80%;
    height: auto;
    max-height: 40vh;
    object-fit: contain;
  }

  .hero-text a {
    padding: 14px 26px;
    font-size: 16px;
  }

  .about-inner {
    width: 90%;
    padding: 60px 0;
  }
  .about-icon span {
    font-size: 32px;
    padding: 12px;
  }
  .about h2 {
    font-size: 36px;
  }
  .about p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  .about-stats div {
    flex: none;
    min-width: unset;
  }
  .stat-number {
    font-size: 42px;
  }
  .stat-label {
    font-size: 16px;
  }
  
  .quote {
    padding: 80px 0;
    background-position: center;
    background-size: cover;
  }  
  .quote-inner {
    width: 90%;
  }  
  .quote-inner h2 {
    font-size: 32px;
    line-height: 1.3;
  }  
  .quote-inner p {
    font-size: 14px;
    margin-top: 16px;
  }

  .tasks {
    padding: 60px 0;
  }  
  .tasks-inner {
    width: 92%;
  }  
  .tasks-header h2 {
    font-size: 36px;
  }  
  .tasks-header p {
    font-size: 16px;
  }  
  .tasks-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 92%;
    margin: 0 auto;
  }  
  .task-tile {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  } 
  .task-icon {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }
  .task-icon span {
    font-size: 28px;
    padding: 5px;
  }
  .task-time {
    font-size: 12px;
  }
  .task-time .material-symbols-outlined {
    font-size: 14px;
  }
  .task-tile p b {
    font-size: 16px;
  }
  .task-tile p {
    font-size: 14px;
  }
  .task-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-header h2 {
    font-size: 36px;
  }
  .testimonials-header p {
    font-size: 16px;
    padding: 0 20px;
  }
  .testimonials-grid {
    width: 92%;
    gap: 24px;
  }
  .testimonial {
    padding: 16px;
  }
  .testimonial img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .testimonial blockquote {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .testimonial .stars {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .testimonial .name {
    font-size: 13px;
  }

  .contact-footer {
    padding: 40px 0 20px;
  }
  .contact-footer-inner {
    flex-direction: column;
    gap: 32px;
    width: 92%;
  }
  .contact-box {
    max-width: 100%;
  }
  .contact-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .contact-box p,
  .contact-box a {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-logo {
    max-width: 160px;
    margin-bottom: 6px;
  }
  .footer-desc {
    font-size: 13px;
    line-height: 1.6;
  }
  .footer-bottom {
    width: 92%;
    font-size: 13px;
    margin-top: 40px;
    padding-top: 20px;
  }
  
  .material-symbols-outlined {
    font-size: 16px;
    margin-right: 3px;
  }
  
  .image-section {
    padding: 20px 0;
  }
  .image-inner {
    width: 92%;
  }
  .image-inner img {
    max-width: 100%;
    margin: 16px 0;
    border-radius: 10px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.05);
  }
  .image-max-section {
    padding: 10px 0;
  }
  .image-max-inner {
    width: 92%;
  }
  .image-max-inner img {
    max-width: 100%;
    height: auto;
  }
  
  .accordion-section {
    padding: 50px 0;
  }
  .accordion-inner {
    width: 92%;
  }
  .accordion-inner h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .accordion-inner p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .accordion-header {
    font-size: 16px;
    padding: 14px 0;
  }
  .accordion-content li {
    font-size: 16px;
  }
  .accordion-content ul {
    padding-left: 0.5em;
  }
  .accordion-header .icon {
    font-size: 20px;
  }

  .contact-page-header-inner {
    width: 92%;
    padding: 120px 0 60px;
    text-align: center;
  }
  .contact-page-header h1 {
    font-size: 40px;
  }
  .contact-page-header p {
    font-size: 16px;
  }
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 60px;
    width: 92%;
  }
  .info-card,
  .bank-card,
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-quick-info {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 92%;
    padding: 40px 0 10px;
  }
  .contact-quick {
    padding: 20px;
  }
  .contact-quick .quick-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
  }
  .contact-quick .quick-item span {
    font-size: 24px;
    padding: 10px;
  } 
  .contact-quick .quick-item strong {
    font-size: 16px;
  }
  .contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    font-size: 16px;
    padding: 14px;
  }
  .contact-form-wrapper button {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
  
  .page-header-inner {
    width: 92%;
    padding: 130px 0 20px;
  }
  .page-header h1 {
    font-size: 38px;
  }
  .page-header p {
    font-size: 16px;
  }
  .page-btn {
    font-size: 14px;
    padding: 10px 18px;
    margin: 6px;
  }
  .page-soft-sage-section {
    width: 92%;
    padding: 40px 30px;
  }
  .page-column-section,
  .page-section-inner,
  .page-section-inner-full,
  .page-golden-sand-section-inner {
    width: 92%;
    padding: 40px 0;
  }
  .page-section h2 {
    font-size: 32px;
  }
  .page-section h3 {
    font-size: 18px;
  }
  .page-section p,
  .page-section ul li {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-section-icon span {
    font-size: 32px;
    padding: 12px;
  }
  .page-section li {
    margin-left: 20px;
    padding-left: 8px;
  }
  .page-quick-info {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 92%;
    padding: 30px 0;
  }
  .page-quick {
    padding: 20px;
  }
  .page-quick .page-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
  }
  .page-quick .page-item span {
    font-size: 24px;
    padding: 10px;
  }
  .page-quick .page-item h3 {
    font-size: 15px;
  }
  .page-quick .page-item ul li {
    font-size: 14px;
  }
  .page-soft-sage-section-inner,
  .page-column-section-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  .page-soft-sage-section-box,
  .page-column-section-box {
    padding: 20px;
  }
  .page-column-section-box span {
    font-size: 16px;
    padding: 6px;
  }
  .page-column-section h3,
  .page-soft-sage-section h3 {
    font-size: 24px;
  }
  .page-column-section h4,
  .page-soft-sage-section h4 {
    font-size: 16px;
  }
  .page-golden-sand-section {
    padding: 40px 0;
    width: 92%;
    margin: 0 auto;
  }
  .page-golden-sand-section-inner {
    padding: 20px;
  }
  .page-golden-sand-section-inner h4 {
    font-size: 16px;
  }
  .page-golden-sand-section-inner ul li {
    font-size: 14px;
  }
  .page-golden-sand-section-inner span {
    font-size: 16px;
    padding: 6px;
  }
}

@media (max-height: 850px) {
  .hero-text h1 {
    font-size: clamp(34px, 4.5vw, 54px);
  }
  .hero-text p {
    margin: 20px 0 30px;
  }
  .hero {
    padding: 20px 0;
  }
}

@media (max-height: 750px) {
  .hero-text h1 {
    font-size: clamp(30px, 4vw, 48px);
  }
  .hero-text p {
    font-size: 15px;
  }
}

/* ===== VERY SMALL SCREENS (do 390px) ===== */
@media (max-width: 390px) {
  .hero-text h1 {
    font-size: clamp(24px, 9vw, 34px);
  }
  .hero-text p {
    font-size: clamp(14px, 4vw, 16px);
  }
}