:root {
  --pri: #FDFBF5;
  --sec: #D4B896;
  --acc: #A8855C;
  --dark: #4A3020;
  --textDark: #1A1008;
  --textMid: #4A3020;
  --textLight: #6B4A35;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-btn: 16px;
  --radius-card: 24px;
  --shadow-card: 0 20px 60px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--pri); color: var(--textDark); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin-bottom: 0.5rem; }
p { margin-bottom: 1.5rem; color: var(--textMid); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

/* Layout */
.art-container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.art-section { padding: clamp(60px, 8vw, 100px) 0; position: relative; overflow: hidden; }
.art-section--alt { background: #FFFFFF; }
.art-section--accent { background: linear-gradient(90deg, var(--sec), var(--acc), var(--sec)); color: #fff; }
.art-grid { display: grid; gap: clamp(20px, 4vw, 40px); }
.art-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.art-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.art-grid--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Header */
.art-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: 0.3s; padding: 20px 0; }
.art-header.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 12px 0; }
.art-nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.art-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.art-nav-menu { display: flex; gap: 30px; align-items: center; }
.art-nav-link { font-weight: 500; color: var(--dark); font-size: 0.95rem; position: relative; }
.art-nav-link:hover, .art-nav-link.active { color: var(--acc); }
.art-nav-dropdown { position: relative; }
.art-dropdown-content { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 12px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s; }
.art-nav-dropdown:hover .art-dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.art-dropdown-item { display: block; padding: 10px 20px; font-size: 0.9rem; color: var(--textMid); }
.art-dropdown-item:hover { background: var(--pri); color: var(--acc); }
.art-mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); background: none; border: none; }

/* Mobile Nav */
@media (max-width: 1024px) {
  .art-nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: #fff; flex-direction: column; justify-content: center; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
  .art-nav-menu.open { right: 0; }
  .art-mobile-toggle { display: block; z-index: 1001; }
  .art-dropdown-content { position: static; box-shadow: none; display: none; padding-left: 20px; }
  .art-nav-dropdown:hover .art-dropdown-content { display: block; opacity: 1; visibility: visible; transform: none; }
}

/* Hero */
.art-hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: #fff; padding-top: 80px; overflow: hidden; }
.art-hero__bg-wrap { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.art-hero__img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: -2; }
.art-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: -1; }
.art-hero__content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.art-hero__tag { display: inline-block; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.9rem; background: rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 50px; backdrop-filter: blur(5px); }
.art-hero__title { text-shadow: 0 4px 12px rgba(0,0,0,0.4); margin-bottom: 1.5rem; color: #fff; }
.art-hero__sub { font-size: 1.2rem; margin-bottom: 2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.4); opacity: 0.9; color: #fff; }

/* Gradient Animation (Home Hero) */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.art-gradient-anim { position: absolute; inset: 0; background: linear-gradient(-45deg, var(--pri), var(--sec), var(--acc), var(--pri)); background-size: 400% 400%; animation: gradientShift 15s ease infinite; opacity: 0.5; z-index: 0; pointer-events: none; }

/* Components */
.art-btn { display: inline-block; background: var(--acc); color: #fff; padding: 16px 32px; border-radius: var(--radius-btn); font-weight: 600; font-size: 1rem; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(168, 133, 92, 0.4); position: relative; overflow: hidden; }
.art-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(168, 133, 92, 0.6); }
.art-btn--white { background: #fff; color: var(--dark); }

.art-card { background: #fff; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.art-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.15); }
.art-card__img-wrap { height: 240px; overflow: hidden; position: relative; }
.art-card__img { width: 100%; height: 100%; transition: 0.5s; }
.art-card:hover .art-card__img { transform: scale(1.05); }
.art-card__content { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
.art-card__title { font-size: 1.4rem; margin-bottom: 0.5rem; }
.art-card__text { font-size: 0.95rem; color: var(--textLight); margin-bottom: 1.5rem; }
.art-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05); }

/* Separator */
.art-wave-sep { width: 100%; height: auto; display: block; line-height: 0; fill: #FFFFFF; }
.art-section--alt .art-wave-sep { fill: var(--pri); }

/* Testimonials */
.art-review-card { padding: 40px; text-align: center; background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.art-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; border: 4px solid var(--pri); }
.art-stars { color: #FFB400; margin-bottom: 1rem; font-size: 1.2rem; }
.art-quote { font-style: italic; color: var(--textMid); margin-bottom: 1.5rem; }
.art-author { font-weight: 700; color: var(--dark); }
.art-dest-badge { font-size: 0.8rem; color: var(--acc); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* Forms */
.art-form-wrap { background: #fff; padding: 40px; border-radius: var(--radius-card); box-shadow: var(--shadow-card); max-width: 600px; margin: 0 auto; }
.art-form-group { margin-bottom: 20px; text-align: left; }
.art-label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark); }
.art-input, .art-select, .art-textarea { width: 100%; padding: 14px 16px; border: 2px solid #EEE; border-radius: 12px; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; background: #F9F9F9; color: var(--dark); }
.art-input:focus, .art-select:focus, .art-textarea:focus { border-color: var(--sec); outline: none; background: #fff; }
.art-textarea { min-height: 120px; resize: vertical; }

/* Popup */
.art-popup { display: none; position: fixed; inset: 0; z-index: 9999; }
.art-popup.active { display: flex; align-items: center; justify-content: center; }
.art-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); animation: fadeIn 0.3s ease; }
.art-popup__box { position: relative; background: #fff; border-radius: 24px; padding: 48px 40px; max-width: 440px; width: 90%; text-align: center; animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1); box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
.art-popup__icon { font-size: 56px; margin-bottom: 16px; }
.art-popup__title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.art-popup__msg { font-size: 1rem; color: var(--textMid); line-height: 1.6; margin-bottom: 24px; }
.art-popup__close { background: var(--pri); color: var(--dark); border: none; padding: 12px 24px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.art-popup__close:hover { background: #eee; }
@keyframes popIn { from{opacity:0;transform:scale(0.8) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* Footer */
.art-footer { background: var(--dark); color: #fff; padding: 80px 0 40px; font-size: 0.95rem; }
.art-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
.art-footer h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1.2rem; }
.art-footer-link { display: block; color: rgba(255,255,255,0.7); margin-bottom: 12px; transition: 0.3s; }
.art-footer-link:hover { color: var(--sec); transform: translateX(5px); }
.art-footer-addr { color: rgba(255,255,255,0.7); white-space: pre-line; line-height: 1.8; }
.art-copyright { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* Utilities */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.art-text-center { text-align: center; }
.art-mb-2 { margin-bottom: 2rem; }
.art-icon-box { background: var(--pri); width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.art-icon-img { width: 40px; height: 40px; object-fit: contain; }

/* Cookie Banner */
.art-cookies { position: fixed; bottom: 20px; left: 20px; right: 20px; background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9900; max-width: 600px; transform: translateY(150%); transition: 0.5s; }
.art-cookies.show { transform: translateY(0); }
.art-cookies p { margin: 0; font-size: 0.9rem; color: var(--textMid); }
.art-cookies-btns { display: flex; gap: 10px; }
.art-cookies-btn { padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; cursor: pointer; border: none; font-weight: 600; }
.art-cookies-accept { background: var(--acc); color: #fff; }
.art-cookies-decline { background: #eee; color: var(--textMid); }

@media (min-width: 1024px) {
  .art-grid--2 { grid-template-columns: 1fr 1fr; }
  .art-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .art-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
