@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --rose:    #d4a8a8;
  --blush:   #f5ede8;
  --brown:   #7a4a30;
  --dark:    #5c3420;
  --card-bg: rgba(255, 255, 255, 0.45);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
}

body {
  background: var(--blush);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
header {
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: opacity 0.2s;
}
.hamburger:hover span { opacity: 0.6; }

/* ── MENU LATERAL (DRAWER) ── */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 200;
}
.drawer-overlay.open {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  background: #ffffff;
  z-index: 300;
  padding: 32px 40px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  margin-bottom: 40px;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.drawer-close:hover { opacity: 1; }

.drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer ul li a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.drawer ul li a:hover { opacity: 0.5; }

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  padding: 7px 16px;
  width: 240px;
}
.search-bar input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
  background: transparent;
  width: 100%;
}
.search-bar input::placeholder { color: #bbb; }
.search-bar svg { flex-shrink: 0; }

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #a64e51;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}
.logo sub {
  display: block;
  font-size: 10px;
  letter-spacing: 5px;
  color: #fff;
  font-weight: 300;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icons a {
  color: var(--dark);
  opacity: 0.8;
  transition: opacity 0.2s;
  cursor: pointer;
}
.nav-icons a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 72px 32px 48px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: var(--brown);
  letter-spacing: 1px;
  animation: fadeUp 0.8s ease both;
}

/* ── SLIDER WRAPPER ── */
.slider-wrapper {
  position: relative;
  padding: 0 60px 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeUp 0.9s 0.15s ease both;
}

/* ── CARD ── */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(4px);
  border-radius: 28px 28px 90px 90px / 28px 28px 70px 70px;
  padding: 40px 32px 48px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(122, 74, 48, 0.12);
}

.card h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--brown);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card ul li {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.card ul li::before {
  content: "•";
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ── ARROWS ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  color: var(--brown);
  border: none;
  transition: background 0.2s;
}
.arrow:hover { background: rgba(255,255,255,0.9); }
.arrow-left  { left: 8px; }
.arrow-right { right: 8px; }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GALERIA CIRCULAR ── */
.gallery {
  background: #ffffff;
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(180, 140, 130, 0.35);
  background: #f5ede8;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.circle:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(122, 74, 48, 0.15);
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: #d4a0a0;
  padding: 60px 80px 36px;
  width: 100%;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 48px;
  align-items: start;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.7;
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(122, 74, 48, 0.3);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.3);
  width: 180px;
}
.newsletter-form input {
  border: none;
  outline: none;
  background: transparent;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--brown);
  width: 100%;
}
.newsletter-form input::placeholder { color: #b08888; }
.newsletter-form button {
  background: rgba(255,255,255,0.25);
  border: none;
  border-left: 1px solid rgba(122, 74, 48, 0.3);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--brown);
  transition: background 0.2s;
}
.newsletter-form button:hover { background: rgba(255,255,255,0.5); }

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--brown);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 0.6; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(122, 74, 48, 0.25);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--brown);
}
.footer-credit { opacity: 0.6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header { padding: 12px 20px; }
  .search-bar { width: 160px; }
  .hero { padding: 48px 20px 32px; }
  .slider-wrapper { padding: 0 20px 48px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { border-radius: 20px; padding: 28px 24px 36px; }
  .arrow { display: none; }
  .gallery { padding: 40px 20px; gap: 16px; }
  .circle { width: 75px; height: 75px; }
  footer { padding: 40px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}