/* =====================================================
   CSS RESET & NORMALIZE
====================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,  
figure, figcaption, footer, header, hgroup,  
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { 
  box-sizing: border-box; 
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  font-family: 'Yu Gothic', 'Noto Sans JP', Arial, sans-serif;
  color: #223147;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.02em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }
button,input,select,textarea {
  font-family: inherit; font-size: 1em;
  background: none; border: none; outline: none;
}

/* ==============================================
   BRAND COLOR & TYPOGRAPHY TOKENS
=============================================== */
:root {
  --color-primary: #223147;
  --color-secondary: #A19272;
  --color-accent: #F5F3EE;
  --color-art-1: #703EA7; /* deep purple for artistic accent */
  --color-art-2: #FFD43B; /* vibrant yellow accent */
  --color-art-3: #5EC2BE; /* creative teal accent */
  --color-card-bg: #fff;
  --color-card-shadow: 0 2px 16px rgba(34,49,71,0.08);
  --color-border: #e5e4e1;
}

/* Artistic & Creative Decorative Elements */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');

.display-font {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* =======================================
   CONTAINER & FLEX UTILITIES
======================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 28px 72px 32px 36px / 38px 80px 28px 64px;
  box-shadow: 0 4px 24px rgba(34,49,71,0.12);
  position: relative;
}

/* =========================================
   TYPOGRAPHY + HEADINGS
========================================== */
h1, .hero h1 {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
h2 {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-art-1);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 44px;
  height: 5px;
  background: var(--color-art-2);
  border-radius: 3px;
  margin-top: 8px;
}

h3 {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 14px;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
p, li, dl, dd {
  font-family: 'Yu Gothic', Arial, sans-serif;
  font-size: 1em;
  color: var(--color-primary);
}
strong {
  color: var(--color-art-1);
}

blockquote {
  font-size: 1.12em;
  color: var(--color-primary);
  background: #fff7ff;
  border-left: 6px solid var(--color-art-1);
  padding: 18px 22px;
  border-radius: 12px 42px 22px 12px;
  margin-bottom: 10px;
  font-style: italic;
}

.customer-name {
  color: var(--color-art-2);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 6px;
}

/* =========================================
   HEADER & MENU
========================================== */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  border-bottom: 2px dashed var(--color-art-2);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 30px;
}
.main-nav a {
  padding: 8px 0 2px;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.25s;
  color: var(--color-primary);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-art-2);
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-art-2);
  transition: width 0.26s cubic-bezier(.5,.23,.07,1.52);
  margin-top: 2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  color: #fff;
  background: linear-gradient(90deg,var(--color-art-1),var(--color-art-2) 85%,var(--color-art-3));
  border-radius: 36px 12px 32px 44px/32px 48px 32px 12px;
  font-weight: bold;
  font-size: 1.11rem;
  box-shadow: 0 6px 18px rgba(162,146,114,0.06);
  padding: 12px 34px 12px 26px;
  letter-spacing: 0.045em;
  border: none;
  transition: background 0.28s, transform 0.15s;
  display: inline-block;
  margin-left: 28px;
  cursor: pointer;
  position: relative;
}
.cta-btn:after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%) rotate(30deg);
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 5px;
  margin-left: 8px;
  border-radius: 2px;
  pointer-events:none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,var(--color-art-2),var(--color-art-1) 80%,var(--color-art-3));
  transform: translateY(-2px) scale(1.035) rotate(-1deg);
}

header img {
  height: 42px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
}

/* MOBILE MENU (Hamburger + Overlay) */
.mobile-menu-toggle {
  display: none;
  background: var(--color-art-1);
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  padding: 7px 12px;
  z-index: 51;
  border: 2px solid var(--color-art-2);
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-art-2);
  color: var(--color-art-1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,49,71,0.93);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 22px 22px 22px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.86,.01,.32,1.2);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-art-2);
  background: transparent;
  border: none;
  position: absolute;
  top: 22px; right: 30px;
  cursor: pointer;
  z-index: 1200;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 16px 0 12px 0;
  border-bottom: 1.5px dashed var(--color-art-3);
  transition: background 0.16s, color 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-art-2);
  background: rgba(255,205,59,0.07);
  border-bottom: 2px solid var(--color-art-2);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    margin-left: 14px;
  }
  .cta-btn { margin-left: 10px; }
}
@media (max-width: 900px) {
  header .container { flex-wrap: wrap; }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================================
   HERO SECTION
========================================== */
.hero {
  background: linear-gradient(120deg, var(--color-art-1) 0%, var(--color-primary) 65%, var(--color-art-3) 100%);
  color: #fff;
  margin-bottom: 60px;
  padding: 48px 0 60px 0;
  border-radius: 0 0 86px 54px / 0 0 62px 120px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 32px;
  position: relative;
}
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 16px rgba(34,49,71,0.16);
}
.hero .cta-btn {
  background: linear-gradient(90deg,#FFD43B 30%, #703EA7 70%);
  color: var(--color-primary);
  box-shadow: 0 6px 24px rgba(255,212,59,0.11);
}
.hero .cta-btn:after {
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 54px 0;
    border-radius: 0 0 32px 90px / 0 0 62px 40px;
  }
  .hero .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* =========================================
   FLEX LAYOUT UTILITIES
========================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(34,49,71,0.09);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================================
   INDEX PAGE SPECIAL CARDS, LISTS, COLUMNS
========================================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.features-grid > div {
  background: #fff;
  border-radius: 22px 32px 18px 36px/28px 42px 28px 32px;
  box-shadow: 0 3px 12px rgba(160,146,114,0.03);
  flex: 1 1 256px;
  min-width: 220px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-left: 6px solid var(--color-art-3);
}
.features-grid h3 { color: var(--color-art-1); }
.features-grid img { height: 40px; margin-bottom: 12px; }

.properties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.property-card {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 24px 24px 18px 36px/32px 32px 38px 24px;
  box-shadow: 0 2px 16px rgba(162,146,114,0.10);
  padding: 32px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s, transform .15s;
  border-left: 6px solid var(--color-art-2);
}
.property-card h3 {
  color: var(--color-art-3);
}
.property-card:hover, .property-card:focus {
  box-shadow: 0 10px 32px rgba(34,49,71,0.13);
  transform: translateY(-4px) scale(1.01) rotate(-1deg);
}

.columns-preview,.columns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 16px;
}
.columns-preview > div, .columns-list > .column {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px 34px 12px 18px / 32px 32px 18px 28px;
  box-shadow: 0 2px 11px rgba(34,49,71,0.07);
  padding: 24px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.16s;
  border-bottom: 3px solid var(--color-art-3);
}
.columns-preview > div a, .columns-list > .column a {
  color: var(--color-art-1);
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-top: 8px;
  transition: color 0.13s, text-decoration 0.15s;
}
.columns-preview > div a:hover, .columns-list > .column a:hover {
  color: var(--color-art-2);
  text-decoration: underline;
}

@media (max-width: 850px) {
  .features-grid,.properties-list,.columns-preview,.columns-list {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .features-grid, .properties-list, .columns-preview, .columns-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* Testimonial List & Cards */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  color: #1d1d1d;
  border-radius: 26px 18px 24px 28px/20px 36px 32px 28px;
  box-shadow: 0 1px 11px rgba(34,49,71,0.09);
  padding: 20px 26px 18px 20px;
  flex: 1 1 290px;
  min-width: 200px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 28px rgba(162,146,114,0.13);
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card .customer-name {
  margin-top: 5px;
  color: var(--color-art-2);
  font-weight: 600;
}

/* =============================================
   AREA PAGE, TEAM, TREND, CARDS
============================================== */
.area-card {
  background: #fff;
  border-left: 6px solid var(--color-art-3);
  border-radius: 14px 40px 12px 24px/16px 26px 12px 24px;
  box-shadow: 0 1px 8px rgba(94,194,190,0.08);
  padding: 18px 22px;
  margin-bottom: 20px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.team-list > div {
  background: #fff;
  flex: 1 1 220px;
  min-width: 180px;
  border-radius: 18px 22px 10px 20px/14px 32px 10px 16px;
  box-shadow: 0 2px 8px rgba(34,49,71,0.07);
  padding: 20px 16px 14px 16px;
  border-bottom: 3px solid var(--color-art-2);
}

.trend-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.trend-spotlight dl {
  background: #fff;
  padding: 20px 20px 16px 24px;
  border-radius: 20px 42px 16px 18px/12px 32px 12px 14px;
  box-shadow: 0 2px 10px rgba(162,146,114,0.07);
  flex: 2 1 370px;
}
.trend-spotlight dt {
  font-weight: bold;
  color: var(--color-art-1);
  margin-top: 8px;
}
.trend-spotlight dd {
  margin-left: 0;
  margin-bottom: 12px;
}
.expert-comments {
  background: var(--color-accent);
  padding: 16px 18px 14px 20px;
  border-radius: 20px 20px 20px 38px;
  font-size: 1em;
  flex: 1 1 170px;
  box-shadow: 0 1px 7px rgba(34,49,71,0.04);
  align-self: stretch;
}
.expert-comments h3 {
  color: var(--color-art-3);
  margin-bottom: 7px;
}
.expert-comments span {
  display: block;
  color: var(--color-art-1);
  font-size: 0.95em;
  margin-top: 4px;
}
@media (max-width: 850px) {
  .trend-spotlight { flex-direction: column; gap: 16px; }
}

/* =========================================
   FORMS & SEARCH
========================================== */
.property-search {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  padding: 22px 0 8px 0;
  background: var(--color-accent);
  border-radius: 22px;
  margin: 22px 0 32px 0;
}
.property-search label {
  font-weight: bold;
  color: var(--color-art-1);
  margin-right: 4px;
}
.property-search input,
.property-search select {
  min-width: 108px;
  margin-right: 4px;
  padding: 8px 10px;
  border: 1.5px solid var(--color-art-3);
  border-radius: 7px 15px 7px 7px;
  background: #fff;
  color: var(--color-primary);
  font-size: 1rem;
}
.property-search input:focus,
.property-search select:focus {
  border-color: var(--color-art-2);
  outline: none;
}
.property-search button.cta-btn {
  margin-left: 0;
  margin-top: 0;
  padding: 9px 30px;
  font-size: 1rem;
}

.contact-form-fields ul {
  margin-bottom: 20px;
}
.contact-form-fields li {
  padding-bottom: 10px;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 8px;
  align-items: center;
}
.pagination a {
  background: var(--color-art-3);
  color: #fff;
  font-weight: 600;
  border-radius: 9px;
  padding: 6px 18px;
  box-shadow: 0 1px 4px rgba(162,146,114,0.07);
  transition: background 0.14s, color 0.14s;
}
.pagination a:hover, .pagination a:focus {
  background: var(--color-art-1);
  color: #FFD43B;
}

/* =========================================
   FOOTER
========================================== */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 18px 0;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer img {
  height: 32px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD43B;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-art-3);
}
.footer-contact {
  margin-bottom: 14px;
}
.footer-contact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  margin-right: 6px;
}
footer small {
  display: block;
  margin-top: 12px;
  color: #FFD43B;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .footer-nav, .footer-contact ul { flex-direction: column; gap: 13px; align-items: center; }
}

/* ===============================================
   RESPONSIVE / GENERAL MEDIA QUERIES
================================================ */
@media (max-width: 600px) {
  .container { padding-left: 9px; padding-right: 9px; }
  .section { padding: 25px 6px; border-radius: 18px 24px 16px 14px/14px 28px 18px 24px; }
  h1, .hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .card, .property-card, .columns-preview > div,
  .columns-list > .column, .area-card, .team-list > div { padding: 12px 7px; }
}

/* ===============================================
   COOKIE CONSENT BANNER
================================================ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 10999;
  background: var(--color-art-1);
  color: #fff;
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  font-size: 1.1rem;
  box-shadow: 0 -2px 20px rgba(34,49,71,0.14);
  animation: cookieFadeIn 0.24s cubic-bezier(.7,.07,.34,1.13);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px 22px 8px 8px / 8px 26px 6px 12px;
  padding: 9px 17px;
  margin-left: 2px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.16s, color 0.13s, transform 0.13s;
  background: var(--color-art-2);
  color: var(--color-primary);
}
.cookie-banner button.accept {
  background: var(--color-art-2);
  color: var(--color-primary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #FFD43B;
  color: var(--color-art-1);
  transform: scale(1.03);
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--color-art-1);
  border: 1.5px solid var(--color-art-2);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #F5F3EE;
  color: var(--color-art-1);
}
.cookie-banner button.settings {
  background: var(--color-art-3);
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: var(--color-art-1);
  color: #FFD43B;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 6px 18px 10px;
  }
  .cookie-banner .cookie-actions { gap: 7px; }
}

/* Cookie Modal (Settings) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,49,71,0.72);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieOverlayIn 0.18s cubic-bezier(.8,.13,.22,1.02);
}
@keyframes cookieOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 24px 38px 32px 18px / 22px 36px 16px 14px;
  padding: 38px 34px 26px 34px;
  min-width: 310px;
  max-width: 96vw;
  box-shadow: 0 6px 48px rgba(34,49,71,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalIn 0.32s cubic-bezier(.83,-0.06,.36,1.35);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(44px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-art-1);
  letter-spacing: 0.01em;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-art-1);
  cursor: pointer;
}
.cookie-category .always-on {
  font-style: italic;
  color: #bbb;
  font-size: 1em;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal button {
  background: var(--color-art-2);
  color: var(--color-primary);
  padding: 10px 26px;
  border-radius: 9px 16px 8px 8px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, transform 0.15s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-art-1);
  color: #FFD43B;
  transform: scale(1.035);
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 22px;
  font-size: 2rem;
  color: var(--color-art-1);
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    width: 97vw;
    padding: 28px 7vw 16px 7vw;
  }
  .cookie-modal-close { right: 10px; top: 14px; }
}

/* =============================================
   ANIMATIONS & TRANSITIONS
============================================== */
.card, .property-card, .columns-preview > div, .area-card, .testimonial-card, .team-list > div, .trend-spotlight dl {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .property-card:hover, .columns-preview > div:hover, .area-card:hover, .testimonial-card:hover, .team-list > div:hover, .trend-spotlight dl:hover {
  box-shadow: 0 8px 18px rgba(112,62,167,0.13);
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
}

.cta-btn, .cookie-banner button, .cookie-modal button {
  transition: background 0.19s, transform 0.17s, color 0.15s;
}

/* =============================================
   GENERAL REACTIVE STATES, FOCUS STYLE
============================================== */
a, button, .property-search input, .property-search select, .cta-btn, .main-nav a, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal button {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--color-art-2);
  outline-offset: 2px;
}

/* override default select arrow for creative look */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23703EA7' stroke-width='3' viewBox='0 0 20 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 3l7.5 7 7.5-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 22px 16px;
  padding-right: 32px;
}

/* =============================================
   UNIQUE DECORATIVE ACCENTS
============================================== */
.section:before {
  content: '';
  position: absolute;
  left: -32px; top: -18px;
  width: 70px; height: 45px;
  background: rgba(255,212,59,0.17);
  border-radius: 38px 24px 28px 12px;
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  right: -40px; bottom: -18px;
  width: 70px; height: 54px;
  background: rgba(94,194,190,0.14);
  border-radius: 18px 82px 32px 36px;
  z-index: 0;
}
/* Only the section content is above effect */
.section > * {
  position: relative;
  z-index: 2;
}

/* Arrow-style accent for artistic buttons */
.cta-btn:before {
  content: '';
  display: inline-block;
  background: var(--color-art-3);
  height: 12px;
  width: 5px;
  border-radius: 2px;
  margin-right: 7px;
  margin-bottom: 1px;
  vertical-align: middle;
}

/* =============================================
   ACCESSIBILITY IMPROVEMENTS
============================================== */
@media (prefers-color-scheme: dark) {
  body { background: #151C27; color: #fff; }
  .section, .area-card, .property-card, .columns-preview > div, .columns-list > .column, .testimonial-card, .trend-spotlight dl, .team-list > div {
    background: #212A37;
    color: #fff;
  }
  h1, h2, h3, h4, h5, h6, .hero h1, .hero p {
    color: #FFD43B;
    text-shadow: 0 1px 20px #22314744;
  }
  .footer-contact, .footer-nav a { color: #FFD43B; }
}

/* =============================================
   SCROLLBAR STYLING (Chrome/Webkit)
============================================== */
::-webkit-scrollbar { width: 10px; background: var(--color-accent); }
::-webkit-scrollbar-thumb {
  background: var(--color-art-2);
  border-radius: 5px;
}

/* ====================================
  END OF STYLE.CSS
 =================================== */
