/* ================= ROOT ================= */
:root {
  --bg: #0a0a0a;
  --fg: #f9f8f6;
  --accent: #7e5a42;
  --container: 1280px;
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Geist", sans-serif;
  overflow-x: hidden;
}

/* ================= UTIL ================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 80px;
  background: transparent;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.8;
  transition: color var(--transition), opacity var(--transition);
}

.main-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px;
}

.social-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 20px;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
    linear-gradient(to right, rgba(0,0,0,0.2), transparent, rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
}

.hero-title span {
  font-style: italic;
  opacity: 0.75;
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 40px 0;
}

.hero-tagline {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero-cta {
  margin-top: 48px;
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--fg);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.hero-cta:hover {
  background: var(--fg);
  color: #000;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ================= PHILOSOPHY ================= */
.philosophy-section {
  position: relative;
  padding: 160px 0;
  background: var(--bg);
  overflow: hidden;
}

/* Background grid */
.philosophy-bg span,
.philosophy-bg svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.03;
  color: var(--fg);
}

.v-line { top: 0; bottom: 0; width: 1px; background: currentColor; }
.v1 { left: 20%; }
.v2 { left: 40%; }
.v3 { left: 60%; }
.v4 { left: 80%; }

.h-line { left: 0; right: 0; height: 1px; background: currentColor; }
.h1 { top: 33%; }
.h2 { top: 66%; }

.diagonal-lines {
  inset: 0;
  width: 100%;
  height: 100%;
}
.diagonal-lines line {
  stroke: currentColor;
  stroke-width: 1;
}

/* Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  position: relative;
  z-index: 2;
}

/* Visual */
.philosophy-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.philosophy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1s ease, filter 1s ease;
}
.philosophy-visual:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}

/* Corners */
.corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(255,255,255,0.3);
}
.tl { top: 24px; left: 24px; border-top:1px solid; border-left:1px solid; }
.tr { top: 24px; right: 24px; border-top:1px solid; border-right:1px solid; }
.bl { bottom: 24px; left: 24px; border-bottom:1px solid; border-left:1px solid; }
.br { bottom: 24px; right: 24px; border-bottom:1px solid; border-right:1px solid; }

/* Timeline */
.visual-timeline {
  position: absolute;
  bottom: 48px;
  left: 32px;
  font-size: 10px;
  opacity: 0;
  transition: opacity .6s ease;
}
.philosophy-visual:hover .visual-timeline {
  opacity: 1;
}
.visual-timeline div {
  margin-bottom: 8px;
}
.visual-timeline span {
  color: var(--accent);
  margin-right: 8px;
}

/* Content */
.philosophy-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 300;
}
.philosophy-content .accent {
  color: var(--accent);
  margin-bottom: 32px;
}

.vertical-divider {
  width: 1px;
  height: 64px;
  background: var(--accent);
  margin: 40px 0;
}

.philosophy-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  opacity: 0.85;
}

/* Pillars */
.pillars-title {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--accent);
  margin-bottom: 16px;
}
.pillars ul li {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  margin-bottom: 12px;
  opacity: 0.7;
  transition: opacity .3s;
}
.pillars ul li:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= VISION SECTION ================= */
.vision-section {
  position: relative;
  padding: 160px 0;
  background: var(--bg);
  overflow: hidden;
}

/* Background grid */
.vision-bg .v-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.03);
}
.v1 { left: 20%; }
.v2 { left: 40%; }
.v3 { left: 60%; }
.v4 { left: 80%; }

/* Header */
.vision-header {
  text-align: center;
  margin-bottom: 160px;
}
.vision-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
}
.vision-header .intro {
  max-width: 720px;
  margin: 24px auto 0;
  opacity: .7;
}
.ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.ornament span {
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.ornament i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* Tabs */
.vision-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}
.vision-tabs button {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  cursor: pointer;
}
.vision-tabs button:hover {
  color: rgba(255,255,255,.7);
}

/* Blocks */
.vision-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 160px;
}
.vision-block.reverse {
  direction: rtl;
}
.vision-block.reverse * {
  direction: ltr;
}

/* Image */
.vision-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 1s ease;
}
.vision-image:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

/* Corners */
.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(255,255,255,.3);
}
.tl { top: 24px; left: 24px; border-top:1px solid; border-left:1px solid; }
.tr { top: 24px; right: 24px; border-top:1px solid; border-right:1px solid; }
.bl { bottom: 24px; left: 24px; border-bottom:1px solid; border-left:1px solid; }
.br { bottom: 24px; right: 24px; border-bottom:1px solid; border-right:1px solid; }

.block-number {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 64px;
  font-family: "Cormorant Garamond", serif;
  opacity: .2;
}
.block-label {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 10px;
  letter-spacing: .3em;
  opacity: .3;
}

/* Content */
.vision-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--accent);
}
.tagline {
  font-style: italic;
  opacity: .6;
}
.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}
.vision-content ul li {
  margin-bottom: 12px;
  opacity: .8;
}

/* Quote */
.vision-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.vision-quote p {
  font-style: italic;
  opacity: .8;
}
.vision-quote span {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--accent);
}

/* ================= GALLERY ================= */
.gallery-section {
  position: relative;
  padding: 140px 0;
  background: var(--accent);
  color: #000;
  overflow: hidden;
}

/* Background grid */
.gallery-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
}
.gallery-bg svg {
  width: 100%;
  height: 100%;
}

/* Frames */
.frame {
  position: absolute;
  width: 96px;
  height: 96px;
  border-color: rgba(0,0,0,0.2);
}
.frame.tl {
  top: 48px;
  left: 48px;
  border-top: 1px solid;
  border-left: 1px solid;
}
.frame.br {
  bottom: 48px;
  right: 48px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

/* Header */
.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-header .eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .6;
}
.gallery-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
}
.gallery-header .intro {
  max-width: 640px;
  margin: 16px auto 0;
  font-style: italic;
  opacity: .7;
}

/* Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}
.gallery-filters button {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
  transition: .3s;
}
.gallery-filters button.active,
.gallery-filters button:hover {
  background: #000;
  color: #fff;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .7s ease, filter .7s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

/* Overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity: .6;
  transition: opacity .5s;
}
.gallery-item:hover::after {
  opacity: .4;
}

/* Caption */
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform .5s ease;
  color: #fff;
}
.gallery-item:hover figcaption {
  transform: translateY(0);
}
.gallery-item figcaption span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
}
.gallery-item figcaption p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= CONTACT ================= */
.contact-section {
  position: relative;
  padding: 160px 0;
  background: var(--bg);
  overflow: hidden;
}

/* Background grid */
.contact-bg .v-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.03);
}
.contact-bg .v1 { left: 25%; }
.contact-bg .v2 { left: 50%; }
.contact-bg .v3 { left: 75%; }
.contact-bg .h-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.03);
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 96px;
}
.contact-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
}

/* Hero */
.contact-hero {
  position: relative;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  margin-bottom: 120px;
}
.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 1s ease;
}
.contact-hero:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}
.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.2));
}
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-text p {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .6;
}
.hero-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-style: italic;
  opacity: .9;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}

/* Titles */
.block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.block-title i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.block-title p {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .6;
}

/* Form */
.contact-form label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
}
.field {
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
}
.contact-form button {
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border: none;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.contact-form button:hover {
  background: var(--accent);
}

/* Offices */
.office {
  margin-bottom: 40px;
}
.office h4 {
  font-size: 18px;
  font-weight: 300;
}
.office h4 span {
  font-size: 10px;
  color: var(--accent);
  margin-right: 8px;
}
.office em {
  font-size: 10px;
  opacity: .5;
}
.office p {
  margin-left: 24px;
  opacity: .7;
}
.office a:hover {
  color: var(--accent);
}

/* Parent */
.parent-company {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  margin-top: 48px;
}
.parent-company h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  margin-bottom: 12px;
}
.parent-company p {
  font-size: 14px;
  opacity: .7;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    aspect-ratio: 16 / 9;
  }
}


/* ================= FOOTER RESET ================= */
.site-footer {
  background: radial-gradient(
      ellipse at bottom,
      rgba(255,255,255,0.04),
      rgba(0,0,0,0.95)
    ),
    #000;
  color: rgba(255,255,255,0.82);
  padding: 96px 0 48px;
  font-weight: 300;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 56px;
}

/* Brand */
.footer-logo {
  height: 56px;
  margin-bottom: 24px;
}

.brand-text {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 12px;
}

.brand-note {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
}

/* Social */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 60px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Nav */
.footer-nav h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.footer-nav a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

/* Heritage */
.heritage {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.heritage p {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

/* Bottom */
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-tagline {
  letter-spacing: 0.12em;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .site-footer {
    padding: 64px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    font-size: 11px;
  }
}

.btn-nav {
  background-color: #f4a641;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
}