/* Homewood Trading — refined site styles */
:root {
  --ink: #12222E;
  --ink-2: #1C3444;
  --kraft: #8B6A4F;
  --gold: #C2A059;
  --gold-soft: #E8D9B8;
  --eco: #3E7C4F;
  --bg: #FBFAF7;
  --surface: #F4F1EA;
  --card: #FFFFFF;
  --text: #2A343C;
  --muted: #6E7A83;
  --border: #E7E2D8;
  --shadow: 0 10px 30px rgba(18, 34, 46, 0.08);
  --shadow-hover: 0 16px 40px rgba(18, 34, 46, 0.14);
  --radius: 14px;
  --font-display: "Playfair Display", "Source Han Serif SC", Georgia, "Songti SC", serif;
  --font-body: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: var(--ink); text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-soft); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---------- header ---------- */
header.site { background: rgba(18, 34, 46, 0.92); backdrop-filter: blur(10px); color: #fff; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: 2.5px; }
.brand .logo-mark { width: 40px; height: 40px; background: #fff; border-radius: 9px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.brand .logo-mark img { width: 30px; height: 30px; object-fit: contain; }
nav.main { display: flex; align-items: center; flex-wrap: wrap; }
nav.main a { color: rgba(255,255,255,0.78); margin-left: 26px; font-size: 0.92rem; letter-spacing: 0.4px; padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .2s; }
nav.main a:hover, nav.main a.active { color: #fff; border-bottom-color: var(--gold); }
.lang-btn { margin-left: 26px; border: 1px solid rgba(255,255,255,0.35); color: #fff; background: transparent; font: inherit; font-size: 0.85rem; letter-spacing: 1px; padding: 6px 14px; border-radius: 999px; cursor: pointer; transition: .2s; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; min-height: 560px; display: flex; align-items: center; background: var(--ink); overflow: hidden; }
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,34,46,0.88) 8%, rgba(18,34,46,0.45) 55%, rgba(18,34,46,0.25) 100%); }
.hero .container { position: relative; padding-top: 60px; padding-bottom: 70px; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 3rem; line-height: 1.2; max-width: 760px; letter-spacing: 0.3px; }
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero p.sub { margin: 22px 0 36px; font-size: 1.08rem; color: rgba(255,255,255,0.82); max-width: 620px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; transition: .25s; letter-spacing: 0.3px; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 6px 18px rgba(194,160,89,0.35); }
.btn-gold:hover { background: #D3B473; transform: translateY(-2px); }
.btn-line { border: 1.5px solid rgba(255,255,255,0.55); color: #fff; margin-left: 14px; }
.btn-line:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero .kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.hero .kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); }

/* ---------- stats ---------- */
.stats { background: #fff; border-bottom: 1px solid var(--border); padding: 40px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink); }
.stat .lab { color: var(--muted); font-size: 0.88rem; letter-spacing: 0.3px; }

/* ---------- sections ---------- */
section.block { padding: 96px 0; }
section.block.alt { background: var(--surface); }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--kraft); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }
h2.sec { font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; color: var(--ink); margin-bottom: 18px; line-height: 1.3; }
p.lead { color: var(--muted); max-width: 740px; margin-bottom: 44px; font-size: 1.02rem; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card .body { padding: 24px 26px 26px; }
.card h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 0.93rem; color: var(--muted); }

/* media: uniform 4:3 landscape frames — images pre-normalized, full content */
.card .media { aspect-ratio: 4 / 3; background: var(--surface); display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border); }
.card .media img { width: 100%; height: 100%; object-fit: contain; display: block; }

.check-list { list-style: none; margin-top: 14px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 10px; font-size: 0.92rem; color: var(--text); }
.check-list li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--eco); font-weight: 700; font-size: 0.85rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 70%, #24435A 100%); color: #fff; padding: 88px 0 80px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 2.5rem; max-width: 820px; line-height: 1.25; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 18px; max-width: 720px; font-size: 1.02rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-item .ico { width: 48px; height: 48px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-item .val { font-weight: 600; color: var(--ink); }
.contact-item .hint { color: var(--muted); font-size: 0.9rem; }
form.contact { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
form.contact h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.3rem; margin-bottom: 6px; }
form.contact label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); margin: 16px 0 6px; letter-spacing: 0.3px; }
form.contact input, form.contact textarea, form.contact select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 9px; font: inherit; background: var(--bg); transition: border-color .2s; }
form.contact input:focus, form.contact textarea:focus, form.contact select:focus { outline: none; border-color: var(--gold); }
form.contact button { margin-top: 24px; width: 100%; border: none; cursor: pointer; }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #9FB0C0; padding: 64px 0 34px; font-size: 0.9rem; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
footer.site h4 { color: #fff; margin-bottom: 12px; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; }
footer.site a { color: #C3CFDA; display: block; margin-bottom: 8px; transition: color .2s; }
footer.site a:hover { color: var(--gold-soft); }
footer.site .fine { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; color: #7A8B9C; letter-spacing: 0.3px; }

/* ---------- gallery: uniform 4:3 frames, full image ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { margin: 0; background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.gallery .frame { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background: var(--surface); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- video: natural aspect, no cropping ---------- */
.video-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.video-row figure { margin: 0; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-row video { width: 100%; height: auto; display: block; background: #000; }
.video-row figcaption { font-size: 0.88rem; color: var(--muted); padding: 14px 18px; text-align: center; }

.ship-note { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 24px; color: var(--muted); font-size: 0.92rem; box-shadow: var(--shadow); }

/* ---------- whatsapp float ---------- */
.wa-float { position: fixed; right: 26px; bottom: 26px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,0.28); z-index: 200; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero h1 { font-size: 2.2rem; }
  h2.sec { font-size: 1.8rem; }
  .cards, .cards.two { grid-template-columns: repeat(2, 1fr); }
  .video-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-wrap { height: auto; flex-direction: column; align-items: flex-start; padding: 14px 0; gap: 8px; }
  nav.main a { margin-left: 0; margin-right: 18px; }
  .lang-btn { margin-left: 0; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .cards, .cards.two, .contact-grid, .gallery, .video-row { grid-template-columns: 1fr; }
  section.block { padding: 64px 0; }
  .hero { min-height: 460px; }
  .btn-line { margin-left: 0; margin-top: 12px; }
  footer.site .cols { grid-template-columns: 1fr; }
}
