﻿@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500&family=Red+Hat+Text:wght@400;500&display=swap');

:root {
  --natural-linen: #F5F1EA;
  --soft-linen: #FAF8F4;
  --warm-ivory: #F2EEE7;
  --espresso: #4A3428;
  --deep-espresso: #34231B;
  --warm-taupe: #8B7A6B;
  --natural-sand: #D9D0C4;
  --rich-espresso: #5A4032;

  --content-width: 1780px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--natural-linen);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--natural-linen);
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER + HERO = SAME SURFACE */

.site-header {
  position: relative;
  z-index: auto;
  background: var(--warm-ivory);
}

.header-inner {
  width: min(calc(100% - 120px), var(--content-width));
  height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 300px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 58px;
  font-size: 17px;
  font-weight: 400;
}

.main-nav a {
  transition: color .25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--rich-espresso);
}

.menu-toggle {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  height: 178px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 12px 40px 18px;
  background: var(--warm-ivory);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 70vw);
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(52px, 3.8vw, 70px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero-rule {
  display: none;
}

.hero-description {
  max-width: 900px;
  margin: 27px auto 0;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}



/* PROJECT AREA — SUBTLE SURFACE CHANGE */

.work-section {
  padding: 12px 36px 48px;
  background: var(--warm-ivory);
}

.project-grid {
  width: min(100%, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--warm-ivory);
  border: 1px solid var(--natural-sand);
  transition:
    transform .38s cubic-bezier(.2,.7,.2,1),
    box-shadow .38s ease;
}

.project-image {
  height: 445px;
  overflow: hidden;
  background: var(--warm-ivory);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.project-copy {
  position: static;
  min-height: 220px;
  padding: 24px 24px 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--soft-linen);
  border-top: 1px solid rgba(217, 208, 196, .75);
  transform: none;
}

.project-copy h3 {
  margin: 0;
  min-height: 62px;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: .075em;
}

.card-rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 16px auto 18px;
  background: var(--warm-taupe);
}

.project-copy p {
  margin: 0;
  min-height: 58px;
  color: var(--espresso);
  font-size: 17px;
  line-height: 1.55;
}

.project-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--espresso);
  font-size: 17px;
  font-weight: 500;
}

.project-link b {
  display: inline-block;
  margin-left: 5px;
  font-weight: 400;
  transition: transform .25s ease;
}

.project-link--quiet {
  color: var(--warm-taupe);
}

a.project-card:hover,
a.project-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(74, 52, 40, .08);
  outline: none;
}

a.project-card:hover .project-image img,
a.project-card:focus-visible .project-image img {
  transform: scale(1.025);
}

a.project-card:hover .project-link b {
  transform: translateX(4px);
}

a.project-card:focus-visible {
  outline: 2px solid var(--espresso);
  outline-offset: 3px;
}

/* BRAND STATEMENT */

.brand-statement {
  min-height: 178px;
  padding: 34px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--natural-linen);
}

.brand-statement blockquote {
  margin: 0;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 40px;
  line-height: 1.18;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -.035em;
}

.brand-statement p {
  margin: 23px 0 0;
  color: var(--espresso);
  font-size: 16px;
  letter-spacing: .38em;
}

/* FOOTER */

.site-footer {
  background: var(--soft-linen);
  border-top: 1px solid rgba(217, 208, 196, .8);
}

.footer-inner {
  width: min(calc(100% - 120px), var(--content-width));
  min-height: 155px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 40px;
}

.footer-brand img {
  width: 300px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
}

.copyright {
  grid-column: 1 / -1;
  width: 100%;
  margin: -12px 0 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 208, 196, .7);
  color: var(--espresso);
  font-size: 15px;
}

/* ACCESSIBILITY */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*
  TABLET / MOBILE:
  Şimdilik mevcut davranışı güvenli tutuyoruz.
  Masaüstü oranı onaylandıktan sonra ayrıca inceltilecek.
*/

@media (min-width: 681px) and (max-width: 980px) {

  .site-header {
    position: relative;
    z-index: 3;
    background: transparent;
  }


  .header-inner {
    width: calc(100% - 48px);
    height: 94px;
  }

  .brand {
    transform: translateX(130px);
  }


  .brand img {
    width: 220px;
  }

  .main-nav {
    gap: 30px;
    font-size: 15px;
  }

  body .page-olive img {
    width: 285px;
  }

  .hero {
    min-height: 170px;
    height: 170px;
    padding: 10px 30px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.06;
    font-weight: 300;
    white-space: normal;
  }

  .hero-description {
    width: 100%;
    max-width: 650px;
    margin: 10px auto 0;
    font-size: 16px;
    line-height: 1.45;
  }

  .work-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .project-grid {
    width: min(100%, 760px);
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .brand-statement {
    min-height: 160px;
    padding: 28px 24px 25px;
  }

  .footer-inner {
    width: calc(100% - 48px);
  }

  .footer-nav {
    gap: 24px;
    font-size: 12px;
  }
}
@media (max-width: 680px) {

  .site-header {
    position: relative;
    z-index: 20;
    background: transparent;
  }


  .header-inner {
    width: calc(100% - 32px);
    height: 78px;
  }

  .brand {
    transform: translateX(115px);
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    margin: 5px auto;
    background: var(--deep-espresso);
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--natural-linen);
    border-bottom: 1px solid var(--natural-sand);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 4px;
  }

  body .page-olive img {
    width: 170px;
  }

  body .hero {
    height: auto;
    min-height: 190px;
    padding: 12px 20px 22px;
  }

  body .hero-content {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.06;
    font-weight: 300;
    white-space: normal;
  }

  .hero-description {
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }

  .hero-description br {
    display: none;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    width: calc(100% - 36px);
    padding: 12px 40px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .copyright {
    margin: 4px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-olive img {
  display: block;
  width: 475px;
  max-width: none;
  height: auto;
}

  .project-card,
  .project-image img,
  .project-link b {
    transition: none;
  }
}






/* HEADER + HERO OLIVE — continuous from page corner */

.page-olive {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.page-olive img {
  display: block;
  width: 475px;
  max-width: none;
  height: auto;
}

/* Logo, menu and hero copy stay above the branch */
.hero-content {
  position: relative;
  z-index: 4;
}




.header-inner {
  position: relative;
  z-index: 4;
}

.page-olive {
  z-index: 2;
}





/* HERO FINAL COMPACT LAYOUT */
.hero {
  min-height: 178px;
  height: auto;
  padding: 10px 40px 20px;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* HERO — FINAL DESKTOP LAYOUT */
@media (min-width: 981px) {

  .hero {
    position: relative;
    min-height: 178px;
    height: 178px;
    padding: 10px 40px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--warm-ivory);
  }

  .hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    margin: 0;
    padding: 0;
    color: var(--deep-espresso);
    font-family: "Newsreader", Georgia, serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -.035em;
    white-space: nowrap;
  }

  .hero-description {
    width: 100%;
    max-width: 1000px;
    margin: 12px auto 0;
    color: var(--espresso);
    font-family: "Red Hat Text", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    text-align: center;
  }

  .work-section {
    padding-top: 20px;
  }

  /* Desktop composition scale */
  .brand img {
    width: 255px;
  }

  .page-olive img {
    width: 405px;
  }

  .project-grid {
    width: min(100%, 1160px);
  }

  .project-image {
    height: 380px;
  }

  .brand {
    transform: translateX(170px);
  }
}















.brand {
  position: relative;
  z-index: 5;
}

.main-nav {
  z-index: 5;
}


/* CONTACT PAGE */

.contact-main {
  min-height: calc(100vh - 263px);
  padding: 54px 32px 90px;
  background: var(--natural-linen);
}

.contact-intro {
  text-align: center;
  margin: 0 auto 48px;
}

.contact-intro h1 {
  margin: 0;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.025em;
}

.contact-intro p {
  margin: 24px auto 0;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.contact-form-section {
  width: min(100%, 920px);
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--natural-sand);
  border-radius: 0;
  outline: none;
  background: var(--soft-linen);
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  transition:
    border-color .25s ease,
    background-color .25s ease;
}

.contact-field input {
  height: 58px;
  padding: 0 18px;
}

.contact-field textarea {
  min-height: 220px;
  padding: 18px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--warm-taupe);
  opacity: .8;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--espresso);
  background: var(--natural-linen);
}

.contact-submit {
  align-self: flex-start;
  min-width: 150px;
  height: 52px;
  padding: 0 24px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--natural-linen);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color .25s ease,
    border-color .25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--deep-espresso);
  border-color: var(--deep-espresso);
}

@media (max-width: 680px) {

  .contact-main {
    padding: 42px 18px 65px;
  }

  .contact-intro {
    margin-bottom: 34px;
  }

  .contact-intro h1 {
    font-size: 52px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-intro p br {
    display: none;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-field textarea {
    min-height: 190px;
  }

  .contact-submit {
    width: 100%;
  }
}


/* CONTACT FORM STATUS */

.contact-form-status {
  width: 100%;
  padding: 42px 30px;
  text-align: center;
  border: 1px solid var(--natural-sand);
  background: var(--soft-linen);
}

.contact-form-status h2 {
  margin: 0;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 300;
}

.contact-form-status p {
  margin: 12px 0 0;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.contact-form-status.is-error {
  text-align: left;
}

.contact-submit:disabled {
  opacity: .55;
  cursor: wait;
}


.contact-form[hidden] {
  display: none !important;
}
/* ABOUT PAGE */

.about-main {
  padding: 34px 32px 80px;
  background: var(--natural-linen);
}

.about-content {
  width: min(100%, 650px);
  margin: 0 auto;
}

.about-intro {
  margin: 0 0 18px;
  text-align: left;
}

/* H1 semantik olarak kalsın, görsel olarak gösterilmesin */
.about-intro h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-lead {
  margin: 0 0 18px;
  color: var(--deep-espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.about-body {
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 400;
}

.about-body p {
  margin: 0 0 14px;
}

.about-body .about-emphasis {
  margin: 18px 0 14px;
  color: var(--deep-espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

.about-body .about-closing {
  margin: 18px 0 14px;
  color: var(--deep-espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-style: normal;
  font-weight: 600;
}

.about-signature {
  margin-top: 28px;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.about-signature p {
  margin: 0;
}

.about-signature .about-name {
  margin-bottom: 2px;
  color: var(--deep-espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 680px) {
  .about-main {
    padding: 28px 20px 58px;
  }

  .about-content {
    width: 100%;
  }

  .about-lead,
  .about-body,
  .about-body .about-emphasis,
  .about-body .about-closing {
    font-size: 16px;
  }
}


.contact-privacy-note {
  margin: 2px 0 4px;
  color: var(--warm-taupe);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.contact-privacy-note a {
  color: var(--espresso);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-privacy-note a:hover,
.contact-privacy-note a:focus-visible {
  color: var(--deep-espresso);
}


/* PRIVACY PAGE */

.privacy-main {
  padding: 48px 32px 90px;
  background: var(--natural-linen);
}

.privacy-content {
  width: min(100%, 760px);
  margin: 0 auto;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.privacy-intro {
  margin-bottom: 38px;
}

.privacy-intro h1 {
  margin: 0 0 12px;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 300;
}

.privacy-intro p {
  margin: 0;
  color: var(--warm-taupe);
  font-size: 14px;
}

.privacy-content section {
  margin-top: 42px;
}

.privacy-content h2 {
  margin: 0 0 15px;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 400;
}

.privacy-content h3 {
  margin: 27px 0 10px;
  color: var(--deep-espresso);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.privacy-content p {
  margin: 0 0 15px;
}

.privacy-content ul {
  margin: 4px 0 18px;
  padding-left: 23px;
}

.privacy-content li {
  margin-bottom: 7px;
}

.privacy-content a {
  color: var(--espresso);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content a:hover,
.privacy-content a:focus-visible {
  color: var(--deep-espresso);
}

@media (max-width: 680px) {

  .privacy-main {
    padding: 36px 20px 65px;
  }

  .privacy-content {
    font-size: 16px;
    line-height: 1.62;
  }

  .privacy-intro h1 {
    font-size: 37px;
  }

  .privacy-content section {
    margin-top: 34px;
  }

  .privacy-content h2 {
    font-size: 23px;
  }
}


#service-providers h3 {
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

#service-providers strong {
  font-weight: 400;
}


/* 404 PAGE */

.error-main {
  min-height: calc(100vh - 250px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 30px 90px;
  background: var(--natural-linen);
}

.error-content {
  max-width: 720px;
  text-align: center;
}

.error-code {
  margin: 0 0 18px;
  color: var(--warm-taupe);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .3em;
}

.error-content h1 {
  margin: 0;
  color: var(--deep-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 300;
}

.error-content > p:not(.error-code) {
  margin: 22px 0 0;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.error-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--espresso);
  font-family: "Red Hat Text", Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
}

.error-link:hover,
.error-link:focus-visible {
  color: var(--deep-espresso);
}

@media (max-width: 680px) {
  .error-main {
    padding: 55px 20px 70px;
  }

  .error-content h1 {
    font-size: 38px;
  }
}








/* MID DESKTOP HERO VERTICAL */
@media (min-width: 981px) and (max-width: 1100px) {
  .hero-content {
    transform: translateY(15px);
  }

  .hero-description {
    margin-top: 4px;
  }
}

