

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #2d2d2d;
  background: #fffaf6;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}


/* ============================================================
   2. CSS VARIABLES
   ============================================================ */

:root {
  --rose:       #c8506e;
  --rose-light: #f5dde5;
  --brown:      #5c3d2e;
  --gold:       #d4a843;
  --gray:       #f2ede8;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(90, 40, 20, 0.10);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--brown);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brown);
  margin-bottom: .6rem;
}

h3 {
  font-size: 1.15rem;
  color: var(--rose);
  margin-bottom: .4rem;
}

p {
  margin-bottom: 1rem;
}


/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */

header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brown);
  font-weight: 700;
}

/* Nav links */
nav ul {
  display: flex;
  gap: 1.8rem;
}

nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--brown);
  transition: color .2s;
}

nav a:hover,
nav a.active {
  color: var(--rose);
}

/* CTA button in nav */
.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: .45rem 1.1rem;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--brown) !important;
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}


/* ============================================================
   5. HERO (homepage)
   ============================================================ */

.hero {
  background: linear-gradient(135deg, #fde8ed 0%, #fff5e6 100%);
  padding: 90px 1.5rem 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero p.lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #555;
}

.hero-img {
  margin: 3rem auto 0;
  max-width: 880px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  transition: .2s;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brown);
}

.btn-outline {
  border: 2px solid var(--rose);
  color: var(--rose);
  margin-left: .8rem;
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--rose);
}

.btn-white:hover {
  background: var(--rose-light);
}


/* ============================================================
   7. SECTIONS (general)
   ============================================================ */

.section {
  padding: 80px 1.5rem;
}

.section-inner {
  max-width: 1180px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  color: #666;
  max-width: 560px;
  margin: .6rem auto 0;
}

.bg-gray {
  background: var(--gray);
}


/* ============================================================
   8. CARDS
   ============================================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem 1.4rem 1.5rem;
}


/* ============================================================
   9. FEATURES GRID
   ============================================================ */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2.6rem;
  margin-bottom: .8rem;
}


/* ============================================================
   10. TESTIMONIALS
   ============================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--rose);
}

.testimonial p {
  font-style: italic;
  color: #555;
}

.testimonial-author {
  margin-top: .8rem;
  font-weight: 700;
  color: var(--brown);
  font-size: .9rem;
}

.stars {
  color: var(--gold);
  margin-bottom: .5rem;
}


/* ============================================================
   11. CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--rose) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 1.5rem;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .8rem;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 2rem;
  opacity: .9;
}


/* ============================================================
   12. PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, #fde8ed, #fff5e6);
  padding: 70px 1.5rem 60px;
  text-align: center;
}

.page-hero p {
  max-width: 580px;
  margin: .8rem auto 0;
  color: #666;
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: .85rem;
  color: #888;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--rose);
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* ============================================================
   13. CONTENT GRID (text + image)
   ============================================================ */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}


/* ============================================================
   14. LISTS
   ============================================================ */

.styled-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.styled-list li {
  margin-bottom: .4rem;
}

.ol-list {
  list-style: decimal;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.ol-list li {
  margin-bottom: .4rem;
}


/* ============================================================
   15. HIGHLIGHT BOX
   ============================================================ */

.highlight-box {
  background: var(--rose-light);
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}


/* ============================================================
   16. TABLE
   ============================================================ */

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

th {
  background: var(--rose);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
}

td {
  padding: .7rem 1rem;
  border-bottom: 1px solid #e8ddd8;
}

tr:nth-child(even) td {
  background: #faf5f2;
}


/* ============================================================
   17. CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-top: 1.5rem;
  margin-bottom: .4rem;
}

.contact-info p {
  color: #555;
}

/* Contact form */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: .3rem;
}

input,
textarea,
select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  transition: border .2s;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rose);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: .8rem;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}

.btn-submit:hover {
  background: var(--brown);
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

/* Form messages */
.form-msg {
  display: none;
  padding: .8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .93rem;
}

.form-msg.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-msg.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}


/* ============================================================
   18. POLICY PAGES
   ============================================================ */

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

.policy-content p,
.policy-content li {
  color: #444;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}


/* ============================================================
   19. COOKIE BANNER
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--brown);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  gap: 1rem;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

#cookie-banner p {
  margin: 0;
  font-size: .9rem;
  flex: 1;
}

#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: .8rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: .5rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
}

.btn-cookie-decline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: .5rem 1.1rem;
  border-radius: 6px;
  font-size: .9rem;
  cursor: pointer;
}


/* ============================================================
   20. FOOTER
   ============================================================ */

footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 1.5rem 24px;
}

.footer-inner {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: .8rem;
  font-size: .88rem;
  opacity: .75;
  line-height: 1.6;
}

footer h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer ul li {
  margin-bottom: .5rem;
}

footer ul li a {
  font-size: .88rem;
  opacity: .75;
  transition: opacity .2s;
}

footer ul li a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-contact li {
  font-size: .88rem;
  opacity: .75;
  margin-bottom: .5rem;
  display: flex;
  gap: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  opacity: .6;
  max-width: 1180px;
  margin: auto;
}


/* ============================================================
   21. RESPONSIVE
   ============================================================ */

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

  .content-grid.reverse {
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: .8rem;
  }

  nav ul.open {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 60px 1rem 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
