/*
Theme Name: Dhruv.Design Editorial
Theme URI: https://dhruv.design
Author: Zrix / Custom Concept
Description: Bespoke editorial architecture portfolio theme for dhruv.design. Includes Home, Studio, Work, Journal, Awards and Contact templates plus Project and Journal content types.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: dhruvdesign
*/
:root {
  --ink: #11110f;
  --paper: #f4f1ea;
  --white: #fff;
  --muted: #6f6b63;
  --line: #d8d3c8;
  --terracotta: #9a5f43;
  --stone: #c5b9a5;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1440px, calc(100% - 64px));
  margin: auto;
}
.site-header {
  padding: 0 48px;
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(244, 241, 234, 0.94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  font: 32px/1 var(--serif);
  letter-spacing: -1.5px;
}
.tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 6px;
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
}
.nav a:hover,
.nav .current-menu-item a {
  border-bottom: 1px solid;
}
.hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(
      120deg,
      rgba(20, 17, 13, 0.45),
      rgba(20, 17, 13, 0.08)
    ),
    linear-gradient(135deg, #88735f, #c6ad8d 50%, #655649);
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 70% 38%,
      rgba(255, 255, 255, 0.25),
      transparent 18%
    ),
    linear-gradient(
      90deg,
      transparent 63%,
      rgba(32, 40, 28, 0.28) 64%,
      transparent 68%
    );
  opacity: 0.75;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.hero h1,
.display {
  font: clamp(58px, 7vw, 110px) / 0.93 var(--serif);
  letter-spacing: -4px;
  margin: 26px 0;
}
.hero-note {
  align-self: end;
  justify-self: end;
  max-width: 300px;
  font-family: var(--serif);
  font-size: 19px;
}
.arrow-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid;
  padding-bottom: 7px;
}
.section {
  padding: 100px 0;
}
.section-title {
  font: 52px/1 var(--serif);
  letter-spacing: -2px;
  margin: 0 0 45px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}
.intro-big {
  font: 42px/1.15 var(--serif);
  max-width: 650px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.project-card .thumb {
  aspect-ratio: 1.25;
  background: linear-gradient(135deg, #7f5a46, #c5a77e 55%, #4c443a);
  position: relative;
  overflow: hidden;
}
.project-card:nth-child(2) .thumb {
  background: linear-gradient(135deg, #a59a86, #5e5548 60%, #c4b393);
}
.project-card:nth-child(3) .thumb {
  background: linear-gradient(135deg, #6f6758, #b7a581 55%, #46513d);
}
.thumb:after {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 30px 20px 0 rgba(30, 20, 12, 0.15);
}
.project-card h3 {
  font: 22px var(--serif);
  margin: 14px 0 2px;
}
.meta {
  font-size: 11px;
  color: var(--muted);
}
.dark {
  background: #141411;
  color: #f5f1e9;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.journal-card .image {
  aspect-ratio: 1.15;
  background: linear-gradient(140deg, #8b735e, #d3b997);
  margin-bottom: 18px;
}
.journal-card:nth-child(2) .image {
  background: linear-gradient(140deg, #8a765a, #4e583d);
}
.journal-card:nth-child(3) .image {
  background: linear-gradient(140deg, #b6a486, #645446);
}
.journal-card h3 {
  font: 25px var(--serif);
  margin: 8px 0;
}
.profile {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 0.85fr;
  min-height: 720px;
}
.profile-copy {
  padding: 70px 55px;
}
.profile-photo {
  background: #d5cdc1;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.profile-side {
  padding: 70px 40px;
  border-left: 1px solid var(--line);
}
.profile h1 {
  font: 64px/0.95 var(--serif);
  letter-spacing: -3px;
  margin: 15px 0;
}
.quote {
  font: italic 30px/1.18 var(--serif);
}
.stats {
  display: grid;
  gap: 28px;
  margin-top: 45px;
}
.stat strong {
  font: 34px var(--serif);
  display: block;
}
.project-hero {
  padding: 80px 0 35px;
}
.project-head {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 100px;
}
.project-head h1 {
  font: 70px/0.95 var(--serif);
  letter-spacing: -3px;
  margin: 20px 0;
}
.project-feature {
  height: 650px;
  background: linear-gradient(135deg, #9b6045, #d0ae80 55%, #665246);
  position: relative;
}
.project-feature:after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: stretch;
}
.contact-panel {
  padding: 80px 0;
}
.contact-panel h1 {
  font: 72px/0.95 var(--serif);
  letter-spacing: -3px;
}
.contact-photo {
  min-height: 620px;
  background: #cbc1b3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer {
  background: #111;
  color: #eee;
  padding: 35px 0;
  font-size: 11px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.social {
  display: flex;
  gap: 22px;
}
.content {
  max-width: 850px;
  margin: auto;
  padding: 80px 0;
}
.content h1 {
  font: 64px var(--serif);
}
.btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.admin-note {
  padding: 14px;
  background: #fff4cf;
  border: 1px solid #e4d18b;
  margin: 20px 0;
  font-size: 13px;
}
@media (max-width: 900px) {
  .wrap {
    width: min(100% - 32px, 1440px);
  }
  .nav {
    display: none;
  }
  .hero-content,
  .intro-grid,
  .project-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-note {
    justify-self: start;
  }
  .projects-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .profile {
    grid-template-columns: 1fr;
  }
  .profile-side {
    border-left: 0;
  }
  .project-feature {
    height: 420px;
  }
  .section {
    padding: 65px 0;
  }
  .hero h1,
  .display {
    letter-spacing: -2px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.instagram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.instagram-feed {
  overflow: hidden;
}
.instagram-setup {
  border: 1px solid #d8d2c8;
  padding: 36px;
  text-align: center;
  color: #777;
  background: #f7f4ef;
}
.column-thumbnail img {
  width: 70px;
  height: 50px;
  object-fit: cover;
}
@media (max-width: 700px) {
  .instagram-head {
    display: block;
  }
  .instagram-head .arrow-link {
    display: inline-block;
    margin-top: 12px;
  }
}
