/* Pine Plaza Site V3 */

/* CTRL+F: COLORS */
:root {
  --pine: #063d35;
  --pine-dark: #03241f;
  --pine-soft: #eaf3ef;
  --cream: #f7f3ea;
  --ink: #14201e;
  --muted: #66736f;
  --line: #dbe2df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--white); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2 { letter-spacing: -0.04em; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .95; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; margin-bottom: 1rem; }
.section { padding: 80px 6vw; }
.section-light { background: var(--cream); }
.section-white { background: var(--white); }
.section-heading { max-width: 820px; margin-bottom: 36px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--pine); margin-bottom: .75rem; }
.korean-line, .hero-korean { color: var(--muted); font-size: .95rem; }
.hero-korean { color: #d8eee7; max-width: 760px; }
.small-note { color: rgba(255,255,255,.75); font-size: .9rem; }

/* CTRL+F: TOP BAR */
.top-bar { height: 38px; background: var(--pine-dark); color: var(--white); display: flex; justify-content: space-between; align-items: center; padding: 0 6vw; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }

/* CTRL+F: HEADER */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); min-height: 86px; display: flex; align-items: center; justify-content: space-between; padding: 0 6vw; }
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 54px; height: 54px; border-radius: 14px; background: var(--pine); color: var(--white); display: grid; place-items: center; font-size: 1.5rem; font-family: Georgia, serif; }
.site-logo-image {height: 72px; max-height: 72px; width: auto; max-width: 360px; object-fit: contain; display: block; flex-shrink: 0;}
@media (max-width: 760px) {.site-logo-image { height: 52px; max-height: 52px; max-width: 220px;}s}
.logo-text { font-family: Georgia, 'Times New Roman', serif; font-size: 2rem; text-transform: uppercase; letter-spacing: .08em; }
.logo-subtitle { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; align-items: center; font-size: .86rem; text-transform: uppercase; letter-spacing: .05em; }
.mobile-menu-button { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }

/* CTRL+F: HERO IMAGE */
.hero { min-height: 650px; display: flex; align-items: center; padding: 90px 6vw; color: var(--white); background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.20)), url("assets/images/pine-plaza-hero.jpg"); background-size: cover; background-position: center; }
.hero-content { max-width: 860px; }
.hero .eyebrow { color: #d8eee7; }
.hero-copy { font-size: clamp(1.1rem, 2vw, 1.45rem); max-width: 780px; margin-bottom: .8rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 10px; font-weight: 700; text-transform: uppercase; font-size: .84rem; letter-spacing: .04em; border: 1px solid transparent; }
.button-primary { background: var(--pine); color: var(--white); box-shadow: var(--shadow); }
.button-secondary { background: var(--white); color: var(--ink); }
.button-outline { border-color: var(--line); }
.text-link { color: var(--pine); font-weight: 700; }

.highlight-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.highlight-item { padding: 32px 30px; display: flex; gap: 18px; align-items: flex-start; border-right: 1px solid var(--line); }
.highlight-item:last-child { border-right: 0; }
.highlight-item span { font-size: 2rem; }
.highlight-item h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.highlight-item p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

/* CTRL+F: DIRECTORY */
.tenant-controls { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-button { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 10px 16px; cursor: pointer; color: var(--ink); }
.filter-button.active, .filter-button:hover { background: var(--pine); color: var(--white); }
.tenant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tenant-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 10px 25px rgba(0,0,0,.04); }
.tenant-name { font-size: 1.35rem; font-weight: 800; color: var(--pine); margin-bottom: .2rem; }
.tenant-korean { font-weight: 700; color: var(--muted); margin-bottom: 1rem; }
.tenant-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .9rem; margin-top: 18px; }
.pill { background: var(--pine-soft); border-radius: 999px; padding: 5px 10px; }
.tenant-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; font-weight: 700; color: var(--pine); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-image { min-height: 420px; background-size: cover; background-position: center; }
.dining-image { background-image: url("assets/images/pine-plaza-dining.jpg"); }
.banquet-image { background-image: url("assets/images/pine-plaza-banquet-hall.jpg"); }
.split-content { padding: 80px 6vw; display: flex; flex-direction: column; justify-content: center; background: var(--pine-soft); }
.banquet-section .split-content { background: var(--white); }

.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card, .contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--white); box-shadow: 0 10px 25px rgba(0,0,0,.04); }
.rules-list { margin-top: 26px; color: var(--muted); }

/* CTRL+F: LEASING */
.leasing-section { background: var(--pine); color: var(--white); padding: 90px 6vw; display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; }
.leasing-section .eyebrow { color: #cfeee4; }
.leasing-section .korean-line { color: #d8eee7; }
.leasing-section .text-link {color: #ffffff; font-weight: 800; text-decoration: underline; text-underline-offset: 4px;}
.leasing-bullets { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 34px; }
.leasing-bullets span { border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 9px 14px; }
.leasing-panel { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 30px; }

.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 10px 25px rgba(0,0,0,.04); }
.event-card-image { height: 150px; background: var(--pine-soft); display: grid; place-items: center; font-size: 2.5rem; }
.event-card-body { padding: 22px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.site-footer { background: #101716; color: var(--white); padding: 48px 6vw; display: grid; grid-template-columns: 1fr .7fr 1.2fr; gap: 44px; }
.site-footer a { display: block; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.site-footer p { color: rgba(255,255,255,.75); }
.footer-logo { font-family: Georgia, 'Times New Roman', serif; font-size: 1.8rem; text-transform: uppercase; }
.footer-logo-image {
  height: 150px;
  width: auto;
  max-width: 520px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

/* CTRL+F: MOBILE */
@media (max-width: 1000px) {
  .highlight-strip, .tenant-grid, .info-card-grid, .event-grid, .leasing-section, .contact-grid, .site-footer { grid-template-columns: 1fr 1fr; }
  .split-section { display: flex; flex-direction: column; }
}
@media (max-width: 760px) {
  .top-bar { display: none; }
  .site-header { flex-wrap: wrap; padding: 14px 5vw; }
  .logo-text { font-size: 1.45rem; }
  .mobile-menu-button { display: block; }
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 0 8px; }
  .main-nav.open { display: flex; }
  .hero { min-height: 560px; padding: 80px 5vw; }
  .highlight-strip, .tenant-grid, .info-card-grid, .event-grid, .leasing-section, .contact-grid, .site-footer { grid-template-columns: 1fr; }
  .highlight-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section, .leasing-section, .split-content { padding: 56px 5vw; }
}
