* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Bricolage Grotesque", sans-serif;
  background-color: #fff;
  color: #141414;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}
a {
  text-decoration: none;
  color: inherit;
}
strong {
  font-size: 18px;
  font-weight: 600;
}
/* --- HEADER & NAV --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: rgba(40, 18, 1, 0.86);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  color: #141414;
}
.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;
  width: 215px;
  height: 60px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav a {
  font-size: 14px;
  text-transform: uppercase;
  color: #efece0;
  padding: 12px 2px;
}
nav a:hover {
  padding-bottom: 11px;
  border-bottom: 1px solid #efece0;
}
nav a.active {
  padding-bottom: 11px;
  border-bottom: 1px solid #efece0;
}

.btn-shop {
  background: #efece0;
  color: #141414;

  padding: 14px 24px;
}
.btn-shop:hover {
  background: #141414;
  color: #f1d062;
  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 {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
}
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/hero-bg-02.jpg') no-repeat center center / cover;
  z-index: -1;
}
.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: 40%;
  animation: fadeSlideUp 1s ease both;
  animation-delay: 0.3s;
}
.hero-text h1 {
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  color: #141414;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 40px 0px;
  color: #141414;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-text a {
  display: inline-block;
  padding: 18px 28px;
  background-color: #f1d062;
  color: #141414;
}
.hero-text a:hover {
  background-color: #141414;
  color: #f1d062;
  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: #fffcf3;
  width: 100%;
  text-align: center;
}
.about-inner {
  padding: 100px 0 60px;
  width: 60%;
  margin: 0 auto;
  color: #141414;
}
.about-icon span {
  font-size: 42px;
  color: #141414;
  margin-bottom: 16px;
  display: inline-block;
  
  background: #f1d062;
  padding: 16px;
  border-radius: 60px;
}
.about h2 {
  font-size: 60px;
  margin-bottom: 30px;
}
.about p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  color: #141414;
  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-size: 60px;
  color: #141414;
  margin-bottom: 2px;
}
.stat-label {
  color: #295747;
  letter-spacing: 1px;
}

/* --- QUOTE --- */
.quote {
  background: #f1d062;
  width: 100%;
  padding: 80px 0;
  color: #141414;
  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-size: 40px;
  line-height: 1.2;
}
.quote-inner p {
  display: inline-block;
  background: #b4dffc;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  margin: 0px 0px 20px;
  padding: 8px 10px;
}

/* --- IMAGES & VIDEOS --- */
.image-section {
  position: relative;
  background: #eeece1;
  padding: 40px 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: 0px 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 & FOOTER --- */
.contact-footer {
  background-color: #141414;
  color: #eeece1;
  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: 22px;
  color: #f1d062;
  margin-bottom: 12px;
}
.contact-box p,
.contact-box a {
  font-size: 14px;
  line-height: 1.8;
}
.contact-box a:hover {
  color: #8a8884;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #a19f9a;
  margin-top: -1px;
}
.footer-desc a {
  border-bottom: 1px dotted #a19f9a;
}
.contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-box li a {
  color: #eeece1;
  transition: color 0.3s ease;
}
.footer-logo {
  max-width: 250px;
  margin-bottom: 14px;
}
.footer-bottom {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #5e5d5a;
  font-size: 12px;
  line-height: 1.4;
  color: #5e5d5a;
}

.material-symbols-outlined {
  font-variation-settings:
	'FILL' 0,
	'wght' 300,
	'GRAD' -25,
	'opsz' 24;
  vertical-align: middle;
  font-size: 18px;
  margin-right: 4px;
}

/* --- CONTACT PAGE: LAYOUT --- */
.contact-page-header {
/*   background: url('img/pexels-asphotography-1002703.jpg') no-repeat center center/cover; */
  background-color: #fffcf3;
  width: 100%;
  border-bottom: 1px solid #efece0;
}
.contact-page-header-inner {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 0 60px;
}
.contact-page-header h1 {
  font-size: 60px;
  color: #141414;
  margin-bottom: 12px;
}
.contact-page-header p {
  font-size: 18px;
  color: rgba(20, 20, 20, 0.6);
  line-height: 1.6;
}
.contact-page-header span {
  display: inline-block;
  background: #b4dffc;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  margin: 0px 0px 10px;
  padding: 8px 10px;
}
.contact-page {
  background: #fffcf3;
  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: 60px 0 100px;
}
/* lewa kolumna */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-card {
  background-color: #efece0;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bank-card {
  background-color: #b4dffc;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card a:hover {
  color: #141414 !important;
  background: #f1d062 !important;
}
/* prawa kolumna – szybki kontakt */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* prawa kolumna – formularz */
.contact-form-wrapper {
  background-color: #442a16;
  color: #fffcf3;
  padding: 30px;
}
.contact-form-wrapper h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fffcf3;
}
.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;
  font-size: 18px;
}
.contact-form-wrapper button {
  align-self: flex-end;
  padding: 16px 28px;
  background: none;
  background: #f1d062;
  color: #141414;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}
.contact-form-wrapper button:hover {
  background-color: #b4dffc;
  color: #141414;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-consent label {
  margin: 0;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent a {
  text-decoration: underline;
}


/* Dropdown formularza kontaktowego */

.contact-form-wrapper select,
.contactForm select {
	width: 100%;
	height: 58px;
	padding: 0 16px;
	margin-bottom: 20px;

	background: #fff;
	border: 0;
	border-radius: 0px;

	font-size: 18px;
	font-family: inherit;
	color: #141414;

	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
}

.contact-form-wrapper select:focus,
.contactForm select:focus {
	outline: none;
	border-color: #8d633c;
	box-shadow: 0 0 0 3px rgba(141,99,60,.15);
}

.contact-form-wrapper select:hover,
.contactForm select:hover {
	border-color: #b68d61;
}

.contact-form-wrapper select option,
.contactForm select option {
	color: #333;
}

/* ===== Premium UX: status + spinner + disabled ===== */

#contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity .2s ease, transform .08s ease;
}

#contact-submit:active {
  transform: translateY(1px);
}

#contact-submit[disabled] {
  opacity: .65;
  cursor: not-allowed;
}

#contact-submit .btn-spinner {
  width: 0;
  height: 0;
  display: inline-block;
  opacity: 0;
}

#contact-submit.is-loading .btn-spinner {
  width: 16px;
  height: 16px;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  max-width: 520px;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* neutral/loading */
.form-status.is-loading {
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}

/* success */
.form-status.is-success {
  border-color: rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .10);
}

/* error */
.form-status.is-error {
  border-color: rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .10);
}

/* ===== Premium UX: status + spinner + disabled ===== */

#contact-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity .2s ease, transform .08s ease;
}

#contact-submit:active { transform: translateY(1px); }

#contact-submit[disabled] {
  opacity: .65;
  cursor: not-allowed;
}

#contact-submit .btn-spinner {
  width: 0;
  height: 0;
  display: inline-block;
  opacity: 0;
}

#contact-submit.is-loading .btn-spinner {
  width: 16px;
  height: 16px;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  max-width: 520px;
  outline: none;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* neutral/loading */
.form-status.is-loading {
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}

/* success */
.form-status.is-success {
  border-color: rgba(16, 185, 129, .35);
  background: rgba(16, 185, 129, .10);
}

/* error */
.form-status.is-error {
  border-color: rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .10);
}

/* mały "fade-out" gdy chowamy */
.form-status.is-hiding {
  opacity: 0;
  transform: translateY(-4px);
}

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

/* --- PAGES --- */
.page-header {
  background: #fffcf3;
  width: 100%;
  border-bottom: 1px solid #efece0;
}
.page-header-inner {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 0 60px;
}
.page-header h1 {
  font-size: 60px;
  color: #141414;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 18px;
  color: #141414;
  opacity: 0.8;
  line-height: 1.6;
}
.page-header span {
  display: inline-block;
  background: #b4dffc;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  margin: 0px 0px 10px;
  padding: 8px 10px;
}
/* .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-jasmine {
  background-color: #f1d062;
  padding: 40px 0 40px;
  width: 100%;
}
.page-section-jasmine span {
  display: inline-block;
  background: #141414;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fffcf4;
  margin: 0px 0px 10px;
  padding: 8px 10px;
}
.page-section-inner-jasmine {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  color: #141414;
  text-align: center;
  padding: 40px 0 40px;
}
.page-section-inner-jasmine h2 {
  font-size: 60px;
  color: #141414;
  margin-bottom: 20px;
}
.page-section-inner-jasmine p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 8px;
}

.page-section hr {
  width: 100%;
  border: 0;
  height: 0;
  border-top: 1px solid #eeece1;
  margin: 100px 0px 80px;
}

.page-section {
  background-color: #fffcf3;
  padding: 40px 0 40px;
  width: 100%;
  border-bottom: 1px solid #eeece1;
}
.page-section-inner {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  color: #141414;
  text-align: center;
  padding: 40px 0 40px;
}
.page-section-inner-full {
  width: 86%;
  max-width: 1440px;
  margin: 0 auto;
  color: #141414;
  text-align: center;
  padding: 20px 0 40px;
}
.page-section-icon span {
  font-size: 42px;
  color: #141414;
  margin-bottom: 16px;
  display: inline-block;
  background: #f1d062;
  padding: 16px;
  border-radius: 60px;
}
.page-section-inner span.date {
  display: inline-block;
  background: #eeece1;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  margin: 0px 0px 10px;
  padding: 8px 10px;
}
.page-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.page-section h3 {
  margin: 10px 0 20px;
  color: #462d2d;
  font-size: 32px;
  margin-bottom: 20px;page-quick
}
.page-section p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 28px;
}
.page-section ul {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
  list-style: disc inside;
}
.page-section ul li {
  margin: 0px;
}
.qr-wrapper {
  max-width: 400px;
  margin: 0 auto 30px;
}
.qr-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #eeece1;
  box-shadow: 0 8px 16px rgba(40, 18, 1, 0.05);
}

#bank-account {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 12px;
}
.copy-btn {
  display: inline-block;
  background: #bcdef9;
  color: #141414;
  border: none;
  padding: 14px 22px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}
.copy-btn:hover {
  background: #f1d062;
}
.copy-message {
  margin-top: 10px;
  font-size: 14px;
  color: #141414;
}

.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: #efece0;
  text-align: left;
  /* border: 1px dashed #141414; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
.page-quick:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(40, 18, 1, 0.05);
}
.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: #141414;
  background: #b4dffc;
  padding: 12px;
}
.page-quick .page-item ul li {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0px 0px 20px;
}

.page-vanillia-section {
  background: #efece0;
  width: 86%;
  max-width: 900px;
  margin: 30px auto;
  padding: 80px 0 0px;
}
.page-vanillia-section h3 {
  margin: 0 0 10px;
  font-size: 32px;
  color: #141414;
}
.page-vanillia-section h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #141414;
}
.page-vanillia-section p,
.page-vanillia-section ul li {
  opacity: 0.8;
  text-align: center;
}
.page-vanillia-section-inner {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
  color: #141414;
  text-align: center;
  /* display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 30px 60px 0px; */
}

.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;
  color: #141414;
}
.page-column-section h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #141414;
}
.page-column-section p {
  text-align: left;
  font-size: 16px;
  opacity: 0.8;
  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 #f1d062;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  color: #141414;
  border-radius: 12px;
  padding: 30px 40px;
}
.page-golden-sand-section-inner h4 {
  margin: 0 0 10px;
  font-size: 18px;
  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: #f1d062;
  padding: 8px;
  border-radius: 66px;  
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(40, 18, 1, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- ACCORDION --- */
.accordion-section {
  background: #efece0;
  padding: 80px 0 80px;
  width: 100%;
}
.accordion-inner {
  width: 86%;
  margin: 0 auto;
  max-width: 900px;
}
.accordion-inner h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #141414;
}
.accordion-inner p {
  font-size: 18px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 28px;
}
.accordion-item {
  border-top: 1px solid #e2e1db;
}
.accordion-item:last-of-type {
  border-bottom: 1px solid #e2e1db;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 18px;
  color: #141414;
  cursor: pointer;
  transition: color 0.3s;
  text-align: left;
}
.accordion-header:hover {
  color: #141414;
  opacity: 0.7;
}
.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;
  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);
}






/* --- 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-size: 32px;
  margin-bottom: 20px;
  color: #141414;
}
.info-card p,
.bank-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.info-card a,
.bank-card a {
  color: #141414;
  text-decoration: underline;
}
.info-card a:hover,
.bank-card a:hover {
  color: #f1d062;
}

/* --- 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.1s; }
.delay-2.animated { animation-delay: 0.2s; }
.delay-3.animated { animation-delay: 0.3s; }
.delay-4.animated { animation-delay: 0.4s; }
.delay-5.animated { animation-delay: 0.5s; }
.delay-6.animated { animation-delay: 0.6s; }
.delay-7.animated { animation-delay: 0.7s; }
.delay-8.animated { animation-delay: 0.8s; }
.delay-9.animated { animation-delay: 0.9s; }
.delay-10.animated { animation-delay: 1.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: rgba(40, 18, 1, 0.95);
    backdrop-filter: blur(8px);
    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;
    padding: 20px 0;
  }

  .hero-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    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);
    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;
    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;
    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-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-vanillia-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-vanillia-section-inner,
  .page-column-section-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  .page-vanillia-section-box,
  .page-column-section-box {
    padding: 20px;
  }
  .page-column-section-box span {
    font-size: 16px;
    padding: 6px;
  }
  .page-column-section h3,
  .page-vanillia-section h3 {
    font-size: 24px;
  }
  .page-column-section h4,
  .page-vanillia-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;
  }
}

.hero-text h1{
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.02;
}
.hero-text p{
  font-size: clamp(16px, 1.4vw, 18px);
}

@media (max-width: 900px){

  /* HERO przestaje być 100vh overlayem */
  .hero{
    height: auto;
    min-height: unset;
    display: block;
    padding: 0;
  }

  /* Zdjęcie jako osobny blok o określonej wysokości */
  .hero-bg-image{
    position: relative;
    height: 100vh;                 /* pełny ekran */
    width: 100%;
    background-position: 68% 100%;;
    background-size: cover;
  }

  /* Usuwamy absolutne centrowanie */
  .hero-inner{
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 20px 60px;
    justify-content: center;
  }

  /* Tekst jako osobna sekcja pod zdjęciem */
  .hero-text{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
  }

  .hero-text h1{
    font-size: clamp(32px, 8vw, 46px);
    line-height: 1.05;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-text p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 26px;
    border-radius: 999px;
  }

  .hero-text{
    text-align: center;
  }

}


  .museum-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(36, 28, 28, 0.58);
    backdrop-filter: blur(5px);
  }

  .museum-popup-overlay.is-visible {
    display: flex;
  }

  .museum-popup {
    position: relative;
    width: min(92vw, 520px);
    background: #f3eee5;
    color: #241c1c;
    border: 1px solid rgba(199, 165, 82, 0.45);
    border-radius: 12px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    overflow: hidden;
    animation: museumPopupIn 0.35s ease-out both;
  }

  .museum-popup::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at top left, rgba(199, 165, 82, 0.18), transparent 42%),
      linear-gradient(180deg, rgba(255,255,255,0.38), transparent);
  }

  .museum-popup-content {
    position: relative;
    padding: 46px 38px 38px;
    text-align: center;
  }

  .museum-popup-kicker {
    margin-bottom: 12px;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a7a2f;
  }

  .museum-popup h2 {
    margin: 0 0 18px;
    font-family: "DM Serif Text", Georgia, serif;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.05;
    font-weight: 400;
    color: #241c1c;
  }

  .museum-popup p {
    margin: 0 auto 18px;
    max-width: 390px;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(36, 28, 28, 0.82);
  }

  .museum-popup-hours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 20px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #241c1c;
    color: #f3eee5;
    font-family: "DM Serif Text", Georgia, serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 24px rgba(36, 28, 28, 0.22);
  }

  .museum-popup-small {
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: rgba(36, 28, 28, 0.68) !important;
  }

  .museum-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(199, 165, 82, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    color: #241c1c;
    font-size: 28px;
    line-height: 34px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .museum-popup-close:hover {
    background: #c7a552;
    color: #fff;
    transform: rotate(90deg);
  }

  @keyframes museumPopupIn {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @media (max-width: 520px) {
    .museum-popup-content {
      padding: 44px 24px 30px;
    }
    .museum-popup-hours {
      font-size: 26px;
    }
  }