@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-display: 'Cormorant Garamond', 'Cambon', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --color-bg: #f5f3ef;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6560;
  --color-text-light: #9a948e;
  --color-accent: #c4a97d;
  --color-border: #d4cfc8;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; z-index: 100;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--color-border);
  transition: background 0.4s ease;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: 7px; text-transform: uppercase;
  text-decoration: none; color: var(--color-text);
  transition: color 0.3s; white-space: nowrap;
}

.nav-right {
  display: flex; align-items: center; gap: 1.5rem; margin-left: auto;
}

.nav-links {
  display: flex; gap: 0.9rem; list-style: none;
}

.nav-links a {
  text-decoration: none; color: var(--color-text-muted);
  font-family: var(--font-display); font-size: 13px; font-weight: 300;
  letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a.active { color: var(--color-text); }

.nav-social {
  display: flex; gap: 0.8rem; align-items: center;
}

.nav-social a {
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s;
}
.nav-social a:hover { opacity: 0.6; }

.nav-social svg {
  width: 16px; height: 16px;
  fill: var(--color-text-muted);
  transition: fill 0.3s;
}

/* TC LOGO LINK */
.tc-logo-link {
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s; line-height: 1; text-decoration: none;
}
.tc-logo-link:hover { opacity: 0.6; }
.tc-icon { height: 16px; width: auto; display: block; position: relative; top: 0px; }

/* PAGE HEADER */
.page-header {
  padding: calc(var(--nav-height) + 4rem) 3rem 4rem;
  max-width: 1200px; margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; letter-spacing: 0.04em;
}

/* SECTION COMMON */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-text-light); margin-bottom: 2rem;
}

/* IMAGE BREAK */
.image-break { height: 50vh; min-height: 400px; overflow: hidden; position: relative; }
.image-break img { width: 100%; height: 100%; object-fit: cover; }

/* SUBSCRIBE */
.subscribe-section-wrap {
  padding: 6rem 3rem; text-align: center;
  background: #1a1a1a; color: #fff;
}
.subscribe-section { max-width: 500px; margin: 0 auto; }
.subscribe-section h2 { color: #fff; }
.subscribe-section p { color: rgba(255,255,255,0.6); }
.subscribe-section .section-label { color: rgba(255,255,255,0.4); }
.subscribe-form { display: flex; gap: 0; max-width: 400px; margin: 0 auto; }
.subscribe-form input {
  flex: 1; font-family: var(--font-display); font-size: 14px;
  padding: 12px 16px; border: 0.5px solid rgba(255,255,255,0.3);
  background: transparent; color: #fff; outline: none; transition: border-color 0.3s;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form input:focus { border-color: #fff; }
.subscribe-form button {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; padding: 12px 24px;
  background: #fff; color: #1a1a1a;
  border: 0.5px solid #fff; cursor: pointer; transition: all 0.3s;
}
.subscribe-form button:hover { background: transparent; color: #fff; }

/* FOOTER */
footer {
  border-top: 0.5px solid var(--color-border);
  padding: 3rem; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-logo-img { height: 36px; width: auto; opacity: 0.45; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-text-light); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-text); }
.footer-copy { font-family: var(--font-display); font-size: 12px; color: var(--color-text-light); letter-spacing: 1px; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
.nav-mobile-right {
  display: none; align-items: center; gap: 24px;
}
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 201;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px; background: var(--color-text);
  position: absolute; left: 0; transition: all 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 9px; }
.nav-hamburger span:nth-child(3) { top: 18px; }
.nav-hamburger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(245,243,239,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: flex-start; gap: 1.2rem; padding-top: calc(var(--nav-height) + 30px);
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-header {
  position: absolute; top: 0; left: 0; right: 0; height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
}
.mobile-nav-header .mobile-nav-name {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  letter-spacing: 7px; text-transform: uppercase; color: var(--color-text);
  text-decoration: none;
}
.mobile-nav-close {
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 300; color: var(--color-text); transition: opacity 0.3s;
  line-height: 1;
}
.mobile-nav-close:hover { opacity: 0.5; }
.mobile-nav-overlay a {
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  color: var(--color-text); transition: opacity 0.3s;
}
.mobile-nav-overlay a:hover { opacity: 0.5; }
.mobile-nav-overlay .mobile-nav-social {
  display: flex; gap: 1.2rem; margin-top: 0.5rem;
}
.mobile-nav-overlay .mobile-nav-social a { font-size: 0; }
.mobile-nav-overlay .mobile-nav-social svg { width: 20px; height: 20px; fill: var(--color-text-muted); }

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none !important; }
  .nav-social { display: none !important; }
  .nav-mobile-right { display: flex; }
  .nav-hamburger { display: block; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem; }
  .subscribe-section-wrap { padding: 4rem 1.5rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Force mobile cart icon hidden on desktop — prevents double icon */
@media (min-width: 769px) {
  .nav-mobile-cart-btn { display: none !important; }
}
