/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* PPT Color Palette */
  --white:       #FFFFFF;
  --off-white:   #F0EDEA;
  --light-grey:  #E9E4E0;
  --mid-grey:    #D2BBA5;
  --warm-grey:   #C1BDB9;
  --slate:       #8E9FAE;
  --slate-mid:   #7D969A;
  --slate-dark:  #727D81;
  --tan:         #90816E;
  --tan-dark:    #7C5735;
  --charcoal:    #49423A;
  --charcoal-dk: #323335;
  --amber:       #C9A96E;
  --amber-light: #DFC08A;
  --amber-dark:  #A07840;
  --text-body:   #4C4B49;
  --text-muted:  #8E857E;
  --text-light:  #B1A59B;
  --nav-height:  80px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
::selection { background: var(--amber); color: var(--white); }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--light-grey); }
::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 2px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s, box-shadow 0.4s;
  background: rgba(255,255,255,0.0);
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(144,129,110,0.15);
  backdrop-filter: blur(10px);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--charcoal); text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(240,237,234,0.99); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--charcoal-dk); text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; letter-spacing: 0.05em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--amber-dark); }

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
/* Painterly background — white with warm grey brush strokes feel */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 60%, rgba(201,169,110,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 15% 40%, rgba(142,159,174,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #FFFFFF 0%, #F0EDEA 45%, #E9E4E0 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-watermark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 40vw; font-weight: 300; color: rgba(142,159,174,0.06);
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.05em;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--slate-dark); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-logo {
  max-width: 560px; width: 90%;
  opacity: 0; animation: fadeUp 1.1s 0.5s forwards;
  filter: drop-shadow(0 4px 24px rgba(144,129,110,0.15));
}
.hero-tagline {
  margin-top: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; font-weight: 300;
  color: var(--tan); letter-spacing: 0.04em; line-height: 1.6;
  opacity: 0; animation: fadeUp 1.1s 0.8s forwards;
}
.hero-actions {
  margin-top: 52px; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.btn-primary {
  padding: 14px 40px; background: var(--charcoal-dk);
  border: 1px solid var(--charcoal-dk); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--amber-dark);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; z-index: 0;
}
.btn-primary span, .btn-primary { position: relative; z-index: 1; }
.btn-primary:hover { border-color: var(--amber-dark); color: var(--white); }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-secondary {
  padding: 14px 40px; background: transparent;
  border: 1px solid var(--slate); color: var(--slate-dark);
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--tan-dark); color: var(--tan-dark); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.hero-scroll span { font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--tan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== SECTION COMMON ===== */
section { position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 60px 48px; }
.section-label {
  font-size: 0.63rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--slate-dark); margin-bottom: 20px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; color: var(--charcoal-dk); margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--tan-dark); }
.divider { width: 60px; height: 1px; background: var(--amber); margin-bottom: 40px; }

/* ===== ABOUT ===== */
#about { background: var(--white); }
#about .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(142,159,174,0.35); pointer-events: none; z-index: 0;
}
.about-image-wrap img {
  width: 100%; height:800px; object-fit: cover; object-position: top center;
  position: relative; z-index: 1;
}
.about-text p {
  font-size: 1.02rem; line-height: 1.88; color: #000;
  margin-bottom: 22px; font-weight: 300;
}
.about-quote { margin-top: 36px; padding-left: 24px; border-left: 3px solid var(--amber); }
.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--tan-dark); line-height: 1.6;
}
.about-meta { margin-top: 40px; display: flex; gap: 40px; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 6px; }
.meta-label { font-size: 0.63rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate-dark); }
.meta-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--charcoal); }

/* ===== EXHIBITIONS ===== */
#exhibitions { background: var(--off-white); }
.exhibitions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 60px;
}
.exhibition-card {
  background: var(--white); padding: 44px 36px;
  border: 1px solid var(--light-grey);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.exhibition-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--slate));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.exhibition-card:hover { border-color: var(--warm-grey); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(73,66,58,0.08); }
.exhibition-card:hover::before { transform: scaleX(1); }
.exh-year {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: rgba(142,159,174,0.95); line-height: 1; margin-bottom: 12px;
}
.exh-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  color: var(--tan-dark); margin-bottom: 20px; font-style: italic;
}
.exh-venues { list-style: none; }
.exh-venues li {
  font-size: 0.82rem; color: #000000;
  padding: 6px 0; border-bottom: 1px solid var(--light-grey);
  line-height: 1.5; letter-spacing: 0.02em;
}
.exh-venues li:last-child { border-bottom: none; }

/* ===== ARTWORK ===== */
#artwork { background: var(--white); }
.series-tabs {
  display: flex; margin-bottom: 60px;
  border-bottom: 1px solid var(--light-grey);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.series-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 14px 28px; background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); transition: all 0.3s;
  border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; flex-shrink: 0;
}
.tab-btn.active { color: var(--tan-dark); border-bottom-color: var(--amber); }
.tab-btn:hover { color: var(--charcoal); }
.series-panel { display: none; }
.series-panel.active { display: block; }
.series-header { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--light-grey); }
.series-title-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--charcoal-dk);
}
.series-title-text span { color: var(--tan-dark); font-style: italic; }
.series-desc {
  max-width: 740px; margin: 20px 0 48px;
  font-size: 0.97rem; line-height: 1.88; color: #000000;
}

/* Artwork grid */
.artwork-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.artwork-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--light-grey); aspect-ratio: 1/1;
}
.artwork-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.artwork-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.artwork-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.artwork-item:hover img { transform: scale(1.04); }
.artwork-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(73,66,58,0.82) 0%, rgba(73,66,58,0.1) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 24px;
}
.artwork-item:hover .artwork-overlay { opacity: 1; }
.artwork-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.artwork-info p { font-size: 0.75rem; color: var(--amber-light); letter-spacing: 0.05em; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(240,237,234,0.97); align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-inner img { max-width: 90vw; max-height: 82vh; object-fit: contain; box-shadow: 0 20px 80px rgba(73,66,58,0.2); }
.lightbox-close {
  position: absolute; top: -44px; right: 0; background: none; border: none;
  color: var(--tan-dark); font-size: 2rem; cursor: pointer; line-height: 1; padding: 4px 10px; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--charcoal-dk); }
.lightbox-caption {
  margin-top: 18px; font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--text-muted); font-size: 1rem; letter-spacing: 0.04em;
}

/* ===== NEWS ===== */
#news { background: var(--off-white); }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px; margin-top: 60px;
}
.news-card {
  background: var(--white); padding: 44px 36px;
  border: 1px solid var(--light-grey); transition: all 0.3s;
}
.news-card:hover { border-color: var(--warm-grey); box-shadow: 0 8px 32px rgba(73,66,58,0.07); }
.news-date { font-size: 0.68rem; letter-spacing: 0.25em; color: var(--slate-dark); text-transform: uppercase; margin-bottom: 18px; }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; color: var(--charcoal-dk); line-height: 1.4; margin-bottom: 16px; }
.news-body { font-size: 0.9rem; line-height: 1.8; color:#333; }
.news-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tan-dark); text-decoration: none; transition: gap 0.3s;
}
.news-link:hover { gap: 14px; }
.news-link::after { content: '→'; }

/* ===== CONTACT ===== */
#contact { background: var(--white); }
#contact .section-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; }
.contact-info p { font-size: 1rem; line-height: 1.85; color: #000000; margin-bottom: 40px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-details li { display: flex; align-items: flex-start; gap: 18px; }
.detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--warm-grey);
  display: flex; align-items: center; justify-content: center; color: var(--tan-dark);
}
.detail-text { display: flex; flex-direction: column; gap: 3px; }
.detail-label { font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--slate-dark); }
.detail-value { font-size: 0.95rem; color: var(--text-body); }
.detail-value a { color: var(--text-body); text-decoration: none; transition: color 0.3s; }
.detail-value a:hover { color: var(--tan-dark); }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; margin-bottom: 10px; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--off-white); border: 1px solid var(--warm-grey);
  color: var(--charcoal); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  font-weight: 300; transition: border-color 0.3s, background 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--tan); background: var(--white);
}
.form-group select option { background: var(--white); color: var(--charcoal); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%; padding: 16px 40px; background: var(--charcoal-dk);
  border: none; color: var(--white); font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, transform 0.2s;
}
.form-submit:hover { background: var(--tan-dark); transform: translateY(-1px); }
.form-success {
  display: none; padding: 20px; background: rgba(124,87,53,0.06);
  border: 1px solid var(--tan); color: var(--tan-dark); text-align: center;
  font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal-dk); padding: 15px 0px;
  border-top: 3px solid var(--amber);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-copy { font-size: 0.75rem; color: var(--warm-grey); letter-spacing: 0.08em; }
.footer-copy a { color: var(--amber-light); text-decoration: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


.contact-right-box{background:rgba(201,169,110,.04);border:1px solid rgba(201,169,110,.15);padding:20px 25px;height:100%}
.contact-right-box h3{font-size:1.8rem;color:var(--gold);margin-bottom:30px}
.right-item{margin-bottom:25px}
.right-item span{font-size:.65rem;letter-spacing:.25em;text-transform:uppercase;color:var(--text-muted);display:block;margin-bottom:8px}
.right-item p{font-size:.95rem;color:#000}
.right-item a{color:#000;text-decoration:none}
.right-item a:hover{color:#000}


.news_section .news-card{padding:0px;    display: grid;    grid-auto-rows: 450px;}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.news-card{position:relative;overflow:hidden;border-radius:10px}
.news-card img{width:100%;display:block;transition:.4s;}
.news_section .news-card img{
    height: 100%;
    object-fit: cover;}
.news-card .overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);color:#fff;display:flex;align-items:center;
justify-content:center;opacity:0;transition:.4s}
.news-card:hover img{transform:scale(1.1)}
.news-card:hover .overlay{opacity:1}

.center_div{text-align: center;margin-top: 25px;}
.section-header{display:flex;justify-content: space-between;align-items: center;gap: 20px;}
.view-all-btn{margin-bottom:0px;}
.view-all-btn a{padding: 14px 40px;background: #323335;color:#fff;font-size: 0.72rem;
letter-spacing: 0.22em;text-transform: uppercase;text-decoration: none;cursor: pointer;transition: all 0.3s;white-space: nowrap;}


.banner_img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none !important;
    /* background-color: rgba(0, 0, 0, 0.3); */
    background-color: rgba(14, 12, 31, .2);
}
.black_white_nav .nav-links a{color:#fff;}
.black_white_nav.scrolled .nav-links a{color:#000;}
.black_white_banner .hero-eyebrow{color: #fff;}
.black_white_banner .hero-tagline{color: #fff;}
.black_white_banner .hero-actions .btn-secondary{color: #000;background-color:#fff;}
.banner_img img{width:100%;height:100%;}

/* ===== BREADCRUMB ===== */
.breadcrumb {margin-top: var(--nav-height);background: var(--off-white);padding:14px 48px;}
.breadcrumb-inner {max-width: 1200px;margin: auto;font-size: 0.75rem;letter-spacing: 0.15em;text-transform: uppercase;}
.breadcrumb a {color: var(--text-muted);text-decoration: none;transition: 0.3s;}
.breadcrumb a:hover {color: var(--amber-dark);}
.breadcrumb span {margin: 0 8px;color: var(--text-muted);}
.breadcrumb .active {color: var(--charcoal);font-weight: 500;}

/* Background white */


.fancybox__container {--fancybox-bg: #ffffff !important;}
.fancybox__slide.has-caption{display: flex;flex-direction: row;width: 100%;max-width: 100%;height: 100vh;background: #fff;padding:0;}
.fancybox__slide.has-caption .fancybox__content {width: 60%;height: 100%;object-fit: cover;order: 2;}
.fancybox__slide.has-caption .fancybox__caption {width: 40%;padding: 40px 40px 40px 140px;background: #fff;color: #000;display: flex;flex-direction: column;
justify-content: center;order: 1;}
.fancybox__caption h3{font-size: 24px;margin-bottom: 10px;}
.fancybox__caption p{font-size: 16px;color: #555;}
.fancybox__footer {display: none;}
.fancybox__slide::before, .fancybox__slide::after{display:none;}


.black_white_nav .nav-links .phone_no a{background-color:#fff;color:#000;padding: 12px 15px;border-radius: 50px;font-weight: 500;}
.black_white_nav.scrolled .nav-links .phone_no a{background-color:#323335;color:#fff;}
.nav-links .phone_no a::after{background: initial;}

.white_menu .nav-links .phone_no a{background-color:#323335;color:#fff;padding: 12px 15px;border-radius: 50px;font-weight: 500;}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section-inner { padding: 80px 32px; }
  #about .section-inner { grid-template-columns: 1fr; gap: 60px; }
  #contact .section-inner { grid-template-columns: 1fr; gap: 60px; }
  .artwork-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  nav.scrolled { background: rgba(255,255,255,0.98); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 70px 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .exhibitions-grid { grid-template-columns: 1fr; }
  .artwork-item.tall { aspect-ratio: 1/1; grid-row: span 1; }
  .tab-btn { padding: 12px 16px; font-size: 0.68rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .artwork-grid { grid-template-columns: 1fr 1fr; }
  .artwork-item.wide { grid-column: span 2; aspect-ratio: 4/3; }
}
