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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

:root {
  --white: #ffffff;
  --off-white: #faf6f0;
  --stone: #ddd0c0;
  --charcoal: #1e1e1e;
  --warm-mid: #7a6a58;
  --brass: #c4633a;
  --nav-height: 72px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  padding-top: var(--nav-height);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-mid);
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  z-index: 1000;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}

nav ul {
  display: flex;
  gap: 48px;
  list-style: none;
}

nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: var(--charcoal);
}

nav ul li a.active {
  color: var(--charcoal);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}

footer nav ul {
  gap: 40px;
}

footer nav ul li a {
  color: var(--warm-mid);
}

footer nav ul li a:hover {
  color: var(--white);
}

footer .footer-copy {
  font-size: 0.75rem;
  color: var(--warm-mid);
  letter-spacing: 1px;
}

footer .footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--brass);
  font-weight: 300;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--brass);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--brass);
  border-color: var(--brass);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ── Section Labels ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  display: block;
}

/* ── Page Navigation ── */
.page-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--stone);
}

.prev-page,
.next-page {
  display: flex;
  align-items: center;
  padding: 48px 80px;
  background: var(--white);
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.3s;
  gap: 24px;
}

.prev-page {
  border-right: 1px solid var(--stone);
  justify-content: flex-start;
}

.next-page {
  justify-content: flex-end;
}

.prev-page:hover,
.next-page:hover {
  background: var(--off-white);
}

.page-nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
}

.page-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.page-nav-arrow {
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.next-page:hover .page-nav-arrow {
  transform: translateX(6px);
}

.prev-page:hover .page-nav-arrow {
  transform: translateX(-6px);
}

.prev-page .page-nav-content,
.next-page .page-nav-content {
  display: flex;
  flex-direction: column;
}

.next-page .page-nav-content {
  text-align: right;
}


/* ══════════════════════════════════════
   INDEX.HTML — HOME PAGE
══════════════════════════════════════ */

#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  border-bottom: 1px solid var(--stone);
}

.hero-text {
  background: var(--off-white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-text .section-label {
  color: var(--brass);
}

.hero-text h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--charcoal);
  line-height: 1;
  font-weight: 300;
}

.hero-text p {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.hero-text .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
}

.hero-grid-large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--stone);
}

.hero-grid-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.hero-grid-large:hover img {
  transform: scale(1.03);
}

.hero-grid-small {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
}

.hero-grid-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.hero-grid-item:hover img {
  transform: scale(1.03);
}

#selected-work {
  padding: 80px;
  background: var(--white);
}

.selected-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.selected-work-header .section-label {
  margin-bottom: 0;
}

.selected-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.work-card {
  cursor: pointer;
}

.work-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--stone);
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.04);
}

.work-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.work-card-meta {
  display: flex;
  gap: 16px;
}

.work-card-meta span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.work-card-meta span:first-child::after {
  content: '·';
  margin-left: 16px;
}

#services {
  padding: 80px;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
  margin-top: 40px;
}

.service-item {
  background: var(--off-white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}

.service-item:hover {
  background: var(--white);
}

.service-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--brass);
}

.service-item h3 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
}

.service-item p {
  font-size: 0.85rem;
  line-height: 1.8;
}

#philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.philosophy-image {
  overflow: hidden;
  background: var(--stone);
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

#philosophy:hover .philosophy-image img {
  transform: scale(1.03);
}

.philosophy-content {
  background: var(--off-white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.philosophy-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

#press {
  padding: 56px 80px;
  background: var(--white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  text-align: center;
}

.press-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.press-strip span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 1px;
  transition: color 0.3s;
  cursor: default;
}

.press-strip span:hover {
  color: var(--warm-mid);
}


/* ══════════════════════════════════════
   WORK.HTML
══════════════════════════════════════ */

#work-hero {
  padding: 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
}

.work-hero-content {
  max-width: 600px;
}

.work-hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 16px 0;
}

.work-hero-content p {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--warm-mid);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 80px;
  border-bottom: 1px solid var(--stone);
  background: var(--white);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.filter-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.filter-options {
  display: flex;
  gap: 32px;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.filter-btn:hover {
  color: var(--charcoal);
}

.filter-btn.active {
  color: var(--charcoal);
  border-bottom-color: var(--brass);
}

#projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--stone);
  border-bottom: 1px solid var(--stone);
}

a.project-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card {
  background: var(--white);
  cursor: pointer;
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.project-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
}

.project-card:hover .project-overlay {
  background: rgba(28, 28, 28, 0.35);
}

.project-card:hover .project-overlay span {
  opacity: 1;
}

.project-info {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.project-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
}

.project-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--warm-mid);
}

.project-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.project-location {
  font-size: 0.8rem;
  color: var(--warm-mid);
  letter-spacing: 0.5px;
}

.project-view-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--stone);
  transition: gap 0.2s, color 0.2s;
}

.project-view-link::after {
  content: '→';
  transition: transform 0.2s;
}

.project-card:hover .project-view-link {
  color: var(--charcoal);
  gap: 12px;
}

.project-card:hover .project-view-link::after {
  transform: translateX(4px);
}

#work-cta {
  padding: 100px 80px;
  background: var(--off-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#work-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
}

#work-cta p {
  font-size: 0.9rem;
  color: var(--warm-mid);
  max-width: 400px;
}


/* ══════════════════════════════════════
   PROJECT PAGES
   (villa-strand.html, hotel-maren.html,
   foss-cultural-centre.html,
   atelier-bergmann.html,
   residence-lund.html, norden-club.html)
══════════════════════════════════════ */

.project-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--stone);
}

.project-hero-image {
  overflow: hidden;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.project-hero-image img {
  width: 100%;
  max-width: 736px;
  height: auto;
  display: block;
}

.project-hero-content {
  background: var(--off-white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--stone);
}

.back-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--brass);
}

.project-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.project-hero-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.project-hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--stone);
  margin-top: 8px;
}

.project-info-strip {
  display: flex;
  border-bottom: 1px solid var(--stone);
  background: var(--white);
}

.project-stat {
  flex: 1;
  padding: 32px 40px;
  border-right: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-stat:last-child {
  border-right: none;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.project-description {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.project-description-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-description-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.project-description-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-mid);
}

.project-description-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.aside-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--stone);
}

.aside-item:last-child {
  border-bottom: none;
}

.project-gallery {
  background: var(--off-white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--stone);
}

.gallery-large {
  width: 100%;
  max-width: 736px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.gallery-large:hover img {
  transform: scale(1.02);
}

.gallery-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 736px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}


/* ══════════════════════════════════════
   ABOUT.HTML
══════════════════════════════════════ */

#about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-hero-image {
  overflow: hidden;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 500px;
}

.about-hero-image img {
  width: 100%;
  max-width: 736px;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

#about-hero:hover .about-hero-image img {
  transform: scale(1.02);
}

.about-hero-content {
  background: var(--off-white);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-mid);
  max-width: 480px;
}

#about-philosophy {
  padding: 80px;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.about-philosophy-header {
  margin-bottom: 40px;
}

.about-philosophy-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 16px;
}

.about-philosophy-columns {
  columns: 2;
  column-gap: 64px;
}

.about-philosophy-columns p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-mid);
  break-inside: avoid;
  margin-bottom: 24px;
}

#about-team {
  padding: 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
}

#about-team h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 16px 0 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--stone);
}

.team-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.03);
}

.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}

.team-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass);
}

.team-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--warm-mid);
  padding-top: 12px;
  border-top: 1px solid var(--stone);
  margin-top: 4px;
}

#about-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--stone);
}

.awards-content {
  padding: 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.awards-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 8px;
}

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.award-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone);
  transition: background 0.2s;
}

.award-item:first-child {
  border-top: 1px solid var(--stone);
}

.award-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--warm-mid);
}

.award-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.award-category {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brass);
  text-align: right;
}

.awards-image {
  overflow: hidden;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.awards-image img {
  width: 100%;
  max-width: 736px;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

#about-awards:hover .awards-image img {
  transform: scale(1.02);
}

#about-cta {
  padding: 80px;
  background: var(--off-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

#about-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  max-width: 600px;
  line-height: 1.3;
}

#about-cta p {
  font-size: 0.9rem;
  color: var(--warm-mid);
}


/* ══════════════════════════════════════
   CONTACT.HTML
══════════════════════════════════════ */

#contact-hero {
  padding: 100px 80px 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--stone);
}

.contact-hero-content {
  max-width: 640px;
}

.contact-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin: 16px 0 24px;
  line-height: 1.1;
}

.contact-hero-content p {
  font-size: 0.9rem;
  color: var(--warm-mid);
  letter-spacing: 0.5px;
}

#contact-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 600px;
  border-bottom: 1px solid var(--stone);
}

.contact-details {
  padding: 64px 80px;
  background: var(--white);
  border-right: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-details-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details-group address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2;
  color: var(--warm-mid);
}

.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-links li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
}

.contact-links li:last-child {
  border-bottom: none;
}

.contact-link-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-mid);
}

.contact-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--brass);
}

.contact-note {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--warm-mid);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--brass);
}

.contact-form-wrapper {
  padding: 64px 80px;
  background: var(--off-white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form fieldset {
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
}

.contact-form legend {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  padding: 0 8px;
  font-weight: 500;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--stone);
  border-radius: 0;
  outline: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196, 99, 58, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--stone);
}

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 16px 48px;
  font-size: 0.8rem;
}


/* ══════════════════════════════════════
   ALL MEDIA QUERIES
══════════════════════════════════════ */

@media (max-width: 1024px) {
  /* Home */
  .selected-work-grid { grid-template-columns: repeat(2, 1fr); }
  #philosophy { grid-template-columns: 1fr; }
  .philosophy-image { height: 500px; }

  /* Project pages */
  .project-hero { grid-template-columns: 1fr; min-height: auto; }
  .project-hero-image { padding: 40px; border-left: none; border-bottom: 1px solid var(--stone); }
  .project-hero-content { border-left: none; }
  .project-description { grid-template-columns: 1fr; gap: 48px; }

  /* About */
  #about-hero { grid-template-columns: 1fr; }
  .about-hero-image { min-height: 400px; }
  #about-awards { grid-template-columns: 1fr; }
  .awards-image { min-height: 300px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  #contact-body { grid-template-columns: 1fr; }
  .contact-details { border-right: none; border-bottom: 1px solid var(--stone); }
}

@media (max-width: 768px) {
  /* Global */
  header { padding: 0 24px; }
  footer { padding: 48px 24px; }
  .page-navigation { grid-template-columns: 1fr; }
  .prev-page { border-right: none; border-bottom: 1px solid var(--stone); }
  .prev-page, .next-page { padding: 32px 24px; }

  /* Home */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 48px 24px; min-height: 50vh; }
  .hero-grid-large { aspect-ratio: 4 / 3; }
  #selected-work, #services, #press { padding: 48px 24px; }
  .philosophy-content { padding: 48px 24px; }
  .selected-work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .selected-work-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .press-strip { gap: 32px; }

  /* Work */
  #work-hero { padding: 60px 24px; }
  .filter-row { padding: 20px 24px; gap: 24px; }
  .filter-options { gap: 20px; }
  #projects-grid { grid-template-columns: 1fr; }
  #work-cta { padding: 60px 24px; }

  /* Project pages */
  .project-hero-content { padding: 48px 24px; }
  .project-hero-image { padding: 24px; }
  .project-info-strip { flex-wrap: wrap; }
  .project-stat { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--stone); }
  .project-description { padding: 60px 24px; }
  .project-gallery { padding: 48px 24px; gap: 16px; }
  .gallery-two-col { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-large { max-width: 100%; }

  /* About */
  .about-hero-content { padding: 48px 24px; }
  .about-hero-image { padding: 24px; min-height: auto; }
  #about-philosophy { padding: 60px 24px; }
  .about-philosophy-columns { columns: 1; }
  #about-team { padding: 60px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .awards-content { padding: 60px 24px; }
  .awards-image { padding: 24px; min-height: auto; }
  #about-cta { padding: 60px 24px; }
  .award-item { grid-template-columns: 50px 1fr; }
  .award-category { display: none; }

  /* Contact */
  #contact-hero { padding: 60px 24px; }
  .contact-details { padding: 48px 24px; }
  .contact-form-wrapper { padding: 48px 24px; }
  .contact-form .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  nav ul { gap: 24px; }
  nav ul li:not(:first-child):not(:last-child) { display: none; }
}
