/*
Theme Name: Spa Wellness 01
Author: Weronika Julia Zawadzka
Description: Kompaktowy motyw strony dla spa, wellness i kameralnych miejsc wypoczynkowych.
Version: 1.0
*/


/* =========================
   VARIABLES
========================= */

:root {
  /* COLORS */
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #f5f5f2;
  --color-text: #3c3c38;
  --color-muted: #77776f;
  --color-heading: #1d1d1a;
  --color-dark: #1d1d1a;
  --color-line: #deded8;

  --color-accent: #8f6f3f;
  --color-accent-dark: #5f4828;
  --color-accent-soft: rgba(143, 111, 63, .12);
  --color-accent-line: rgba(143, 111, 63, .35);

  /* FONT */
  --font-main: "Manrope", Arial, sans-serif;

  /* TYPOGRAPHY - intentionally compact */
  --h1: 38px;
  --h2: 28px;
  --h3: 18px;
  --text: 14px;

  --h1-mobile: 28px;
  --h2-mobile: 23px;
  --h3-mobile: 17px;
  --text-mobile: 14px;

  --heading-line: 1.14;
  --text-line: 1.58;

  /* LAYOUT */
  --container: 1180px;
  --content-width: 760px;
  --text-width: 620px;
  --padding-side: 28px;
  --padding-side-mobile: 16px;
  --header-height: 74px;

  /* SPACING - tighter than previous themes */
  --space-1: 6px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 26px;
  --space-5: 38px;
  --space-6: 52px;
  --space-7: 68px;
  --space-8: 84px;

  /* GRID */
  --grid-gap: 30px;
  --grid-gap-small: 18px;
  --column-min: 280px;

  /* RADIUS */
  --radius-none: 0;
  --radius-small: 4px;
  --radius-medium: 6px;
  --radius-large: 10px;
  --radius-round: 999px;

  /* SHADOW */
  --shadow-soft: 0 8px 22px rgba(29, 29, 26, .08);
  --shadow-medium: 0 14px 34px rgba(29, 29, 26, .14);
}


/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: var(--text-line);
  overflow-x: hidden;
}

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

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

svg {
  display: block;
}

a,
button,
input,
textarea,
select,
label,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  touch-action: manipulation;
}


/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3 {
  margin: 0 0 var(--space-2);
  color: var(--color-heading);
  font-family: var(--font-main);
  line-height: var(--heading-line);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: var(--content-width);
  font-size: var(--h1);
}

h2 {
  max-width: var(--content-width);
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p {
  margin: 0 0 var(--space-2);
  font-size: var(--text);
  line-height: var(--text-line);
}

.text-narrow {
  max-width: var(--text-width);
}

.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-2);
  color: var(--color-accent-dark);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--color-accent);
}


/* =========================
   LAYOUT
========================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--padding-side);
}

.section {
  position: relative;
  padding: var(--space-6) 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap);
  align-items: center;
}

.col {
  flex: 1 1 0;
  min-width: var(--column-min);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap-small);
}


/* =========================
   UI
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform .2s ease,
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--accent {
  background: var(--color-accent);
  color: #ffffff;
}

.button--primary:hover,
.button--accent:hover {
  background: var(--color-accent-dark);
}

.button--secondary,
.button--outline {
  border-color: var(--color-line);
  background: #ffffff;
  color: var(--color-heading);
}

.card {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.card__body {
  padding: var(--space-3);
}


/* =========================
   IMAGES
========================= */

.img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.img--rectangle {
  aspect-ratio: 4 / 3;
}

.img--wide {
  aspect-ratio: 16 / 9;
}

.img--tall {
  aspect-ratio: 3 / 4;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .row {
    gap: var(--space-4);
  }
}

@media (max-width: 740px) {
  .container {
    padding: 0 var(--padding-side-mobile);
  }

  .section {
    padding: var(--space-5) 0;
  }

  h1 {
    font-size: var(--h1-mobile);
  }

  h2 {
    font-size: var(--h2-mobile);
  }

  h3 {
    font-size: var(--h3-mobile);
  }

  p {
    font-size: var(--text-mobile);
  }

  .button {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 12px;
  }
}




/* =========================
   MAZURY WELLNESS FRONT PAGE
========================= */

body {
  padding-bottom: 58px;
}

.mazury-page {
  background: #f7f4ec;
  color: #5e6259;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.58;
}

.mazury-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mazury-page .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

/* SIDE SOCIALS */

.mazury-side-socials {
  position: fixed;
  right: 18px;
  top: 42%;
  z-index: 70;
  display: grid;
  gap: 8px;
}

.mazury-side-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 185, 129, .72);
  background: rgba(36, 52, 38, .94);
  color: #d7b981;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.mazury-side-socials a:hover {
  background: #8b6b3d;
  color: #ffffff;
}

/* HERO */

.mazury-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #243426;
}

.mazury-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 35, 25, .9), rgba(25, 35, 25, .64) 44%, rgba(25, 35, 25, .22)),
    url("http://spa-wellness-demo-1.architektweb.pl/wp-content/uploads/2026/06/123.png");
  background-size: cover;
  background-position: center;
}

.mazury-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 58px;
  background: #f7f4ec;
  clip-path: polygon(0 48%, 12% 62%, 28% 42%, 44% 58%, 61% 37%, 78% 55%, 100% 34%, 100% 100%, 0 100%);
}

.mazury-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-top: 76px;
  padding-bottom: 92px;
  color: #ffffff;
}

.mazury-kicker {
  margin: 0 0 10px;
  color: #e0c996;
  font-size: 12px;
  font-weight: 900;
}

.mazury-hero h1 {
  max-width: 630px;
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.mazury-line {
  width: 92px;
  height: 2px;
  margin: 18px 0;
  background: #d7b981;
}

.mazury-hero__content p {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
}

.mazury-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 18px;
  border: 1px solid #8b6b3d;
  border-radius: 0;
  background: #8b6b3d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.mazury-button--green {
  border-color: #3f6047;
  background: #3f6047;
}

/* FEATURE CARDS */

.mazury-feature-wrap {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding-bottom: 42px;
}

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

.mazury-feature-card {
  position: relative;
  min-height: 162px;
  padding: 40px 24px 22px;
  border: 1px solid #d8cfbb;
  background: #fffdf7;
}

.mazury-feature-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -22px;
  width: 54px;
  height: 54px;
  background: #8b6b3d;
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
}

.mazury-feature-card span {
  position: absolute;
  left: 24px;
  top: -4px;
  z-index: 1;
  width: 54px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.mazury-feature-card h2 {
  margin: 0 0 13px;
  color: #1d211d;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.mazury-feature-card p {
  margin: 0;
  color: #686d63;
  font-size: 14px;
  text-align: justify;
}

/* ABOUT */

.mazury-about {
  padding: 0 0 44px;
  background: #f7f4ec;
}

.mazury-about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  gap: 46px;
  align-items: center;
}

.mazury-section-label {
  margin: 0 0 9px;
  color: #8b6b3d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mazury-section-label--light {
  color: #e0c996;
}

.mazury-about h2,
.mazury-story__copy h2,
.mazury-day h2,
.mazury-gallery h2 {
  margin: 0;
  color: #151a15;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
}

.mazury-title-line {
  width: 125px;
  height: 3px;
  margin: 18px 0 24px;
  background: #8b6b3d;
}

.mazury-about p {
  margin: 0 0 15px;
  color: #62675e;
  font-size: 14px;
  text-align: justify;
}

.mazury-about p strong {
  color: #4b3d25;
}

.mazury-about__image {
  position: relative;
  padding: 12px;
  border: 1px solid #d8cfbb;
  background: #fffdf7;
}

.mazury-about__image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: center;
}

.mazury-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 180px;
  padding: 16px;
  border: 1px solid #d8cfbb;
  background: rgba(255, 253, 247, .94);
  text-align: center;
}

.mazury-note strong {
  display: block;
  color: #3f6047;
  font-size: 18px;
}

.mazury-note span {
  display: block;
  margin-top: 6px;
  color: #8b6b3d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

/* STORY */

.mazury-story {
  position: relative;
  padding: 46px 0;
  overflow: hidden;
  background: #efe6d3;
}

.mazury-story__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,244,236,.94), rgba(247,244,236,.78)),
    url("http://spa-wellness-demo-1.architektweb.pl/wp-content/uploads/2026/06/134.png");
  background-size: cover;
  background-position: center;
}

.mazury-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.mazury-story__image {
  position: relative;
  padding: 12px;
  border: 1px solid #cfc2a8;
  background: #fffdf7;
}

.mazury-story__image img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.mazury-story__image span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 9px 13px;
  background: rgba(36, 52, 38, .9);
  color: #fffdf7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mazury-story__copy p {
  margin: 0 0 14px;
  color: #5f645b;
  font-size: 14px;
  text-align: justify;
}

.mazury-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mazury-story__tags span {
  padding: 7px 10px;
  border: 1px solid #cfc2a8;
  background: rgba(255, 253, 247, .72);
  color: #4b3d25;
  font-size: 12px;
  font-weight: 800;
}

/* ROOMS */

.mazury-rooms {
  padding: 44px 0;
  background: #fffdf7;
}

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

.mazury-room-card {
  border: 1px solid #d8cfbb;
  background: #f7f4ec;
}

.mazury-room-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.mazury-room-card > div {
  padding: 18px;
}

.mazury-room-card h3 {
  margin: 0 0 10px;
  color: #1d211d;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.mazury-room-card p {
  margin: 0 0 13px;
  color: #686d63;
  font-size: 14px;
  text-align: justify;
}

.mazury-room-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mazury-room-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4f574c;
  font-size: 13px;
  font-weight: 800;
}

.mazury-room-card i {
  width: 16px;
  color: #8b6b3d;
}

/* RIBBON */

.mazury-ribbon {
  padding: 22px 0;
  background: #243426;
  color: #fffdf7;
}

.mazury-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

.mazury-ribbon__grid div {
  padding: 18px;
  background: #243426;
}

.mazury-ribbon strong {
  display: block;
  margin-bottom: 5px;
  color: #e0c996;
  font-size: 14px;
  font-weight: 900;
}

.mazury-ribbon span {
  display: block;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

/* OFFER */

.mazury-offer {
  position: relative;
  padding: 58px 0 44px;
  overflow: hidden;
  background: #202820;
}

.mazury-offer__bg {
  position: absolute;
  inset: 0 0 auto;
  height: 305px;
  background:
    linear-gradient(rgba(28, 34, 28, .84), rgba(28, 34, 28, .84)),
    url("http://spa-wellness-demo-1.architektweb.pl/wp-content/uploads/2026/06/134.png");
  background-size: cover;
  background-position: center;
}

.mazury-offer__bg::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 0;
  width: 420px;
  height: 270px;
  background: #8b6b3d;
  clip-path: polygon(0 0, 100% 0, 42% 100%, 0 100%);
  opacity: .9;
}

.mazury-offer__head {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
  text-align: center;
}

.mazury-offer__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 900;
}

.mazury-offer__head span {
  display: block;
  width: 120px;
  height: 3px;
  margin: 17px auto 0;
  background: #ffffff;
}

.mazury-offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mazury-service-card {
  border: 1px solid #d8cfbb;
  background: #fffdf7;
}

.mazury-service-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.mazury-service-card h3 {
  min-height: 52px;
  margin: 0;
  padding: 13px 16px;
  background: #243426;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.mazury-service-card p {
  min-height: 102px;
  margin: 0;
  padding: 16px;
  color: #686d63;
  font-size: 14px;
  text-align: justify;
}

/* DAY */

.mazury-day {
  position: relative;
  padding: 44px 0;
  background:
    linear-gradient(90deg, rgba(255,253,247,.94), rgba(255,253,247,.78)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.mazury-day__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.mazury-day__image {
  padding: 12px;
  border: 1px solid #d8cfbb;
  background: #f7f4ec;
}

.mazury-day__image img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.mazury-day-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mazury-day-list article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #d8cfbb;
}

.mazury-day-list span {
  color: #8b6b3d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mazury-day-list p {
  margin: 0;
  color: #62675e;
  font-size: 14px;
}

/* MOOD */

.mazury-mood {
  position: relative;
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(36,52,38,.88), rgba(36,52,38,.68)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  color: #fffdf7;
}

.mazury-mood__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.mazury-mood h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.mazury-mood__text p:not(.mazury-section-label) {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  text-align: justify;
}

.mazury-mood__cards {
  display: grid;
  gap: 12px;
}

.mazury-mood__cards article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  padding: 16px;
  border: 1px solid rgba(224,201,150,.55);
  background: rgba(255,253,247,.08);
}

.mazury-mood__cards span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d7b981;
  color: #d7b981;
  font-size: 12px;
  font-weight: 900;
}

.mazury-mood__cards strong {
  color: #ffffff;
  font-size: 15px;
}

.mazury-mood__cards p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

/* INCLUDED */

.mazury-included {
  padding: 34px 0;
  background: #fffdf7;
}

.mazury-included-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: #d8cfbb;
  border: 1px solid #d8cfbb;
}

.mazury-included-list div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 92px;
  padding: 14px 10px;
  background: #f7f4ec;
  text-align: center;
}

.mazury-included-list i {
  color: #8b6b3d;
  font-size: 19px;
}

.mazury-included-list span {
  color: #31362f;
  font-size: 12px;
  font-weight: 900;
}

/* GALLERY */

.mazury-gallery {
  padding: 42px 0 46px;
  background: #f7f4ec;
}

.mazury-gallery__head {
  margin-bottom: 24px;
}

.mazury-gallery__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 170px;
  gap: 14px;
}

.mazury-gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #d8cfbb;
}

.mazury-gallery__grid img:first-child {
  grid-row: span 2;
}

.mazury-gallery__grid img:nth-child(3) {
  grid-row: span 2;
}

/* ENDING */

.mazury-ending {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #243426;
}

.mazury-ending__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 31, 24, .88), rgba(23, 31, 24, .55), rgba(23, 31, 24, .24)),
    url("http://spa-wellness-demo-1.architektweb.pl/wp-content/uploads/2026/06/127.png");
  background-size: cover;
  background-position: center;
}

.mazury-ending__inner {
  position: relative;
  z-index: 1;
  padding-top: 70px;
  padding-bottom: 70px;
}

.mazury-ending__card {
  max-width: 560px;
  padding: 30px;
  border: 1px solid rgba(224, 201, 150, .55);
  background: rgba(255, 253, 247, .92);
}

.mazury-ending__card h2 {
  margin: 0 0 14px;
  color: #151a15;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 900;
}

.mazury-ending__card p {
  margin: 0 0 18px;
  color: #5f645b;
  font-size: 14px;
}

.mazury-ending__details {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: #3f6047;
  font-size: 13px;
  font-weight: 900;
}

.mazury-ending__details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FLOATING CONTACT */

.mazury-floating-contact {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(720px, calc(100% - 32px));
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(224, 201, 150, .75);
  background: rgba(36, 52, 38, .94);
  color: #fffdf7;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.mazury-floating-contact div {
  flex: 1;
  min-width: 0;
}

.mazury-floating-contact strong {
  display: block;
  color: #e0c996;
  font-size: 13px;
  line-height: 1.2;
}

.mazury-floating-contact span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.2;
}

.mazury-floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid #d7b981;
  color: #fffdf7;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.mazury-floating-contact a:first-of-type {
  background: #8b6b3d;
  border-color: #8b6b3d;
}

/* REVEAL ANIMATION */

.mazury-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.mazury-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .mazury-feature-grid,
  .mazury-offer-grid,
  .mazury-ribbon__grid,
  .mazury-about__grid,
  .mazury-story__grid,
  .mazury-day__grid,
  .mazury-mood__grid,
  .mazury-room-grid {
    grid-template-columns: 1fr;
  }

  .mazury-feature-wrap {
    margin-top: -28px;
  }

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

  .mazury-side-socials {
    right: 8px;
    top: auto;
    bottom: 72px;
    gap: 5px;
  }

  .mazury-side-socials a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .mazury-included-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 740px) {
  body {
    padding-bottom: 64px;
  }

  .mazury-page .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mazury-hero {
    min-height: 390px;
  }

  .mazury-hero__content {
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .mazury-hero h1 {
    font-size: 27px;
  }

  .mazury-hero__content p {
    font-size: 13px;
  }

  .mazury-feature-grid {
    gap: 18px;
  }

  .mazury-feature-card {
    min-height: auto;
    padding: 38px 20px 22px;
  }

  .mazury-about {
    padding-bottom: 34px;
  }

  .mazury-about h2,
  .mazury-story__copy h2,
  .mazury-day h2,
  .mazury-gallery h2,
  .mazury-ending__card h2 {
    font-size: 24px;
  }

  .mazury-note {
    width: 145px;
    padding: 11px;
    right: 20px;
    bottom: 20px;
  }

  .mazury-rooms {
    padding: 34px 0;
  }

  .mazury-offer {
    padding: 46px 0 34px;
  }

  .mazury-offer__head {
    margin-bottom: 30px;
  }

  .mazury-offer__head h2 {
    font-size: 25px;
  }

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

  .mazury-day {
    padding: 34px 0;
  }

  .mazury-day-list article {
    grid-template-columns: 78px 1fr;
  }

  .mazury-mood {
    padding: 34px 0;
  }

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

  .mazury-gallery {
    padding: 34px 0;
  }

  .mazury-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .mazury-gallery__grid img:first-child,
  .mazury-gallery__grid img:nth-child(3) {
    grid-row: auto;
  }

  .mazury-ending {
    min-height: 400px;
  }

  .mazury-ending__inner {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .mazury-ending__card {
    padding: 22px;
  }

  .mazury-floating-contact {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    flex-wrap: nowrap;
    padding: 8px 10px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .mazury-floating-contact div {
    flex: 1 1 auto;
  }

  .mazury-floating-contact span {
    display: none;
  }

  .mazury-floating-contact a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 8px 9px;
    font-size: 10px;
  }

  .mazury-floating-contact a:last-of-type {
    display: none;
  }
}











Jasne. Wklej cały CSS od zera dla tej podstrony:

```css
/* =========================
   MAZURY / REZERWACJA I OKOLICA
========================= */

.mazury-info-page {
  background: #f7f4ec;
  color: #5e6259;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.58;
}

.mazury-info-page .container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.mazury-info-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mazury-info-label {
  margin: 0 0 9px;
  color: #8b6b3d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mazury-info-label--light {
  color: #e0c996;
}

.mazury-info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 16px;
  border: 1px solid #8b6b3d;
  background: #8b6b3d;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.mazury-info-button--light {
  border-color: #e0c996;
  background: #e0c996;
  color: #243426;
}

/* FIRST SECTION */

.mazury-info-section {
  padding: 34px 0;
  background: #f7f4ec;
}

.mazury-info-section--first {
  padding-top: calc(var(--header-height) + 44px);
}

.mazury-info-section--light {
  background: #fffdf7;
  border-top: 1px solid #d8cfbb;
  border-bottom: 1px solid #d8cfbb;
}

.mazury-info-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .9fr);
  gap: 30px;
  align-items: start;
}

.mazury-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 26px;
  border: 1px solid #d8cfbb;
  background: #fffdf7;
}

.mazury-info-panel h1 {
  margin: 0 0 12px;
  color: #151a15;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.mazury-info-panel h2,
.mazury-stay-grid h2,
.mazury-practical-list h2,
.mazury-nearby-grid h2,
.mazury-info-cta h2 {
  margin: 0 0 9px;
  color: #151a15;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.mazury-info-panel p,
.mazury-stay-grid p,
.mazury-practical-list p,
.mazury-nearby-grid p,
.mazury-info-cta p {
  margin: 0;
  color: #62675e;
  font-size: 14px;
  line-height: 1.62;
  text-align: justify;
}

.mazury-info-contact {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  color: #3f6047;
  font-size: 13px;
  font-weight: 900;
}

.mazury-info-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mazury-info-photo {
  position: relative;
  align-self: start;
  padding: 12px;
  border: 1px solid #d8cfbb;
  background: #fffdf7;
}

.mazury-info-photo::after {
  content: "rezerwacja / pobyt / okolica";
  position: absolute;
  left: 26px;
  bottom: 26px;
  padding: 9px 12px;
  background: rgba(36, 52, 38, .9);
  color: #fffdf7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mazury-info-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

/* SECTION HEAD */

.mazury-info-small-head {
  display: grid;
  grid-template-columns: minmax(0, .34fr) minmax(0, .66fr);
  gap: 24px;
  align-items: end;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d8cfbb;
}

.mazury-info-small-head p:last-child {
  margin: 0;
  color: #62675e;
  font-size: 14px;
  line-height: 1.62;
}

/* STAY */

.mazury-stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid #d8cfbb;
  background: #d8cfbb;
}

.mazury-stay-grid article {
  position: relative;
  min-height: 178px;
  padding: 42px 22px 22px;
  background: #f7f4ec;
}

.mazury-stay-grid span {
  position: absolute;
  left: 22px;
  top: -1px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 38px;
  background: #8b6b3d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.mazury-stay-grid article::after {
  content: "sprawdź dostępność przy kontakcie";
  display: block;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #d8cfbb;
  color: #8b6b3d;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

/* PRACTICAL / ON SITE */

.mazury-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.mazury-practical-list {
  display: grid;
  gap: 1px;
  border: 1px solid #d8cfbb;
  background: #d8cfbb;
}

.mazury-practical-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  background: #fffdf7;
}

.mazury-practical-list i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #243426;
  color: #d7b981;
  font-size: 15px;
}

.mazury-practical-list h2 {
  font-size: 16px;
}

/* NEARBY */

.mazury-nearby-section {
  position: relative;
  padding: 44px 0;
  background: #243426;
  color: #ffffff;
}

.mazury-nearby-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(36,52,38,.9), rgba(36,52,38,.92)),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
}

.mazury-nearby-section .container {
  position: relative;
  z-index: 1;
}

.mazury-nearby-section .mazury-info-small-head {
  border-bottom-color: rgba(224, 201, 150, .42);
}

.mazury-nearby-section .mazury-info-small-head p:last-child {
  color: rgba(255,255,255,.74);
}

.mazury-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(224, 201, 150, .36);
  background: rgba(224, 201, 150, .36);
}

.mazury-nearby-grid article {
  background: #fffdf7;
}

.mazury-nearby-grid img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.mazury-nearby-grid div {
  padding: 15px;
}

.mazury-nearby-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 8px;
  background: #f0e6d3;
  color: #8b6b3d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mazury-nearby-grid h2 {
  font-size: 16px;
}

.mazury-nearby-grid p::after {
  content: "Informacja przykładowa - odległość i dostępność można dopasować do obiektu.";
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #d8cfbb;
  color: #8b6b3d;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

/* RULES - TEXT VERSION */

.mazury-rules-layout {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.mazury-rules-layout > div:first-child {
  padding-top: 6px;
}

.mazury-rules-layout h2 {
  margin: 0;
  color: #151a15;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}

.mazury-rules-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #d8cfbb;
}

.mazury-rules-list article {
  padding: 18px 0;
  border-bottom: 1px solid #d8cfbb;
}

.mazury-rules-list h3 {
  margin: 0 0 7px;
  color: #243426;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.mazury-rules-list p {
  max-width: 760px;
  margin: 0;
  color: #62675e;
  font-size: 14px;
  line-height: 1.62;
  text-align: left;
}

/* CTA */

.mazury-info-cta {
  padding: 34px 0;
  background: #243426;
  color: #ffffff;
}

.mazury-info-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.mazury-info-cta h2 {
  color: #ffffff;
}

.mazury-info-cta p {
  max-width: 620px;
  color: rgba(255,255,255,.76);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .mazury-info-grid,
  .mazury-stay-grid,
  .mazury-two-columns,
  .mazury-nearby-grid,
  .mazury-info-cta__inner,
  .mazury-rules-layout {
    grid-template-columns: 1fr;
  }

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

  .mazury-info-small-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mazury-rules-layout {
    gap: 18px;
  }
}

@media (max-width: 740px) {
  .mazury-info-page .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mazury-info-section {
    padding: 32px 0;
  }

  .mazury-info-section--first {
    padding-top: calc(var(--header-height) + 28px);
  }

  .mazury-info-panel {
    padding: 21px;
  }

  .mazury-info-panel h1 {
    font-size: 22px;
  }

  .mazury-info-photo img {
    aspect-ratio: 1 / .9;
  }

  .mazury-info-photo::after {
    left: 20px;
    bottom: 20px;
    font-size: 10px;
  }

  .mazury-nearby-section {
    padding: 32px 0;
  }

  .mazury-nearby-grid {
    grid-template-columns: 1fr;
  }

  .mazury-practical-list article {
    grid-template-columns: 36px 1fr;
    padding: 15px;
  }

  .mazury-practical-list i {
    width: 34px;
    height: 34px;
  }

  .mazury-info-panel h2,
  .mazury-stay-grid h2,
  .mazury-practical-list h2,
  .mazury-nearby-grid h2,
  .mazury-info-cta h2 {
    font-size: 16px;
  }

  .mazury-rules-layout h2 {
    font-size: 19px;
  }

  .mazury-rules-list article {
    padding: 16px 0;
  }
}
```